/* 
  DEPRECATED: This stylesheet is deprecated and no longer used by the HTML pages.
  The styling has been modularized and split into:
  - global.css
  - index.css
  - about.css
  - projects.css
  - contact.css
  Please refer to those stylesheets for active edits.
*/

    /* ─── TOKENS ─────────────────────────────────────────────────── */
      :root {
       --green:#e8a020;
        --green-dk: #059e74;
        --dark: #111827;
        --dark2: #1a2332;
        --body: #374151;
        --muted: #6b7280;
        --border: #e5e7eb;
        --surface: #f9fafb;
        --white: #ffffff;
        --ff: "Bricolage Grotesque", sans-serif;
        --ff-body: "Manrope", sans-serif;
        --r: 14px;
        --r-lg: 20px;
        --r-xl: 28px;
        --pill: 999px;
        --t: 0.22s ease;
      }

      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: var(--ff-body);
        color: var(--body);
        background: var(--white);
        overflow-x: hidden;
      }
      img {
        display: block;
        max-width: 100%;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      ul {
        list-style: none;
      }

      .container {
        max-width: 90vw;
        margin: 0 auto;
        padding: 0 40px;
      }

      /* ─── NAVBAR ─────────────────────────────────────────────────── */
      .nav {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 50;
        padding: 1vw 7vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #0d1b36
        /* background: #11182782; */
      }
      .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--ff);
        font-size: 22px;
        font-weight: 800;
        color: var(--white);
      }
      .nav-logo img {
        /* height: clamp(60px, 4.5vw, 55px); */
        width: auto;
        display: block;
      }
      .nav-logo-mark {
        width: 34px;
        height: 34px;
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.7);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .nav-logo-mark .material-icons-round {
        font-size: 18px;
        color: var(--white);
      }
      .nav-right {
        display: flex;
        align-items: center;
        gap: 28px;
      }
      .nav-phone {
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.85);
        font-size: 14px;
        font-weight: 600;
      }
      .nav-phone .material-icons-round {
        font-size: 16px;
      }
      .nav-menu-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.15);
        border: 1.5px solid rgba(255, 255, 255, 0.3);
        color: var(--white);
        padding: 10px 20px;
        border-radius: var(--pill);
        font-family: var(--ff);
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        transition: background var(--t);
        backdrop-filter: blur(8px);
      }
      .nav-menu-btn:hover {
        background: rgba(255, 255, 255, 0.25);
      }
      .nav-menu-btn .material-icons-round {
        font-size: 18px;
      }

      /* ─── HERO ───────────────────────────────────────────────────── */
      .hero {
        position: relative;
        min-height: 100vh;
        background: #0d1b36;
        overflow: hidden;
        display: flex;
        flex-direction: column;
      }
      .hero-body {
        position: relative;
        z-index: 2;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 120px 156px 160px;
      }
      .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 22px;
      }
      .hero-eyebrow::before {
        content: "";
        display: inline-block;
        width: 28px;
        height: 2px;
        background: var(--green);
      }
      .hero-title {
        font-family: var(--ff);
        font-size: clamp(52px, 4vw, 90px);
        font-weight: 800;
        line-height: 1.05;
        color: var(--white);
        letter-spacing: -2px;
        margin-bottom: 20px;
        max-width: 700px;
      }
      .hero-title em {
        font-style: italic;
        color: #e8b04a;
      }
      .hero-desc {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.7;
        max-width: 560px;
        margin-bottom: 36px;
      }
      .hero-actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        align-items: center;
      }
      .btn-hero-primary {
        background: var(--white);
        color: var(--body);
        font-family: var(--ff);
        font-size: 13px;
        font-weight: 800;
        padding: 16px 32px;
        border-radius: var(--pill);
        border: none;
        cursor: pointer;
        transition: var(--t);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-transform: uppercase;
        letter-spacing: 0.06em;
      }
      /* .btn-hero-primary:hover {
        background: var(--green-dk);
      } */
      .btn-hero-primary .material-icons-round {
        font-size: 18px;
      }
      .btn-hero-outline {
        background: transparent;    
        color: var(--white);
        font-family: var(--ff);
        font-size: 13px;
        font-weight: 700;
        padding: 16px 28px;
        border-radius: var(--pill);
        border: none;
        cursor: pointer;
        transition: var(--t);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        border: 1px solid var(--white);
      }
      /* .btn-hero-outline:hover {
        color: var(--green);
      } */
      .btn-hero-outline .material-icons-round {
        font-size: 18px;
      }
      /* Hero slide content transitions */
      .hero-slide-content {
        position: absolute;
        inset: 0;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 120px 156px 160px;
        opacity: 0;
        transition: opacity 0.8s ease 0.2s;
        pointer-events: none;
      }
      .hero-slide.active .hero-slide-content {
        opacity: 1;
        pointer-events: all;
      }
      /* Hero slider */
      .hero-slider {
        position: absolute;
        inset: 0;
        z-index: 0;
      }
      .hero-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 1.2s ease;
      }
      .hero-slide.active {
        opacity: 1;
        z-index: 1;
      }
      .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .hero-slide-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          105deg,
          rgba(13, 27, 54, 0.85) 0%,
          rgba(13, 27, 54, 0.55) 50%,
          rgba(13, 27, 54, 0.15) 100%
        );
      }

      /* Hero bottom bar */
      .hero-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10;
        background: #0d1b36;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 48px;
      }
      .hero-bar-contact {
        display: flex;
        align-items: center;
        gap: 14px;
      }
      .hero-bar-contact .icon {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1.5px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .hero-bar-contact .icon .material-icons-round {
        font-size: 20px;
        color: var(--green);
      }
      .hero-bar-contact .label {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.5);
      }
      .hero-bar-contact .number {
        font-family: var(--ff);
        font-size: 15px;
        font-weight: 800;
        color: var(--white);
      }
      .hero-bar-nav {
        display: flex;
        align-items: center;
        gap: 28px;
      }
      .hero-bar-dots {
        display: flex;
        align-items: center;
        gap: 6px;
      }
      .hero-bar-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.25);
        cursor: pointer;
        transition: all 0.3s ease;
      }
      .hero-bar-dot.active {
        width: 24px;
        border-radius: 4px;
        background: var(--green);
      }
      .hero-arrows {
        display: flex;
        gap: 8px;
      }
      .hero-arrow-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1.5px solid rgba(255, 255, 255, 0.25);
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all var(--t);
        color: var(--white);
      }
      .hero-arrow-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
      }
      .hero-arrow-btn .material-icons-round {
        font-size: 20px;
      }

      /* ─── CATEGORIES ─────────────────────────────────────────────── */
      .categories {
        padding: 40px 0 48px;
        background: var(--white);
      }
      .cat-inner {
        display: flex;
        flex-direction: column;
        gap: 24px;
      }
      /* Top row: text left, hero image right */
      .cat-top-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
      }
      .cat-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--dark);
        margin-bottom: 20px;
      }
      .cat-eyebrow-dot {
        width: 22px;
        height: 22px;
        background: var(--green);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .cat-eyebrow-dot .material-icons-round {
        font-size: 12px;
        color: var(--white);
      }
      .cat-title {
        font-family: var(--ff);
        font-size: clamp(30px, 3.5vw, 44px);
        font-weight: 800;
        line-height: 1.1;
        color: var(--dark);
        letter-spacing: -1px;
        margin-bottom: 16px;
      }
      .cat-desc {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.7;
        margin-bottom: 32px;
        max-width: 420px;
      }
      .btn-green {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #0d1b36;
        color: var(--white);
        font-family: var(--ff);
        font-size: 14px;
        font-weight: 700;
        padding: 14px 28px;
        border-radius: var(--pill);
        border: none;
        cursor: pointer;
        transition: background var(--t);
      }
      .btn-green:hover {
        background: var(--green-dk);
      }
      .cat-hero-img {
        border-radius: var(--r-xl);
        overflow: hidden;
        aspect-ratio: 16/10;
      }
      .cat-hero-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      /* Bottom row: large card left, two smaller cards right */
      .cat-bottom-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }
      .cat-bottom-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }
      .cat-sub-card {
        border-radius: var(--r-lg);
        overflow: hidden;
        position: relative;
        cursor: pointer;
      }
      .cat-sub-card.large {
        aspect-ratio: 2/1;
      }
      .cat-sub-card.small {
        aspect-ratio: 1/1.05;
      }
      .cat-sub-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
      }
      .cat-sub-card:hover img {
        transform: scale(1.06);
      }
      .cat-sub-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.6) 0%,
          rgba(0, 0, 0, 0.1) 40%,
          transparent 65%
        );
      }
      .cat-sub-card.large .cat-sub-overlay {
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.55) 0%,
          rgba(0, 0, 0, 0.08) 45%,
          transparent 70%
        );
      }
      .cat-sub-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px 22px;
      }
      .cat-sub-name {
        font-family: var(--ff);
        font-size: 18px;
        font-weight: 800;
        color: var(--white);
      }
      .cat-sub-card.small .cat-sub-name {
        font-size: 14px;
      }
      .cat-sub-desc {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.5;
        margin-top: 6px;
        max-width: 340px;
      }
      .cat-sub-arrow {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        background: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition:
          opacity var(--t),
          transform var(--t);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
      }
      .cat-sub-card:hover .cat-sub-arrow {
        transform: translate(2px, -2px);
      }
      .cat-sub-arrow .material-icons-round {
        font-size: 18px;
        color: var(--dark);
      }

      /* ─── PROPERTIES GRID ────────────────────────────────────────── */
      .properties {
        padding: 80px 0;
        background: var(--white);
      }
      .sec-head {
        text-align: center;
        margin-bottom: 52px;
      }
      .sec-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--dark);
        margin-bottom: 16px;
      }
      .sec-eyebrow-dot {
        width: 20px;
        height: 20px;
        background: var(--green);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .sec-eyebrow-dot .material-icons-round {
        font-size: 12px;
        color: var(--white);
      }
      .sec-title {
        font-family: var(--ff);
        font-size: clamp(28px, 3.5vw, 42px);
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -1px;
        color: var(--dark);
        margin-bottom: 10px;
      }
      .sec-sub {
        font-size: 15px;
        color: var(--muted);
      }
      .props-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .prop-card {
        border-radius: var(--r-lg);
        overflow: hidden;
        border: 1px solid var(--border);
        background: var(--white);
        transition:
          box-shadow var(--t),
          transform var(--t);
        cursor: pointer;
      }
      .prop-card:hover {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
        transform: translateY(-4px);
      }
      .prop-img {
        position: relative;
        aspect-ratio: 16/11;
        overflow: hidden;
      }
      .prop-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
      }
      .prop-card:hover .prop-img img {
        transform: scale(1.05);
      }
      .prop-arrow {
        position: absolute;
        top: 14px;
        right: 14px;
        width: 36px;
        height: 36px;
        background: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity var(--t);
      }
      .prop-card:hover .prop-arrow {
        opacity: 1;
      }
      .prop-arrow .material-icons-round {
        font-size: 18px;
        color: var(--dark);
      }
      .prop-body {
        padding: 18px 20px 20px;
      }
      .prop-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 6px;
      }
      .prop-name {
        font-family: var(--ff);
        font-size: 16px;
        font-weight: 800;
        color: var(--dark);
      }
      .prop-price-badge {
        position: absolute;
        top: 14px;
        right: 14px;
        background: #0d1b36;
        color: var(--white);
        font-family: var(--ff);
        font-size: 13px;
        font-weight: 800;
        padding: 5px 12px;
        border-radius: var(--pill);
        white-space: nowrap;
        z-index: 5;
      }
      .prop-addr {
        font-size: 12.5px;
        color: var(--muted);
        margin-bottom: 14px;
        display: flex;
        align-items: flex-start;
        gap: 4px;
      }
      .prop-addr .material-icons-round {
        font-size: 16px;
        color: var(--green);
        margin-top: 2px;
      }
      .prop-specs {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 14px;
        border-top: 1px solid var(--border);
      }
      .prop-specs-left {
        display: flex;
        gap: 16px;
      }
      .prop-spec {
        display: flex;
        align-items: flex-start;
        gap: 6px;
        font-size: 14px;
        color: var(--muted);
        font-weight: 600;
      }
      .prop-visit-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-family: var(--ff);
        font-size: 11px;
        font-weight: 800;
        color: var(--white);
        background: #0d1b36;
        padding: 6px 14px;
        border-radius: var(--pill);
        text-transform: uppercase;
        transition: background 0.2s ease, color 0.2s ease;
      }
      .prop-card:hover .prop-visit-btn {
        background: var(--green);
        color: var(--white);
      }
      .prop-visit-btn .material-icons-round {
        font-size: 13px;
        color: var(--white);
        transition: transform 0.2s ease;
      }
      .prop-card:hover .prop-visit-btn .material-icons-round {
        transform: translateX(3px);
      }
      .prop-spec .material-icons-round {
        font-size: 16px;
        color: var(--dark);
        margin-top: 2px;
      }

      /* ─── FEATURED PROPERTY ──────────────────────────────────────── */
      .featured {
        padding: 80px 0;
        background: var(--surface);
      }
      .feat-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: center;
      }
      .feat-slider {
        position: relative;
      }
      .feat-img-wrap {
        border-radius: var(--r-xl);
        overflow: hidden;
        aspect-ratio: 4/4.2;
      }
      .feat-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .feat-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 0 16px;
        pointer-events: none;
      }
      .feat-nav-btn {
        width: 44px;
        height: 44px;
        background: var(--dark);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        pointer-events: all;
        transition: background var(--t);
      }
      .feat-nav-btn:hover {
        background: #222;
      }
      .feat-nav-btn .material-icons-round {
        font-size: 20px;
        color: var(--white);
      }
      .feat-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 14px;
      }
      .feat-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--border);
      }
      .feat-dot.active {
        background: var(--green);
      }

      .feat-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--dark);
        margin-bottom: 14px;
      }
      .feat-title {
        font-family: var(--ff);
        font-size: clamp(28px, 3.5vw, 42px);
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -1px;
        color: var(--dark);
        margin-bottom: 8px;
      }
      .feat-addr {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        color: var(--muted);
        margin-bottom: 18px;
      }
      .feat-addr .material-icons-round {
        font-size: 15px;
      }
      .feat-desc {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.75;
        margin-bottom: 28px;
      }
      .feat-perks {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-bottom: 32px;
      }
      .feat-perk {
        display: flex;
        gap: 16px;
        align-items: flex-start;
      }
      .feat-perk-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 2px;
      }
      .feat-perk-icon .material-icons-round {
        font-size: 18px;
        color: var(--dark);
      }
      .feat-perk-title {
        font-family: var(--ff);
        font-size: 14px;
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 2px;
      }
      .feat-perk-desc {
        font-size: 13px;
        color: var(--muted);
      }
      .feat-cta {
        display: flex;
        align-items: center;
        gap: 28px;
      }
      .feat-price {
        font-family: var(--ff);
        font-size: 32px;
        font-weight: 800;
        color: var(--dark);
      }
      .feat-price-lbl {
        font-size: 12px;
        color: var(--muted);
      }

      /* ─── BLOG ───────────────────────────────────────────────────── */
      .blog {
        padding: 80px 0;
        background: var(--white);
      }
      .blog-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 48px;
      }
      .blog-sec-title {
        font-family: var(--ff);
        font-size: clamp(26px, 3vw, 38px);
        font-weight: 800;
        letter-spacing: -0.5px;
        color: var(--dark);
      }
      .blog-sec-sub {
        font-size: 13px;
        color: var(--muted);
        margin-top: 6px;
      }
      .btn-dark {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--dark);
        color: var(--white);
        font-family: var(--ff);
        font-size: 13px;
        font-weight: 700;
        padding: 12px 24px;
        border-radius: var(--pill);
        border: none;
        cursor: pointer;
        transition: background var(--t);
        white-space: nowrap;
      }
      .btn-dark:hover {
        background: #222;
      }
      .blog-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .blog-card {
        cursor: pointer;
      }
      .blog-img {
        border-radius: var(--r-lg);
        overflow: hidden;
        aspect-ratio: 4/3;
        margin-bottom: 14px;
      }
      .blog-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
      }
      .blog-card:hover .blog-img img {
        transform: scale(1.04);
      }
      .blog-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
      }
      .blog-title {
        font-family: var(--ff);
        font-size: 16px;
        font-weight: 800;
        color: var(--dark);
      }
      .blog-date {
        font-size: 12px;
        color: var(--muted);
      }
      .blog-tag {
        font-size: 11px;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: var(--pill);
        border: 1px solid var(--border);
        color: var(--muted);
      }

      /* ─── CTA BANNER ─────────────────────────────────────────────── */
      .cta-banner {
        position: relative;
        min-height: 320px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
      }
      .cta-banner-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .cta-overlay {
        position: absolute;
        inset: 0;
        background: rgba(15, 20, 25, 0.65);
      }
      .cta-content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 72px 40px;
        max-width: 680px;
      }
      .cta-title {
        font-family: var(--ff);
        font-size: clamp(24px, 4vw, 46px);
        font-weight: 800;
        color: var(--white);
        line-height: 1.15;
        letter-spacing: -1px;
        margin-bottom: 32px;
      }
      .btn-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--white);
        color: var(--dark);
        font-family: var(--ff);
        font-size: 14px;
        font-weight: 800;
        padding: 14px 32px;
        border-radius: var(--pill);
        border: none;
        cursor: pointer;
        transition: var(--t);
      }
      .btn-cta:hover {
        background: #f0f0f0;
      }

      /* ─── FAQ ────────────────────────────────────────────────────── */
      .faq {
        padding: 80px 0;
        background: var(--white);
      }
      .faq-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: start;
      }
      .faq-imgs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 14px;
        aspect-ratio: 1/1;
      }
      .faq-img {
        border-radius: var(--r-lg);
        overflow: hidden;
      }
      .faq-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .faq-title {
        font-family: var(--ff);
        font-size: clamp(28px, 3vw, 40px);
        font-weight: 800;
        letter-spacing: -1px;
        color: var(--dark);
        margin-bottom: 10px;
      }
      .faq-sub {
        font-size: 14px;
        color: var(--muted);
        margin-bottom: 32px;
        line-height: 1.7;
      }
      .faq-list {
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      .faq-item {
        border: 1px solid var(--border);
        border-radius: var(--r);
        overflow: hidden;
        margin-bottom: 10px;
      }
      .faq-q {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
        cursor: pointer;
        font-family: var(--ff);
        font-size: 14px;
        font-weight: 700;
        color: var(--dark);
        transition: background var(--t);
      }
      .faq-q:hover {
        background: var(--surface);
      }
      .faq-q .material-icons-round {
        font-size: 18px;
        color: var(--muted);
        transition: transform var(--t);
      }
      .faq-item.open .faq-q .material-icons-round {
        transform: rotate(180deg);
      }
      .faq-a {
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.35s ease,
          padding 0.3s ease;
        padding: 0 20px;
        font-size: 14px;
        color: var(--muted);
        line-height: 1.7;
      }
      .faq-item.open .faq-a {
        max-height: 200px;
        padding: 0 20px 18px;
      }

      /* ─── NEWSLETTER ─────────────────────────────────────────────── */
      .newsletter {
        background: var(--dark2);
        padding: 40px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      }
      .newsletter-inner {
        display: flex;
        align-items: center;
        gap: 32px;
        flex-wrap: wrap;
      }
      .newsletter-text {
        flex: 1;
        min-width: 240px;
      }
      .newsletter-text p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 500;
        line-height: 1.5;
      }
      .newsletter-text strong {
        display: block;
        font-family: var(--ff);
        font-size: 16px;
        font-weight: 800;
        color: var(--white);
        margin-bottom: 4px;
      }
      .newsletter-form {
        display: flex;
        gap: 0;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--pill);
        overflow: hidden;
        width: 100%;
        max-width: 420px;
      }
      .newsletter-form input {
        background: transparent;
        border: none;
        outline: none;
        padding: 13px 22px;
        font-family: var(--ff-body);
        font-size: 14px;
        color: var(--white);
        flex: 1;
        min-width: 0;
      }
      .newsletter-form input::placeholder {
        color: rgba(255, 255, 255, 0.4);
      }
      .newsletter-form button {
        background: var(--white);
        color: var(--dark);
        border: none;
        font-family: var(--ff);
        font-size: 13px;
        font-weight: 800;
        padding: 13px 24px;
        cursor: pointer;
        transition: background var(--t);
      }
      .newsletter-form button:hover {
        background: #f0f0f0;
      }
      .newsletter-note {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.4);
        max-width: 280px;
        line-height: 1.5;
      }
      .newsletter-socials {
        display: flex;
        gap: 14px;
      }
      .nl-social {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        cursor: pointer;
        transition: border-color var(--t);
      }
      .nl-social:hover {
        border-color: rgba(255, 255, 255, 0.4);
      }
      .nl-social .material-icons-round {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.5);
      }

      /* ─── FOOTER ─────────────────────────────────────────────────── */
      .footer {
        background: var(--dark2);
        padding: 64px 0 40px;
      }
      .footer-inner {
        display: grid;
        grid-template-columns: 1.6fr 1fr 1fr 1fr;
        gap: 40px;
        /* margin-bottom: 52px; */
      }
      .footer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--ff);
        font-size: 20px;
        font-weight: 800;
        color: var(--white);
        margin-bottom: 14px;
      }
      .footer-logo img {
        height: clamp(70px, 4.5vw, 55px);
        width: auto;
        display: block;
      }
      .footer-logo-icon {
        width: 32px;
        height: 32px;
        background: transparent;
        border: 1.5px solid rgba(255, 255, 255, 0.4);
        border-radius: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .footer-logo-icon .material-icons-round {
        font-size: 16px;
        color: var(--white);
      }
      .footer-brand-cta {
        margin-bottom: 12px;
      }
      .footer-cta-title {
        font-family: var(--ff);
        font-size: clamp(22px, 3vw, 36px);
        font-weight: 800;
        color: var(--white);
        line-height: 1.15;
        letter-spacing: -0.5px;
        margin-bottom: 24px;
      }
      .footer-col-title {
        font-family: var(--ff);
        font-size: 13px;
        font-weight: 800;
        color: var(--white);
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
      }
      .footer-links {
        display: flex;
        flex-direction: column;
        gap: 13px;
      }
      .footer-links a {
        font-size: 13.5px;
        color: rgba(255, 255, 255, 0.5);
        transition: color var(--t);
      }
      .footer-links a:hover {
        color: var(--green);
      }
      .footer-links a.active {
        color: var(--white);
        font-weight: 700;
      }
      .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        gap: 16px;
        flex-wrap: wrap;
      }
      .footer-copy {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.3);
      }

      /* ─── SLIDE MENU ─────────────────────────────────────────────── */
      .menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 200;
        display: none;
      }
      .menu-overlay.open {
        display: block;
      }
      .menu-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.2);
      }
      .menu-panel {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: min(500px, 100%);
        background: #141e2a;
        display: flex;
        flex-direction: column;
        padding: 48px 56px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.35s ease;
      }
      .menu-overlay.open .menu-panel {
        transform: translateX(0);
      }
      .menu-close {
        position: absolute;
        top: 32px;
        right: 32px;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background var(--t);
      }
      .menu-close:hover {
        background: rgba(255, 255, 255, 0.18);
      }
      .menu-close .material-icons-round {
        font-size: 20px;
        color: var(--white);
      }
      .menu-nav {
        margin-top: 32px;
        display: flex;
        flex-direction: column;
        gap: 4px;
      }
      .menu-nav a {
        font-family: var(--ff);
        font-size: 38px;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.45);
        letter-spacing: -1px;
        padding: 6px 0;
        transition: color var(--t);
        display: flex;
        align-items: center;
        gap: 16px;
      }
      .menu-nav a::before {
        content: "—";
        font-size: 24px;
        color: transparent;
        transition: color var(--t), transform var(--t);
        transform: translateX(-10px);
        display: inline-block;
      }
      .menu-nav a:hover {
        color: #e8b04a;
      }
      .menu-nav a:hover::before {
        color: #e8b04a;
        transform: translateX(0);
      }
      .menu-nav a.active {
        color: #e8b04a;
      }
      .menu-nav a.active::before {
        color: #e8b04a;
        transform: translateX(0);
      }
      .menu-contact {
        margin-top: 52px;
      }
      .menu-contact-title {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.35);
        margin-bottom: 12px;
      }
      .menu-contact a {
        display: block;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 6px;
        transition: color var(--t);
      }
      .menu-contact a:hover {
        color: var(--white);
      }
      .menu-contact-links,
      .menu-social-links {
        display: flex;
        gap: 12px;
        margin-top: 8px;
      }
      .menu-contact-links a,
      .menu-social-links a {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.75) !important;
        font-size: 18px;
        transition: all 0.25s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 0 !important;
      }
      .menu-contact-links a .material-icons-round {
        font-size: 20px;
      }
      .menu-contact-links a:hover,
      .menu-socials-links a:hover {
        background: var(--green) !important;
        color: var(--white) !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(232, 160, 32, 0.3);
        border-color: var(--green) !important;
      }
      .menu-socials {
        margin-top: 32px;
      }
      .menu-socials-title {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.35);
        margin-bottom: 12px;
      }
      .menu-socials a {
        display: block;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 6px;
        transition: color var(--t);
      }
      .menu-socials a:hover {
        color: var(--white);
      }

      /* ─── NAVBAR DESKTOP LINKS ───────────────────────────────────── */
      .nav-links {
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .nav-links a {
        font-family: var(--ff-body);
        font-size: 14px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.7);
        padding: 8px 16px;
        border-radius: var(--pill);
        transition: all 0.22s ease;
      }
      .nav-links a:hover {
        color: var(--white);
        background: rgba(255, 255, 255, 0.08);
      }
      .nav-links a.active {
        color: var(--white);
        background: rgba(255, 255, 255, 0.15);
      }
      @media (max-width: 768px) {
        .nav-links {
          display: none !important;
        }
      }

      /* ─── SLIDE MENU CONTENT Redesign ────────────────────────── */
      .menu-logo {
        margin-bottom: 30px;
      }
      .menu-logo img {
        height: 50px;
        width: auto;
        display: block;
      }
      .menu-about, .menu-contact-section {
        margin-top: 35px;
      }
      .menu-about h3, .menu-contact-section h3 {
        font-family: var(--ff);
        font-size: 22px;
        font-weight: 800;
        color: var(--white);
        margin-bottom: 16px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-transform: capitalize;
        letter-spacing: 0;
      }
      .menu-about p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.6;
        margin-bottom: 20px;
        /* text-align: justify; */
      }
      .btn-menu-readmore {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #e8a020;
        color: #111827;
        font-family: var(--ff);
        font-size: 13px;
        font-weight: 800;
        padding: 10px 20px;
        border-radius: var(--pill);
        transition: all 0.25s ease;
        text-transform: uppercase;
        letter-spacing: 0.05em;
      }
      .btn-menu-readmore:hover {
        background: var(--white);
        color: #e8a020;
        transform: translateY(-2px);
      }
      .btn-menu-readmore span.material-icons-round {
        font-size: 15px;
        background: rgba(17, 24, 39, 0.1);
        padding: 3px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }
      .menu-contact-section ul {
        display: flex;
        flex-direction: column;
        gap: 14px;
      }
      .menu-contact-section li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.65);
      }
      .menu-contact-section li span.material-icons-round {
        font-size: 18px;
        color: #e8a020;
      }
      .menu-contact-section li a {
        color: rgba(255, 255, 255, 0.65);
        transition: color var(--t);
      }
      .menu-contact-section li a:hover {
        color: var(--white);
      }
      .menu-socials-section {
        display: flex;
        gap: 10px;
        margin-top: 35px;
      }
      .menu-socials-section a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #e8a020;
        color: #111827;
        font-size: 15px;
        transition: all 0.25s ease;
      }
      .menu-socials-section a:hover {
        background: var(--white);
        color: #e8a020;
        transform: translateY(-2px);
      }
      @media (max-width: 768px) {
        .menu-panel {
          width: 100% !important;
        }
      }
      @media (min-width: 769px) {
        .mobile-only-nav {
          display: none !important;
        }
      }

      /* ─── RESPONSIVE ─────────────────────────────────────────────── */
      @media (max-width: 1023px) {
        .cat-top-row,
        .feat-inner,
        .faq-inner {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .cat-bottom-row {
          grid-template-columns: 1fr;
        }
        .cat-bottom-right {
          grid-template-columns: 1fr 1fr;
        }
        .props-grid,
        .blog-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .footer-inner {
          grid-template-columns: 1fr 1fr;
        }
        .specs-bar {
          left: 20%;

          .hero-bar{
            display: none;
          }
        }
      }
      @media (max-width: 768px) {
        .container {
          padding: 0 20px;
        }
        .nav {
          padding: 20px;
        }
        .nav-phone {
          display: none;
        }
        .menu-panel {
          padding: 40px 24px;
        }
        .menu-close {
          top: 24px;
          right: 24px;
        }
        .menu-nav a {
          font-size: 28px;
        }
        .hero-body {
          padding: 100px 20px 200px;
        }
        .hero-slide-content {
          padding: 100px 24px 140px;
        }
        .hero-title {
          font-size: 48px;
        }
        .props-grid,
        .blog-grid {
          grid-template-columns: 1fr;
        }
        .cat-bottom-row {
          grid-template-columns: 1fr;
        }
        .cat-bottom-right {
          grid-template-columns: 1fr;
        }
        .specs-bar {
          left: 0;
          right: 0;
          border-radius: 0;
        }
        .spec-item {
          padding: 16px 10px;
        }
        .newsletter-inner {
          flex-direction: column;
          gap: 20px;
        }
        .newsletter-form {
          width: 100%;
        }
        .newsletter-form input {
          min-width: 0;
        }
        .footer-inner {
          grid-template-columns: 1fr;
        }
        .blog-head {
          flex-direction: column;
          align-items: flex-start;
          gap: 16px;
        }
        .feat-inner {
          grid-template-columns: 1fr;
        }
        .faq-inner {
          grid-template-columns: 1fr;
        }
        .faq-imgs {
          aspect-ratio: auto;
        }
      }

      @media (max-width: 480px) {
        .newsletter-form {
          flex-direction: column;
          background: transparent;
          border: none;
          border-radius: 0;
          gap: 10px;
          width: 100%;
        }
        .newsletter-form input {
          background: rgba(255, 255, 255, 0.07);
          border: 1px solid rgba(255, 255, 255, 0.12);
          border-radius: 30px;
          width: 100%;
          min-width: 0;
          padding: 13px 20px;
          box-sizing: border-box;
        }
        .newsletter-form button {
          border-radius: 30px;
          width: 100%;
          padding: 13px 20px;
          box-sizing: border-box;
        }
      }

      /* ─── ANIMATIONS ─────────────────────────────────────────────── */
      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }