/* ========================================
   PROPERTY PAGE - SPECIFIC STYLES
   ======================================== */

/* Page Hero / Banner */
.property-hero {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
  margin-top: 50px;
}

.property-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.property-hero:hover .property-hero-img {
  transform: scale(1);
}

.property-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.3) 60%,
    rgba(0,0,0,0.1) 100%
  );
}

.property-hero-content {
  position: absolute;
  bottom: 70px;
  left: 8%;
  color: white;
  z-index: 10;
  max-width: 600px;
}

.property-hero-content .property-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #4CAF50, #2e7d32);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 30px;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(76,175,80,0.5);
}

.property-hero-content h1 {
  font-family: 'Manrope', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
  margin-bottom: 16px;
}

.property-hero-content .property-price-hero {
  font-family: 'Manrope', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  opacity: 0.92;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* Hero Scroll Hint */
.property-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(252,252,252,0.6), transparent);
  pointer-events: none;
}

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb {
  padding: 16px 0;
  background: white;
  border-bottom: 1px solid #F0F0F0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
}

.breadcrumb-list a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-list a:hover {
  color: #1B1B1B;
}

.breadcrumb-list .separator {
  color: #CCC;
}

.breadcrumb-list .current {
  color: #1B1B1B;
  font-weight: 600;
  letter-spacing: 0;
}

/* ========================================
   PROPERTY DETAIL LAYOUT
   ======================================== */
.property-detail-section {
  padding: 60px 0 120px;
  background: #F8F9FA;
}

.property-detail-grid {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 40px;
  align-items: start;
}

/* ========================================
   LEFT COLUMN - MAIN INFO
   ======================================== */
.property-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Spesifikasi */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.spec-item {
  background: white;
  border: 1.5px solid #EEEEEE;
  border-radius: 18px;
  padding: 26px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
}

.spec-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #A7BEB3, #6fa88a);
  opacity: 0;
  transition: opacity 0.3s;
}

.spec-item:hover {
  border-color: #A7BEB3;
  box-shadow: 0 16px 40px rgba(0,0,0,0.14), 0 6px 16px rgba(0,0,0,0.1);
  transform: translateY(-6px);
}

.spec-item:hover::before {
  opacity: 1;
}

.spec-icon {
  font-size: 1.9rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.spec-icon svg {
  width: 32px;
  height: 32px;
  stroke: #1B1B1B;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.spec-item:hover .spec-icon svg {
  stroke: #6fa88a;
  opacity: 1;
  transform: scale(1.1);
}

.spec-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #AAA;
}

.spec-value {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #1B1B1B;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* Section Block */
.info-block {
  background: white;
  border-radius: 22px;
  padding: 38px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid #F0F0F0;
  transition: box-shadow 0.3s, transform 0.3s;
}

.info-block:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.info-block h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #1B1B1B;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 2px solid #F3F3F3;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.info-block h2 svg {
  flex-shrink: 0;
  stroke: #6fa88a;
  transition: all 0.3s ease;
}

.info-block:hover h2 svg {
  stroke: #4a7359;
  transform: scale(1.1);
}

.info-block p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #666;
  line-height: 1.85;
  letter-spacing: 0;
}

/* Fasilitas List */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.facility-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #F7FAF8;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  letter-spacing: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.facility-item:hover {
  background: #e3f0e8;
  border-color: #A7BEB3;
  color: #2e5c42;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

.facility-item .fac-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.facility-item .fac-icon svg {
  width: 20px;
  height: 20px;
  stroke: #6fa88a;
  transition: all 0.3s ease;
}

.facility-item:hover .fac-icon {
  background: #A7BEB3;
  transform: rotate(5deg) scale(1.05);
}

.facility-item:hover .fac-icon svg {
  stroke: white;
}

/* Detail List (spek teknis) */
.detail-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #F5F5F5;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  transition: background 0.2s;
  letter-spacing: 0;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row .dl-label {
  color: #999;
  font-weight: 500;
}

.detail-row .dl-value {
  color: #1B1B1B;
  font-weight: 700;
  text-align: right;
  background: #F7FAF8;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  letter-spacing: 0;
}

/* Photo Gallery */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.photo-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  transition: all 0.4s ease;
  cursor: pointer;
  filter: brightness(0.97);
}

.photo-grid img:first-child {
  grid-column: 1 / -1;
  height: 340px;
}

.photo-grid img:hover {
  transform: scale(1.02);
  filter: brightness(1.03);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

/* ========================================
   IMAGE LIGHTBOX MODAL
   ======================================== */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox-content {
  max-width: 95%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 50px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 12px 24px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  max-width: 90%;
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
  .lightbox-close {
    top: 10px;
    right: 15px;
    font-size: 40px;
    width: 40px;
    height: 40px;
  }
  
  .lightbox-caption {
    font-size: 0.875rem;
    padding: 10px 20px;
    bottom: 20px;
  }
  
  .lightbox-content {
    max-width: 100%;
    max-height: 85vh;
  }
}

/* ========================================
   RIGHT COLUMN - STICKY SIDEBAR
   ======================================== */
.property-sidebar {
  position: sticky;
  top: 75px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Price Card */
.price-card {
  background: white;
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12), 0 3px 12px rgba(0,0,0,0.08);
  border: 1px solid #F0F0F0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.price-card:hover {
  box-shadow: 0 16px 50px rgba(0,0,0,0.16), 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1B1B1B, #555);
}

.price-card .price-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #AAA;
  margin-bottom: 8px;
}

.price-card .price-value {
  font-family: 'Manrope', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #1B1B1B;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  line-height: 1;
}

.price-card .price-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #AAA;
  margin-bottom: 30px;
  letter-spacing: 0;
}

.btn-primary {
  display: block;
  width: 100%;
  padding: 17px;
  background: linear-gradient(135deg, #1B1B1B 0%, #333 100%);
  color: white;
  border: none;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #000 0%, #222 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.btn-secondary {
  display: block;
  width: 100%;
  padding: 16px;
  background: transparent;
  color: #1B1B1B;
  border: 2px solid #E0E0E0;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: #1B1B1B;
  background: #1B1B1B;
  color: white;
  transform: translateY(-2px);
}

/* Info Badges */
.info-badge-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.info-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  background: white;
  border-radius: 14px;
  border: 1.5px solid #EEEEEE;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #444;
  transition: all 0.25s ease;
  letter-spacing: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.03);
}

.info-badge:hover {
  border-color: #A7BEB3;
  background: #F7FAF8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1), 0 3px 8px rgba(0,0,0,0.06);
}

.info-badge .ib-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #F7FAF8;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.info-badge .ib-icon svg {
  width: 18px;
  height: 18px;
  stroke: #6fa88a;
  transition: all 0.3s ease;
}

.info-badge:hover .ib-icon {
  background: #A7BEB3;
  transform: scale(1.1);
}

.info-badge:hover .ib-icon svg {
  stroke: white;
}

/* Contact Card */
.contact-card {
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: 22px;
  padding: 30px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25), 0 3px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 16px 50px rgba(0,0,0,0.35), 0 6px 20px rgba(0,0,0,0.2);
  transform: translateY(-3px);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.contact-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.contact-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0.75;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agent-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.agent-avatar {
  width: 54px;
  height: 54px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.agent-avatar svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255,255,255,0.9);
  fill: none;
}

.agent-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.agent-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  opacity: 0.6;
  letter-spacing: 0;
}

.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #25D366, #1da851);
  color: white;
  border: none;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-wa:hover {
  background: linear-gradient(135deg, #20b858, #178a42);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.45);
}

.btn-wa svg {
  flex-shrink: 0;
}

/* ========================================
   CUSTOM UNIT - FORM SECTION
   ======================================== */
.custom-form-section {
  padding: 90px 0 110px;
  background: linear-gradient(180deg, #F0F5F2 0%, #E8F0EC 100%);
  position: relative;
}

.custom-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #A7BEB3, transparent);
}

.custom-form-section > .container > h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #1B1B1B;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.custom-form-section > .container > p {
  color: #777;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 50px;
  line-height: 1.7;
  letter-spacing: 0;
}

.custom-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: white;
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 8px 35px rgba(0,0,0,0.1), 0 3px 12px rgba(0,0,0,0.06);
  border: 1px solid #E8EEE9;
  transition: box-shadow 0.3s ease;
}

.custom-form-grid:hover {
  box-shadow: 0 12px 45px rgba(0,0,0,0.14), 0 5px 16px rgba(0,0,0,0.08);
}

.custom-form-grid .full-width {
  grid-column: 1 / -1;
}

.custom-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.custom-form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #444;
  letter-spacing: 0.01em;
}

.custom-form-group input,
.custom-form-group select,
.custom-form-group textarea {
  padding: 14px 18px;
  border: 2px solid #EEEEEE;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #1B1B1B;
  background: #FAFAFA;
  transition: all 0.3s ease;
  resize: vertical;
  letter-spacing: 0;
}

.custom-form-group input::placeholder,
.custom-form-group textarea::placeholder {
  color: #BBBB;
}

.custom-form-group input:focus,
.custom-form-group select:focus,
.custom-form-group textarea:focus {
  outline: none;
  border-color: #A7BEB3;
  background: white;
  box-shadow: 0 0 0 4px rgba(167,190,179,0.18);
}

.custom-form-submit {
  margin-top: 8px;
  padding: 17px 48px;
  background: linear-gradient(135deg, #1B1B1B 0%, #333 100%);
  color: white;
  border: none;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.custom-form-submit:hover {
  background: linear-gradient(135deg, #000 0%, #1B1B1B 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}

/* ========================================
   STEP PROCESS (for custom unit)
   ======================================== */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #F5F5F5;
}

.step-row:last-child {
  border-bottom: none;
}

.step-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #1B1B1B, #444);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1B1B1B;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #888;
  letter-spacing: 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .property-detail-grid {
    grid-template-columns: 1fr 340px;
    gap: 30px;
  }
}

@media (max-width: 860px) {
  .property-detail-grid {
    grid-template-columns: 1fr;
  }

  .property-sidebar {
    position: static;
  }

  .property-hero-content h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
  }

  .spec-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-badge-list {
    grid-template-columns: 1fr 1fr;
  }

  .custom-form-grid {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }

  .custom-form-grid .full-width {
    grid-column: 1;
  }
}

@media (max-width: 600px) {
  .property-hero {
    height: 58vh;
  }

  .property-hero-content h1 {
    font-size: 2.2rem;
    letter-spacing: -0.02em;
  }

  .property-hero-content .property-price-hero {
    font-size: 1.3rem;
    letter-spacing: -0.01em;
  }

  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facility-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid img {
    height: 170px;
  }

  .photo-grid img:first-child {
    height: 240px;
  }

  .info-block {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .price-card {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .price-card .price-value {
    font-size: 2rem;
    letter-spacing: -0.02em;
  }

  .info-badge-list {
    grid-template-columns: 1fr;
  }

  .custom-form-section > .container > h2 {
    font-size: 1.8rem;
    letter-spacing: -0.02em;
  }
}
