:root {
      --green:       #096635;
      --green-mid:   #006600;
      --green-dark:  #004d00;
      --green-light: #e6f4e6;
      --green-pale:  #f2faf2;
      --gold:        #ec982b;
      --gold-light:  #f5ecd5;
      --cream:       #faf8f4;
      --text-dark:   #1a2a1a;
      --text-mid:    #3d5c3d;
      --text-muted:  #7a9a7a;
      --border:      rgba(0,128,0,0.12);
      --shadow-sm:   0 2px 16px rgba(0,128,0,0.07);
      --shadow-md:   0 8px 40px rgba(0,128,0,0.10);
      --radius:      16px;
      --radius-sm:   10px;
    }

    * { box-sizing: border-box; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text-dark);
      background: var(--cream);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, .display-font {
      font-family: 'Cormorant Garamond', serif;
    }

    /* ── NAVBAR ────────────────────────────── */
    .navbar {
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
      position: sticky;
      top: 0;
      z-index: 999;
      transition: box-shadow .3s;
    }
    .navbar.scrolled { box-shadow: var(--shadow-sm); }
    .navbar-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.55rem;
      font-weight: 600;
      color: var(--green) !important;
      letter-spacing: -0.3px;
    }
    .navbar-brand span { color: var(--gold); }
    .nav-link {
      color: var(--text-mid) !important;
      font-size: 0.875rem;
      font-weight: 500;
      padding: 6px 14px !important;
      border-radius: 8px;
      transition: background .2s, color .2s;
    }
    .nav-link:hover, .nav-link.active {
      background: var(--green-light);
      color: var(--green) !important;
    }
    .btn-nav-cta {
      background: var(--green);
      color: #fff !important;
      border-radius: 50px;
      padding: 8px 22px !important;
      font-weight: 500;
      font-size: 0.875rem;
      transition: background .2s, transform .15s;
    }
    .btn-nav-cta:hover { background: var(--green-mid); transform: translateY(-1px); }

    .navbar-toggler {
      border: none;
      color: var(--green);
      font-size: 1.4rem;
    }
    .navbar-toggler:focus { box-shadow: none; }

    /* ── HERO ──────────────────────────────── */
    .hero {
      position: relative;
      min-height: 92vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: linear-gradient(135deg, #001a00 0%, #003300 50%, #005200 100%);
    }
 
    /* Geometric pattern overlay */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 20% 30%, rgba(201,168,76,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0,128,0,0.20) 0%, transparent 50%);
    }
 
    /* Islamic geometric pattern */
    .hero-pattern {
      position: absolute;
      inset: 0;
      opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='0.8' d='M40 0 L80 40 L40 80 L0 40 Z M40 10 L70 40 L40 70 L10 40 Z M40 20 L60 40 L40 60 L20 40 Z'/%3E%3C/svg%3E");
      background-size: 80px 80px;
    }
 
    /* Mosque silhouette */
    .hero-mosque {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 55%;
      max-width: 680px;
      opacity: 0.10;
      pointer-events: none;
    }
 
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 80px 0;
      padding-left: 48px;
    }
    @media (max-width: 991px) {
      .hero-content { padding-left: 16px; }
      .dropdown-menu.dropdown-menu-end {
          left: 50% !important;
          right: auto !important;
          transform: translateX(-50%) !important;
      }
    }
    .hero h1 {
      font-size: clamp(2.4rem, 6vw, 4.2rem);
      font-weight: 600;
      color: #fff;
      line-height: 1.12;
      margin-bottom: 20px;
    }
    .hero h1 em { color: var(--gold); font-style: italic; }
    .hero p.lead {
      color: rgba(255,255,255,0.72);
      font-size: 1.05rem;
      font-weight: 300;
      max-width: 480px;
      line-height: 1.7;
      margin-bottom: 36px;
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-hero-primary {
      background: var(--gold);
      color: #1a1000;
      border: none;
      border-radius: 50px;
      padding: 14px 30px;
      font-weight: 500;
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background .2s, transform .15s;
      text-decoration: none;
    }
    .btn-hero-primary:hover { background: #b8973a; transform: translateY(-2px); color: #1a1000; }
    .btn-hero-outline {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255,255,255,0.35);
      border-radius: 50px;
      padding: 14px 30px;
      font-weight: 500;
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: border-color .2s, background .2s;
      text-decoration: none;
    }
    .btn-hero-outline:hover { border-color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.06); color: #fff; }

    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 56px;
      flex-wrap: wrap;
    }
    .hero-stat-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 600;
      color: #fff;
      line-height: 1;
    }
    .hero-stat-label {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 0.6px;
      margin-top: 4px;
    }
    .hero-stat-divider {
      width: 1px;
      background: rgba(255,255,255,0.15);
      align-self: stretch;
    }

    /* ── SEARCH BAR ────────────────────────── */
    .search-card {
      background: #fff;
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      padding: 28px 32px;
      border: 1px solid var(--border);
      margin-top: -3rem;
      position: relative;
      z-index: 10;
    }
    .search-card .form-label {
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.6px;
      margin-bottom: 6px;
    }
    .search-card .form-select,
    .search-card .form-control {
      border: 1.5px solid #e6ede6;
      border-radius: var(--radius-sm);
      padding: 11px 14px;
      font-size: 0.9rem;
      color: var(--text-dark);
      background-color: var(--green-pale);
      transition: border-color .2s;
    }
    .search-card .form-select:focus,
    .search-card .form-control:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(0,128,0,0.08);
    }
    .btn-search {
      background: var(--green);
      color: #fff;
      border: none;
      border-radius: var(--radius-sm);
      padding: 12px 28px;
      font-weight: 500;
      width: 100%;
      transition: background .2s;
    }
    .btn-search:hover { background: var(--green); }

    /* ── SECTIONS ──────────────────────────── */
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--green);
      font-size: 0.78rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 12px;
    }
    .section-label::before {
      content: '';
      display: block;
      width: 24px;
      height: 2px;
      background: var(--green);
      border-radius: 2px;
    }
    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.2;
      margin-bottom: 14px;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 1rem;
      font-weight: 300;
      max-width: 520px;
      line-height: 1.7;
    }

    /* ── PACKAGE CARDS ─────────────────────── */
    .pkg-card {
      background: #fff;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      overflow: hidden;
      transition: transform .25s, box-shadow .25s;
      height: 100%;
    }
    .pkg-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
    }
    .pkg-img-wrap {
      position: relative;
      height: 210px;
      overflow: hidden;
      background: var(--green-light);
    }
    .pkg-img-wrap svg {
      width: 100%;
      height: 100%;
    }
    .pkg-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--green);
      color: #fff;
      padding: 4px 12px;
      border-radius: 50px;
      font-size: 0.72rem;
      font-weight: 500;
    }
    .pkg-badge.gold {
      background: var(--gold);
      color: #1a1000;
    }
    .pkg-body {
      padding: 22px 22px 18px;
    }
    .pkg-duration {
      font-size: 0.75rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 5px;
      margin-bottom: 8px;
    }
    .pkg-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 12px;
      line-height: 1.3;
    }
    .pkg-features {
      list-style: none;
      padding: 0;
      margin: 0 0 18px;
    }
    .pkg-features li {
      font-size: 0.83rem;
      color: var(--text-mid);
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 4px 0;
    }
    .pkg-features li i { color: var(--green); font-size: 0.9rem; }
    .pkg-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }
    .pkg-price-label { font-size: 0.72rem; color: var(--text-muted); }
    .pkg-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--green);
    }
    .pkg-price span { font-size: 0.85rem; font-weight: 400; color: var(--text-muted); }
    .btn-pkg {
      background: var(--green-light);
      color: var(--green);
      border: 1px solid rgba(0,128,0,0.2);
      border-radius: 50px;
      padding: 8px 20px;
      font-size: 0.82rem;
      font-weight: 500;
      text-decoration: none;
      transition: background .2s, color .2s;
      white-space: nowrap;
    }
    .btn-pkg:hover { background: var(--green); color: #fff; }

    /* ── ILLUSTRATED MOSQUE CARDS ─────────── */
    .city-card {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      cursor: pointer;
      height: 260px;
    }
    .city-card-bg {
      width: 100%;
      height: 100%;
      transition: transform .4s;
    }
    .city-card:hover .city-card-bg { transform: scale(1.04); }
    .city-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,40,0,0.82) 0%, transparent 55%);
    }
    .city-card-body {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px;
      color: #fff;
    }
    .city-card-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 4px;
    }
    .city-card-sub { font-size: 0.78rem; color: rgba(255,255,255,0.65); }

    /* ── WHY US ────────────────────────────── */
    .why-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 30px 24px;
      text-align: center;
      transition: transform .25s, box-shadow .25s;
      height: 100%;
    }
    .why-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-sm);
    }
    .why-icon {
      width: 58px;
      height: 58px;
      background: var(--green-light);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 1.55rem;
      color: var(--green);
    }
    .why-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-weight: 600;
      margin-bottom: 10px;
    }
    .why-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

    /* ── TESTIMONY ─────────────────────────── */
    .testi-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      height: 100%;
    }
    .testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; }
    .testi-text {
      font-size: 0.9rem;
      color: var(--text-mid);
      line-height: 1.7;
      font-style: italic;
      margin-bottom: 20px;
    }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--green);
      flex-shrink: 0;
    }
    .testi-name { font-size: 0.88rem; font-weight: 500; color: var(--text-dark); }
    .testi-loc { font-size: 0.75rem; color: var(--text-muted); }

    /* ── CTA BANNER ────────────────────────── */
   .cta-section {
    background: #096635;
    border-radius: 16px;
    padding: 56px;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px);
    pointer-events: none;
}
.cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.cta-section p {
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 28px;
}
.cta-left { position: relative; z-index: 1; }

.btn-cta-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: #096635;
    border-radius: 50px; padding: 12px 24px;
    font-size: 0.875rem; font-weight: 500;
    text-decoration: none; transition: all 0.2s;
}
.btn-cta-white:hover { background: #f0f0f0; color: #074d27; transform: translateY(-1px); }

.btn-cta-outline-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 50px; padding: 12px 24px;
    font-size: 0.875rem; font-weight: 500;
    text-decoration: none; transition: all 0.2s;
}
.btn-cta-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); color: #fff; }

.cta-form-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative; z-index: 1;
}
.cta-form-card .form-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem; color: rgba(255,255,255,0.6);
    text-align: center; margin-bottom: 4px;
}
.cta-form-card .form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 600; color: #fff;
    text-align: center; margin-bottom: 20px;
}
.cta-form-card .form-control,
.cta-form-card .form-select {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff; border-radius: 10px;
    padding: 12px 14px; font-size: 0.875rem;
}
.cta-form-card .form-control::placeholder { color: rgba(255,255,255,0.45); }
.cta-form-card .form-control:focus,
.cta-form-card .form-select:focus {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.5);
    color: #fff; box-shadow: none;
}
.cta-form-card .form-select option { color: #1a1a1a; background: #fff; }

.btn-send {
    width: 100%; background: #ec982b; color: #1a1000;
    border: none; border-radius: 10px; padding: 13px;
    font-size: 0.9rem; font-weight: 500;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    cursor: pointer; transition: all 0.2s;
}
.btn-send:hover { background: #b8943e; transform: translateY(-1px); }

@media (max-width: 768px) {
    .cta-section { padding: 36px 24px; }
    .cta-section h2 { font-size: 1.8rem; }
}
    

    /* ── FOOTER ────────────────────────────── */
    footer {
      background: var(--text-dark);
      color: rgba(255,255,255,0.65);
      padding: 60px 0 28px;
    }
    .footer-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      color: #fff;
      margin-bottom: 12px;
    }
    .footer-brand span { color: var(--gold); }
    .footer-desc { font-size: 0.85rem; line-height: 1.7; margin-bottom: 24px; max-width: 300px; }
    .footer-social a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      transition: background .2s, color .2s;
      margin-right: 8px;
    }
    .footer-social a:hover { background: var(--green); color: #fff; }
    .footer-heading {
      font-size: 0.78rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: rgba(255,255,255,0.35);
      margin-bottom: 18px;
    }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color .2s;
    }
    .footer-links a:hover { color: #fff; }
    .footer-bottom {
      margin-top: 48px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.08);
      font-size: 0.8rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: gap;
      gap: 12px;
    }
    .footer-cert {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.06);
      padding: 8px 14px;
      border-radius: 8px;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.55);
    }
    .footer-cert i { color: var(--gold); }

    /* ── UTILITIES ─────────────────────────── */
    .bg-section-alt { background: var(--green-pale); }
    .divider-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; margin: 0 10px; }
    .badge-new { background: var(--gold-light); color: #8a6800; font-size: 0.7rem; padding: 3px 8px; border-radius: 4px; font-weight: 500; }

    @media (max-width: 767px) {
      .search-card { padding: 20px 18px; }
      .cta-section { padding: 36px 24px; }
      .hero-stats { gap: 24px; }
      .hero-stat-divider { display: none; }
    }




    /* ── DESTINATION HERO ───────────────────── */
.dest-hero {
    position: relative;
    min-height: 54vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #001a00 0%, #003300 55%, #005200 100%);
    padding: 80px 0 100px;
}
.dest-hero-pattern {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='0.8' d='M40 0 L80 40 L40 80 L0 40 Z M40 10 L70 40 L40 70 L10 40 Z M40 20 L60 40 L40 60 L20 40 Z'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}
.dest-hero-glow {
    position: absolute; border-radius: 50%; pointer-events: none;
    filter: blur(80px);
}
.dest-hero-glow-1 {
    width: 500px; height: 500px;
    background: rgba(201,168,76,0.10);
    top: -100px; right: 10%;
}
.dest-hero-glow-2 {
    width: 400px; height: 400px;
    background: rgba(0,128,0,0.15);
    bottom: -100px; left: 5%;
}
.dest-hero-content {
    position: relative; z-index: 2; padding-left: 48px;
}
@media (max-width: 991px) { .dest-hero-content { padding-left: 16px; } }
.dest-hero h1 {
    font-size: clamp(1.9rem, 5vw, 3.4rem);
    font-weight: 600; color: #fff; line-height: 1.18; margin-bottom: 16px;
}
.dest-hero h1 em { color: var(--gold); font-style: italic; }
.dest-hero p {
    color: rgba(255,255,255,0.68); font-size: 1rem; font-weight: 300;
    max-width: 560px; line-height: 1.75; margin-bottom: 28px;
}
.dest-hero-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.8rem; color: rgba(255,255,255,0.45);
}
.dest-hero-breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.dest-hero-breadcrumb a:hover { color: var(--gold); }
.dest-hero-breadcrumb i { font-size: 0.65rem; }
.dest-hero-breadcrumb span { color: var(--gold); }

/* ── FILTER BAR ─────────────────────────── */
.dest-filter-bar {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    padding: 14px 20px;
}
.dest-filter-tabs {
    display: flex; gap: 8px; flex-wrap: wrap;
}
.dft-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 20px; border-radius: 50px;
    border: 1.5px solid var(--border);
    background: transparent; color: var(--text-mid);
    font-size: 0.85rem; font-weight: 500;
    cursor: pointer; transition: all .2s;
}
.dft-btn:hover { border-color: var(--green); color: var(--green); }
.dft-btn.active { background: var(--green); color: #fff; border-color: var(--green); }

/* ── DEST GROUP HEADER ──────────────────── */
.dest-group-header {
    display: flex; align-items: center; gap: 20px;
    margin-bottom: 32px; flex-wrap: wrap;
}
.dest-group-line {
    width: 4px; height: 50px; background: var(--green);
    border-radius: 4px; flex-shrink: 0;
}
.dest-group-label {
    font-size: 0.75rem; font-weight: 500; text-transform: uppercase;
    letter-spacing: 1px; color: var(--green);
    display: flex; align-items: center; gap: 6px; margin-bottom: 4px;
}
.dest-group-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 600; color: var(--text-dark); margin: 0;
}
.dest-group-count {
    margin-left: auto;
    background: var(--green-light); color: var(--green);
    padding: 6px 16px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 500;
    white-space: nowrap;
}

/* ── DESTINATION CARDS ──────────────────── */
.dest-card {
    position: relative; border-radius: var(--radius);
    overflow: hidden; cursor: pointer;
    transition: transform .3s, box-shadow .3s;
    height: 100%;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

/* Image containers */
.dest-card-img {
    position: relative; overflow: hidden;
}
.dest-card-img img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    z-index: 1; transition: transform .4s;
}
.dest-card:hover .dest-card-img img { transform: scale(1.06); }
.dest-card-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
}

/* Sizes */
.dest-card-featured .dest-card-img { height: 100%; min-height: 460px; }
.dest-card-featured { display: flex; flex-direction: column; min-height: 460px; }
.dest-card-md .dest-card-img { height: 220px; }
.dest-card-sm .dest-card-img { height: 160px; }

/* Overlay gradient */
.dest-card-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to top, rgba(0,20,0,0.92) 0%, rgba(0,20,0,0.3) 50%, transparent 100%);
    pointer-events: none;
}

/* Body on top of image */
.dest-card-body {
    position: absolute; bottom: 0; left: 0; right: 0;
    z-index: 3; padding: 22px 22px 20px;
}

/* Card text */
.dest-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 600; color: #fff;
    margin-bottom: 8px; line-height: 1.25;
}
.dest-card-featured .dest-card-title { font-size: 1.7rem; }
.dest-card-desc {
    font-size: 0.82rem; color: rgba(255,255,255,0.72);
    line-height: 1.65; margin-bottom: 14px;
}
.dest-card-sm .dest-card-desc { display: none; }
.dest-card-sm:hover .dest-card-desc { display: block; }

/* ── INTERNASIONAL SCROLL ───────────────── */
.dest-intl-scroll {
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: thin;
    scrollbar-color: var(--green-light) transparent;
}
.dest-intl-scroll::-webkit-scrollbar { height: 4px; }
.dest-intl-scroll::-webkit-scrollbar-track { background: transparent; }
.dest-intl-scroll::-webkit-scrollbar-thumb { background: var(--green-light); border-radius: 2px; }

.dest-intl-track {
    display: flex; gap: 16px;
    min-width: max-content; padding: 4px 2px 8px;
}
.dest-intl-card {
    width: 220px; flex-shrink: 0;
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    cursor: pointer;
}
.dest-intl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dest-intl-img {
    height: 130px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: rgba(255,255,255,0.2);
    transition: transform .3s;
}
.dest-intl-card:hover .dest-intl-img { transform: scale(1.04); }
.dest-intl-flag {
    font-size: 1.5rem; padding: 10px 14px 0;
}
.dest-intl-country {
    font-size: 0.7rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.6px;
    padding: 2px 14px 0;
    margin-bottom: 25px;
}
.dest-intl-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 600; color: var(--text-dark);
    padding: 4px 14px 10px; line-height: 1.2;
}

/* ── FACT CARDS ─────────────────────────── */
.dest-fact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    height: 100%;
    transition: transform .25s, box-shadow .25s;
}
.dest-fact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.dest-fact-icon {
    width: 54px; height: 54px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin: 0 auto 16px;
}
.dest-fact-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 600; color: var(--text-dark); line-height: 1;
}
.dest-fact-label {
    font-size: 0.75rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.5px;
    margin: 6px 0 10px;
}
.dest-fact-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ── ROUTE VISUAL ───────────────────────── */
.dest-route-visual {
    overflow-x: auto; padding: 20px 0 10px;
}
.dest-route-track {
    display: flex; align-items: center; justify-content: center;
    gap: 0; min-width: 600px;
}
.dest-route-node {
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; flex-shrink: 0;
}
.drn-dot {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; border: 2px solid var(--border);
    background: #fff; color: var(--text-muted);
    transition: all .3s;
}
.node-start .drn-dot  { background: var(--green-light); color: var(--green); border-color: var(--green); }
.node-makkah .drn-dot { background: var(--green); color: #fff; border-color: var(--green); }
.node-madinah .drn-dot{ background: var(--gold); color: #1a1000; border-color: var(--gold); }
.node-plus .drn-dot   { background: rgba(51,102,170,0.12); color: #3366aa; border-color: #3366aa; border-style: dashed; }
.node-end .drn-dot    { background: var(--green-light); color: var(--green); border-color: var(--green); }
.drn-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 600; color: var(--text-dark);
}
.drn-sub { font-size: 0.72rem; color: var(--text-muted); }

.dest-route-line {
    flex: 1; height: 2px; background: var(--green);
    position: relative; min-width: 40px;
}
.dest-route-dashed {
    background: repeating-linear-gradient(
        90deg, #3366aa 0, #3366aa 8px, transparent 8px, transparent 14px
    );
}
.drl-arrow {
    position: absolute; right: -6px; top: 50%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid var(--green);
}
.dest-route-dashed .drl-arrow { border-left-color: #3366aa; }

/* ── CTA PILLS ──────────────────────────── */
.dest-cta-pills {
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.dcp-item {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff; padding: 7px 16px; border-radius: 50px;
    font-size: 0.82rem; font-weight: 500;
}
.dcp-gold {
    background: rgba(201,168,76,0.18);
    border-color: rgba(201,168,76,0.35);
    color: var(--gold);
}

/* ── HIDDEN GROUP (filter) ──────────────── */
section[data-group].dest-hidden { display: none; }



/* ── ABOUT HERO ─────────────────────────── */
        .about-hero {
            position: relative;
            min-height: 55vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(135deg, #001a00 0%, #003300 50%, #005200 100%);
            padding: 80px 0 60px;
        }

        .about-hero-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.04;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='0.8' d='M40 0 L80 40 L40 80 L0 40 Z M40 10 L70 40 L40 70 L10 40 Z M40 20 L60 40 L40 60 L20 40 Z'/%3E%3C/svg%3E");
            background-size: 80px 80px;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle at 80% 50%, rgba(201, 168, 76, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(0, 128, 0, 0.20) 0%, transparent 50%);
        }

        .about-hero-mosque {
            position: absolute;
            bottom: 0;
            right: -5%;
            width: 45%;
            max-width: 560px;
            opacity: 0.07;
            pointer-events: none;
        }

        .about-hero-content {
            position: relative;
            z-index: 2;
            padding-left: 48px;
        }

        @media (max-width: 991px) {
            .about-hero-content {
                padding-left: 16px;
            }
        }

        .about-hero h1 {
            font-size: clamp(1.9rem, 5vw, 3.4rem);
            font-weight: 600;
            color: #fff;
            line-height: 1.18;
            margin-bottom: 16px;
        }

        .about-hero h1 em {
            color: var(--gold);
            font-style: italic;
        }

        .about-hero p {
            color: rgba(255, 255, 255, 0.70);
            font-size: 1rem;
            font-weight: 300;
            max-width: 560px;
            line-height: 1.75;
            margin-bottom: 28px;
        }

        .about-hero-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.45);
        }

        .about-hero-breadcrumb a {
            color: rgba(255, 255, 255, 0.55);
            text-decoration: none;
            transition: color .2s;
        }

        .about-hero-breadcrumb a:hover {
            color: var(--gold);
        }

        .about-hero-breadcrumb i {
            font-size: 0.65rem;
        }

        .about-hero-breadcrumb span {
            color: var(--gold);
        }

        /* ── ABOUT IMAGE BLOCK ──────────────────── */
        .about-img-wrap {
            position: relative;
            border-radius: var(--radius);
            overflow: visible;
        }

        .about-main-img {
            width: 100%;
            height: 440px;
            object-fit: cover;
            border-radius: var(--radius);
            display: block;
            box-shadow: 0 20px 60px rgba(0, 80, 0, 0.18);
        }

        .about-img-badge {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: var(--green);
            color: #fff;
            border-radius: var(--radius);
            padding: 20px 26px;
            box-shadow: 0 8px 30px rgba(0, 80, 0, 0.25);
            text-align: center;
            min-width: 110px;
        }

        .about-badge-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 600;
            line-height: 1;
        }

        .about-badge-text {
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.72);
            text-transform: uppercase;
            letter-spacing: 0.6px;
            margin-top: 4px;
        }

        .about-img-float {
            position: absolute;
            top: 20px;
            right: -16px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 8px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--text-dark);
            box-shadow: var(--shadow-sm);
            white-space: nowrap;
        }

        @media (max-width: 767px) {
            .about-img-float {
                display: none;
            }

            .about-img-badge {
                bottom: -14px;
                left: 16px;
                padding: 14px 20px;
            }

            .about-main-img {
                height: 280px;
            }
        }

        /* ── MINI STATS ─────────────────────────── */
        .about-mini-stat {
            background: var(--green-pale);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 18px 20px;
        }

        .about-mini-val {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.7rem;
            font-weight: 600;
            color: var(--green);
            line-height: 1;
        }

        .about-mini-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        /* ── VISION MISSION ─────────────────────── */
        .vimis-card {
            border-radius: var(--radius);
            padding: 36px 32px;
            height: 100%;
            border: 1px solid var(--border);
        }

        .vimis-vision {
            background: var(--green);
            color: #fff;
        }

        .vimis-mission {
            background: #fff;
        }

        .vimis-icon {
            width: 54px;
            height: 54px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .vimis-vision .vimis-icon {
            background: rgba(255, 255, 255, 0.15);
            color: var(--gold);
        }

        .vimis-mission .vimis-icon {
            background: var(--green-light);
            color: var(--green);
        }

        .vimis-label {
            font-size: 0.72rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .vimis-vision .vimis-label {
            color: rgba(255, 255, 255, 0.55);
        }

        .vimis-mission .vimis-label {
            color: var(--text-muted);
        }

        .vimis-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 14px;
            line-height: 1.3;
        }

        .vimis-vision .vimis-title {
            color: #fff;
        }

        .vimis-mission .vimis-title {
            color: var(--text-dark);
        }

        .vimis-desc {
            font-size: 0.9rem;
            line-height: 1.8;
        }

        .vimis-vision .vimis-desc {
            color: rgba(255, 255, 255, 0.75);
        }

        .vimis-mission .vimis-desc {
            color: var(--text-mid);
        }

        .vimis-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .vimis-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.88rem;
            color: var(--text-mid);
            line-height: 1.65;
        }

        .vimis-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--green);
            flex-shrink: 0;
            margin-top: 7px;
        }

        /* ── CERTIFICATION ──────────────────────── */
        .cert-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 30px 20px;
            text-align: center;
            transition: transform .25s, box-shadow .25s;
            height: 100%;
        }

        .cert-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-sm);
        }

        .cert-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: var(--green-light);
            color: var(--green);
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }

        .cert-title {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.6px;
            margin-bottom: 6px;
        }

        .cert-val {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        /* ── TEAM CARD ──────────────────────────── */
        .team-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px 22px;
            text-align: center;
            transition: transform .25s, box-shadow .25s;
            height: 100%;
        }

        .team-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-sm);
        }

        .team-avatar {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: var(--green-light);
            color: var(--green);
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            border: 2px solid rgba(0, 128, 0, 0.12);
        }

        .team-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 6px;
        }

        .team-role {
            font-size: 0.78rem;
            color: var(--green);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        /* ── TIMELINE ───────────────────────────── */
        .timeline {
            position: relative;
            max-width: 860px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--green-light), var(--green), var(--green-light));
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            align-items: flex-start;
            gap: 32px;
            margin-bottom: 40px;
            position: relative;
        }

        .timeline-right {
            flex-direction: row-reverse;
        }

        .timeline-year {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--green);
            min-width: 80px;
            text-align: right;
            padding-top: 2px;
            flex-shrink: 0;
        }

        .timeline-right .timeline-year {
            text-align: left;
        }

        .timeline-dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--green);
            border: 3px solid #fff;
            box-shadow: 0 0 0 3px var(--green-light);
            flex-shrink: 0;
            margin-top: 6px;
            z-index: 1;
            position: relative;
        }

        .timeline-content {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 20px 24px;
            flex: 1;
            box-shadow: var(--shadow-sm);
        }

        .timeline-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .timeline-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        @media (max-width: 767px) {
            .timeline::before {
                left: 20px;
            }

            .timeline-item,
            .timeline-right {
                flex-direction: column;
                padding-left: 50px;
            }

            .timeline-dot {
                position: absolute;
                left: 13px;
                top: 8px;
            }

            .timeline-year {
                font-size: 1.2rem;
                min-width: auto;
                text-align: left !important;
                color: var(--text-muted);
                font-size: 0.85rem;
                margin-bottom: 4px;
            }
        }

        /* ── CITY CARD IMAGE FIX ────────────────── */
        .city-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .4s;
        }

        .city-card:hover img {
            transform: scale(1.05);
        }




        /* ── LEGAL HERO ──────────────────────────── */
.legal-hero {
    position: relative;
    min-height: 44vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #001a00 0%, #003300 55%, #005200 100%);
    padding: 80px 0 70px;
}
.legal-hero-pattern {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='0.8' d='M40 0 L80 40 L40 80 L0 40 Z M40 10 L70 40 L40 70 L10 40 Z M40 20 L60 40 L40 60 L20 40 Z'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}
.legal-hero::before {
    content:''; position:absolute; inset:0;
    background-image:
        radial-gradient(circle at 80% 30%, rgba(201,168,76,0.10) 0%, transparent 55%),
        radial-gradient(circle at 10% 80%, rgba(0,128,0,0.18) 0%, transparent 50%);
}
.legal-hero-content { position: relative; z-index: 2; padding-left: 48px; }
@media (max-width: 991px) { .legal-hero-content { padding-left: 16px; } }

.legal-hero h1 {
    font-size: clamp(1.8rem,5vw,3.2rem); font-weight: 600;
    color: #fff; line-height: 1.18; margin-bottom: 14px;
}
.legal-hero h1 em { color: var(--gold); font-style: italic; }
.legal-hero p {
    color: rgba(255,255,255,0.68); font-size: 1rem; font-weight: 300;
    max-width: 520px; line-height: 1.75; margin-bottom: 24px;
}
.legal-hero-meta {
    display: flex; align-items: center; gap: 16px;
    flex-wrap: wrap; margin-bottom: 24px;
}
.lhm-item {
    font-size: 0.78rem; color: rgba(255,255,255,0.55);
    display: flex; align-items: center; gap: 6px;
}
.lhm-item strong { color: rgba(255,255,255,0.85); }
.lhm-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.2); }
.legal-hero-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.8rem; color: rgba(255,255,255,0.45);
}
.legal-hero-breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.legal-hero-breadcrumb a:hover { color: var(--gold); }
.legal-hero-breadcrumb i { font-size: 0.65rem; }
.legal-hero-breadcrumb span { color: var(--gold); }

/* ── SIDEBAR TOC ─────────────────────────── */
.legal-toc {
    position: sticky; top: 90px;
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 24px;
    box-shadow: var(--shadow-sm);
}
.legal-toc-title {
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.8px; color: var(--text-muted);
    margin-bottom: 16px; display: flex; align-items: center;
}
.legal-toc-list {
    list-style: none; padding: 0; margin: 0 0 20px;
    display: flex; flex-direction: column; gap: 2px;
}
.toc-link {
    display: block; padding: 6px 10px; border-radius: 8px;
    font-size: 0.82rem; color: var(--text-mid);
    text-decoration: none; transition: all .2s;
    border-left: 2px solid transparent;
}
.toc-link:hover { background: var(--green-pale); color: var(--green); border-left-color: var(--green); }
.toc-link.active { background: var(--green-light); color: var(--green); border-left-color: var(--green); font-weight: 500; }
.legal-toc-contact {
    border-top: 1px solid var(--border); padding-top: 16px;
}
.ltc-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 10px; }
.ltc-btn {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    background: #25d366; color: #fff; border-radius: 8px;
    padding: 9px 0; font-size: 0.82rem; font-weight: 500;
    text-decoration: none; transition: background .2s;
}
.ltc-btn:hover { background: #1db954; color: #fff; }

/* ── LEGAL BODY ──────────────────────────── */
.legal-body { max-width: 760px; }

/* Intro banner */
.legal-intro-banner {
    display: flex; gap: 18px; align-items: flex-start;
    background: var(--green-pale); border: 1px solid rgba(0,128,0,0.15);
    border-radius: var(--radius); padding: 24px 26px; margin-bottom: 40px;
}
.lib-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    border-radius: 12px; background: var(--green);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.3rem;
}
.lib-title { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.lib-text { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }

/* Section blocks */
.legal-section {
    margin-bottom: 44px;
    scroll-margin-top: 100px;
}
.legal-section-header {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 20px; padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.lsh-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 600; color: var(--green-light);
    line-height: 1; flex-shrink: 0; min-width: 44px;
}
.lsh-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem; font-weight: 600; color: var(--text-dark); margin: 0;
}
.legal-section-body p {
    font-size: 0.92rem; color: var(--text-mid); line-height: 1.8;
    margin-bottom: 14px;
}
.legal-section-body p:last-child { margin-bottom: 0; }

/* Data grid */
.legal-data-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px; margin: 20px 0;
}
@media (max-width: 600px) { .legal-data-grid { grid-template-columns: 1fr; } }
.ldg-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 18px;
}
.ldg-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; margin-bottom: 12px;
}
.ldg-title { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.ldg-list { list-style: none; padding: 0; margin: 0; }
.ldg-list li {
    font-size: 0.78rem; color: var(--text-muted); padding: 3px 0;
    display: flex; align-items: flex-start; gap: 7px;
}
.ldg-list li::before {
    content: ''; width: 4px; height: 4px; border-radius: 50%;
    background: var(--green); flex-shrink: 0; margin-top: 7px;
}

/* Use list */
.legal-use-list { display: flex; flex-direction: column; gap: 16px; margin: 20px 0; }
.lul-item {
    display: flex; gap: 14px; align-items: flex-start;
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 16px 18px;
}
.lul-icon {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; flex-shrink: 0;
}
.lul-green { background: var(--green); color: #fff; }
.lul-gold  { background: var(--gold); color: #1a1000; }
.lul-item strong { display: block; font-size: 0.88rem; color: var(--text-dark); margin-bottom: 4px; }
.lul-item p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Security grid */
.legal-security-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px; margin: 20px 0;
}
@media (max-width: 600px) { .legal-security-grid { grid-template-columns: 1fr; } }
.lsg-item {
    display: flex; gap: 12px; align-items: flex-start;
    background: var(--green-pale); border: 1px solid rgba(0,128,0,0.1);
    border-radius: var(--radius-sm); padding: 16px;
}
.lsg-item i { font-size: 1.2rem; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.lsg-item strong { display: block; font-size: 0.85rem; color: var(--text-dark); margin-bottom: 3px; }
.lsg-item p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* Retention table */
.legal-retention {
    margin-top: 24px;
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-sm); overflow: hidden;
}
.lr-title {
    padding: 14px 18px; font-size: 0.82rem; font-weight: 600;
    color: var(--text-dark); background: var(--green-pale);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center;
}
.lr-table { overflow-x: auto; }
.lr-row {
    display: grid; grid-template-columns: 2fr 1.2fr 2fr;
    padding: 11px 18px; font-size: 0.82rem; color: var(--text-mid);
    border-bottom: 1px solid var(--border); gap: 12px; align-items: center;
}
.lr-row:last-child { border-bottom: none; }
.lr-row-header { background: var(--green-pale); font-weight: 600; color: var(--text-dark); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; }
.lr-badge { padding: 2px 10px; border-radius: 50px; font-size: 0.72rem; font-weight: 500; display: inline-block; }
.lr-green { background: var(--green-light); color: var(--green); }
.lr-gold  { background: var(--gold-light); color: #7a5800; }
.lr-muted { background: #f0f0f0; color: var(--text-muted); }

/* Third-party sharing */
.legal-thirds { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.lt-item {
    display: flex; gap: 14px; align-items: flex-start;
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 16px 18px;
}
.lt-badge {
    background: #ffeaea; color: #cc0000; padding: 2px 10px;
    border-radius: 50px; font-size: 0.68rem; font-weight: 600;
    text-transform: uppercase; white-space: nowrap; flex-shrink: 0; margin-top: 2px;
}
.lt-badge-optional { background: var(--gold-light); color: #8a6800; }
.lt-content strong { display: block; font-size: 0.88rem; color: var(--text-dark); margin-bottom: 4px; }
.lt-content p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.lt-required { border-left: 3px solid #ffaaaa; }
.lt-optional { border-left: 3px solid var(--gold); }

/* Rights grid */
.legal-rights {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 14px; margin: 20px 0;
}
@media (max-width: 767px) { .legal-rights { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .legal-rights { grid-template-columns: 1fr; } }
.lrights-item {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 18px 16px; text-align: center;
    transition: transform .2s, box-shadow .2s;
}
.lrights-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.lrights-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--green-light); color: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; margin: 0 auto 12px;
}
.lrights-title { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.lrights-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

/* Cookie table */
.legal-cookie-table {
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    overflow: hidden; margin: 16px 0;
}
.lct-row {
    display: grid; grid-template-columns: 1.5fr 2.5fr 1fr;
    padding: 11px 16px; font-size: 0.82rem; color: var(--text-mid);
    border-bottom: 1px solid var(--border); gap: 12px; align-items: center;
}
.lct-row:last-child { border-bottom: none; }
.lct-header { background: var(--green-pale); font-weight: 600; color: var(--text-dark); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; }
.lct-yes { background: var(--green-light); color: var(--green); padding: 2px 10px; border-radius: 50px; font-size: 0.72rem; font-weight: 500; display: inline-block; }
.lct-no  { background: #ffeaea; color: #cc0000; padding: 2px 10px; border-radius: 50px; font-size: 0.72rem; font-weight: 500; display: inline-block; }

/* Contact cards */
.legal-contact-cards {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 14px; margin: 20px 0;
}
@media (max-width: 600px) { .legal-contact-cards { grid-template-columns: 1fr; } }
.lcc-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 18px;
    text-align: center;
}
.lcc-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--green-light); color: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; margin: 0 auto 10px;
}
.lcc-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.lcc-val { font-size: 0.82rem; font-weight: 500; color: var(--text-dark); word-break: break-all; }

/* Legal list */
.legal-list {
    padding-left: 0; list-style: none; margin: 14px 0;
}
.legal-list li {
    font-size: 0.88rem; color: var(--text-mid); line-height: 1.75;
    padding: 4px 0; display: flex; align-items: flex-start; gap: 10px;
}
.legal-list li::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--green); flex-shrink: 0; margin-top: 8px;
}

/* Notes */
.legal-note {
    display: flex; gap: 12px; align-items: flex-start;
    border-radius: var(--radius-sm); padding: 14px 16px; margin: 18px 0;
    font-size: 0.85rem; line-height: 1.65;
}
.legal-note i { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.legal-note-info    { background: #e8f4fd; border: 1px solid #bee3f8; color: #1a4a6e; }
.legal-note-info i  { color: #2b7bc8; }
.legal-note-warning { background: #fff8e6; border: 1px solid #fde68a; color: #7a5800; }
.legal-note-warning i { color: #d97706; }




/* ══════════════════════════════════════════
   TOS HERO
══════════════════════════════════════════ */
.tos-hero {
    position: relative;
    min-height: 44vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #001a00 0%, #003300 55%, #005200 100%);
    padding: 80px 0 70px;
}
.tos-hero-pattern {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='0.8' d='M40 0 L80 40 L40 80 L0 40 Z M40 10 L70 40 L40 70 L10 40 Z M40 20 L60 40 L40 60 L20 40 Z'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}
.tos-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 80% 30%, rgba(201,168,76,0.10) 0%, transparent 55%),
        radial-gradient(circle at 10% 80%, rgba(0,128,0,0.18) 0%, transparent 50%);
}
.tos-hero-content { position: relative; z-index: 2; padding-left: 48px; }
@media (max-width: 991px) { .tos-hero-content { padding-left: 16px; } }

.tos-hero h1 {
    font-size: clamp(1.8rem, 5vw, 3.2rem); font-weight: 600;
    color: #fff; line-height: 1.18; margin-bottom: 14px;
}
.tos-hero h1 em { color: var(--gold); font-style: italic; }
.tos-hero p {
    color: rgba(255,255,255,0.68); font-size: 1rem; font-weight: 300;
    max-width: 520px; line-height: 1.75; margin-bottom: 24px;
}
.tos-hero-meta {
    display: flex; align-items: center; gap: 16px;
    flex-wrap: wrap; margin-bottom: 24px;
}
.thm-item {
    font-size: 0.78rem; color: rgba(255,255,255,0.55);
    display: flex; align-items: center; gap: 6px;
}
.thm-item strong { color: rgba(255,255,255,0.85); }
.thm-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.2); }
.tos-hero-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.8rem; color: rgba(255,255,255,0.45);
}
.tos-hero-breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.tos-hero-breadcrumb a:hover { color: var(--gold); }
.tos-hero-breadcrumb i { font-size: 0.65rem; }
.tos-hero-breadcrumb span { color: var(--gold); }

/* ══════════════════════════════════════════
   SIDEBAR TOC
══════════════════════════════════════════ */
.tos-toc {
    position: sticky; top: 90px;
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 24px;
    box-shadow: var(--shadow-sm);
}
.tos-toc-title {
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.8px; color: var(--text-muted);
    margin-bottom: 16px; display: flex; align-items: center;
}
.tos-toc-list {
    list-style: none; padding: 0; margin: 0 0 20px;
    display: flex; flex-direction: column; gap: 2px;
}
.tos-toc-link {
    display: block; padding: 6px 10px; border-radius: 8px;
    font-size: 0.82rem; color: var(--text-mid);
    text-decoration: none; transition: all .2s;
    border-left: 2px solid transparent;
}
.tos-toc-link:hover { background: var(--green-pale); color: var(--green); border-left-color: var(--green); }
.tos-toc-link.active { background: var(--green-light); color: var(--green); border-left-color: var(--green); font-weight: 500; }
.tos-toc-contact { border-top: 1px solid var(--border); padding-top: 16px; }
.ttc-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 10px; }
.ttc-btn {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    background: #25d366; color: #fff; border-radius: 8px;
    padding: 9px 0; font-size: 0.82rem; font-weight: 500;
    text-decoration: none; transition: background .2s;
}
.ttc-btn:hover { background: #1db954; color: #fff; }

/* ══════════════════════════════════════════
   TOS BODY
══════════════════════════════════════════ */
.tos-body { max-width: 760px; }

/* Intro banner */
.tos-intro-banner {
    display: flex; gap: 18px; align-items: flex-start;
    background: var(--green-pale); border: 1px solid rgba(0,128,0,0.15);
    border-radius: var(--radius); padding: 24px 26px; margin-bottom: 40px;
}
.tib-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    border-radius: 12px; background: var(--green);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.3rem;
}
.tib-title { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.tib-text  { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }

/* Section blocks */
.tos-section { margin-bottom: 44px; scroll-margin-top: 100px; }
.tos-section-header {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 20px; padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.tsh-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 600; color: var(--green-light);
    line-height: 1; flex-shrink: 0; min-width: 44px;
}
.tsh-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem; font-weight: 600; color: var(--text-dark); margin: 0;
}
.tos-section-body p {
    font-size: 0.92rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px;
}
.tos-section-body p:last-child { margin-bottom: 0; }

/* ── Data grid ── */
.tos-data-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0;
}
@media (max-width: 600px) { .tos-data-grid { grid-template-columns: 1fr; } }
.tdg-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 18px;
}
.tdg-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; margin-bottom: 12px;
}
.tdg-title { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.tdg-list { list-style: none; padding: 0; margin: 0; }
.tdg-list li {
    font-size: 0.78rem; color: var(--text-muted); padding: 3px 0;
    display: flex; align-items: flex-start; gap: 7px;
}
.tdg-list li::before {
    content: ''; width: 4px; height: 4px; border-radius: 50%;
    background: var(--green); flex-shrink: 0; margin-top: 7px;
}

/* ── Use list ── */
.tos-use-list { display: flex; flex-direction: column; gap: 16px; margin: 20px 0; }
.tul-item {
    display: flex; gap: 14px; align-items: flex-start;
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 16px 18px;
}
.tul-icon {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; flex-shrink: 0;
}
.tul-green { background: var(--green); color: #fff; }
.tul-gold  { background: var(--gold);  color: #1a1000; }
.tul-item strong { display: block; font-size: 0.88rem; color: var(--text-dark); margin-bottom: 4px; }
.tul-item p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ── Security grid ── */
.tos-security-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0;
}
@media (max-width: 600px) { .tos-security-grid { grid-template-columns: 1fr; } }
.tsg-item {
    display: flex; gap: 12px; align-items: flex-start;
    background: var(--green-pale); border: 1px solid rgba(0,128,0,0.1);
    border-radius: var(--radius-sm); padding: 16px;
}
.tsg-item i { font-size: 1.2rem; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.tsg-item strong { display: block; font-size: 0.85rem; color: var(--text-dark); margin-bottom: 3px; }
.tsg-item p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* ── Retention / cancellation table ── */
.tos-retention {
    margin-top: 24px; background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-sm); overflow: hidden;
}
.tr-title {
    padding: 14px 18px; font-size: 0.82rem; font-weight: 600;
    color: var(--text-dark); background: var(--green-pale);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center;
}
.tr-table { overflow-x: auto; }
.tr-row {
    display: grid; grid-template-columns: 2fr 1.2fr 2fr;
    padding: 11px 18px; font-size: 0.82rem; color: var(--text-mid);
    border-bottom: 1px solid var(--border); gap: 12px; align-items: center;
}
.tr-row:last-child { border-bottom: none; }
.tr-row-header {
    background: var(--green-pale); font-weight: 600; color: var(--text-dark);
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px;
}
.tr-badge { padding: 2px 10px; border-radius: 50px; font-size: 0.72rem; font-weight: 500; display: inline-block; }
.tr-green { background: var(--green-light); color: var(--green); }
.tr-gold  { background: var(--gold-light);  color: #7a5800; }
.tr-muted { background: #f0f0f0; color: var(--text-muted); }

/* ── Third-party / responsibility cards ── */
.tos-thirds { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.tt-item {
    display: flex; gap: 14px; align-items: flex-start;
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 16px 18px;
}
.tt-badge {
    background: #ffeaea; color: #cc0000; padding: 2px 10px;
    border-radius: 50px; font-size: 0.68rem; font-weight: 600;
    text-transform: uppercase; white-space: nowrap; flex-shrink: 0; margin-top: 2px;
}
.tt-badge-optional { background: var(--gold-light); color: #8a6800; }
.tt-content strong { display: block; font-size: 0.88rem; color: var(--text-dark); margin-bottom: 4px; }
.tt-content p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.tt-required { border-left: 3px solid #ffaaaa; }
.tt-optional { border-left: 3px solid var(--gold); }

/* ── Rights / info cards ── */
.tos-rights {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 20px 0;
}
@media (max-width: 767px) { .tos-rights { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .tos-rights { grid-template-columns: 1fr; } }
.trights-item {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 18px 16px; text-align: center;
    transition: transform .2s, box-shadow .2s;
}
.trights-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.trights-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--green-light); color: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; margin: 0 auto 12px;
}
.trights-title { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.trights-desc  { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

/* ── Contact cards ── */
.tos-contact-cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 20px 0;
}
@media (max-width: 600px) { .tos-contact-cards { grid-template-columns: 1fr; } }
.tcc-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 18px; text-align: center;
}
.tcc-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--green-light); color: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; margin: 0 auto 10px;
}
.tcc-label {
    font-size: 0.7rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px;
}
.tcc-val { font-size: 0.82rem; font-weight: 500; color: var(--text-dark); word-break: break-all; }

/* ── Bullet list ── */
.tos-list { padding-left: 0; list-style: none; margin: 14px 0; }
.tos-list li {
    font-size: 0.88rem; color: var(--text-mid); line-height: 1.75;
    padding: 4px 0; display: flex; align-items: flex-start; gap: 10px;
}
.tos-list li::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--green); flex-shrink: 0; margin-top: 8px;
}

/* ── Notes ── */
.tos-note {
    display: flex; gap: 12px; align-items: flex-start;
    border-radius: var(--radius-sm); padding: 14px 16px; margin: 18px 0;
    font-size: 0.85rem; line-height: 1.65;
}
.tos-note i { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.tos-note-info    { background: #e8f4fd; border: 1px solid #bee3f8; color: #1a4a6e; }
.tos-note-info i  { color: #2b7bc8; }
.tos-note-warning { background: #fff8e6; border: 1px solid #fde68a; color: #7a5800; }
.tos-note-warning i { color: #d97706; }
.tos-note-success { background: var(--green-pale); border: 1px solid rgba(0,128,0,0.15); color: var(--text-mid); }
.tos-note-success i { color: var(--green); }




/* ── GALLERY HERO ───────────────────────── */
.gallery-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #001a00 0%, #003300 55%, #005200 100%);
    padding: 80px 0 80px;
}
.gallery-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='0.8' d='M40 0 L80 40 L40 80 L0 40 Z M40 10 L70 40 L40 70 L10 40 Z M40 20 L60 40 L40 60 L20 40 Z'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}
.gallery-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 75% 40%, rgba(201,168,76,0.13) 0%, transparent 55%),
        radial-gradient(circle at 15% 75%, rgba(0,128,0,0.22) 0%, transparent 50%);
}
.gallery-hero-content {
    position: relative;
    z-index: 2;
    padding-left: 48px;
}
@media (max-width: 991px) { .gallery-hero-content { padding-left: 16px; } }

.gallery-hero h1 {
    font-size: clamp(1.9rem, 5vw, 3.4rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 16px;
}
.gallery-hero h1 em { color: var(--gold); font-style: italic; }
.gallery-hero p {
    color: rgba(255,255,255,0.68);
    font-size: 1rem;
    font-weight: 300;
    max-width: 540px;
    line-height: 1.75;
    margin-bottom: 28px;
}
.gallery-hero-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.8rem; color: rgba(255,255,255,0.45);
}
.gallery-hero-breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color .2s; }
.gallery-hero-breadcrumb a:hover { color: var(--gold); }
.gallery-hero-breadcrumb i { font-size: 0.65rem; }
.gallery-hero-breadcrumb span { color: var(--gold); }

/* Floating foto cards di hero */
.gallery-hero-floats {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ghf-item {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.25);
    font-size: 1.8rem;
    backdrop-filter: blur(4px);
}
.ghf-1 { transform: rotate(-6deg); animation: floatImg 4s ease-in-out infinite; }
.ghf-2 { transform: rotate(4deg); animation: floatImg 4s ease-in-out infinite 1.3s; width:100px;height:100px; }
.ghf-3 { transform: rotate(-3deg); animation: floatImg 4s ease-in-out infinite 2.6s; }
@keyframes floatImg {
    0%,100% { transform: rotate(var(--r, -6deg)) translateY(0); }
    50% { transform: rotate(var(--r, -6deg)) translateY(-8px); }
}
@media (max-width: 991px) { .gallery-hero-floats { display: none; } }

/* ── FILTER BAR ─────────────────────────── */
.gallery-filter-bar {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.gallery-filter-scroll {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.gfb-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text-mid);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}
.gfb-btn:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }
.gfb-btn.active { background: var(--green); color: #fff; border-color: var(--green); }
.gfb-count {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}
.gfb-count strong { color: var(--green); }

/* ── MASONRY GRID ───────────────────────── */
.gallery-masonry {
    columns: 4;
    column-gap: 16px;
}
@media (max-width: 1199px) { .gallery-masonry { columns: 3; } }
@media (max-width: 767px)  { .gallery-masonry { columns: 2; } }
@media (max-width: 480px)  { .gallery-masonry { columns: 1; } }

.gal-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s;
}
.gal-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gal-item.hidden { display: none; }

.gal-img-wrap {
    position: relative;
    overflow: hidden;
}
/* Placeholder tinggi default */
.gal-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.35);
    font-size: 2rem;
    transition: transform .4s;
}
.gal-placeholder span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
/* Jika ada gambar sungguhan */
.gal-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.gal-item:hover .gal-placeholder,
.gal-item:hover .gal-img-wrap img { transform: scale(1.05); }

/* Variasi tinggi */
.gal-tall .gal-placeholder,
.gal-tall .gal-img-wrap img { height: 340px; }
.gal-wide .gal-placeholder,
.gal-wide .gal-img-wrap img { height: 240px; }

.gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,30,0,0.85) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .3s;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 16px;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay-content { color: #fff; }
.gal-overlay-title { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; }
.gal-overlay-sub { font-size: 0.72rem; color: rgba(255,255,255,0.6); margin-top: 3px; }
.gal-zoom-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0;
    align-self: flex-end;
}
.gal-zoom-btn:hover { background: rgba(255,255,255,0.3); }

.gal-caption {
    padding: 10px 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.gal-tag {
    font-size: 0.68rem;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 50px;
    display: inline-block;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.gal-tag.makkah    { background: #e6f0e6; color: #096635; }
.gal-tag.madinah   { background: #e6f0e8; color: #047a3a; }
.gal-tag.group     { background: var(--gold-light); color: #7a5800; }
.gal-tag.ibadah    { background: #f0ece6; color: #7a4a00; }
.gal-tag.perjalanan{ background: #e6eaf0; color: #003366; }

.gal-title {
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Load More */
.btn-gallery-more {
    background: transparent;
    border: 1.5px solid var(--green);
    color: var(--green);
    border-radius: 50px;
    padding: 12px 36px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
}
.btn-gallery-more:hover { background: var(--green); color: #fff; }

/* ── UPLOAD CTA ─────────────────────────── */
.gallery-upload-cta {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 40px;
    box-shadow: var(--shadow-sm);
}
.upload-icon-wrap {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green);
    font-size: 2rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
}
.gallery-upload-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.gallery-upload-cta p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}
.btn-upload-wa {
    display: inline-flex; align-items: center;
    background: #25d366; color: #fff;
    border-radius: 50px; padding: 12px 24px;
    font-size: 0.875rem; font-weight: 500;
    text-decoration: none; transition: all .2s;
    white-space: nowrap;
}
.btn-upload-wa:hover { background: #1db954; color: #fff; transform: translateY(-1px); }

@media (max-width: 767px) {
    .gallery-upload-cta { padding: 24px 20px; }
}

/* ── LIGHTBOX ───────────────────────────── */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,10,0,0.94);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}
.gallery-lightbox.open { display: flex; }
.lightbox-inner {
    position: relative;
    max-width: 900px;
    width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .2s;
    z-index: 2;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }
@media (max-width: 767px) {
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}
.lightbox-img-wrap {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}
.lightbox-placeholder {
    width: 100%;
    height: 500px;
    display: flex; align-items: center; justify-content: center;
}
.lightbox-caption { text-align: center; }
.lb-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 600; color: #fff;
}
.lb-sub { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 4px; }