/* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      color: #1a1f2e;
      background: #fff;
      overflow-x: hidden;
    }

    /* ============================================================
       CSS VARIABLES
    ============================================================ */
    :root {
      --navy:    #0d1b2a;
      --navy2:   #111d2d;
      --gold:    #b89050;
      --gold2:   #c9a05a;
      --light:   #f5f4f0;
      --text:    #1a1f2e;
      --muted:   #6b7280;
      --border:  #d4c8b0;
    }

    /* ============================================================
       TYPOGRAPHY HELPERS
    ============================================================ */
    .label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 600;
      line-height: 1.15;
      color: var(--navy);
    }
    .section-title.light { color: #fff; }
    .divider {
      width: 40px;
      height: 2px;
      background: var(--gold);
      margin: 1.25rem 0;
    }

    /* ============================================================
       BUTTONS
    ============================================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.85rem 1.75rem;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.25s;
    }
    .btn-gold {
      background: var(--gold);
      color: #fff;
      border: 2px solid var(--gold);
    }
    .btn-gold:hover { background: var(--gold2); border-color: var(--gold2); }
    .btn-outline {
      background: transparent;
      color: #fff;
      border: none;
    }
    .btn-outline:hover { color: var(--gold); }
    .btn svg { transition: transform 0.2s; }
    .btn:hover svg { transform: translateX(4px); }

    /* Arrow icon inline SVG helper */
    .arrow {
      display: inline-block;
      width: 16px;
      height: 16px;
    }

    /* ============================================================
       NAVIGATION
    ============================================================ */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(13, 27, 42, 0.92);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    nav {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      line-height: 1.1;
    }
    .logo-top {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: #fff;
      text-transform: uppercase;
    }
    .logo-bot {
      font-family: 'Playfair Display', serif;
      font-size: 0.8rem;
      letter-spacing: 0.35em;
      color: var(--gold);
      text-transform: uppercase;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }
    .nav-contact {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #fff;
      border: 1px solid rgba(255,255,255,0.5);
      padding: 0.55rem 1.2rem;
      text-decoration: none;
      transition: all 0.25s;
    }
    .nav-contact:hover {
      background: var(--gold);
      border-color: var(--gold);
    }
    .nav-search {
      background: none;
      border: none;
      cursor: pointer;
      color: rgba(255,255,255,0.75);
      transition: color 0.2s;
    }
    .nav-search:hover { color: var(--gold); }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: #fff;
      transition: 0.3s;
    }

    /* ============================================================
       HERO
    ============================================================ */
    #hero {
      min-height: 100vh;
      background:
        linear-gradient(to right, rgba(10,18,30,0.92) 38%, rgba(10,18,30,0.35) 80%, rgba(10,18,30,0.15) 100%),
        url('https://images.unsplash.com/photo-1520986606214-8b456906c813?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
      display: flex;
      align-items: center;
      padding-top: 72px;
    }
    .hero-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
      max-width: 640px;
      padding-left: max(2rem, calc((100vw - 1280px)/2 + 2rem));
    }
    .hero-inner .label { color: var(--gold); }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 5.5vw, 4.5rem);
      font-weight: 700;
      line-height: 1.08;
      color: #fff;
      margin-top: 1rem;
    }
    .hero-title span { display: block; }
    .hero-divider {
      width: 40px;
      height: 2px;
      background: var(--gold);
      margin: 1.5rem 0;
    }
    .hero-desc {
      font-size: 0.95rem;
      line-height: 1.75;
      color: rgba(255,255,255,0.8);
      max-width: 380px;
      margin-bottom: 2.5rem;
    }
    .hero-cta {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    /* ============================================================
       DIRECTORIES STRIP
    ============================================================ */
    #directories {
      background: #f7f5f1;
      border-top: 1px solid #e8e4db;
      border-bottom: 1px solid #e8e4db;
    }
    .dir-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 2rem 2rem;
      display: flex;
      align-items: center;
      gap: 0;
    }
    .dir-label {
      min-width: 160px;
      padding-right: 2rem;
    }
    .dir-label p:first-child {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--navy);
    }
    .dir-label p:last-child {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--navy);
    }
    .dir-sep {
      width: 1px;
      height: 48px;
      background: #c8c0b0;
      margin: 0 2rem;
      flex-shrink: 0;
    }
    .dir-logos {
      display: flex;
      align-items: center;
      gap: 0;
      flex: 1;
    }
    .dir-logo-item {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 1.5rem;
      border-right: 1px solid #c8c0b0;
    }
    .dir-logo-item:last-child { border-right: none; }
    .dir-logo-item span {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: #1a1f2e;
      text-align: center;
      line-height: 1.2;
    }
    .dir-logo-item span em {
      font-style: italic;
      font-size: 0.75rem;
      display: block;
    }
    .dir-logo-item .small { font-size: 0.75rem; }

    /* ============================================================
       SERVICES SECTION
    ============================================================ */
    #services {
      padding: 6rem 0 5rem;
      background: #fff;
    }
    .services-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    .services-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
      margin-bottom: 3.5rem;
    }
    .services-header .right {
      padding-top: 1rem;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .services-header .right p {
      font-size: 0.95rem;
      line-height: 1.8;
      color: var(--muted);
    }
    .view-all {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--navy);
      text-decoration: none;
      transition: color 0.2s;
    }
    .view-all:hover { color: var(--gold); }
    .view-all:hover svg { transform: translateX(4px); }
    .view-all svg { transition: transform 0.2s; }

    /* Service Cards Grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 0;
      border-left: 1px solid #e8e4db;
      border-top: 1px solid #e8e4db;
    }
    .service-card {
      border-right: 1px solid #e8e4db;
      border-bottom: 1px solid #e8e4db;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      transition: box-shadow 0.3s;
    }
    .service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); z-index: 2; }
    .service-card-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
      transition: transform 0.5s;
    }
    .service-card:hover .service-card-img { transform: scale(1.04); }
    .service-card-body {
      padding: 1.25rem 1.25rem 1.75rem;
    }
    .service-card-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 0.6rem;
    }
    .service-card-body p {
      font-size: 0.78rem;
      line-height: 1.7;
      color: var(--muted);
      margin-bottom: 1.1rem;
    }
    .card-arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border: 1px solid var(--border);
      color: var(--navy);
      transition: all 0.2s;
    }
    .service-card:hover .card-arrow {
      background: var(--gold);
      border-color: var(--gold);
      color: #fff;
    }

    /* ============================================================
       WHY CHOOSE US
    ============================================================ */
    #why {
      background: var(--navy);
      padding: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 460px;
    }
    .why-image {
      overflow: hidden;
    }
    .why-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(0.85);
    }
    .why-content {
      padding: 5rem 4rem 5rem 5rem;
    }
    .why-content .label { color: var(--gold); }
    .why-content .section-title { color: #fff; margin-top: 0.75rem; }
    .why-divider {
      width: 40px;
      height: 2px;
      background: var(--gold);
      margin: 1.5rem 0 2.5rem;
    }
    .why-features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .why-feature h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 600;
      color: #fff;
      margin: 1rem 0 0.5rem;
    }
    .why-feature p {
      font-size: 0.8rem;
      line-height: 1.7;
      color: rgba(255,255,255,0.6);
    }
    .feature-icon {
      width: 44px;
      height: 44px;
      border: 1px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      background: #0a1220;
      padding: 4rem 0 2.5rem;
    }
    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-brand .logo-top { color: #fff; }
    .footer-brand .logo-bot { color: var(--gold); }
    .footer-brand p {
      font-size: 0.82rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.5);
      margin-top: 1.25rem;
      max-width: 260px;
    }
    .footer-col h5 {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 1.25rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.6rem; }
    .footer-col ul li a {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--gold); }
    .footer-contact p {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
    }
    .footer-contact a {
      color: rgba(255,255,255,0.65);
      text-decoration: none;
    }
    .footer-contact a:hover { color: var(--gold); }
    .footer-bottom {
      padding-top: 2rem;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }
    .footer-bottom p {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.3);
      letter-spacing: 0.08em;
    }

    /* ============================================================
       MOBILE MENU (OVERLAY)
    ============================================================ */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--navy);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: #fff;
      text-decoration: none;
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-close {
      position: absolute;
      top: 1.5rem;
      right: 2rem;
      background: none;
      border: none;
      color: #fff;
      font-size: 1.8rem;
      cursor: pointer;
    }

    /* ============================================================
       SCROLL ANIMATIONS
    ============================================================ */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .fade-up:nth-child(2) { transition-delay: 0.1s; }
    .fade-up:nth-child(3) { transition-delay: 0.2s; }
    .fade-up:nth-child(4) { transition-delay: 0.3s; }
    .fade-up:nth-child(5) { transition-delay: 0.4s; }
    .fade-up:nth-child(6) { transition-delay: 0.5s; }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1100px) {
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .why-features {
        grid-template-columns: 1fr 1fr;
      }
    }
    @media (max-width: 900px) {
      .nav-links, .nav-contact, .nav-search { display: none; }
      .hamburger { display: flex; }
      .services-header { grid-template-columns: 1fr; }
      .dir-inner { flex-wrap: wrap; gap: 1.5rem; }
      .dir-logos { flex-wrap: wrap; }
      .dir-logo-item { border: none; }
      #why { grid-template-columns: 1fr; }
      .why-image { min-height: 280px; }
      .why-content { padding: 3rem 2rem; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .services-grid { grid-template-columns: 1fr 1fr; }
      .why-features { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .hero-cta { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 420px) {
      .services-grid { grid-template-columns: 1fr; }
    }

.footer-address { margin-top: 18px; line-height: 1.6; color: #9aa9bc; font-size: 14px; }

.contact-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; margin: 14px 0 6px; color: #9aa8b8; font-weight: 600; }
.footer-address { line-height: 1.6; }
