/* ============================================================
       DESIGN TOKENS
    ============================================================ */
    :root {
      --navy:   #0A1628;
      --navy-2: #112240;
      /*--gold:   #C9A84C;  */
      --gold:   #fd6206; 
      /*--gold-2: #E2C06E;*/
      --gold-2: #f18740;
      --gold-3: #F5E6C0;
      --white:  #FFFFFF;
      --off-white: #F8F6F1;
      --muted:  #8892A4;
      --text:   #1E2B3C;

      --ff-display: 'Playfair Display', serif;
      --ff-body:    'Inter', sans-serif;
      --ff-accent:  'Bebas Neue', sans-serif;
      --ff-jakarta: 'Plus Jakarta Sans', sans-serif;

      --shadow-sm: 0 2px 12px rgba(10,22,40,.08);
      --shadow-md: 0 8px 32px rgba(10,22,40,.14);
      --shadow-lg: 0 20px 60px rgba(10,22,40,.20);

      --transition: .3s cubic-bezier(.4,0,.2,1);
      --radius: 12px;
      --radius-lg: 20px;
    }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--ff-body);
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; display: block; }
    
    a { text-decoration: none !important; } 
    
    section { position: relative; }

    /* ============================================================
       LOADING SCREENcairo
    ============================================================ */
    #loader {
      position: fixed; inset: 0; z-index: 9999;
      background: var(--navy);
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 20px;
      transition: opacity .5s, visibility .5s;
    }
    #loader.hidden { opacity: 0; visibility: hidden; }
    .loader-logo {
      font-family: var(--ff-display);
      font-size: 2.8rem; font-weight: 900;
      color: var(--white);
      letter-spacing: 2px;
    }
    .loader-logo span { color: var(--gold); }
    .loader-bar {
      width: 180px; height: 3px;
      background: rgba(255,255,255,.15);
      border-radius: 99px; overflow: hidden;
    }
    .loader-fill {
      height: 100%; width: 0;
      background: linear-gradient(90deg, var(--gold), var(--gold-2));
      border-radius: 99px;
      animation: load 1.8s ease forwards;
    }
    @keyframes load { to { width: 100%; } }

    /* ============================================================
       TOP HEADER
    ============================================================ */
    #top-bar {
      background: var(--navy);
      padding: 7px 0;
      font-size: .78rem;
      border-bottom: 1px solid rgba(201,168,76,.25);
    }
    #top-bar a { color: rgba(255,255,255,.75); transition: color var(--transition); } 
    #top-bar a:hover { color: var(--gold); }
    .top-bar-info { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
    .top-bar-info span { color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 6px; }
    .top-bar-info span i { color: var(--gold); font-size: .85rem; }
    .top-social { display: flex; gap: 10px; }
    .top-social a {
      width: 26px; height: 26px;
      border-radius: 50%; border: 1px solid rgba(201,168,76,.35);
      display: grid; place-items: center;
      color: rgba(255,255,255,.7); font-size: .75rem;
      transition: all var(--transition);
    }
    .top-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

    /* ============================================================
       NAVBAR
    ============================================================ */
    #mainNav {
      background: rgba(255,255,255,.97);
      backdrop-filter: blur(12px);
      box-shadow: none;
      padding: 14px 0;
      transition: all var(--transition);
      border-bottom: 1px solid rgba(10,22,40,.06);
    }
    #mainNav.scrolled {
      padding: 10px 0;
      box-shadow: var(--shadow-md);
    }
    
    .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand .logo {
    height: 60px;   
    width: auto;
}
    
    /*.navbar-brand {*/
    /*  font-family: var(--ff-display);*/
    /*  font-size: 1.65rem; font-weight: 900;*/
    /*  color: var(--navy) !important;*/
    /*  letter-spacing: 1px;*/
    /*}*/
    /*.navbar-brand span { color: var(--gold); }*/
    /*.navbar-brand small {*/
    /*  display: block;*/
    /*  font-family: var(--ff-body);*/
    /*  font-size: .62rem; font-weight: 500;*/
    /*  letter-spacing: 3px; color: var(--muted);*/
    /*  text-transform: uppercase;*/
    /*}*/
    
    .nav-link {
      font-family: var(--ff-body);
      font-size: .82rem; font-weight: 600;
      letter-spacing: .8px;
      text-transform: uppercase;
      color: var(--navy) !important;
      padding: 8px 14px !important;
      position: relative;
    }
    .nav-link::after {
      content: '';
      position: absolute; bottom: 4px; left: 14px; right: 14px;
      height: 2px; background: var(--gold);
      transform: scaleX(0); transition: transform var(--transition);
      border-radius: 99px;
    }
    .nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
    .nav-link:hover { color: var(--gold) !important; }
    .btn-enquiry {
      background: linear-gradient(135deg, var(--gold), var(--gold-2));
      color: var(--navy) !important;
      font-weight: 700; font-size: .8rem;
      letter-spacing: .8px; text-transform: uppercase;
      padding: 9px 22px !important;
      border-radius: 50px;
      border: none;
      box-shadow: 0 4px 16px rgba(201,168,76,.35);
      transition: all var(--transition);
    }
    .btn-enquiry:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(201,168,76,.45);
      background: linear-gradient(135deg, var(--gold-2), var(--gold));
    }
    .navbar-toggler { border: 1.5px solid var(--gold); border-radius: 8px; padding: 6px 10px; }
    .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23C9A84C' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

    /* ============================================================
       HERO CAROUSEL
    ============================================================ */
    #heroCarousel { height: 100vh; min-height: 620px; }
    .carousel-item {
      height: 100vh; min-height: 620px;
      position: relative; overflow: hidden;
    }
    .hero-img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg,
        rgba(10,22,40,.78) 0%,
        rgba(10,22,40,.45) 50%,
        rgba(10,22,40,.2) 100%);
    }
    .hero-content {
      position: relative; z-index: 2;
      height: 100%;
      display: flex; align-items: center;
      padding-top: 80px;
    }
    .hero-eyebrow {
      display: inline-block;
      font-family: var(--ff-body);
      font-size: .75rem; font-weight: 600;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(201,168,76,.4);
      padding: 5px 16px; border-radius: 50px;
      margin-bottom: 20px;
    }
    .hero-title {
      font-family: var(--ff-display);
      font-size: clamp(2.4rem, 6vw, 4.5rem);
      font-weight: 900; line-height: 1.1;
      color: var(--white);
      text-shadow: 0 2px 20px rgba(0,0,0,.3);
      margin-bottom: 20px;
    }
    .hero-title span { color: var(--gold); }
    .hero-desc {
      font-size: 1.05rem; color: rgba(255,255,255,.82);
      max-width: 520px; line-height: 1.7;
      margin-bottom: 36px;
    }
    .btn-hero-primary {
      background: linear-gradient(135deg, var(--gold), var(--gold-2));
      color: var(--navy);
      font-weight: 700; font-size: .85rem;
      letter-spacing: 1px; text-transform: uppercase;
      padding: 14px 32px; border-radius: 50px;
      border: none; display: inline-block;
      box-shadow: 0 6px 24px rgba(201,168,76,.4);
      transition: all var(--transition);
      margin-right: 14px;
    }
    .btn-hero-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 36px rgba(201,168,76,.55);
      color: var(--navy);
    }
    .btn-hero-outline {
      border: 2px solid rgba(255,255,255,.6);
      color: var(--white);
      font-weight: 600; font-size: .85rem;
      letter-spacing: 1px; text-transform: uppercase;
      padding: 12px 28px; border-radius: 50px;
      display: inline-block;
      transition: all var(--transition);
    }
    .btn-hero-outline:hover {
      background: rgba(255,255,255,.12);
      border-color: var(--white);
      color: var(--white);
    }
    .carousel-control-prev, .carousel-control-next {
      width: 54px; height: 54px;
      top: 50%; transform: translateY(-50%);
      background: rgba(201,168,76,.85);
      border-radius: 50%;
      margin: 0 16px;
      transition: all var(--transition);
      opacity: 0;
    }
    #heroCarousel:hover .carousel-control-prev,
    #heroCarousel:hover .carousel-control-next { opacity: 1; }
    .carousel-control-prev:hover, .carousel-control-next:hover {
      background: var(--gold);
    }
    .carousel-control-prev-icon, .carousel-control-next-icon { width: 18px; height: 18px; }
    .carousel-indicators button {
      width: 28px; height: 3px; border-radius: 99px;
      border: none; margin: 0 4px;
      background: rgba(255,255,255,.4);
      transition: all var(--transition);
    }
    .carousel-indicators button.active {
      background: var(--gold);
      width: 44px;
    }

    /* ============================================================
       SECTION UTILITIES
    ============================================================ */
    .section-pad { padding: 90px 0; }
    .section-pad-sm { padding: 60px 0; }
    .section-bg { background: var(--off-white); }
    .section-dark { background: var(--navy); }
    .section-eyebrow {
      display: inline-block;
      font-size: .72rem; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .section-title {
      font-family: var(--ff-jakarta);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800; line-height: 1.2;
      color: var(--navy);
      margin-bottom: 14px;
    }
    .section-title.light { color: var(--white); }
    .section-sub {
      color: var(--muted); font-size: .95rem;
      max-width: 560px; line-height: 1.7;
    }
    .divider-gold {
      width: 52px; height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-2));
      border-radius: 99px;
      margin: 12px 0 24px;
    }

    /* ============================================================
       WHY CHOOSE US
    ============================================================ */
    .why-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 40px 32px;
      text-align: center;
      border: 1px solid rgba(10,22,40,.06);
      box-shadow: var(--shadow-sm);
      transition: all var(--transition);
      height: 100%;
    }
    .why-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(201,168,76,.3);
    }
    .why-icon {
      width: 80px; height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, #f5e6c0, #fdf6e4);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px;
      font-size: 2rem; color: var(--gold);
      border: 2px solid rgba(201,168,76,.2);
      transition: all var(--transition);
    }
    .why-card:hover .why-icon {
      background: linear-gradient(135deg, var(--gold), var(--gold-2));
      color: var(--navy);
      transform: rotate(10deg) scale(1.08);
    }
    .why-card h4 {
      font-family: var(--ff-jakarta);
      font-size: 1.2rem; font-weight: 700;
      color: var(--navy); margin-bottom: 12px;
    }
    .why-card p { color: var(--muted); font-size: .9rem; line-height: 1.7; }

    /* ============================================================
       ABOUT US
    ============================================================ */
    .about-img-wrap {
      position: relative; border-radius: var(--radius-lg);
      overflow: hidden;
    }
    .about-img-wrap img { border-radius: var(--radius-lg); }
    .about-badge {
      position: absolute; bottom: 28px; left: -20px;
      background: linear-gradient(135deg, var(--gold), var(--gold-2));
      color: var(--navy);
      border-radius: var(--radius);
      padding: 18px 24px;
      box-shadow: var(--shadow-md);
      text-align: center; min-width: 130px;
    }
    .about-badge strong { display: block; font-size: 2rem; font-weight: 900; line-height: 1; }
    .about-badge span { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
    .about-stat { display: flex; gap: 16px; }
    .stat-box {
      flex: 1; text-align: center;
      border: 1.5px solid rgba(201,168,76,.25);
      border-radius: var(--radius);
      padding: 18px 10px;
      background: var(--white);
    }
    .stat-box strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--navy); }
    .stat-box span { font-size: .75rem; color: var(--muted); }
    .btn-gold {
      background: linear-gradient(135deg, var(--gold), var(--gold-2));
      color: var(--navy);
      font-weight: 700; font-size: .82rem;
      letter-spacing: .8px; text-transform: uppercase;
      padding: 12px 28px; border-radius: 50px;
      border: none; display: inline-block;
      box-shadow: 0 4px 16px rgba(201,168,76,.3);
      transition: all var(--transition);
    }
    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(201,168,76,.45);
      color: var(--navy);
    }
    .btn-outline-navy {
      border: 2px solid var(--navy);
      color: var(--navy);
      font-weight: 700; font-size: .82rem;
      letter-spacing: .8px; text-transform: uppercase;
      padding: 10px 26px; border-radius: 50px;
      display: inline-block;
      transition: all var(--transition);
    }
    .btn-outline-navy:hover {
      background: var(--navy); color: var(--white);
    }

    /* ============================================================
       DESTINATIONS
    ============================================================ */
    .dest-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      cursor: pointer;
      box-shadow: var(--shadow-sm);
      transition: all var(--transition);
    }
    .dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .dest-img {
      width: 100%; height: 280px; object-fit: cover;
      transition: transform .5s cubic-bezier(.4,0,.2,1);
    }
    .dest-card:hover .dest-img { transform: scale(1.08); }
    .dest-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,22,40,.85) 30%, transparent 70%);
      transition: all var(--transition);
    }
    .dest-card:hover .dest-overlay {
      background: linear-gradient(to top, rgba(10,22,40,.9) 40%, rgba(10,22,40,.2) 100%);
    }
    .dest-info {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 24px 22px;
    }
    .dest-info h4 {
      font-family: var(--ff-display);
      font-size: 1.25rem; font-weight: 700;
      color: var(--white); margin-bottom: 6px;
    }
    .dest-info p { font-size: .82rem; color: rgba(255,255,255,.75); margin-bottom: 14px; line-height: 1.5; }
    .btn-dest {
      font-size: .75rem; font-weight: 700;
      letter-spacing: 1px; text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(201,168,76,.5);
      padding: 6px 18px; border-radius: 50px;
      display: inline-block;
      transition: all var(--transition);
      opacity: 0; transform: translateY(8px);
    }
    .dest-card:hover .btn-dest { opacity: 1; transform: translateY(0); }
    .btn-dest:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

    /* ============================================================
       PACKAGES
    ============================================================ */
    .pkg-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--white);
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(10,22,40,.06);
      transition: all var(--transition);
      height: 100%;
    }
    .pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
    .pkg-img-wrap { position: relative; overflow: hidden; }
    .pkg-img { width: 100%; height: 220px; object-fit: cover; transition: transform .5s; }
    .pkg-card:hover .pkg-img { transform: scale(1.06); }
    .pkg-badge {
      position: absolute; top: 14px; left: 14px;
      background: linear-gradient(135deg, var(--gold), var(--gold-2));
      color: var(--navy); font-size: .7rem; font-weight: 700;
      letter-spacing: 1px; text-transform: uppercase;
      padding: 4px 12px; border-radius: 50px;
    }
    .pkg-body { padding: 22px; }
    .pkg-body h4 {
      font-family: var(--ff-display);
      font-size: 1.1rem; font-weight: 700;
      color: var(--navy); margin-bottom: 10px;
    }
    .pkg-meta { display: flex; gap: 16px; margin-bottom: 14px; }
    .pkg-meta span { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: 5px; }
    .pkg-meta span i { color: var(--gold); }
    .pkg-price { font-size: 1.4rem; font-weight: 800; color: var(--navy); }
    .pkg-price sub { font-size: .7rem; font-weight: 500; color: var(--muted); }

    /* ============================================================
       SERVICES
    ============================================================ */
    .svc-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 30px 24px;
      border: 1px solid rgba(10,22,40,.07);
      box-shadow: var(--shadow-sm);
      transition: all var(--transition);
      height: 100%;
      text-align: center;
    }
    .svc-card:hover {
      background: var(--navy);
      border-color: var(--navy);
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }
    .svc-icon {
      width: 64px; height: 64px;
      border-radius: 16px;
      background: linear-gradient(135deg, #f5e6c0, #fdf6e4);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px;
      font-size: 1.6rem; color: var(--gold);
      transition: all var(--transition);
    }
    .svc-card:hover .svc-icon { background: rgba(201,168,76,.15); }
    .svc-card h5 {
      font-weight: 700; font-size: .95rem;
      color: var(--navy); margin-bottom: 8px;
      transition: color var(--transition);
    }
    .svc-card p {
      font-size: .82rem; color: var(--muted);
      line-height: 1.6; transition: color var(--transition);
    }
    .svc-card:hover h5 { color: var(--gold); }
    .svc-card:hover p { color: rgba(255,255,255,.65); }

    /* ============================================================
       COUNTER SECTION
    ============================================================ */
    .counter-section {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
      padding: 70px 0;
      position: relative; overflow: hidden;
    }
    .counter-section::before {
      content: '';
      position: absolute; top: -80px; right: -80px;
      width: 360px; height: 360px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
    }
    .counter-box { text-align: center; padding: 24px 16px; }
    .counter-num {
      font-family: var(--ff-jakarta);
      font-size: clamp(2.4rem, 5vw, 3.5rem);
      font-weight: 900; color: var(--gold);
      line-height: 1; margin-bottom: 6px;
    }
    .counter-label {
      font-size: .85rem; font-weight: 500;
      color: rgba(255,255,255,.7);
      letter-spacing: .5px;
    }
    .counter-divider {
      width: 1px; background: rgba(255,255,255,.12);
      align-self: stretch; margin: 20px 0;
    }

    /* ============================================================
       GALLERY
    ============================================================ */
    .gallery-item {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }
    .gallery-item img {
      width: 100%; height: 220px; object-fit: cover;
      transition: transform .5s;
    }
    .gallery-item:hover img { transform: scale(1.08); }
    .gallery-item .gallery-overlay {
      position: absolute; inset: 0;
      background: rgba(10,22,40,.65);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transition: opacity var(--transition);
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay i { font-size: 2rem; color: var(--gold); }

    /* Lightbox */
    #lightbox {
      display: none;
      position: fixed; inset: 0; z-index: 9000;
      background: rgba(0,0,0,.92);
      align-items: center; justify-content: center;
    }
    #lightbox.active { display: flex; }
    #lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
    #lightbox-close {
      position: fixed; top: 20px; right: 28px;
      font-size: 2.2rem; color: var(--white); cursor: pointer;
      transition: color var(--transition);
    }
    #lightbox-close:hover { color: var(--gold); }

    /* ============================================================
       TESTIMONIALS
    ============================================================ */
    .testi-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(10,22,40,.06);
      position: relative;
    }
    .testi-card::before {
      content: '\201C';
      position: absolute; top: 14px; left: 24px;
      font-family: var(--ff-display);
      font-size: 5rem; line-height: 1;
      color: var(--gold-3);
    }
    .testi-text {
      font-size: .92rem; line-height: 1.8;
      color: var(--text); margin-bottom: 24px;
      padding-top: 24px;
    }
    .testi-footer { display: flex; align-items: center; gap: 14px; }
    .testi-avatar {
      width: 52px; height: 52px;
      border-radius: 50%; object-fit: cover;
      border: 2px solid var(--gold);
    }
    .testi-name { font-weight: 700; font-size: .92rem; color: var(--navy); }
    .testi-role { font-size: .78rem; color: var(--muted); }
    .stars { color: var(--gold); font-size: .85rem; margin-bottom: 4px; }

    /* ============================================================
       CLIENTS
    ============================================================ */
    .clients-track {
      display: flex; gap: 32px; align-items: center;
      animation: marquee 22s linear infinite;
      width: max-content;
    }
    .clients-track:hover { animation-play-state: paused; }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .client-logo-box {
      flex: 0 0 auto;
      width: 140px; height: 64px;
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid rgba(10,22,40,.08);
      display: flex; align-items: center; justify-content: center;
      padding: 10px 18px;
      font-family: var(--ff-display);
      font-weight: 700; font-size: .95rem;
      color: var(--navy);
      box-shadow: var(--shadow-sm);
      transition: all var(--transition);
    }
    .client-logo-box:hover { border-color: var(--gold); color: var(--gold); }
    .clients-overflow { overflow: hidden; }

    /* ============================================================
       CTA SECTION
    ============================================================ */
    .cta-section {
      position: relative; overflow: hidden;
      padding: 100px 0;
      background: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1600&q=80') center/cover no-repeat;
    }
    .cta-section::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(10,22,40,.88) 0%, rgba(10,22,40,.70) 100%);
    }
    .cta-content { position: relative; z-index: 2; }
    .cta-section h2 {
      font-family: var(--ff-jakarta);
      font-size: clamp(1.9rem, 4vw, 3rem);
      font-weight: 900; color: var(--white);
      margin-bottom: 16px; line-height: 1.2;
    }
    .cta-section h2 span { color: var(--gold); }
    .cta-section p { color: rgba(255,255,255,.78); font-size: 1rem; margin-bottom: 36px; }

    /* ============================================================
       BLOG
    ============================================================ */
    .blog-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(10,22,40,.06);
      transition: all var(--transition);
      height: 100%;
    }
    .blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .blog-img { width: 100%; height: 200px; object-fit: cover; transition: transform .5s; }
    .blog-card:hover .blog-img { transform: scale(1.04); }
    .blog-body { padding: 22px; }
    .blog-cat {
      font-size: .7rem; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 8px;
    }
    .blog-body h5 {
      font-family: var(--ff-display);
      font-size: 1.05rem; font-weight: 700;
      color: var(--navy); margin-bottom: 10px;
      line-height: 1.4;
    }
    .blog-body p { font-size: .84rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
    .blog-meta { font-size: .75rem; color: var(--muted); display: flex; align-items: center; gap: 12px; }
    .blog-meta i { color: var(--gold); }
    .btn-link-gold {
      font-size: .78rem; font-weight: 700;
      letter-spacing: .8px; text-transform: uppercase;
      color: var(--gold);
      display: inline-flex; align-items: center; gap: 6px;
      transition: gap var(--transition);
    }
    .btn-link-gold:hover { color: var(--gold); gap: 10px; }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      background: var(--navy);
      color: rgba(255,255,255,.75);
    }
    .footer-top { padding: 70px 0 48px; }
    .footer-logo {
      font-family: var(--ff-display);
      font-size: 1.8rem; font-weight: 900;
      color: var(--white); margin-bottom: 14px;
    }
    .footer-logo span { color: var(--gold); }
    .footer-logo small {
      display: block;
      font-family: var(--ff-body);
      font-size: .62rem; letter-spacing: 3px;
      color: var(--muted); text-transform: uppercase;
    }
    .footer-about { font-size: .86rem; line-height: 1.8; margin-bottom: 22px; }
    .footer-social { display: flex; gap: 10px; }
    .footer-social a {
      width: 34px; height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(201,168,76,.3);
      display: grid; place-items: center;
      color: rgba(255,255,255,.65); font-size: .85rem;
      transition: all var(--transition);
    }
    .footer-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
    .footer-heading {
      font-family: var(--ff-display);
      font-size: 1rem; font-weight: 700;
      color: var(--white); margin-bottom: 18px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(201,168,76,.2);
    }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 8px; }
    .footer-links a {
      color: rgba(255,255,255,.65); font-size: .86rem;
      display: flex; align-items: center; gap: 8px;
      transition: all var(--transition);
    }
    .footer-links a::before {
      content: ''; width: 14px; height: 1.5px;
      background: var(--gold); flex-shrink: 0;
      transform: scaleX(0); transition: transform var(--transition);
    }
    .footer-links a:hover { color: var(--gold); padding-left: 6px; }
    .footer-links a:hover::before { transform: scaleX(1); }
    .footer-contact { list-style: none; padding: 0; }
    .footer-contact li {
      display: flex; gap: 12px; margin-bottom: 14px;
      font-size: .86rem; align-items: flex-start;
    }
    .footer-contact li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
    .newsletter-form { display: flex; gap: 8px; flex-wrap: wrap; }
    .newsletter-input {
      flex: 1; min-width: 160px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.15);
      color: var(--white);
      border-radius: 50px;
      padding: 10px 18px; font-size: .84rem;
      transition: border-color var(--transition);
    }
    .newsletter-input:focus { outline: none; border-color: var(--gold); }
    .newsletter-input::placeholder { color: rgba(255,255,255,.4); }
    .newsletter-btn {
      background: linear-gradient(135deg, var(--gold), var(--gold-2));
      color: var(--navy); border: none;
      border-radius: 50px; padding: 10px 22px;
      font-weight: 700; font-size: .8rem;
      cursor: pointer; transition: all var(--transition);
      white-space: nowrap;
    }
    .newsletter-btn:hover { transform: translateY(-2px); }
    .footer-divider { border-color: rgba(255,255,255,.08); margin: 0; }
    .footer-bottom {
      padding: 18px 0;
      font-size: .8rem; color: rgba(255,255,255,.45);
    }
    .footer-bottom a { color: var(--gold); }

    /* ============================================================
       ENQUIRY MODAL
    ============================================================ */
    .modal-content {
      border-radius: var(--radius-lg);
      border: none; overflow: hidden;
    }
    .modal-header {
      background: linear-gradient(135deg, var(--navy), var(--navy-2));
      border: none; padding: 24px 28px;
    }
    .modal-title {
      font-family: var(--ff-display);
      font-size: 1.4rem; font-weight: 700; color: var(--white);
    }
    .modal-title span { color: var(--gold); }
    .btn-close-modal {
      color: rgba(255,255,255,.7); font-size: 1.4rem;
      background: none; border: none; cursor: pointer;
      transition: color var(--transition);
      line-height: 1;
    }
    .btn-close-modal:hover { color: var(--gold); }
    .modal-body { padding: 28px; }
    .form-label { font-weight: 600; font-size: .82rem; color: var(--navy); letter-spacing: .4px; margin-bottom: 6px; }
    .form-control, .form-select {
      border: 1.5px solid rgba(10,22,40,.12);
      border-radius: 10px; padding: 10px 14px;
      font-size: .88rem; transition: all var(--transition);
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201,168,76,.15);
    }
    .form-control.is-invalid { border-color: #dc3545; }
    .btn-submit {
      background: linear-gradient(135deg, var(--gold), var(--gold-2));
      color: var(--navy); border: none;
      border-radius: 50px; padding: 13px 36px;
      font-weight: 700; font-size: .85rem;
      letter-spacing: .8px; text-transform: uppercase;
      width: 100%; transition: all var(--transition);
      box-shadow: 0 4px 16px rgba(201,168,76,.3);
    }
    .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.45); }

    /* ============================================================
       FLOATING BUTTONS
    ============================================================ */
    #whatsapp-btn {
      position: fixed; bottom: 86px; right: 22px; z-index: 999;
      width: 52px; height: 52px; border-radius: 50%;
      background: #25D366;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; color: var(--white);
      box-shadow: 0 4px 20px rgba(37,211,102,.4);
      transition: all var(--transition);
      animation: pulse-wa 2.4s infinite;
    }
    #whatsapp-btn:hover { transform: scale(1.1); background: #1ebd5a; }
    @keyframes pulse-wa {
      0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
      50% { box-shadow: 0 4px 28px rgba(37,211,102,.7); }
    }
    #back-to-top {
      position: fixed; bottom: 22px; right: 22px; z-index: 999;
      width: 46px; height: 46px; border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-2));
      color: var(--navy); border: none;
      display: grid; place-items: center;
      font-size: 1.1rem;
      box-shadow: 0 4px 16px rgba(201,168,76,.4);
      cursor: pointer;
      opacity: 0; transform: translateY(20px);
      transition: all var(--transition);
    }
    #back-to-top.show { opacity: 1; transform: translateY(0); }
    #back-to-top:hover { transform: translateY(-3px); }

    /* ============================================================
       MISC
    ============================================================ */
    .img-placeholder {
      background: linear-gradient(135deg, #e8e4dc, #d4c9b8);
      display: flex; align-items: center; justify-content: center;
      color: var(--muted); font-size: 2rem;
    }
    
    .height320{
        min-height: 0px !important;
    }

    @media (max-width: 767px) {
      .about-badge { display: none; }
      .top-bar-info { gap: 10px; font-size: .72rem; }
      .hero-title { font-size: 2rem; }
      .hero-desc { font-size: .9rem; }
      .btn-hero-outline { display: none; }
      .section-pad { padding: 60px 0; }
    }