:root {
    --white: #ffffff;
    --blue-50: #f4f7fa;
    --blue-100: #e1e8f0;
    --blue-200: #cad5e2;
    --blue-300: #d9cab6;
    --blue-400: #849dbb;
    --blue-400: #849dbb;
    --blue-light: #5f7fa3;
    --blue-main: #365f8a;
    --blue-main-dark: #1e3e62;
    --blue-main-deep: #0a1d37;
    --gold: #c9a96e;
    --gold-light: #e8d5a8;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Jost', sans-serif;
    background: var(--white);
    color: var(--blue-main-deep);
    overflow-x: hidden;
  }



    /* ─── NAV ─── */
    nav {
        position: fixed;
        top: 0; left: 0; right: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.2rem 5%;
        background: rgba(255,255,255,0.92);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--blue-200);
        transition: all 0.3s ease;
      }
  
      .nav-logo {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.9rem;
        font-weight: 600;
        color: var(--blue-main-dark);
        letter-spacing: 0.05em;
        text-decoration: none;
      }
  
      .nav-logo span {
        color: var(--gold);
      }
  
      .nav-links {
        display: flex;
        gap: 2.5rem;
        list-style: none;
      }
  
      .nav-links a {
        font-size: 0.78rem;
        font-weight: 500;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--blue-main);
        text-decoration: none;
        position: relative;
        transition: color 0.3s;
      }
  
      .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--gold);
        transition: width 0.3s ease;
      }
  
      .nav-links a:hover { color: var(--blue-main-deep); }
      .nav-links a:hover::after { width: 100%; }
  
      .nav-cta {
        background: var(--blue-main-dark);
        color: var(--blue-100) !important;
        padding: 0.6rem 1.5rem;
        border-radius: 2px;
      }
  
      .nav-cta::after { display: none; }
      .nav-cta:hover { background: var(--blue-main) !important; }
  
      /* ─── HERO ─── */
      .hero {
        min-height: 100vh;
        display: grid;
        grid-template-columns: 1fr 1fr;
        position: relative;
        overflow: hidden;
        padding-top: 80px;
      }
  
      .hero-left {
        background: var(--blue-50);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 8% 6% 8% 8%;
        position: relative;
      }
  
      .hero-left::after {
        content: '';
        position: absolute;
        right: -1px;
        top: 0;
        bottom: 0;
        width: 1px;
        background: var(--blue-300);
      }
  
      .hero-eyebrow {
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
      }
  
      .hero-eyebrow::before {
        content: '';
        display: block;
        width: 2rem;
        height: 1px;
        background: var(--gold);
      }
  
      .hero-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(3.2rem, 5vw, 5.5rem);
        font-weight: 300;
        line-height: 1.1;
        color: var(--blue-main-deep);
        margin-bottom: 1rem;
      }
  
      .hero-title em {
        font-style: italic;
        color: var(--blue-light);
      }
  
      .hero-subtitle {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.15rem;
        font-weight: 400;
        font-style: italic;
        color: var(--blue-400);
        margin-bottom: 2.5rem;
        line-height: 1.6;
        max-width: 26rem;
      }
  
      .hero-desc {
        font-size: 0.88rem;
        font-weight: 300;
        color: var(--blue-light);
        line-height: 1.9;
        max-width: 28rem;
        margin-bottom: 3rem;
      }
  
      .hero-actions {
        display: flex;
        gap: 1rem;
        align-items: center;
      }
  
      .btn-primary {
        background: var(--blue-main-dark);
        color: var(--blue-100);
        padding: 0.85rem 2.2rem;
        font-size: 0.78rem;
        font-weight: 500;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        text-decoration: none;
        border-radius: 2px;
        transition: all 0.3s ease;
        border: 1px solid var(--blue-main-dark);
      }
  
      .btn-primary:hover {
        background: var(--blue-main-deep);
        border-color: var(--blue-main-deep);
      }
  
      .btn-ghost {
        color: var(--blue-main);
        font-size: 0.78rem;
        font-weight: 500;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: color 0.3s;
      }
  
      .btn-ghost:hover { color: var(--blue-main-deep); }
  
      .btn-ghost svg {
        transition: transform 0.3s;
      }
  
      .btn-ghost:hover svg { transform: translateX(4px); }
  
      .hero-right {
        position: relative;
        background: var(--blue-100);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
      }
  
      .hero-pattern {
        position: absolute;
        inset: 0;
        opacity: 0.35;
      }
  
      .hero-card {
        position: relative;
        z-index: 1;
        background: var(--white);
        border: 1px solid var(--blue-300);
        padding: 2.5rem;
        max-width: 320px;
        width: 90%;
        border-radius: 2px;
        box-shadow: 24px 24px 0 var(--blue-300);
      }
  
      .hero-card-label {
        font-size: 0.68rem;
        font-weight: 500;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 1.2rem;
      }
  
      .hero-stat {
        font-family: 'Cormorant Garamond', serif;
        font-size: 3.8rem;
        font-weight: 300;
        color: var(--blue-main-dark);
        line-height: 1;
        margin-bottom: 0.4rem;
      }
  
      .hero-stat-desc {
        font-size: 0.82rem;
        color: var(--blue-400);
        font-weight: 300;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--blue-200);
      }
  
      .hero-card-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
      }
  
      .hero-card-list li {
        font-size: 0.82rem;
        font-weight: 400;
        color: var(--blue-light);
        display: flex;
        align-items: center;
        gap: 0.6rem;
      }
  
      .hero-card-list li::before {
        content: '';
        display: block;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--gold);
        flex-shrink: 0;
      }
  
      /* ─── MARQUEE ─── */
      .marquee-wrap {
        background: var(--blue-main-dark);
        padding: 0.85rem 0;
        overflow: hidden;
        position: relative;
      }
  
      .marquee-track {
        display: flex;
        gap: 3rem;
        white-space: nowrap;
        animation: marquee 20s linear infinite;
      }
  
      .marquee-item {
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--gold-light);
        display: flex;
        align-items: center;
        gap: 1.5rem;
        flex-shrink: 0;
      }
  
      .marquee-sep {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--gold);
        display: inline-block;
      }
  
      @keyframes marquee {
        from { transform: translateX(0); }
        to { transform: translateX(-50%); }
      }
  
      /* ─── ABOUT STRIP ─── */
      .about-strip {
        padding: 6rem 8%;
        display: grid;
        grid-template-columns: 1fr 2px 1fr;
        gap: 5rem;
        align-items: center;
        background: var(--white);
      }
  
      .divider-v {
        background: var(--blue-200);
        align-self: stretch;
      }
  
      .about-left {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }
  
      .section-label {
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--gold);
        display: flex;
        align-items: center;
        gap: 0.75rem;
      }
  
      .section-label::before {
        content: '';
        display: block;
        width: 1.5rem;
        height: 1px;
        background: var(--gold);
      }
  
      .about-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(2rem, 3vw, 3rem);
        font-weight: 300;
        line-height: 1.15;
        color: var(--blue-main-deep);
      }
  
      .about-title em {
        font-style: italic;
        color: var(--blue-light);
      }
  
      .about-text {
        font-size: 0.88rem;
        font-weight: 300;
        color: var(--blue-light);
        line-height: 2;
      }
  
      .about-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
      }
  
      .about-stat-card {
        background: var(--blue-50);
        border: 1px solid var(--blue-200);
        padding: 1.5rem;
        border-radius: 2px;
      }
  
      .about-stat-num {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2.5rem;
        font-weight: 300;
        color: var(--blue-main-dark);
        line-height: 1;
        margin-bottom: 0.4rem;
      }
  
      .about-stat-label {
        font-size: 0.75rem;
        color: var(--blue-400);
        font-weight: 400;
      }
  
      .about-stat-card.accent {
        background: var(--blue-main-dark);
        border-color: var(--blue-main-dark);
      }
  
      .about-stat-card.accent .about-stat-num {
        color: var(--gold-light);
      }
  
      .about-stat-card.accent .about-stat-label {
        color: var(--blue-400);
      }
  
      /* ─── SERVICES ─── */
      .services {
        background: var(--blue-50);
        padding: 7rem 8%;
      }
  
      .services-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 4rem;
      }
  
      .services-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(2rem, 3vw, 3.2rem);
        font-weight: 300;
        color: var(--blue-main-deep);
        line-height: 1.1;
      }
  
      .services-title em {
        font-style: italic;
        color: var(--blue-light);
      }
  
      .services-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5px;
        background: var(--blue-300);
      }
  
      .service-card {
        background: var(--white);
        padding: 2.5rem;
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
      }
  
      .service-card::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
      }
  
      .service-card:hover::before { transform: scaleX(1); }
  
      .service-card:hover {
        background: var(--blue-50);
      }
  
      .service-icon {
        width: 48px;
        height: 48px;
        background: var(--blue-100);
        border-radius: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        transition: background 0.3s;
      }
  
      .service-card:hover .service-icon {
        background: var(--gold-light);
      }
  
      .service-icon svg {
        width: 22px;
        height: 22px;
        stroke: var(--blue-main);
      }
  
      .service-name {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--blue-main-dark);
        margin-bottom: 0.8rem;
        line-height: 1.2;
      }
  
      .service-desc {
        font-size: 0.82rem;
        font-weight: 300;
        color: var(--blue-light);
        line-height: 1.8;
        margin-bottom: 1.5rem;
      }
  
      .service-link {
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--gold);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.4rem;
        transition: gap 0.3s;
      }
  
      .service-card:hover .service-link { gap: 0.8rem; }
  
      /* ─── WHY US ─── */
      .why {
        padding: 7rem 8%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8rem;
        align-items: center;
        background: var(--white);
      }
  
      .why-left {}
  
      .why-right {
        display: flex;
        flex-direction: column;
        gap: 0;
      }
  
      .why-item {
        padding: 1.8rem 0;
        border-bottom: 1px solid var(--blue-200);
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
      }
  
      .why-item:first-child { border-top: 1px solid var(--blue-200); }
  
      .why-num {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2rem;
        font-weight: 300;
        color: var(--blue-300);
        line-height: 1;
        flex-shrink: 0;
        width: 2rem;
        text-align: right;
      }
  
      .why-content {}
  
      .why-item-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--blue-main-dark);
        margin-bottom: 0.4rem;
      }
  
      .why-item-text {
        font-size: 0.82rem;
        font-weight: 300;
        color: var(--blue-light);
        line-height: 1.8;
      }
  
      .quote-block {
        background: var(--blue-50);
        border-left: 3px solid var(--gold);
        padding: 2.5rem 2.5rem 2.5rem 2rem;
        margin-top: 2.5rem;
        border-radius: 0 2px 2px 0;
      }
  
      .quote-text {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.4rem;
        font-style: italic;
        font-weight: 300;
        color: var(--blue-main-dark);
        line-height: 1.6;
        margin-bottom: 1rem;
      }
  
      .quote-by {
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--blue-400);
      }
  
      /* ─── CTA BAND ─── */
      .cta-band {
        background: var(--blue-main-deep);
        padding: 6rem 8%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        overflow: hidden;
      }
  
      .cta-band::before {
        content: '';
        position: absolute;
        right: -120px;
        top: -120px;
        width: 480px;
        height: 480px;
        border-radius: 50%;
        border: 1px solid rgba(201, 169, 110, 0.12);
      }
  
      .cta-band::after {
        content: '';
        position: absolute;
        right: -60px;
        top: -60px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        border: 1px solid rgba(201, 169, 110, 0.08);
      }
  
      .cta-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(2rem, 3vw, 3.2rem);
        font-weight: 300;
        color: var(--blue-100);
        line-height: 1.2;
      }
  
      .cta-title em {
        font-style: italic;
        color: var(--gold);
      }
  
      .cta-right {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }
  
      .cta-desc {
        font-size: 0.88rem;
        font-weight: 300;
        color: var(--blue-400);
        line-height: 1.9;
      }
  
      .cta-contacts {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
      }
  
      .cta-contact-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.85rem;
        color: var(--gold-light);
      }
  
      .cta-contact-item svg {
        width: 16px;
        height: 16px;
        stroke: var(--gold);
        flex-shrink: 0;
      }
  
      .cta-buttons {
        display: flex;
        gap: 1rem;
        margin-top: 0.5rem;
      }
  
      .btn-gold {
        background: var(--gold);
        color: var(--blue-main-deep);
        padding: 0.85rem 2rem;
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        text-decoration: none;
        border-radius: 2px;
        transition: all 0.3s ease;
      }
  
      .btn-gold:hover {
        background: var(--gold-light);
      }
  
      .btn-outline-light {
        border: 1px solid rgba(201,169,110,0.4);
        color: var(--gold-light);
        padding: 0.85rem 2rem;
        font-size: 0.78rem;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        text-decoration: none;
        border-radius: 2px;
        transition: all 0.3s ease;
      }
  
      .btn-outline-light:hover {
        border-color: var(--gold);
        color: var(--gold);
      }
  
      /* ─── FOOTER ─── */
      footer {
        background: var(--blue-50);
        border-top: 1px solid var(--blue-200);
        padding: 4rem 8% 2rem;
      }
  
      .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 4rem;
        margin-bottom: 3rem;
      }
  
      .footer-brand .nav-logo {
        font-size: 1.6rem;
        display: block;
        margin-bottom: 1rem;
      }
  
      .footer-brand p {
        font-size: 0.82rem;
        font-weight: 300;
        color: var(--blue-400);
        line-height: 1.8;
        max-width: 20rem;
      }
  
      .footer-col-title {
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--blue-main-dark);
        margin-bottom: 1.2rem;
      }
  
      .footer-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
      }
  
      .footer-links li a {
        font-size: 0.82rem;
        font-weight: 300;
        color: var(--blue-400);
        text-decoration: none;
        transition: color 0.2s;
      }
  
      .footer-links li a:hover { color: var(--blue-main-dark); }
  
      .footer-bottom {
        border-top: 1px solid var(--blue-200);
        padding-top: 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
  
      .footer-copy {
        font-size: 0.75rem;
        color: var(--blue-400);
        font-weight: 300;
      }
  
      .footer-location {
        font-size: 0.75rem;
        color: var(--blue-400);
        display: flex;
        align-items: center;
        gap: 0.4rem;
      }
  
      /* ─── ANIMATIONS ─── */
      @keyframes fadeUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
      }
  
      .fade-up {
        opacity: 0;
        animation: fadeUp 0.8s ease forwards;
      }
  
      .delay-1 { animation-delay: 0.15s; }
      .delay-2 { animation-delay: 0.3s; }
      .delay-3 { animation-delay: 0.45s; }
      .delay-4 { animation-delay: 0.6s; }


       /* ─── PAGE HERO ─── */
    .page-hero {
      min-height: 50vh;
      background: var(--blue-main-deep);
      display: flex;
      align-items: flex-end;
      padding: 140px 8% 5rem;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(201,169,110,0.06) 40px,
        rgba(201,169,110,0.06) 41px
      );
    }
    .page-hero-content {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      width: 100%;
    }
    .page-eyebrow {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .page-eyebrow::before {
      content: '';
      display: block;
      width: 2rem; height: 1px;
      background: var(--gold);
    }
    .page-hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.5rem, 6vw, 6.5rem);
      font-weight: 300;
      color: var(--blue-100);
      line-height: 1.0;
    }
    .page-hero-title em { font-style: italic; color: var(--gold); }
    .page-hero-desc {
      max-width: 28rem;
      text-align: right;
      font-size: 0.88rem;
      font-weight: 300;
      color: var(--blue-400);
      line-height: 1.9;
    }

    /* ─── BREADCRUMB ─── */
    .breadcrumb {
      background: var(--blue-50);
      padding: 0.9rem 8%;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .breadcrumb a, .breadcrumb span {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--blue-400);
      text-decoration: none;
    }
    .breadcrumb a:hover { color: var(--blue-main-dark); }
    .breadcrumb .sep { color: var(--blue-300); }
    .breadcrumb .current { color: var(--blue-main-dark); }

    /* ─── ABOUT MAIN ─── */
    .about-main {
      padding: 7rem 8%;
      display: grid;
      grid-template-columns: 1fr 2px 1fr;
      gap: 6rem;
      align-items: start;
      background: var(--white);
    }
    .divider-v { background: var(--blue-200); align-self: stretch; }

    .section-label {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }
    .section-label::before {
      content: '';
      display: block;
      width: 1.5rem; height: 1px;
      background: var(--gold);
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3vw, 3rem);
      font-weight: 300;
      color: var(--blue-main-deep);
      line-height: 1.15;
      margin-bottom: 2rem;
    }
    .section-title em { font-style: italic; color: var(--blue-light); }
    .section-text {
      font-size: 0.88rem;
      font-weight: 300;
      color: var(--blue-light);
      line-height: 2.1;
      margin-bottom: 1rem;
    }

    /* right col */
    .about-right-col {
      padding-top: 0.5rem;
    }
    .pull-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem;
      font-weight: 300;
      font-style: italic;
      color: var(--blue-main-dark);
      line-height: 1.5;
      border-left: 3px solid var(--gold);
      padding-left: 1.8rem;
      margin-bottom: 3rem;
    }

    .fact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5px;
      background: var(--blue-300);
    }
    .fact-cell {
      background: var(--blue-50);
      padding: 2rem 1.5rem;
    }
    .fact-cell.dark { background: var(--blue-main-dark); }
    .fact-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem;
      font-weight: 300;
      color: var(--blue-main-dark);
      line-height: 1;
      margin-bottom: 0.35rem;
    }
    .fact-cell.dark .fact-num { color: var(--gold); }
    .fact-lbl {
      font-size: 0.72rem;
      font-weight: 400;
      color: var(--blue-400);
      letter-spacing: 0.05em;
    }
    .fact-cell.dark .fact-lbl { color: var(--blue-400); }

    /* ─── DARK QUOTE BAND ─── */
    .quote-band {
      background: var(--blue-main-deep);
      padding: 5rem 8%;
      position: relative;
      overflow: hidden;
    }
    .quote-band::before {
      content: '"';
      position: absolute;
      top: -3rem; left: 4%;
      font-family: 'Cormorant Garamond', serif;
      font-size: 22rem;
      font-weight: 300;
      color: rgba(201,169,110,0.05);
      line-height: 1;
      pointer-events: none;
    }
    .quote-band-inner {
      max-width: 48rem;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .quote-band-rule {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2rem;
    }
    .quote-band-rule::before,
    .quote-band-rule::after {
      content: '';
      display: block;
      width: 3rem; height: 1px;
      background: rgba(201,169,110,0.4);
    }
    .quote-band-rule span {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .quote-band-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.6rem, 2.5vw, 2.4rem);
      font-weight: 300;
      font-style: italic;
      color: var(--blue-100);
      line-height: 1.55;
    }

    /* ─── CONTACT BAND ─── */
    .contact-band {
      padding: 6rem 8%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
      background: var(--blue-main-deep);
      position: relative;
      overflow: hidden;
    }
    .contact-band::before {
      content: '';
      position: absolute;
      right: -100px; top: -100px;
      width: 450px; height: 450px;
      border-radius: 50%;
      border: 1px solid rgba(201,169,110,0.09);
    }
    .contact-band::after {
      content: '';
      position: absolute;
      right: -40px; top: -40px;
      width: 280px; height: 280px;
      border-radius: 50%;
      border: 1px solid rgba(201,169,110,0.06);
    }
    .contact-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3vw, 3.2rem);
      font-weight: 300;
      color: var(--blue-100);
      line-height: 1.2;
    }
    .contact-title em { font-style: italic; color: var(--gold); }
    .contact-right { display: flex; flex-direction: column; gap: 1rem; position: relative; z-index: 1; }
    .contact-item {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      font-size: 0.88rem;
      font-weight: 300;
      color: var(--gold-light);
    }
    .contact-item svg {
      width: 16px; height: 16px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }
    .contact-divider {
      width: 100%;
      height: 1px;
      background: rgba(201,169,110,0.15);
      margin: 0.5rem 0;
    }
    .contact-buttons { display: flex; gap: 1rem; margin-top: 0.5rem; }
    .btn-gold {
      background: var(--gold);
      color: var(--blue-main-deep);
      padding: 0.85rem 2rem;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    .btn-gold:hover { background: var(--gold-light); }
    .btn-outline-light {
      border: 1px solid rgba(201,169,110,0.4);
      color: var(--gold-light);
      padding: 0.85rem 2rem;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    .btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

    /* ─── SERVICES SECTION ─── */
    .services-intro {
      padding: 6rem 8% 4rem;
      max-width: 900px;
    }
    .section-label {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }
    .section-label::before { content: ''; width: 2rem; height: 1px; background: var(--gold); }
    .intro-text {
      font-size: 1.1rem;
      font-weight: 300;
      color: var(--blue-light);
      line-height: 2;
    }

    .service-block {
      padding: 6rem 8%;
      border-top: 1px solid var(--blue-200);
    }
    .service-block:nth-child(even) { background: var(--blue-50); }

    .service-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 5rem;
    }
    .service-info h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem;
      font-weight: 300;
      color: var(--blue-main-dark);
      margin-bottom: 1.5rem;
    }
    .service-desc {
      font-size: 0.95rem;
      color: var(--blue-light);
      margin-bottom: 2rem;
    }

    .requirements-box {
      background: var(--white);
      border: 1px solid var(--blue-200);
      padding: 3rem;
      position: relative;
    }
    .requirements-box h3 {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--blue-400);
      margin-bottom: 2rem;
      display: flex;
      justify-content: space-between;
    }
    .req-list {
      list-style: none;
      display: grid;
      gap: 1.2rem;
    }
    .req-item {
      display: flex;
      gap: 1.2rem;
      font-size: 0.88rem;
      color: var(--blue-main-deep);
      font-weight: 300;
      line-height: 1.6;
    }
    .req-num {
      font-family: 'Cormorant Garamond', serif;
      color: var(--gold);
      font-weight: 600;
      min-width: 20px;
    }

    /* ─── CONTACT STRIP ─── */
    .contact-cta {
      background: var(--blue-main-dark);
      padding: 5rem 8%;
      text-align: center;
      color: var(--blue-100);
    }
    .contact-cta h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem;
      font-weight: 300;
      margin-bottom: 2rem;
    }
    .btn-gold {
      display: inline-block;
      background: var(--gold);
      color: var(--blue-main-deep);
      padding: 1rem 2.5rem;
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      transition: 0.3s;
    }
    .btn-gold:hover { background: var(--gold-light); }
/* ─── HERO WITH GRID LINES (Matching your style) ─── */
.hero-resources {
  min-height: 60vh;
  background: var(--blue-50);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 8% 5rem;
  border-bottom: 1px solid var(--blue-200);
  overflow: hidden;
}

/* Vertical Lines */
.hero-resources::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; bottom: 0;
  width: 1px;
  background: var(--blue-200);
}
.hero-resources::after {
  content: '';
  position: absolute;
  top: 0; right: 8%; bottom: 0;
  width: 1px;
  background: var(--blue-200);
}

/* Horizontal Lines for Grid Effect */
.grid-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.grid-overlay .line-h {
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--blue-200);
  top: 40%;
}
.grid-overlay .line-v {
  position: absolute;
  height: 100%;
  width: 1px;
  background: var(--blue-200);
  left: 35%;
}

.hero-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 300;
  color: var(--blue-main-deep);
  position: relative;
  z-index: 10;
}
.hero-title em { font-style: italic; color: var(--gold); }

/* ─── CONTENT SECTION ─── */
.content-wrapper {
  padding: 100px 8%;
}

.resource-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  margin-bottom: 100px;
}

.resource-meta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--blue-main-dark);
  margin-bottom: 1.5rem;
}

.resource-card {
  background: var(--white);
  border: 1px solid var(--blue-200);
  padding: 3rem;
  position: relative;
}

.resource-list { list-style: none; }
.resource-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--blue-50);
}
.resource-item:last-child { border-bottom: none; }

.item-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--blue-main-dark);
}
.item-info p {
  font-size: 0.9rem;
  color: var(--blue-light);
  font-weight: 300;
}

.btn-download {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: 0.3s;
}
.btn-download:hover { color: var(--blue-main-deep); border-color: var(--blue-main-deep); }

    /* ─── HERO WITH GRID LINES ─── */
    .hero-contact {
      min-height: 60vh;
      background: var(--blue-50);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0 8% 5rem;
      border-bottom: 1px solid var(--blue-200);
      overflow: hidden;
    }

    .hero-contact::before {
      content: '';
      position: absolute;
      top: 0; left: 8%; bottom: 0;
      width: 1px;
      background: var(--blue-200);
    }
    .hero-contact::after {
      content: '';
      position: absolute;
      top: 0; right: 8%; bottom: 0;
      width: 1px;
      background: var(--blue-200);
    }

    .grid-lines {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      pointer-events: none;
    }
    .grid-lines .line-h {
      position: absolute;
      width: 100%;
      height: 1px;
      background: var(--blue-200);
      top: 45%;
    }
    .grid-lines .line-v {
      position: absolute;
      height: 100%;
      width: 1px;
      background: var(--blue-200);
      left: 40%;
    }

    .hero-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 10;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.5rem, 6vw, 6rem);
      font-weight: 300;
      color: var(--blue-main-deep);
      position: relative;
      z-index: 10;
    }
    .hero-title em { font-style: italic; color: var(--gold); }

    /* ─── CONTACT SECTION ─── */
    .contact-wrapper {
      padding: 100px 8%;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 6rem;
    }

    .contact-info h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem;
      font-weight: 300;
      color: var(--blue-main-dark);
      margin-bottom: 2.5rem;
    }

    .info-item {
      margin-bottom: 2.5rem;
    }
    .info-label {
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--gold);
      margin-bottom: 0.5rem;
      display: block;
    }
    .info-text {
      font-size: 1.1rem;
      font-weight: 300;
      color: var(--blue-main-deep);
      text-decoration: none;
    }
    a.info-text:hover { color: var(--gold); }

    /* ─── CONTACT FORM ─── */
    .contact-form {
      background: var(--white);
      border: 1px solid var(--blue-200);
      padding: 4rem;
      position: relative;
    }
    .form-group {
      margin-bottom: 2rem;
    }
    .form-group label {
      display: block;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 0.8rem;
      color: var(--blue-light);
    }
    .form-group input, 
    .form-group textarea {
      width: 100%;
      padding: 1rem 0;
      border: none;
      border-bottom: 1px solid var(--blue-200);
      font-family: 'Jost', sans-serif;
      font-size: 1rem;
      outline: none;
      transition: border-color 0.3s;
    }
    .form-group input:focus, 
    .form-group textarea:focus {
      border-color: var(--gold);
    }

    .btn-submit {
      background: var(--blue-main-deep);
      color: var(--white);
      border: none;
      padding: 1.2rem 3rem;
      font-family: 'Jost', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s;
    }
    .btn-submit:hover {
      background: var(--gold);
      color: var(--blue-main-deep);
    }
/* تحديثات لتحسين اللمس (WCAG 2.2) */
@media (max-width: 1024px) {
  :root {
    --section-padding: 4rem 5%;
  }
  
  /* تكبير أهداف اللمس للأزرار والروابط */
  .nav-links a, .btn-primary, .btn-gold {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}
/* ─── RESPONSIVE NAV ─── */
@media (max-width: 991px) {
  nav {
    padding: 1rem 5%;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%; /* مخفية افتراضياً */
    width: 80%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    z-index: 99;
  }

  .nav-links.active {
    right: 0;
  }

  /* إضافة زر الهمبرغر عبر CSS (يُضاف في الـ HTML لاحقاً) */
  .menu-toggle {
    display: block;
    cursor: pointer;
    z-index: 101;
  }
}
/* ─── TABLET & MOBILE LAYOUT ─── */
@media (max-width: 768px) {
  /* Hero Sections */
  .hero, .hero-resources, .page-hero {
    padding: 120px 5% 3rem;
    min-height: auto;
    text-align: center;
  }

  .hero::before, .hero::after, .line-v {
    display: none; /* إخفاء الخطوط العمودية على الجوال لتقليل التشتت */
  }

  .hero-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-ghost {
    width: 100%;
    text-align: center;
  }

  /* About & Service Blocks */
  .about-main, .service-grid, .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 5%;
  }

  .divider-v {
    width: 100%;
    height: 1px;
    margin: 1rem 0;
  }

  /* Fact Grid (About Page) */
  .fact-grid {
    grid-template-columns: 1fr; /* عمود واحد للحقائق */
  }

  /* Footer Adaptation */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }

  .requirements-box {
    padding: 1.5rem;
  }
}

/* ─── RESPONSIVE: INDEX PAGE ─── */

/* 1. القائمة وزر الـ Toggle */
.menu-toggle {
  display: none; /* مخفي في الشاشات الكبيرة */
  color: var(--blue-main-deep);
  cursor: pointer;
}

@media (max-width: 991px) {
  .menu-toggle {
      display: block;
      z-index: 1001;
  }

  .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background: var(--white);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 3rem;
      transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
      z-index: 1000;
  }

  .nav-links.active {
      right: 0;
  }

  .nav-links a {
      font-size: 1.2rem; /* تكبير الخط لسهولة اللمس */
  }
}

/* 2. Hero Section */
@media (max-width: 768px) {
  .hero {
      grid-template-columns: 1fr; /* عمود واحد */
      padding-top: 100px;
  }

  .hero-left {
      padding: 10% 5%;
      text-align: center;
      align-items: center;
  }

  .hero-left::after { display: none; } /* إخفاء الفاصل العمودي */

  .hero-eyebrow { justify-content: center; }

  .hero-title {
      font-size: 2.8rem;
  }

  .hero-right {
      display: none; /* إخفاء الكارت الجانبي في الجوال لتوفير المساحة */
  }

  .hero-actions {
      flex-direction: column;
      width: 100%;
      gap: 1.5rem;
  }

  .btn-primary {
      width: 100%;
      text-align: center;
  }
}

/* 3. About Strip & Services Grid */
@media (max-width: 768px) {
  .about-strip {
      grid-template-columns: 1fr;
      gap: 3rem;
      text-align: center;
  }
  
  .divider-v { display: none; }

  .services-grid {
      grid-template-columns: 1fr; /* عمود واحد للخدمات */
  }

  .services-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 2rem;
  }
}

/* 4. Why Us & CTA */
@media (max-width: 768px) {
  .why {
      grid-template-columns: 1fr;
      gap: 4rem;
  }

  .cta-band {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .cta-buttons {
      justify-content: center;
      flex-direction: column;
  }
}

/* 5. Footer */
@media (max-width: 768px) {
  .footer-grid {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 3rem;
  }

  .footer-brand p { margin: 1rem auto; }
  
  .footer-bottom {
      flex-direction: column;
      gap: 1rem;
  }
}

/* ─── RESPONSIVE: ABOUT PAGE ─── */

@media (max-width: 768px) {
  /* 1. Page Hero - تبسيط العنوان وتوسيطه */
  .page-hero {
      padding: 140px 5% 60px;
      text-align: center;
  }

  .page-hero-title {
      font-size: 3rem; /* تصغير الخط قليلاً ليناسب عرض الجوال */
      line-height: 1.1;
  }

  .page-hero-desc {
      font-size: 1.1rem;
      margin-top: 2rem;
      max-width: 100%;
  }

  /* 2. Main Content Grid - تحويل النص والصورة إلى عمود واحد */
  .about-main {
      grid-template-columns: 1fr; 
      gap: 3rem;
      padding: 4rem 5%;
  }

  .about-image-wrapper {
      order: -1; /* جعل الصورة تظهر قبل النص في الجوال لجذب الانتباه */
      height: 300px; /* تقليل الارتفاع لتوفير مساحة التمرير */
  }

  /* 3. Fact Grid (الإحصائيات) */
  .fact-grid {
      grid-template-columns: 1fr 1fr; /* جعلها شبكة 2x2 بدلاً من 4 في صف واحد */
      gap: 2rem;
      padding: 3rem 5%;
  }

  .fact-item {
      text-align: center;
      border-right: none;
      border-bottom: 1px solid var(--blue-100); /* إضافة فاصل أفقي بدلاً من العمودي */
      padding-bottom: 1.5rem;
  }

  .fact-item:last-child {
      border-bottom: none;
  }
}

@media (max-width: 480px) {
  .fact-grid {
      grid-template-columns: 1fr; /* في الجوال الصغير جداً، كل إحصائية في سطر */
  }
  
  .page-hero-title {
      font-size: 2.5rem;
  }
}


@media (max-width: 991px) {
  .contact-wrapper {
      grid-template-columns: 1fr; /* تحويل لعمود واحد */
      padding: 4rem 5%;
      gap: 4rem;
  }

  .contact-info {
      padding-right: 0;
      text-align: center;
  }

  .contact-form {
      padding: 2.5rem 1.5rem; /* تقليل الحواف الداخلية في الجوال */
  }
  
  .info-item {
      justify-content: center; /* توسيط الأيقونات مع النصوص */
      text-align: center;
  }
}
/* ─── CONTACT INFO: OLD STYLE BUT RESPONSIVE ─── */
.contact-info {
  padding: 4rem 5%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem); /* خط مرن يحافظ على الفخامة */
  color: var(--blue-main-deep);
  margin-bottom: 1.5rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* توزيع تلقائي */
  gap: 2.5rem;
  margin-top: 2rem;
}

.info-block {
  border-left: 1px solid var(--blue-100); /* الخط الجانبي الكلاسيكي */
  padding-left: 1.5rem;
  transition: all 0.3s ease;
}

.info-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}

.info-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--blue-main-deep);
  word-break: break-word; /* لمنع خروج الإيميلات الطويلة عن الشاشة */
}

/* ─── MEDIA QUERIES ─── */
@media (max-width: 768px) {
  .contact-info {
      text-align: left; /* الحفاظ على المحاذاة الجانبية الكلاسيكية */
      padding: 2rem 5%;
  }

  .info-grid {
      grid-template-columns: 1fr; /* عمود واحد في الجوال */
      gap: 2rem;
  }

  .info-block {
      padding-left: 1rem;
      border-left: 2px solid var(--gold); /* تمييز الخط في الجوال */
  }
}
/* ─── CONTACT INFO: THE FINAL RESPONSIVE FIX ─── */
.contact-info {
  padding: 4rem 5%;
  max-width: 1200px; /* ضمان عدم تمدد النص بشكل مبالغ فيه في الشاشات الضخمة */
  margin: 0 auto;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); /* حجم خط مرن */
  line-height: 1.2;
  margin-bottom: 3rem;
  color: var(--blue-main-deep);
}

/* حاوية المعلومات - Flexbox بدلاً من Grid للتحكم الأدق */
.info-container {
  display: flex;
  flex-wrap: wrap; /* هذا هو السر: العناصر تنزل لسطر جديد تلقائياً */
  gap: 40px 60px; /* مسافات رأسية وأفقية مدروسة */
}

.info-block {
  flex: 1 1 300px; /* العرض الأدنى 300px، ويأخذ المساحة المتاحة */
  min-width: 280px; 
  border-left: 1px solid var(--blue-100);
  padding-left: 20px;
}

.info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.info-text {
  font-size: 1.1rem;
  color: var(--blue-main-deep);
  line-height: 1.5;
  word-wrap: break-word; /* كسر الكلمات الطويلة مثل الإيميلات */
  display: block;
  text-decoration: none;
}

/* ─── MEDIA QUERIES ─── */
@media (max-width: 768px) {
  .contact-info {
      padding: 3rem 20px;
  }

  .info-container {
      flex-direction: column; /* ترتيب رأسي في الجوال */
      gap: 30px;
  }

  .info-block {
      flex: 1 1 100%;
      border-left: 2px solid var(--gold); /* تغليظ الخط الجانبي للوضوح في الجوال */
      padding-left: 15px;
  }

  /* تكبير الروابط لسهولة النقر */
  .info-text {
      font-size: 1.2rem;
      padding: 5px 0;
  }
}