    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --purple: #4b4a2f;
      --purple-dark: #3a3920;
      --purple-light: #9ab60a;
      --purple-faint: #f3f5e8;
      --accent: #9ab60a;
      --text: #1a1a2e;
      --muted: #666;
      --white: #fff;
      --navy: #0e0b1e;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Open Sans', sans-serif;
      color: var(--text);
      background: #fff;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      background: transparent;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      padding: 0 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
      transition: background .3s, box-shadow .3s;
    }

    nav.scrolled {
      background: var(--purple);
      box-shadow: 0 2px 16px rgba(0, 0, 0, .25);
    }

    @media (max-width: 900px) {
      nav {
        background: var(--purple);
      }
    }

    /* offset page content so fixed nav doesn't overlap */
    body > .hero {
      margin-top: 0;
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 400;
      color: #fff;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255, 255, 255, .85);
      text-decoration: none;
      font-size: .875rem;
      font-weight: 500;
      letter-spacing: .3px;
      transition: color .2s;
    }

    .nav-links a:hover {
      color: var(--accent);
    }

    .nav-links a.active {
      color: #fff;
      border-bottom: 2px solid var(--accent);
      padding-bottom: 2px;
    }

    .nav-cta {
      background: var(--accent);
      color: var(--purple-dark) !important;
      padding: 8px 18px;
      border-radius: 4px;
      font-weight: 600 !important;
    }

    /* Hamburger */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      background: none;
      border: none;
    }

    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: transform .3s, opacity .3s;
    }

    .nav-hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav-hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .nav-hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-nav {
      display: none;
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      background: var(--purple-dark);
      z-index: 190;
      flex-direction: column;
      padding: 16px 5% 24px;
      border-top: 1px solid rgba(255, 255, 255, .1);
      transform: translateY(-10px);
      opacity: 0;
      transition: opacity .25s, transform .25s;
      pointer-events: none;
    }

    .mobile-nav.open {
      display: flex;
      transform: translateY(0);
      opacity: 1;
      pointer-events: all;
    }

    .mobile-nav a {
      color: rgba(255, 255, 255, .85);
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      padding: 13px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .mobile-nav a:last-child {
      border-bottom: none;
      margin-top: 6px;
    }

    .mobile-nav .nav-cta {
      display: inline-block;
      padding: 12px 24px;
      border-radius: 4px;
      text-align: center;
      background: var(--accent);
      color: var(--purple-dark) !important;
      font-weight: 700 !important;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 95vh;
      min-height: 520px;
      max-height: 1024px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('../images/hero-bg.jpg') center/cover no-repeat;
      transform: scale(1.05);
      animation: zoomOut 10s ease forwards;
    }

    @keyframes zoomOut {
      to {
        transform: scale(1);
      }
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(75, 74, 47, .62) 0%, rgba(154, 182, 10, .18) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 720px;
      padding: 0 24px;
      animation: fadeUp .9s ease both;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-tag {
      display: inline-block;
      background: var(--accent);
      color: var(--purple-dark);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 2px;
      margin-bottom: 20px;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 5.5vw, 3.8rem);
      font-weight: 400;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 18px;
    }

    .hero p {
      color: rgba(255, 255, 255, .82);
      font-size: 1.05rem;
      line-height: 1.7;
      max-width: 560px;
      margin: 0 auto 34px;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--accent);
      color: var(--purple-dark);
      padding: 14px 28px;
      border-radius: 4px;
      font-weight: 700;
      font-size: .9rem;
      text-decoration: none;
      letter-spacing: .5px;
      transition: transform .2s, box-shadow .2s;
      display: inline-block;
      cursor: pointer;
      border: none;
      font-family: 'Open Sans', sans-serif;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(154, 182, 10, .4);
    }

    .btn-outline {
      background: transparent;
      border: 2px solid rgba(255, 255, 255, .6);
      color: #fff;
      padding: 12px 26px;
      border-radius: 4px;
      font-weight: 600;
      font-size: .9rem;
      text-decoration: none;
      transition: border-color .2s, background .2s;
      display: inline-block;
      cursor: pointer;
      font-family: 'Open Sans', sans-serif;
    }

    .btn-outline:hover {
      border-color: #fff;
      background: rgba(255, 255, 255, .1);
    }

    .hero-scroll {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: rgba(255, 255, 255, .75);
      font-size: .72rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .hero-scroll::after {
      content: '';
      display: block;
      width: 1px;
      height: 40px;
      background: rgba(255, 255, 255, .3);
      animation: scrollLine 1.6s ease-in-out infinite;
    }

    @keyframes scrollLine {

      0%,
      100% {
        opacity: .3;
        transform: scaleY(1)
      }

      50% {
        opacity: 1;
        transform: scaleY(1.2)
      }
    }

    /* ── VIDEO ── */
    .video-section {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      background: #000;
      overflow: hidden;
      cursor: pointer;
    }

    .video-section video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .video-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 8, 25, .38);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
      transition: background .3s;
    }

    .video-section.playing .video-overlay {
      opacity: 0;
      pointer-events: none;
    }

    .video-play-btn {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .15);
      border: 2px solid rgba(255, 255, 255, .7);
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(4px);
      transition: background .2s, transform .2s;
    }

    .video-section:hover .video-play-btn {
      background: rgba(154, 182, 10, .85);
      border-color: var(--accent);
      transform: scale(1.08);
    }

    .video-play-btn svg {
      width: 28px;
      height: 28px;
      fill: #fff;
      margin-left: 4px;
    }

    .video-overlay-text {
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      font-size: clamp(1.2rem, 3vw, 2rem);
      color: #fff;
      letter-spacing: .5px;
      text-align: center;
    }

    /* ── STATS ── */
    .stats-bar {
      background: var(--purple);
      padding: 28px 5%;
      display: flex;
      justify-content: center;
      gap: clamp(30px, 6vw, 80px);
      flex-wrap: wrap;
    }

    .stat {
      text-align: center;
    }

    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 400;
      color: var(--accent);
      display: block;
    }

    .stat-label {
      color: rgba(255, 255, 255, .7);
      font-size: .8rem;
      letter-spacing: .5px;
      margin-top: 4px;
    }

    /* ── SECTION SHARED ── */
    section {
      padding: 90px 5%;
    }

    .section-tag {
      display: inline-block;
      color: var(--purple);
      border: 1.5px solid var(--purple);
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 2px;
      margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.7rem, 3.5vw, 2.5rem);
      font-weight: 400;
      line-height: 1.2;
      color: var(--text);
    }

    .section-sub {
      color: var(--muted);
      font-size: .95rem;
      line-height: 1.75;
      max-width: 580px;
      margin-top: 14px;
    }

    /* ── ABOUT ── */
    .about-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
    }

    .about-img-wrap {
      position: relative;
    }

    .about-img {
      width: 100%;
      object-fit: cover;
      border-radius: 4px;
      display: block;
    }

    .about-badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--accent);
      color: var(--purple-dark);
      padding: 18px 22px;
      border-radius: 4px;
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 400;
      text-align: center;
      line-height: 1.3;
      box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
    }

    .about-badge span {
      display: block;
      font-size: .72rem;
      font-family: 'Open Sans', sans-serif;
      font-weight: 400;
      margin-top: 4px;
      color: rgba(65, 37, 113, .7);
    }

    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      margin-top: 28px;
    }

    .feat-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .feat-icon {
      width: 40px;
      height: 40px;
      flex-shrink: 0;
      background: var(--purple-faint);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .feat-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--purple);
      fill: none;
      stroke-width: 1.8;
    }

    .feat-item h4 {
      font-size: .875rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 3px;
    }

    .feat-item p {
      font-size: .78rem;
      color: var(--muted);
      line-height: 1.5;
    }

    /* ── PROPERTIES ── */
    .properties-section {
      background: var(--purple-faint);
    }

    .props-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 50px;
    }

    .props-header .section-sub {
      margin: 14px auto 0;
    }

    .props-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .prop-card {
      background: #f9fafb;
      border-radius: 24px;
      border: 1px solid #f3f4f6;
      display: flex;
      flex-direction: column;
      gap: 24px;
      padding: 32px;
    }

    .prop-card-text {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .prop-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--text);
      line-height: 1.3;
    }

    .prop-card p {
      font-size: 1rem;
      color: #4b5563;
      line-height: 1.65;
    }

    .btn-enquire {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent);
      color: var(--purple-dark);
      padding: 10px 20px;
      border-radius: 10px;
      font-size: .82rem;
      font-weight: 700;
      text-decoration: none;
      transition: opacity .2s;
      cursor: pointer;
      border: none;
      font-family: 'Open Sans', sans-serif;
      width: fit-content;
    }

    .btn-enquire:hover {
      opacity: .88;
    }

    .btn-enquire svg {
      width: 14px;
      height: 14px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
    }

    /* ── WHY ── */
    .why-wrap {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
    }

    .why-img {
      position: relative;
    }

    .why-img img {
      width: 100%;
      border-radius: 4px;
      display: block;
      aspect-ratio: 3/4;
      object-fit: cover;
    }

    .why-img-accent {
      position: absolute;
      top: -16px;
      left: -16px;
      width: 60%;
      aspect-ratio: 1;
      border: 3px solid var(--accent);
      border-radius: 4px;
      z-index: -1;
    }

    .why-list {
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .why-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 18px 20px;
      background: #fff;
      border: 1px solid rgba(65, 37, 113, .1);
      border-radius: 6px;
      transition: border-color .2s, box-shadow .2s;
    }

    .why-item:hover {
      border-color: var(--purple);
      box-shadow: 0 4px 16px rgba(65, 37, 113, .08);
    }

    .why-num {
      width: 36px;
      height: 36px;
      flex-shrink: 0;
      background: var(--purple);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: .85rem;
      font-weight: 400;
    }

    .why-item h4 {
      font-size: .9rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 4px;
    }

    .why-item p {
      font-size: .8rem;
      color: var(--muted);
      line-height: 1.55;
    }

    /* ── INFRA ── */
    .infra-section {
      background: var(--navy);
      color: #fff;
    }

    .infra-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .infra-section .section-title {
      color: #fff;
    }

    .infra-section .section-tag {
      border-color: var(--accent);
      color: var(--accent);
    }

    .infra-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 24px;
    }

    .infra-item {
      display: flex;
      gap: 10px;
      align-items: center;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
      padding: 12px 14px;
      border-radius: 6px;
      font-size: .82rem;
      color: rgba(255, 255, 255, .8);
    }

    .infra-item svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      stroke: var(--accent);
      fill: none;
      stroke-width: 1.8;
      opacity: .9;
    }

    /* ── FAQs ── */
    .faq-section {
      background: #fff;
    }

    .faq-inner {
      max-width: 760px;
      margin: 0 auto;
    }

    .faq-inner .section-tag,
    .faq-inner .section-title {
      text-align: center;
      display: block;
    }

    .faq-inner .section-title {
      margin-bottom: 40px;
    }

    .faq-item {
      border-bottom: 1px solid #e8e0f5;
      overflow: hidden;
    }

    .faq-q {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
      font-size: .95rem;
      font-weight: 600;
      color: var(--text);
      font-family: 'Open Sans', sans-serif;
      text-align: left;
      gap: 16px;
    }

    .faq-q .faq-icon {
      width: 28px;
      height: 28px;
      flex-shrink: 0;
      border: 1.5px solid var(--purple);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--purple);
      transition: background .2s, color .2s, transform .3s;
      font-size: 1rem;
    }

    .faq-q.open .faq-icon {
      background: var(--purple);
      color: #fff;
      transform: rotate(45deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease, padding .35s;
      color: var(--muted);
      font-size: .88rem;
      line-height: 1.7;
    }

    .faq-a.open {
      max-height: 200px;
      padding-bottom: 18px;
    }

    /* ── CTA ── */
    .cta-section {
      background: linear-gradient(130deg, var(--purple) 0%, var(--purple-dark) 100%);
      padding: 80px 5%;
      text-align: center;
    }

    .cta-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 400;
      color: #fff;
      margin-bottom: 14px;
    }

    .cta-section p {
      color: rgba(255, 255, 255, .75);
      font-size: 1rem;
      max-width: 500px;
      margin: 0 auto 32px;
      line-height: 1.7;
    }

    .cta-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .cta-btn-icon {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .cta-btn-icon svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      color: rgba(255, 255, 255, .7);
      padding: 60px 5% 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 3fr 2fr;
      gap: 40px;
      max-width: 1100px;
      margin: 0 auto 50px;
    }

    .footer-links-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .footer-brand p {
      font-size: .83rem;
      line-height: 1.7;
      margin-top: 14px;
      /* max-width: 260px; */
    }

    footer h4 {
      color: #fff;
      font-size: .85rem;
      font-weight: 700;
      letter-spacing: .5px;
      margin-bottom: 16px;
      text-transform: uppercase;
    }

    footer ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    footer ul a {
      color: rgba(255, 255, 255, .65);
      text-decoration: none;
      font-size: .83rem;
      transition: color .2s;
    }

    footer ul a:hover {
      color: var(--accent);
    }

    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-contact-item {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: .82rem;
    }

    .footer-contact-item svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      margin-top: 1px;
      opacity: .7;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
    }

    .footer-socials {
      display: flex;
      gap: 16px;
      margin-top: 8px;
      flex-wrap: wrap;
    }

    .footer-socials a {
      color: rgba(255, 255, 255, .45);
      text-decoration: none;
      display: flex;
      align-items: center;
      transition: color .2s;
    }

    .footer-socials a svg {
      width: 18px;
      height: 18px;
    }

    .footer-socials a:hover {
      color: var(--accent);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding-top: 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
      font-size: .78rem;
      color: rgba(255, 255, 255, .35);
      flex-wrap: wrap;
      gap: 8px;
    }

    /* ── SOCIAL FOLLOW ── */
    .social-section {
      background: var(--navy);
      padding: 80px 5%;
      text-align: center;
    }

    .social-eyebrow {
      font-size: .72rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .45);
      font-weight: 600;
      margin-bottom: 10px;
    }

    .social-heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 400;
      color: #fff;
      margin-bottom: 48px;
    }

    .social-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
      max-width: 900px;
      margin: 0 auto;
    }

    .social-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      padding: 28px 24px;
      border-radius: 16px;
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .1);
      text-decoration: none;
      color: #fff;
      width: 148px;
      transition: background .2s, transform .2s, border-color .2s;
    }

    .social-card:hover {
      background: rgba(255, 255, 255, .14);
      transform: translateY(-5px);
      border-color: var(--accent);
    }

    .social-card-icon {
      width: 48px;
      height: 48px;
      background: rgba(255, 255, 255, .1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .social-card-icon svg {
      width: 24px;
      height: 24px;
    }

    .social-card-label {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .55);
    }

    /* ─────────────────────────────────────
       MODAL CONTACT FORM
    ───────────────────────────────────── */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(10, 8, 25, .7);
      backdrop-filter: blur(6px);
      z-index: 1000;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal-overlay.active {
      display: flex;
    }

    .modal {
      background: #fff;
      border-radius: 12px;
      width: 100%;
      max-width: 580px;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
      animation: modalSlideIn .3s cubic-bezier(.34, 1.26, .64, 1) both;
      position: relative;
    }

    @keyframes modalSlideIn {
      from {
        opacity: 0;
        transform: translateY(30px) scale(.97);
      }

      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .modal-header {
      padding: 28px 28px 0;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
    }

    .modal-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--text);
    }

    .modal-header p {
      font-size: .84rem;
      color: var(--muted);
      margin-top: 4px;
    }

    .modal-close {
      background: none;
      border: none;
      cursor: pointer;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #f4f4f4;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background .2s;
    }

    .modal-close:hover {
      background: #e8e8e8;
    }

    .modal-close svg {
      width: 16px;
      height: 16px;
      stroke: #555;
      fill: none;
      stroke-width: 2.5;
    }

    .modal-body {
      padding: 24px 28px 32px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 14px;
    }

    .form-group label {
      font-size: .78rem;
      font-weight: 600;
      color: var(--text);
      letter-spacing: .3px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      padding: 12px 14px;
      border: 1.5px solid #e2e2e2;
      border-radius: 8px;
      font-size: .9rem;
      font-family: 'Open Sans', sans-serif;
      color: var(--text);
      background: #fafafa;
      transition: border-color .2s, box-shadow .2s;
      outline: none;
      width: 100%;
      -webkit-appearance: none;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--purple);
      box-shadow: 0 0 0 3px rgba(75, 74, 47, .1);
      background: #fff;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 110px;
    }

    .form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
    }

    .phone-row {
      display: grid;
      grid-template-columns: 130px 1fr;
      gap: 12px;
    }

    .modal-submit {
      width: 100%;
      padding: 14px;
      background: var(--accent);
      color: var(--purple-dark);
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 700;
      font-family: 'Open Sans', sans-serif;
      cursor: pointer;
      letter-spacing: .3px;
      transition: transform .2s, box-shadow .2s, opacity .2s;
      margin-top: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .modal-submit:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(154, 182, 10, .4);
    }

    .modal-submit:disabled {
      opacity: .65;
      cursor: not-allowed;
      transform: none;
    }

    .modal-submit svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2.5;
    }

    .form-success {
      display: none;
      text-align: center;
      padding: 20px 0 10px;
    }

    .form-success-icon {
      width: 56px;
      height: 56px;
      background: var(--purple-faint);
      border-radius: 50%;
      margin: 0 auto 14px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .form-success-icon svg {
      width: 26px;
      height: 26px;
      stroke: var(--purple);
      fill: none;
      stroke-width: 2;
    }

    .form-success h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--text);
      margin-bottom: 8px;
    }

    .form-success p {
      font-size: .85rem;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ─── RESPONSIVE ─── */
    @media(max-width: 900px) {

      .about-wrap,
      .why-wrap,
      .infra-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
      }

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

      .footer-contact-col {
        grid-column: 1 / -1;
      }

      .about-badge {
        bottom: -10px;
        right: 10px;
      }

      .why-img {
        display: none;
      }

      .nav-links {
        display: none;
      }

      .nav-hamburger {
        display: flex;
      }
    }

    @media(max-width: 600px) {
      section {
        padding: 60px 5%;
      }

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

      .about-features {
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .phone-row {
        grid-template-columns: 110px 1fr;
      }

      .modal-body {
        padding: 20px 18px 28px;
      }

      .modal-header {
        padding: 22px 18px 0;
      }

      .modal-header h2 {
        font-size: 1.3rem;
      }

      .stats-bar {
        gap: 20px;
      }

      .stat-num {
        font-size: 1.5rem;
      }

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

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

      .hero p {
        font-size: .95rem;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .cta-btns {
        flex-direction: column;
        align-items: center;
      }

      .cta-btns .btn-primary,
      .cta-btns .btn-outline {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
      }
    }

/* spin animation */
    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }
