          :root {
    --green: #1a3a2a;
    --green-mid: #235c3a;
    --green-light: #2d7a4f;
    --gold: #fad551;
    --gold-light: #fad551;
    --gold-pale: #f5e9c8;
    --white: #ffffff;
    --off-white: #f9f6f0;
    --light-grey: #f2ede4;
    --text-dark: #1a1a1a;
    --text-mid: #3d3d3d;
    --text-light: #7a7a7a;
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.07);
    --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
    --radius: 12px;
    --radius-lg: 20px;
  }
  
.slide-overlay,
.hero-grid-overlay {
    display: none !important;
}
 .logo-icon img{
    height:63px;
    width:auto;
    object-fit:contain;
}

/* Desktop */
.hero-slider,
.hero-slide {
  height: 74vh;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-slider,
  .hero-slide {
    height: 80vh;
  }
}


  .slide-bg {
    background-size: cover;
    background-position: center top; /* important */
    background-repeat: no-repeat;
  }

  .slide-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.3),
      rgba(0,0,0,0.6)
    ); /* improves readability */
  }


.fixed_enquiry_btn_web {
	position: fixed;
	bottom: 5%;
	left: 3%;
	z-index: 99;
}

.fixed_enquiry_btn_web a:nth-child(1) {
	background-color: #F15D30;
	padding:10px 15px 10px 15px;
	border-radius: 100px;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .3px;
	word-spacing: 1px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	display: inline-block;
	margin-bottom: 20px;
	color: #fff;
}

.fixed_enquiry_btn_web a span {
	font-size: 16px;
	color: #fff;
}

.fixed_enquiry_btn_web a:nth-child(2) {
	background-color: #24CC63;
	padding: 5px 10px 5px 10px;
	border-radius: 100px;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .3px;
	word-spacing: 1px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	display: block;
	margin-bottom: 20px;
	color: #fff;
}

.fixed_enquiry_btn_web > a:nth-child(3), .envelope {
	background-color: #0693e3;
	padding: 11px 15px 11px 15px;
	border-radius: 100px;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .3px;
	word-spacing: 1px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	display: block;
	margin-bottom: 20px;
	color: #fff;
}
.fixed_enquiry_btn_web svg path {
    fill: #fff;
}

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
  html { scroll-behavior: smooth; }
 
  body {
    font-family: 'poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
  }
 
  h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; }
 
  /* ========== SCROLLBAR ========== */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--off-white); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
 
  /* ========== HEADER ========== */
  #header {
     top: 0; left: 0; right: 0; z-index: 1000;
    padding: 18px 5%;
    display: flex; align-items: center; justify-content: space-between;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
        background-color: #152f24;
  }
  #header.scrolled {
    background: var(--green);
    box-shadow: 0 4px 30px rgba(0,0,0,0.25);
    padding: 12px 5%;
  }
  .logo {
    display: flex; align-items: center; gap: 10px; text-decoration: none;
  }
  .logo-icon {
    width: 42px; height: 42px;
    background: var(--gold);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 700; color: var(--green);
  }
  .logo-text { display: flex; flex-direction: column; }
  .logo-text span:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 700; color: var(--white);
    line-height: 1;
  }
  .logo-text span:last-child {
    font-size: 15px; font-weight: 600; color: var(--gold-light);
    letter-spacing: 2px; text-transform: uppercase;
  }
  nav { display: flex; align-items: center; gap: 20px; }
  nav a {
    font-size: 15px; font-weight: 600; color: rgba(255, 255, 255, 0.85);
    text-decoration: none; letter-spacing: 0.8px; text-transform: uppercase;
    position: relative; padding-bottom: 4px;
    transition: color 0.3s;
  }
  nav a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
    background: var(--gold); transition: width 0.3s;
  }
  nav a:hover { color: var(--gold-light); }
  nav a:hover::after { width: 100%; }
  .header-right { display: flex; align-items: center; gap: 18px; }
  .header-phones { display: flex; flex-direction: column; gap: 2px; }
  .header-phones a {
    font-size: 11px; color: var(--gold-light); text-decoration: none; letter-spacing: 0.5px;
    transition: color 0.3s;
  }
  .header-phones a:hover { color: var(--white); }
  .btn-primary {
        background: #fad551;
    color: #217a06;
    border: none; border-radius: 6px;
    padding: 11px 22px;
    font-family: 'Jost', sans-serif;
    font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; text-decoration: none;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    display: inline-block;
  }
  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.4);
  }
  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 6px;
    padding: 11px 22px;
    font-family: 'Jost', sans-serif;
    font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; text-decoration: none;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
    display: inline-block;
  }
  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.1);
  }
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: all 0.3s;
  }
  .mobile-menu {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--green); z-index: 999;
    flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 600; color: var(--white);
    text-decoration: none; letter-spacing: 1px;
    transition: color 0.3s;
  }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-menu-close {
    position: absolute; top: 22px; right: 5%;
    background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer;
  }
  .mobile-menu-phones { display: flex; flex-direction: column; gap: 6px; align-items: center; margin-top: 10px; }
  .mobile-menu-phones a { font-size: 15px !important; color: var(--gold-light) !important; }
 
  /* ========== HERO ========== */
  #hero {
    min-height: 100vh; position: relative; display: flex; align-items: center;
    background: linear-gradient(135deg, #0d2018 0%, #1a3a2a 50%, #0f2a1c 100%);
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 70% 40%, rgba(201,168,76,0.12) 0%, transparent 60%),
      radial-gradient(ellipse at 20% 80%, rgba(45,122,79,0.2) 0%, transparent 50%);
  }
  .hero-pattern {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(255,255,255,0.5) 20px,
      rgba(255,255,255,0.5) 21px
    );
  }
  .hero-content {
    position: relative; z-index: 2;
    padding: 140px 5% 80px;
    max-width: 700px;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 100px;
    padding: 7px 18px;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
  }
  .hero-badge span {
    font-size: 11px; font-weight: 500; color: var(--gold-light);
    letter-spacing: 2px; text-transform: uppercase;
  }
  .hero-badge::before {
    content: ''; width: 6px; height: 6px;
    background: var(--gold); border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }
  .hero-title {
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 300; color: var(--white);
    line-height: 1; letter-spacing: -1px;
    margin-bottom: 8px;
    animation: fadeUp 0.8s 0.15s ease both;
  }
  .hero-title em {
    font-style: italic; color: var(--gold);
    display: block;
  }
  .hero-subtitle {
    font-size: clamp(15px, 2vw, 19px);
    font-weight: 300; color: rgba(255,255,255,0.65);
    line-height: 1.65; margin-bottom: 28px;
    font-family: 'Jost', sans-serif;
    max-width: 500px;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .hero-dev {
    font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold-light); font-weight: 400; margin-bottom: 6px;
    animation: fadeUp 0.8s 0.4s ease both;
  }
  .hero-location {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: rgba(255,255,255,0.6);
    margin-bottom: 42px;
    animation: fadeUp 0.8s 0.45s ease both;
  }
  .hero-location i { color: var(--gold); }
  .hero-ctas {
    display: flex; gap: 14px; flex-wrap: wrap;
    animation: fadeUp 0.8s 0.55s ease both;
  }
  .hero-visual {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 48%; display: flex; align-items: center; justify-content: center;
    z-index: 1;
  }
  .hero-card-float {
    position: absolute;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 20px 24px;
    animation: float 6s ease-in-out infinite;
  }
  .hero-card-float.card1 { top: 25%; right: 12%; animation-delay: 0s; }
  .hero-card-float.card2 { bottom: 30%; right: 5%; animation-delay: 2s; }
  .hero-card-float.card3 { top: 55%; right: 30%; animation-delay: 4s; }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
  .float-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
  .float-val { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--white); }
  .float-sub { font-size: 11px; color: rgba(255,255,255,0.5); }
  .hero-scroll {
    position: absolute; bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    z-index: 3;
    animation: fadeUp 1s 1s ease both;
  }
  .hero-scroll span {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,0.4);
  }
  .scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollDown 2s ease-in-out infinite;
  }
  @keyframes scrollDown {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
 
  /* ========== SECTION COMMON ========== */
  section { padding: 90px 5%; }
  .section-label {
    font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 10px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-label::before {
    content: ''; width: 30px; height: 1px; background: var(--gold);
  }
  .section-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400; color: var(--green);
    line-height: 1.15; margin-bottom: 16px;
  }
  .section-title em { font-style: italic; color: var(--green-light); }
  .section-desc {
    font-size: 19px; font-weight: 300; color: var(--text-light);
    line-height: 1.8; max-width: 580px;
  }
  .gold-line {
    width: 60px; height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    border-radius: 2px; margin: 18px 0;
  }
 
  /* ========== DEVELOPER SECTION ========== */
  #developer { background: var(--off-white); }
  .developer-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    max-width: 1100px; margin: 0 auto;
  }
  .dev-visual {
    position: relative; border-radius: var(--radius-lg);
    overflow: hidden; height: 420px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 16px;
  }
  .dev-visual-icon {
    width: 90px; height: 90px; border-radius: 50%;
    background: rgba(201,168,76,0.2);
    border: 2px solid rgba(201,168,76,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; color: var(--gold);
  }
  .dev-visual h3 {
    font-size: 32px; font-weight: 300; color: var(--white);
    font-family: 'Cormorant Garamond', serif; text-align: center;
  }
  .dev-visual p {
    font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold-light); text-align: center;
  }
  .dev-stats {
    display: flex; gap: 24px; margin-top: 28px; padding: 24px;
    background: rgba(255,255,255,0.07); border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    width: 80%;
  }
  .dev-stat { flex: 1; text-align: center; }
  .dev-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px; font-weight: 700; color: var(--gold);
  }
  .dev-stat-lbl { font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 1px; }
  .dev-info p {
    font-size: 15px; font-weight: 300; color: var(--text-mid);
    text-align:justify;
    line-height: 1.9; margin-bottom: 28px;
  }
  .dev-contact-list { display: flex; flex-direction: column; gap: 14px; }
  .dev-contact-item {
    display: flex; align-items: center; gap: 14px;
  }
  .dev-contact-icon {
    width: 38px; height: 38px; border-radius: 8px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 14px; flex-shrink: 0;
  }
  .dev-contact-item a, .dev-contact-item span {
    font-size: 14px; color: var(--text-mid); text-decoration: none;
    transition: color 0.3s;
  }
  .dev-contact-item a:hover { color: var(--green); }
 
  /* ========== PROJECT OVERVIEW ========== */
  #project { background: var(--white); }
  .project-inner { max-width: 1100px; margin: 0 auto; }
  .project-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 50px; }
  .highlights-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
    margin-top: 40px;
  }
  .highlight-card {
    background: var(--off-white);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  }
  .highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
  }
  .highlight-icon {
    font-size: 28px; color: var(--gold); margin-bottom: 12px;
  }
  .highlight-card h4 {
    font-family: 'Jost', sans-serif;
    font-size: 13px; font-weight: 600; color: var(--green);
    text-transform: uppercase; letter-spacing: 0.5px;
  }
 
  /* ========== AREA SPECS ========== */
  #area { background: var(--green); padding: 90px 5%; }
  .area-inner { max-width: 1100px; margin: 0 auto; }
  #area .section-label { color: var(--gold-light); }
  #area .section-label::before { background: var(--gold-light); }
  #area .section-title { color: var(--white); }
  #area .section-desc { color: rgba(255,255,255,0.6); }
  .area-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 50px; }
  .area-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative; overflow: hidden;
    transition: background 0.3s, border-color 0.3s;
  }
  .area-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
  }
  .area-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--gold);
  }
  .area-card-tag {
    display: inline-block;
    background: rgba(201,168,76,0.2);
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 100px; padding: 5px 16px;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 18px;
  }
  .area-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px; font-weight: 600; color: var(--white);
    margin-bottom: 4px;
  }
  .area-card-type {
    font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 24px;
  }
  .area-size {
    display: flex; align-items: baseline; gap: 6px; margin-bottom: 28px;
  }
  .area-size-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px; font-weight: 300; color: var(--gold);
    line-height: 1;
  }
  .area-size-unit { font-size: 16px; color: rgba(255,255,255,0.5); }
  .area-features { display: flex; flex-direction: column; gap: 10px; }
  .area-feature {
    display: flex; align-items: center; gap: 12px;
    font-size: 13px; color: rgba(255,255,255,0.75);
  }
  .area-feature i { color: var(--gold); width: 16px; }
 
  /* ========== FLOOR PLAN ========== */
  #floorplan { background: var(--off-white); }
  .floorplan-inner { max-width: 1100px; margin: 0 auto; }
  .fp-tabs {
    display: flex; gap: 0; margin: 40px 0 30px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius); overflow: hidden;
    width: fit-content;
  }
  .fp-tab {
    padding: 12px 28px;
    font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s;
    color: var(--text-light); background: none; border: none;
    font-family: 'Jost', sans-serif;
  }
  .fp-tab.active {
    background: var(--green); color: var(--white);
  }
  .fp-panel { display: none; }
  .fp-panel.active { display: block; }
  .fp-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  }
  .fp-item {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    padding: 18px 16px;
    transition: box-shadow 0.3s, border-color 0.3s;
  }
  .fp-item:hover { box-shadow: var(--shadow-sm); border-color: var(--gold); }
  .fp-item-label {
    font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--gold); font-weight: 500; margin-bottom: 6px;
  }
  .fp-item-name {
    font-size: 16px; font-weight: 600; color: var(--green); margin-bottom: 4px;
  }
  .fp-item-dim {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px; color: var(--text-mid);
  }
 
  /* ========== COMMON AREAS ========== */
  #common { background: var(--white); }
  .common-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    margin-top: 40px;
  }
  .common-card {
    background: var(--off-white);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: var(--radius);
    padding: 28px 20px; text-align: center;
    transition: all 0.3s;
  }
  .common-card:hover {
    background: var(--green); border-color: var(--green);
  }
  .common-card:hover .common-icon { background: rgba(255,255,255,0.15); color: var(--gold); }
  .common-card:hover .common-name, .common-card:hover .common-dim { color: var(--white); }
  .common-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(201,168,76,0.12); color: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin: 0 auto 14px;
    transition: all 0.3s;
  }
  .common-name {
    font-size: 16px; font-weight: 600; color: var(--green);
    margin-bottom: 6px; transition: color 0.3s;
  }
  .common-dim {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; color: var(--text-light); transition: color 0.3s;
  }
 
  /* ========== SPECIFICATIONS ========== */
  #specs { background: var(--green); padding: 90px 5%; }
  #specs .section-label { color: var(--gold-light); }
  #specs .section-label::before { background: var(--gold-light); }
  #specs .section-title { color: var(--white); }
  .specs-inner { max-width: 1100px; margin: 0 auto; }
  .specs-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    margin-top: 50px;
  }
  .spec-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 28px 24px;
    cursor: pointer;
    transition: all 0.3s;
  }
  .spec-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: var(--gold);
    transform: translateY(-4px);
  }
  .spec-header {
    display: flex; align-items: center; gap: 14px; margin-bottom: 14px;
  }
  .spec-icon {
    width: 42px; height: 42px; border-radius: 8px;
    background: rgba(201,168,76,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--gold); flex-shrink: 0;
  }
  .spec-name {
    font-size: 15px; font-weight: 600; color: var(--white);
  }
  .spec-details {
    font-size: 17px; color: rgba(255,255,255,0.55);
    line-height: 1.75;
  }
 
  /* ========== LOCATION ========== */
  #location { background: var(--off-white); }
  .location-inner { max-width: 1100px; margin: 0 auto; }
  .location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
  .proximity-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
    margin-top: 30px;
  }
  .prox-item {
    display: flex; align-items: center; gap: 12px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    padding: 14px 16px;
    transition: all 0.3s;
  }
  .prox-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
  }
  .prox-icon {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(201,168,76,0.12);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 14px; flex-shrink: 0;
  }
  .prox-info { flex: 1; }
  .prox-name { font-size: 17px; font-weight: 500; color: var(--text-dark); }
  .prox-dist { font-size: 13px; color: #787878; font-weight: 600; letter-spacing: 0.5px; }
  .map-container {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.06);
    height: 100%;
  }
  .map-container iframe { display: block; width: 100%; height: 500px; border: none; }
 
  /* ========== CONTACT ========== */
  #contact { background: var(--white); }
  .contact-inner { max-width: 1100px; margin: 0 auto; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
  .contact-info-card {
    background: var(--green);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    position: relative; overflow: hidden;
  }
  .contact-info-card::after {
    content: '';
    position: absolute; bottom: -30px; right: -30px;
    width: 180px; height: 180px;
    border: 40px solid rgba(255,255,255,0.04);
    border-radius: 50%;
  }
  .contact-info-card h3 {
    font-size: 28px; font-weight: 300; color: var(--white);
    margin-bottom: 8px;
  }
  .contact-info-card p {
    font-size: 13px; color: rgba(255,255,255,0.5);
    margin-bottom: 32px; line-height: 1.7;
  }
  .contact-items { display: flex; flex-direction: column; gap: 18px; }
  .contact-item {
    display: flex; align-items: flex-start; gap: 14px;
  }
  .contact-item-icon {
    width: 40px; height: 40px; border-radius: 8px;
    background: rgba(201,168,76,0.2);
    border: 1px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 15px; flex-shrink: 0; margin-top: 2px;
  }
  .contact-item-text { display: flex; flex-direction: column; gap: 3px; }
  .contact-item-text span:first-child { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }
  .contact-item-text a, .contact-item-text p {
    font-size: 14px; color: rgba(255,255,255,0.8); text-decoration: none;
    transition: color 0.3s; margin: 0;
  }
  .contact-item-text a:hover { color: var(--gold-light); }
  .form-card {
    background: var(--off-white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
  }
  .form-card h3 {
    font-size: 28px; font-weight: 400; color: var(--green);
    margin-bottom: 6px;
  }
  .form-card p { font-size: 13px; color: var(--text-light); margin-bottom: 28px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 18px; }
  .form-group label {
    display: block; font-size: 11px; font-weight: 500;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--text-light); margin-bottom: 7px;
  }
  .form-group input, .form-group textarea {
    width: 100%; padding: 13px 16px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-family: 'Jost', sans-serif; font-size: 14px; color: var(--text-dark);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none; resize: none;
  }
  .form-group input:focus, .form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  }
  .form-group textarea { height: 110px; }
  .btn-submit {
    width: 100%; padding: 15px;
    background: var(--green);
    color: var(--white);
    border: none; border-radius: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
  }
  .btn-submit:hover { background: var(--green-mid); transform: translateY(-2px); }
 
  /* ========== FOOTER ========== */
  footer {
        background-color: #152f24;
    border-top: 1px solid rgba(201,168,76,0.2);
    padding: 60px 5% 28px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px; max-width: 1100px; margin: 0 auto 50px;
  }
  .footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 600; color: var(--white); margin-bottom: 6px;
  }
  .footer-brand p {
    font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 24px;
    line-height: 1.7;
  }
  .footer-socials { display: flex; gap: 10px; }
  .footer-social {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
  }
  .footer-social:hover { background: var(--gold); color: var(--green); border-color: var(--gold); }
  .footer-col h4 {
    font-family: 'Jost', sans-serif;
    font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 18px;
  }
  .footer-links { display: flex; flex-direction: column; gap: 10px; }
  .footer-links a {
    font-size: 13px; color: rgba(255,255,255,0.5);
    text-decoration: none; transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--white); }
  .footer-contact-items { display: flex; flex-direction: column; gap: 12px; }
  .footer-contact-item {
    display: flex; align-items: flex-start; gap: 10px;
  }
  .footer-contact-item i { color: var(--gold); font-size: 12px; margin-top: 3px; }
  .footer-contact-item a, .footer-contact-item span {
    font-size: 13px; color: rgba(255,255,255,0.5);
    text-decoration: none; transition: color 0.3s; line-height: 1.5;
  }
  .footer-contact-item a:hover { color: var(--white); }
  .footer-bottom {
    max-width: 1100px; margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
  .footer-bottom span { font-size: 12px; color: rgba(255,255,255,0.25); }
 
  /* ========== SCROLL REVEAL ========== */
  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
 
  /* ========== RESPONSIVE ========== */
  @media (max-width: 1024px) {
    nav { display: none; }
    .header-phones { display: none; }
    .hamburger { display: flex; }
    .hero-visual { display: none; }
    .hero-content { max-width: 100%; }
    .developer-grid { grid-template-columns: 1fr; gap: 40px; }
    .dev-visual { height: 347px; }
    .project-header { grid-template-columns: 1fr; gap: 0; }
    .highlights-grid { grid-template-columns: repeat(3, 1fr); }
    .area-cards { grid-template-columns: 1fr 1fr; }
    .specs-grid { grid-template-columns: repeat(2, 1fr); }
    .location-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .common-grid { grid-template-columns: repeat(2, 1fr); }
    .fp-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 1024px) {
    .dev-visual {
        height: 347px;
    }
}
  @media (max-width: 680px) {
    section { padding: 65px 4%; }
    #area, #specs { padding: 65px 4%; }
    footer { padding: 50px 4% 24px; }
    #header { padding: 14px 4%; }
    #header.scrolled { padding: 10px 4%; }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .area-cards { grid-template-columns: 1fr; }
    .specs-grid { grid-template-columns: 1fr; }
    .fp-grid { grid-template-columns: repeat(2, 1fr); }
    .common-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .proximity-grid { grid-template-columns: 1fr; }
    .form-card, .contact-info-card { padding: 28px 22px; }
    .hero-content { padding: 120px 4% 70px; }
    .dev-stats { width: 90%; }
  }
/* HERO SLIDER */
.hero-slide {
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1.5s ease;
}

.hero-slide.active {
  transform: scale(1);
}
  .hero{position:relative;min-height:100vh;display:flex;align-items:center;overflow:hidden}
  .hero-slider{position:absolute;inset:0;z-index:0}
  .hero-slide{position:absolute;inset:0;opacity:0;transition:opacity 1.2s cubic-bezier(.4,0,.2,1)}
  .hero-slide.active{opacity:1}
  .slide-bg{position:absolute;inset:0;background-size:cover;background-position:center center;background-repeat:no-repeat;transform:scale(1);transition:transform 8s ease}
  .hero-slide.active .slide-bg{transform:scale(1.06)}
  .slide-1 .slide-bg{background-image:url("image/VIEW 2.webp")}
.slide-2 .slide-bg{background-image:url("image/VIEW 3.webp")}
.slide-3 .slide-bg{background-image:url("image/VIEW 4.webp")}
  .slide-overlay{position:absolute;inset:0;background:linear-gradient(95deg,rgba(6,18,10,.92) 0%,rgba(6,18,10,.72) 38%,rgba(6,18,10,.35) 62%,rgba(6,18,10,.05) 100%)}
  .hero-grid-overlay{position:absolute;inset:0;z-index:1;pointer-events:none;background-image:linear-gradient(rgba(201,162,39,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(201,162,39,.04) 1px,transparent 1px);background-size:60px 60px}
  .hero-shapes{position:absolute;inset:0;z-index:2;pointer-events:none}
  .hero-shape{position:absolute;border:1px solid rgba(201,162,39,.12);animation:floatShape 8s ease-in-out infinite}
  .hero-shape:nth-child(1){width:80px;height:80px;top:15%;right:18%;animation-delay:0s;transform:rotate(15deg)}
  .hero-shape:nth-child(2){width:120px;height:120px;bottom:28%;right:28%;animation-delay:2s;transform:rotate(-10deg)}
  .hero-shape:nth-child(3){width:50px;height:50px;top:58%;right:8%;animation-delay:4s;transform:rotate(30deg)}
  @keyframes floatShape{0%,100%{transform:translateY(0) rotate(15deg)}50%{transform:translateY(-18px) rotate(20deg)}}
  .hero-content{position:relative;z-index:10;width:100%;max-width:1400px;margin:0 auto;padding:130px 5% 80px}
  .hero-eyebrow{display:inline-flex;align-items:center;gap:10px;background:rgba(201,162,39,.1);border:1px solid rgba(201,162,39,.3);padding:8px 18px;border-radius:30px;margin-bottom:24px}
  .hero-eyebrow::before{content:'';width:6px;height:6px;background:var(--gold);border-radius:50%;flex-shrink:0}
  .hero-eyebrow span{font-size:11px;letter-spacing:3px;color:var(--gold);text-transform:uppercase;font-weight:600}
  .hero-title{font-family:'Playfair Display',serif;font-size:clamp(44px,6.5vw,88px);font-weight:900;line-height:1.0;margin-bottom:20px;max-width:660px}
  .gold-text{    background: #fad551 ;-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
  .outline-text{-webkit-text-stroke:1px rgba(255,255,255,.3);color:transparent}
  .hero-subtitle{font-size:18px;color:rgba(217, 226, 219, 0.85);line-height:1.75;max-width:500px;margin-bottom:40px;font-weight:300}
  .hero-actions{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:60px}
  .btn-primary{background:var(--grad-gold);color:var(--deep-green);padding:15px 34px;border:none;border-radius:4px;font-family:'Montserrat',sans-serif;font-size:12px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;cursor:pointer;transition:all .3s ease;text-decoration:none;display:inline-block}
  .btn-primary:hover{transform:translateY(-3px);box-shadow:0 10px 40px rgba(201,162,39,.4)}
  .btn-outline{background:transparent;color:#fff;padding:14px 34px;border:1px solid rgba(255,255,255,.3);border-radius:4px;font-family:'Montserrat',sans-serif;font-size:12px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;cursor:pointer;transition:all .3s ease;text-decoration:none;display:inline-block}
  .btn-outline:hover{border-color:var(--gold);color:var(--gold);transform:translateY(-3px)}
  .hero-stats{display:flex;gap:40px;flex-wrap:wrap;padding-top:36px;border-top:1px solid rgba(255,255,255,.08)}
  .stat-num{font-family:'Playfair Display',serif;font-size:38px;font-weight:700;    background: #fad551;-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;line-height:1}
  .stat-label{font-size:14px;letter-spacing:2px;color:#7a7a7a;text-transform:uppercase;margin-top:4px}
  .hero-card{position:absolute;bottom:14%;right:5%;z-index:20;background:rgba(10,25,16,.88);backdrop-filter:blur(18px);border:1px solid rgba(201,162,39,.3);border-radius:12px;padding:18px 22px;min-width:180px;box-shadow:var(--shadow-dark);animation:cardFloat 4s ease-in-out infinite}
  @keyframes cardFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
  .hero-card .card-label{font-size:9px;letter-spacing:2px;color:var(--gray);text-transform:uppercase;font-weight:600;margin-bottom:4px}
  .hero-card .card-value{font-family:'Playfair Display',serif;font-size:20px;color:var(--gold);font-weight:700}
  .hero-card .card-sub{font-size:10px;color:var(--gray);margin-top:3px;display:flex;align-items:center;gap:5px}
  .card-dot{width:6px;height:6px;background:#4ade80;border-radius:50%;animation:pulse 2s infinite;flex-shrink:0}
  @keyframes pulse{0%,100%{opacity:1}50%{opacity:.5}}
  .slider-arrow{position:absolute;top:50%;z-index:20;transform:translateY(-50%);width:30px;height:30px;border-radius:50%;background:rgba(10,25,16,.65);border:1px solid rgba(201,162,39,.35);color:var(--gold);font-size:18px;display:flex;align-items:center;justify-content:center;cursor:pointer;backdrop-filter:blur(10px);transition:all .3s ease;user-select:none}
  .slider-arrow:hover{background:rgba(201,162,39,.18);border-color:var(--gold);transform:translateY(-50%) scale(1.08)}
  .slider-arrow-prev{left:2.5%}
  .slider-arrow-next{right:2.5%}
  .slider-dots{position:absolute;bottom:96px;left:5%;z-index:20;display:flex;gap:10px;align-items:center}
  .slider-dot{width:8px;height:8px;border-radius:4px;background:rgba(201,162,39,.35);cursor:pointer;border:none;padding:0;transition:all .4s ease}
  .slider-dot.active{width:26px;background:var(--gold);box-shadow:0 0 10px rgba(201,162,39,.5)}
  .slider-counter{position:absolute;bottom:102px;right:5%;z-index:20;display:flex;align-items:baseline;gap:4px;font-family:'Playfair Display',serif}
  .counter-cur{font-size:30px;font-weight:700;color:var(--gold);line-height:1}
  .counter-sep{font-size:14px;color:rgba(201,162,39,.35);margin:0 4px}
  .counter-tot{font-size:13px;color:rgba(201,162,39,.5)}
  .slider-progress{position:absolute;bottom:0;left:0;right:0;z-index:25;height:3px;background:rgba(255,255,255,.06)}
  .slider-progress-bar{height:100%;background:var(--grad-gold);width:0%;box-shadow:0 0 8px rgba(201,162,39,.5)}
  .hero-scroll{position:absolute;bottom:106px;left:50%;transform:translateX(-50%);display:flex;flex-direction:column;align-items:center;gap:7px;cursor:pointer;z-index:20}
  .hero-scroll span{font-size:9px;letter-spacing:3px;color:var(--gray);text-transform:uppercase}
  .scroll-line{width:1px;height:34px;background:linear-gradient(to bottom,var(--gold),transparent);animation:scrollAnim 2s ease-in-out infinite}
  @keyframes scrollAnim{0%{opacity:0;transform:scaleY(0);transform-origin:top}50%{opacity:1;transform:scaleY(1)}100%{opacity:0;transform:scaleY(0);transform-origin:bottom}}  :root {
    --green: #1a3a2a;
    --green-mid: #235c3a;
    --green-light: #2d7a4f;
    --gold: #fad551;
    --gold-light: #fad551;
    --gold-pale: #f5e9c8;
    --white: #ffffff;
    --off-white: #f9f6f0;
    --light-grey: #f2ede4;
    --text-dark: #1a1a1a;
    --text-mid: #3d3d3d;
    --text-light: #7a7a7a;
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.07);
    --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
    --radius: 12px;
    --radius-lg: 20px;
  }
 .logo-icon img{
    height:63px;
    width:auto;
    object-fit:contain;
}
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
  html { scroll-behavior: smooth; }
 
  body {
    font-family: 'poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
  }
 
  h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; }
 
  /* ========== SCROLLBAR ========== */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--off-white); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
 
  /* ========== HEADER ========== */
  #header {
     top: 0; left: 0; right: 0; z-index: 1000;
    padding: 18px 5%;
    display: flex; align-items: center; justify-content: space-between;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
        background-color: #152f24;
  }
  #header.scrolled {
    background: var(--green);
    box-shadow: 0 4px 30px rgba(0,0,0,0.25);
    padding: 12px 5%;
  }
  .logo {
    display: flex; align-items: center; gap: 10px; text-decoration: none;
  }
  .logo-icon {
    width: 42px; height: 42px;
    background: var(--gold);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 700; color: var(--green);
  }
  .logo-text { display: flex; flex-direction: column; }
  .logo-text span:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 700; color: var(--white);
    line-height: 1;
  }
  .logo-text span:last-child {
    font-size: 15px; font-weight: 600; color: var(--gold-light);
    letter-spacing: 2px; text-transform: uppercase;
  }
  nav { display: flex; align-items: center; gap: 20px; }
  nav a {
    font-size: 15px; font-weight: 600; color: rgba(255, 255, 255, 0.85);
    text-decoration: none; letter-spacing: 0.8px; text-transform: uppercase;
    position: relative; padding-bottom: 4px;
    transition: color 0.3s;
  }
  nav a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
    background: var(--gold); transition: width 0.3s;
  }
  nav a:hover { color: var(--gold-light); }
  nav a:hover::after { width: 100%; }
  .header-right { display: flex; align-items: center; gap: 18px; }
  .header-phones { display: flex; flex-direction: column; gap: 2px; }
  .header-phones a {
    font-size: 11px; color: var(--gold-light); text-decoration: none; letter-spacing: 0.5px;
    transition: color 0.3s;
  }
  .header-phones a:hover { color: var(--white); }
  .btn-primary {
        background: #fad551;
    color: #217a06;
    border: none; border-radius: 6px;
    padding: 11px 22px;
    font-family: 'Jost', sans-serif;
    font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; text-decoration: none;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    display: inline-block;
  }
  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.4);
  }
  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 6px;
    padding: 11px 22px;
    font-family: 'Jost', sans-serif;
    font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; text-decoration: none;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
    display: inline-block;
  }
  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.1);
  }
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: all 0.3s;
  }
  .mobile-menu {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--green); z-index: 999;
    flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 600; color: var(--white);
    text-decoration: none; letter-spacing: 1px;
    transition: color 0.3s;
  }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-menu-close {
    position: absolute; top: 22px; right: 5%;
    background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer;
  }
  .mobile-menu-phones { display: flex; flex-direction: column; gap: 6px; align-items: center; margin-top: 10px; }
  .mobile-menu-phones a { font-size: 15px !important; color: var(--gold-light) !important; }
 
  /* ========== HERO ========== */
  #hero {
    min-height: 100vh; position: relative; display: flex; align-items: center;
    background: linear-gradient(135deg, #0d2018 0%, #1a3a2a 50%, #0f2a1c 100%);
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 70% 40%, rgba(201,168,76,0.12) 0%, transparent 60%),
      radial-gradient(ellipse at 20% 80%, rgba(45,122,79,0.2) 0%, transparent 50%);
  }
  .hero-pattern {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(255,255,255,0.5) 20px,
      rgba(255,255,255,0.5) 21px
    );
  }
  .hero-content {
    position: relative; z-index: 2;
    padding: 140px 5% 80px;
    max-width: 100%;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 100px;
    padding: 7px 18px;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
  }
  .hero-badge span {
    font-size: 11px; font-weight: 500; color: var(--gold-light);
    letter-spacing: 2px; text-transform: uppercase;
  }
  .hero-badge::before {
    content: ''; width: 6px; height: 6px;
    background: var(--gold); border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }
  .hero-title {
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 300; color: var(--white);
    line-height: 1; letter-spacing: -1px;
    margin-bottom: 8px;
    animation: fadeUp 0.8s 0.15s ease both;
  }
  .hero-title em {
    font-style: italic; color: var(--gold);
    display: block;
  }
  .hero-subtitle {
    font-size: clamp(15px, 2vw, 19px);
    font-weight: 300; color: rgba(255,255,255,0.65);
    line-height: 1.65; margin-bottom: 28px;
    font-family: 'Jost', sans-serif;
    max-width: 500px;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .hero-dev {
    font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold-light); font-weight: 400; margin-bottom: 6px;
    animation: fadeUp 0.8s 0.4s ease both;
  }
  .hero-location {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: rgba(255,255,255,0.6);
    margin-bottom: 42px;
    animation: fadeUp 0.8s 0.45s ease both;
  }
  .hero-location i { color: var(--gold); }
  .hero-ctas {
    display: flex; gap: 14px; flex-wrap: wrap;
    animation: fadeUp 0.8s 0.55s ease both;
  }
  .hero-visual {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 48%; display: flex; align-items: center; justify-content: center;
    z-index: 1;
  }
  .hero-card-float {
    position: absolute;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 20px 24px;
    animation: float 6s ease-in-out infinite;
  }
  .hero-card-float.card1 { top: 25%; right: 12%; animation-delay: 0s; }
  .hero-card-float.card2 { bottom: 30%; right: 5%; animation-delay: 2s; }
  .hero-card-float.card3 { top: 55%; right: 30%; animation-delay: 4s; }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
  .float-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
  .float-val { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--white); }
  .float-sub { font-size: 11px; color: rgba(255,255,255,0.5); }
  .hero-scroll {
    position: absolute; bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    z-index: 3;
    animation: fadeUp 1s 1s ease both;
  }
  .hero-scroll span {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,0.4);
  }
  .scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollDown 2s ease-in-out infinite;
  }
  @keyframes scrollDown {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
 
  /* ========== SECTION COMMON ========== */
  section { padding: 90px 5%; }
  .section-label {
    font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 10px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-label::before {
    content: ''; width: 30px; height: 1px; background: var(--gold);
  }
  .section-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400; color: var(--green);
    line-height: 1.15; margin-bottom: 16px;
  }
  .section-title em { font-style: italic; color: var(--green-light); }
  .section-desc {
    font-size: 19px; font-weight: 300; color: var(--text-light);
    line-height: 1.8; max-width: 580px;
  }
  .gold-line {
    width: 60px; height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    border-radius: 2px; margin: 18px 0;
  }
 
  /* ========== DEVELOPER SECTION ========== */
  #developer { background: var(--off-white); }
  .developer-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    max-width: 1100px; margin: 0 auto;
  }
  .dev-visual {
    position: relative; border-radius: var(--radius-lg);
    overflow: hidden; height: 420px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 16px;
  }
  .dev-visual-icon {
    width: 90px; height: 90px; border-radius: 50%;
    background: rgba(201,168,76,0.2);
    border: 2px solid rgba(201,168,76,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; color: var(--gold);
  }
  .dev-visual h3 {
    font-size: 32px; font-weight: 300; color: var(--white);
    font-family: 'Cormorant Garamond', serif; text-align: center;
  }
  .dev-visual p {
    font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold-light); text-align: center;
  }
  .dev-stats {
    display: flex; gap: 24px; margin-top: 28px; padding: 24px;
    background: rgba(255,255,255,0.07); border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    width: 80%;
  }
  .dev-stat { flex: 1; text-align: center; }
  .dev-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px; font-weight: 700; color: var(--gold);
  }
  .dev-stat-lbl { font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 1px; }
  .dev-info p {
    font-size: 15px; font-weight: 300; color: var(--text-mid);
     text-align:justify;
    line-height: 1.9; margin-bottom: 28px;
  }
  .dev-contact-list { display: flex; flex-direction: column; gap: 14px; }
  .dev-contact-item {
    display: flex; align-items: center; gap: 14px;
  }
  .dev-contact-icon {
    width: 38px; height: 38px; border-radius: 8px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 14px; flex-shrink: 0;
  }
  .dev-contact-item a, .dev-contact-item span {
    font-size: 14px; color: var(--text-mid); text-decoration: none;
    transition: color 0.3s;
  }
  .dev-contact-item a:hover { color: var(--green); }
 
  /* ========== PROJECT OVERVIEW ========== */
  #project { background: var(--white); }
  .project-inner { max-width: 1100px; margin: 0 auto; }
  .project-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 50px; }
  .highlights-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
    margin-top: 40px;
  }
  .highlight-card {
    background: var(--off-white);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  }
  .highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
  }
  .highlight-icon {
    font-size: 28px; color: var(--gold); margin-bottom: 12px;
  }
  .highlight-card h4 {
    font-family: 'Jost', sans-serif;
    font-size: 13px; font-weight: 600; color: var(--green);
    text-transform: uppercase; letter-spacing: 0.5px;
  }
 
  /* ========== AREA SPECS ========== */
  #area { background: var(--green); padding: 90px 5%; }
  .area-inner { max-width: 1100px; margin: 0 auto; }
  #area .section-label { color: var(--gold-light); }
  #area .section-label::before { background: var(--gold-light); }
  #area .section-title { color: var(--white); }
  #area .section-desc { color: rgba(255,255,255,0.6); }
  .area-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 50px; }
  .area-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative; overflow: hidden;
    transition: background 0.3s, border-color 0.3s;
  }
  .area-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
  }
  .area-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--gold);
  }
  .area-card-tag {
    display: inline-block;
    background: rgba(201,168,76,0.2);
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 100px; padding: 5px 16px;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 18px;
  }
  .area-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px; font-weight: 600; color: var(--white);
    margin-bottom: 4px;
  }
  .area-card-type {
    font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 24px;
  }
  .area-size {
    display: flex; align-items: baseline; gap: 6px; margin-bottom: 28px;
  }
  .area-size-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px; font-weight: 300; color: var(--gold);
    line-height: 1;
  }
  .area-size-unit { font-size: 16px; color: rgba(255,255,255,0.5); }
  .area-features { display: flex; flex-direction: column; gap: 10px; }
  .area-feature {
    display: flex; align-items: center; gap: 12px;
    font-size: 13px; color: rgba(255,255,255,0.75);
  }
  .area-feature i { color: var(--gold); width: 16px; }
 
  /* ========== FLOOR PLAN ========== */
  #floorplan { background: var(--off-white); }
  .floorplan-inner { max-width: 1100px; margin: 0 auto; }
  .fp-tabs {
    display: flex; gap: 0; margin: 40px 0 30px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius); overflow: hidden;
    width: fit-content;
  }
  .fp-tab {
    padding: 12px 28px;
    font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s;
    color: var(--text-light); background: none; border: none;
    font-family: 'Jost', sans-serif;
  }
  .fp-tab.active {
    background: var(--green); color: var(--white);
  }
  .fp-panel { display: none; }
  .fp-panel.active { display: block; }
  .fp-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  }
  .fp-item {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    padding: 18px 16px;
    transition: box-shadow 0.3s, border-color 0.3s;
  }
  .fp-item:hover { box-shadow: var(--shadow-sm); border-color: var(--gold); }
  .fp-item-label {
    font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--gold); font-weight: 500; margin-bottom: 6px;
  }
  .fp-item-name {
    font-size: 16px; font-weight: 600; color: var(--green); margin-bottom: 4px;
  }
  .fp-item-dim {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px; color: var(--text-mid);
  }
 
  /* ========== COMMON AREAS ========== */
  #common { background: var(--white); }
  .common-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    margin-top: 40px;
  }
  .common-card {
    background: var(--off-white);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: var(--radius);
    padding: 28px 20px; text-align: center;
    transition: all 0.3s;
  }
  .common-card:hover {
    background: var(--green); border-color: var(--green);
  }
  .common-card:hover .common-icon { background: rgba(255,255,255,0.15); color: var(--gold); }
  .common-card:hover .common-name, .common-card:hover .common-dim { color: var(--white); }
  .common-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(201,168,76,0.12); color: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin: 0 auto 14px;
    transition: all 0.3s;
  }
  .common-name {
    font-size: 16px; font-weight: 600; color: var(--green);
    margin-bottom: 6px; transition: color 0.3s;
  }
  .common-dim {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; color: var(--text-light); transition: color 0.3s;
  }
 
  /* ========== SPECIFICATIONS ========== */
  #specs { background: var(--green); padding: 90px 5%; }
  #specs .section-label { color: var(--gold-light); }
  #specs .section-label::before { background: var(--gold-light); }
  #specs .section-title { color: var(--white); }
  .specs-inner { max-width: 1100px; margin: 0 auto; }
  .specs-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    margin-top: 50px;
  }
  .spec-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 28px 24px;
    cursor: pointer;
    transition: all 0.3s;
  }
  .spec-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: var(--gold);
    transform: translateY(-4px);
  }
  .spec-header {
    display: flex; align-items: center; gap: 14px; margin-bottom: 14px;
  }
  .spec-icon {
    width: 42px; height: 42px; border-radius: 8px;
    background: rgba(201,168,76,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--gold); flex-shrink: 0;
  }
  .spec-name {
    font-size: 15px; font-weight: 600; color: var(--white);
  }
  .spec-details {
    font-size: 17px; color: rgba(255,255,255,0.55);
    line-height: 1.75;
  }
 
  /* ========== LOCATION ========== */
  #location { background: var(--off-white); }
  .location-inner { max-width: 1100px; margin: 0 auto; }
  .location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
  .proximity-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
    margin-top: 30px;
  }
  .prox-item {
    display: flex; align-items: center; gap: 12px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    padding: 14px 16px;
    transition: all 0.3s;
  }
  .prox-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
  }
  .prox-icon {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(201,168,76,0.12);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 14px; flex-shrink: 0;
  }
  .prox-info { flex: 1; }
  .prox-name { font-size: 17px; font-weight: 500; color: var(--text-dark); }
  .prox-dist { font-size: 13px; color: #787878; font-weight: 600; letter-spacing: 0.5px; }
  .map-container {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.06);
    height: 100%;
  }
  .map-container iframe { display: block; width: 100%; height: 500px; border: none; }
 
  /* ========== CONTACT ========== */
  #contact { background: var(--white); }
  .contact-inner { max-width: 1100px; margin: 0 auto; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
  .contact-info-card {
    background: var(--green);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    position: relative; overflow: hidden;
  }
  .contact-info-card::after {
    content: '';
    position: absolute; bottom: -30px; right: -30px;
    width: 180px; height: 180px;
    border: 40px solid rgba(255,255,255,0.04);
    border-radius: 50%;
  }
  .contact-info-card h3 {
    font-size: 28px; font-weight: 300; color: var(--white);
    margin-bottom: 8px;
  }
  .contact-info-card p {
    font-size: 13px; color: rgba(255,255,255,0.5);
    margin-bottom: 32px; line-height: 1.7;
  }
  .contact-items { display: flex; flex-direction: column; gap: 18px; }
  .contact-item {
    display: flex; align-items: flex-start; gap: 14px;
  }
  .contact-item-icon {
    width: 40px; height: 40px; border-radius: 8px;
    background: rgba(201,168,76,0.2);
    border: 1px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 15px; flex-shrink: 0; margin-top: 2px;
  }
  .contact-item-text { display: flex; flex-direction: column; gap: 3px; }
  .contact-item-text span:first-child { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }
  .contact-item-text a, .contact-item-text p {
    font-size: 14px; color: rgba(255,255,255,0.8); text-decoration: none;
    transition: color 0.3s; margin: 0;
  }
  .contact-item-text a:hover { color: var(--gold-light); }
  .form-card {
    background: var(--off-white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
  }
  .form-card h3 {
    font-size: 28px; font-weight: 400; color: var(--green);
    margin-bottom: 6px;
  }
  .form-card p { font-size: 13px; color: var(--text-light); margin-bottom: 28px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 18px; }
  .form-group label {
    display: block; font-size: 11px; font-weight: 500;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--text-light); margin-bottom: 7px;
  }
  .form-group input, .form-group textarea {
    width: 100%; padding: 13px 16px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-family: 'Jost', sans-serif; font-size: 14px; color: var(--text-dark);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none; resize: none;
  }
  .form-group input:focus, .form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  }
  .form-group textarea { height: 110px; }
  .btn-submit {
    width: 100%; padding: 15px;
    background: var(--green);
    color: var(--white);
    border: none; border-radius: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
  }
  .btn-submit:hover { background: var(--green-mid); transform: translateY(-2px); }
 
  /* ========== FOOTER ========== */
  footer {
        background-color: #152f24;
    border-top: 1px solid rgba(201,168,76,0.2);
    padding: 60px 5% 28px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px; max-width: 1100px; margin: 0 auto 50px;
  }
  .footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 600; color: var(--white); margin-bottom: 6px;
  }
  .footer-brand p {
    font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 24px;
    line-height: 1.7;
  }
  .footer-socials { display: flex; gap: 10px; }
  .footer-social {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
  }
  .footer-social:hover { background: var(--gold); color: var(--green); border-color: var(--gold); }
  .footer-col h4 {
    font-family: 'Jost', sans-serif;
    font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 18px;
  }
  .footer-links { display: flex; flex-direction: column; gap: 10px; }
  .footer-links a {
    font-size: 13px; color: rgba(255,255,255,0.5);
    text-decoration: none; transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--white); }
  .footer-contact-items { display: flex; flex-direction: column; gap: 12px; }
  .footer-contact-item {
    display: flex; align-items: flex-start; gap: 10px;
  }
  .footer-contact-item i { color: var(--gold); font-size: 12px; margin-top: 3px; }
  .footer-contact-item a, .footer-contact-item span {
    font-size: 13px; color: rgba(255,255,255,0.5);
    text-decoration: none; transition: color 0.3s; line-height: 1.5;
  }
  .footer-contact-item a:hover { color: var(--white); }
  .footer-bottom {
    max-width: 1100px; margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
  .footer-bottom span { font-size: 12px; color: rgba(255,255,255,0.25); }
 
  /* ========== SCROLL REVEAL ========== */
  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
 
  /* ========== RESPONSIVE ========== */
  @media (max-width: 1024px) {
    nav { display: none; }
    .header-phones { display: none; }
    .hamburger { display: flex; }
    .hero-visual { display: none; }
    .hero-content { max-width: 100%; }
    .developer-grid { grid-template-columns: 1fr; gap: 40px; }
    .dev-visual { height: 347px; }
    .project-header { grid-template-columns: 1fr; gap: 0; }
    .highlights-grid { grid-template-columns: repeat(3, 1fr); }
    .area-cards { grid-template-columns: 1fr 1fr; }
    .specs-grid { grid-template-columns: repeat(2, 1fr); }
    .location-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .common-grid { grid-template-columns: repeat(2, 1fr); }
    .fp-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 680px) {
    section { padding: 65px 4%; }
    #area, #specs { padding: 65px 4%; }
    footer { padding: 50px 4% 24px; }
    #header { padding: 14px 4%; }
    #header.scrolled { padding: 10px 4%; }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .area-cards { grid-template-columns: 1fr; }
    .specs-grid { grid-template-columns: 1fr; }
    .fp-grid { grid-template-columns: repeat(2, 1fr); }
    .common-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .proximity-grid { grid-template-columns: 1fr; }
    .form-card, .contact-info-card { padding: 28px 22px; }
    .hero-content { padding: 120px 4% 70px; }
    .dev-stats { width: 90%; }
  }
    