:root {
    --navy: #0B1F3A;
    --navy-2: #122C4F;
    --navy-soft: #1A3A63;
    --gold: #C9A84C;
    --gold-2: #D4B45C;
    --gold-dark: #A88835;
    --text: #1E2A3A;
    --muted: #6B7785;
    --line: #E8EDF3;
    --bg: #FFFFFF;
    --bg-soft: #F7F9FC;
    --shadow: 0 12px 40px rgba(11, 31, 58, 0.08);
    --radius: 18px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.75;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button, input, select, textarea { font-family: inherit; }

.container {
    width: min(var(--container), 92%);
    margin-inline: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1.55rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    transition: 0.25s ease;
}
.btn-gold {
    background: linear-gradient(180deg, var(--gold-2), var(--gold));
    color: var(--navy);
    box-shadow: 0 8px 22px rgba(201, 168, 76, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-primary {
    background: var(--navy);
    color: #fff;
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
}
.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--line);
}
.header-glass {
    display: none;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 1rem;
    min-height: 78px;
    position: relative;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--navy);
    font-weight: 800;
    flex-shrink: 0;
}
.header-actions { flex-shrink: 0; }
.site-logo {
    height: 52px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    border-radius: 0;
    background: transparent;
}
.site-logo-footer {
    height: 46px;
    max-width: 200px;
    background: #fff;
    padding: 6px 10px;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}
.logo-mark {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #2A5A96, var(--navy));
    color: var(--gold);
    display: grid;
    place-items: center;
    font-size: 1.15rem;
    box-shadow: 0 6px 16px rgba(11,31,58,0.2);
}
.logo-text strong { display: block; font-size: 1.02rem; line-height: 1.2; }
.logo-text small {
    display: block;
    font-size: 0.68rem;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.3px;
}
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 0;
    min-width: 0;
}
.nav-drawer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 1.15rem;
}
.nav-links a {
    color: var(--navy);
    font-weight: 700;
    font-size: 0.92rem;
    position: relative;
    white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-dark); }
.nav-links a.active::after {
    content: '';
    position: absolute;
    right: 0; left: 0; bottom: -10px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--navy);
    cursor: pointer;
}
.nav-mobile-cta,
.nav-drawer-head,
.nav-drawer-close { display: none; }
.nav-links i { display: none; }

/* Hero */
.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.9s ease;
    z-index: 0;
}
.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(11,31,58,0.22) 0%, rgba(11,31,58,0.06) 38%, transparent 68%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 6rem 0 9rem;
    max-width: 640px;
}
.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 5.5rem;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: 0.3s ease;
}
.hero-dot.is-active {
    width: 28px;
    background: var(--gold);
}
.hero-arrow {
    position: absolute;
    top: 46%;
    z-index: 6;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(11,31,58,0.35);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    backdrop-filter: blur(8px);
    transition: 0.25s ease;
}
.hero-arrow:hover {
    background: var(--gold);
    color: var(--navy);
}
.hero-prev { right: 1.2rem; }
.hero-next { left: 1.2rem; }
.hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.3rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.25;
}
.hero p {
    margin: 0;
    font-size: 1.08rem;
    opacity: 0.95;
    max-width: 520px;
    text-shadow: 0 2px 14px rgba(11, 31, 58, 0.5);
}

/* Booking widget */
.booking-widget {
    position: relative;
    z-index: 5;
    margin-top: -74px;
}
.widget-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(11,31,58,0.16);
    overflow: hidden;
}
.widget-tabs {
    display: flex;
    background: var(--navy);
}
.widget-tabs button {
    flex: 1;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.72);
    padding: 1rem 0.75rem;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
}
.widget-tabs button.active {
    background: #fff;
    color: var(--navy);
}
.widget-body {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr auto;
    gap: 1rem;
    padding: 1.35rem 1.4rem 1.5rem;
    align-items: end;
}
.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    background: #FBFCFD;
    outline: none;
    color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.widget-search {
    min-width: 150px;
    height: 52px;
}

/* Features */
.features-section {
    padding: 2.5rem 0 1rem;
}
.features-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}
.feature-item {
    text-align: center;
    padding: 1.25rem 0.75rem;
}
.feature-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 0.85rem;
    border-radius: 50%;
    border: 1.5px solid rgba(201,168,76,0.45);
    color: var(--navy);
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    background: #fff;
}
.feature-item h3 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 800;
}

/* Sections */
.section { padding: 3.75rem 0; }
.section-soft { background: var(--bg-soft); }
.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
}
.section-head h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 800;
}
.section-link {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 0.95rem;
}

/* Destination cards */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
}
.dest-card {
    position: relative;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.dest-card:hover img { transform: scale(1.07); }
.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,31,58,0.88) 0%, rgba(11,31,58,0.05) 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.35rem;
    color: #fff;
}
.dest-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.dest-card h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
}
.dest-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: var(--navy);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: 0.25s;
}
.dest-card:hover .dest-arrow {
    background: var(--gold);
}

/* Promo banners */
.promo-banner {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: center;
    color: #fff;
}
.promo-banner > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.promo-banner .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11,31,58,0.78), rgba(11,31,58,0.2));
}
.promo-content {
    position: relative;
    z-index: 2;
    padding: 2.75rem;
    max-width: 520px;
}
.promo-content h2 {
    margin: 0 0 0.85rem;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    font-weight: 800;
    line-height: 1.35;
}
.promo-content p {
    margin: 0 0 1.35rem;
    opacity: 0.92;
}

/* Services - circular line icons */
.services-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}
.service-item {
    text-align: center;
    padding: 0.5rem;
}
.service-circle {
    width: 88px;
    height: 88px;
    margin: 0 auto 0.9rem;
    border-radius: 50%;
    border: 1.5px solid rgba(11,31,58,0.18);
    color: var(--navy);
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    background: #fff;
    transition: 0.25s;
}
.service-item:hover .service-circle {
    border-color: var(--gold);
    color: var(--gold-dark);
    box-shadow: var(--shadow);
}
.service-item h3 {
    margin: 0;
    font-size: 0.92rem;
    color: var(--navy);
    font-weight: 800;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.testimonial-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.6rem 1.4rem 1.35rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(11,31,58,0.04);
}
.quote-mark {
    color: var(--gold);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.6rem;
}
.testimonial-card > p {
    margin: 0 0 1.25rem;
    color: var(--muted);
    min-height: 88px;
}
.testimonial-foot {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.testimonial-foot img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-foot strong {
    display: block;
    color: var(--navy);
    font-size: 0.95rem;
}
.stars {
    color: var(--gold);
    font-size: 0.82rem;
    letter-spacing: 1px;
}

/* Footer */
.site-footer {
    color: #fff;
    padding: 0;
    margin-top: 0;
    position: relative;
}
.footer-wave {
    display: block;
    height: 56px;
    line-height: 0;
    color: #143556;
}
.footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: currentColor;
}
.footer-inner {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 12% -20%, rgba(201, 168, 76, 0.2), transparent 46%),
        radial-gradient(ellipse at 92% 120%, rgba(201, 168, 76, 0.1), transparent 42%),
        linear-gradient(180deg, #143556 0%, #0B1F3A 58%, #081628 100%);
    padding: 0.85rem 0 0;
}
.footer-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(8px);
}
.footer-orb-a {
    width: 220px;
    height: 220px;
    top: -80px;
    left: -40px;
    background: rgba(201, 168, 76, 0.16);
}
.footer-orb-b {
    width: 180px;
    height: 180px;
    bottom: 40px;
    right: -50px;
    background: rgba(255, 255, 255, 0.06);
}
.footer-cta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 1.35rem 1.5rem;
    margin-bottom: 2.4rem;
    border-radius: 22px;
    border: 1px solid rgba(201, 168, 76, 0.38);
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.16), rgba(255, 255, 255, 0.04));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
.footer-cta-copy {
    position: relative;
    z-index: 1;
}
.footer-cta-copy span {
    display: block;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 0.2rem;
}
.footer-cta-copy strong {
    display: block;
    color: #fff;
    font-size: clamp(1.2rem, 2.4vw, 1.55rem);
    font-weight: 800;
}
.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    position: relative;
    z-index: 1;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.15fr;
    gap: 2rem;
    padding-bottom: 2.4rem;
    position: relative;
    z-index: 1;
}
.footer-logo {
    color: #fff;
    margin-bottom: 1rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-logo .logo-text strong { color: #fff; }
.footer-logo .logo-text small { color: rgba(255, 255, 255, 0.68); }
.footer-tagline {
    margin: 0;
    max-width: 34ch;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.78);
}
.site-footer h4 {
    margin: 0 0 1rem;
    color: var(--gold);
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 0.55rem;
}
.site-footer h4::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--gold), transparent);
}
.site-footer p,
.site-footer a,
.site-footer span {
    color: rgba(255,255,255,0.82);
    font-size: 0.94rem;
}
.site-footer a:hover { color: var(--gold); }
.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.15rem 1rem;
}
.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.42rem 0;
    font-weight: 600;
}
.footer-links a i {
    color: var(--gold);
    font-size: 0.72rem;
}
.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.2rem;
}
.socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(201, 168, 76, 0.28);
    display: grid;
    place-items: center;
    transition: 0.2s;
    color: #fff;
}
.socials a:hover {
    background: var(--gold);
    color: var(--navy) !important;
    transform: translateY(-3px);
}
.contact-line {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
}
.contact-line i { color: var(--gold); width: 18px; }
.footer-contacts { display: grid; gap: 0.7rem; }
.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.85rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
}
a.footer-contact:hover {
    border-color: rgba(201, 168, 76, 0.45);
    background: rgba(201, 168, 76, 0.1);
}
.footer-contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(201, 168, 76, 0.16);
    color: var(--gold);
    flex-shrink: 0;
}
.footer-contact small {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
}
.footer-contact strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.5;
    word-break: break-word;
}
.footer-bottom {
    background: #071320;
    border-top: 1px solid rgba(201, 168, 76, 0.18);
    padding: 1rem 0;
    color: rgba(255,255,255,0.62);
    font-size: 0.86rem;
    position: relative;
    z-index: 1;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}
.footer-bottom-mark {
    color: var(--gold) !important;
    font-weight: 700;
}

/* Shared page bits kept for other pages */
.page-hero {
    position: relative;
    padding: 4.5rem 0 3rem;
    color: #fff;
    background-size: cover;
    background-position: center;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(11,31,58,0.88), rgba(18,44,79,0.62));
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.7rem;
}
.page-hero h1 { margin: 0; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.filters-bar {
    background: #fff;
    border-radius: 16px;
    padding: 1.2rem;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: -2rem auto 2.2rem;
    position: relative;
    z-index: 5;
}
.dest-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.dest-list-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
}
.dest-list-card:hover { transform: translateY(-5px); }
.dest-list-card img { width: 100%; height: 200px; object-fit: cover; }
.dest-list-body {
    padding: 1.1rem 1.2rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dest-list-body h3 { margin: 0 0 0.3rem; color: var(--navy); }
.price { color: var(--gold-dark); font-weight: 800; }
.plane-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(11,31,58,0.07); color: var(--navy);
    display: grid; place-items: center;
}
.info-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: #fff;
    border-radius: 16px;
    padding: 1.4rem;
    box-shadow: var(--shadow);
    margin-top: -2rem;
    position: relative;
    z-index: 5;
}
.info-item { text-align: center; }
.info-item i { color: var(--navy); font-size: 1.4rem; margin-bottom: 0.4rem; }
.info-item strong { display: block; color: var(--muted); font-size: 0.82rem; }
.info-item span { color: var(--navy); font-weight: 800; }
.content-block {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
}
.content-block img {
    border-radius: 20px;
    height: 340px;
    width: 100%;
    object-fit: cover;
}
.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.activity-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 210px;
}
.activity-card img { width: 100%; height: 100%; object-fit: cover; }
.activity-card span {
    position: absolute; inset: auto 0 0 0;
    background: linear-gradient(transparent, rgba(11,31,58,0.85));
    color: #fff; padding: 1.4rem 1rem 1rem; font-weight: 700;
}
.pkg-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.pkg-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.pkg-card img { width: 100%; height: 180px; object-fit: cover; }
.pkg-card-body { padding: 1.15rem; }
.pkg-meta {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 0.45rem;
}
.pkg-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: end;
    color: #fff;
    background-size: cover;
    background-position: center;
}
.pkg-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,31,58,0.92), rgba(11,31,58,0.25));
}
.pkg-hero-content { position: relative; z-index: 2; padding: 2.8rem 0; width: 100%; }
.pkg-hero-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.tabs {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--line);
    margin-bottom: 1.4rem;
}
.tab-btn {
    background: none;
    border: none;
    padding: 0.85rem 1.1rem;
    font-weight: 700;
    color: var(--muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}
.tab-btn.active { color: var(--navy); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.accordion details {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 0.7rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.accordion summary {
    padding: 1rem 1.2rem;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.accordion summary::-webkit-details-marker { display: none; }
.day-badge {
    background: var(--navy);
    color: #fff;
    width: 34px; height: 34px;
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 0.82rem;
    flex-shrink: 0;
}
.accordion details[open] summary { border-bottom: 1px solid var(--line); }
.accordion details p { padding: 1rem 1.2rem 1.2rem; margin: 0; color: var(--muted); }
.sticky-whatsapp {
    position: fixed;
    bottom: 1.4rem;
    left: 1.4rem;
    z-index: 999;
}
.stepper {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
}
.step {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--muted);
    font-weight: 700;
}
.step-num {
    width: 34px; height: 34px; border-radius: 50%;
    background: #E5E7EB; display: grid; place-items: center;
}
.step.active { color: var(--navy); }
.step.active .step-num { background: var(--navy); color: #fff; }
.step.done .step-num { background: var(--gold); color: #fff; }
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 1.4rem;
    align-items: start;
}
.booking-form-card,
.summary-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.6rem;
    box-shadow: var(--shadow);
}
.summary-card img {
    width: 100%; height: 150px; object-fit: cover;
    border-radius: 12px; margin-bottom: 1rem;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #F3F4F6;
    font-size: 0.94rem;
}
.checkbox-row {
    display: flex;
    align-items: start;
    gap: 0.55rem;
    margin: 1rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    text-align: center;
}
.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.8rem 1rem;
    box-shadow: var(--shadow);
}
.stat-card .num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}
.stat-card p { margin: 0.45rem 0 0; color: var(--muted); font-weight: 700; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.service-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.8rem 1.3rem;
    text-align: center;
    box-shadow: var(--shadow);
}
.service-card .icon {
    width: 70px; height: 70px; margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--navy); color: var(--gold);
    display: grid; place-items: center; font-size: 1.5rem;
}
.service-card h3 { margin: 0 0 0.45rem; color: var(--navy); }
.service-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.alert {
    padding: 1rem 1.2rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}
.alert-success { background: #ECFDF5; color: #065F46; }
.alert-error { background: #FEF2F2; color: #991B1B; }
.text-muted { color: var(--muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.text-center { text-align: center; }

.pagination {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}
.pagination .page-item .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px; height: 40px;
    padding: 0 0.75rem;
    border-radius: 10px;
    background: #fff;
    color: var(--navy);
    border: 1px solid var(--line);
    font-weight: 700;
}
.pagination .page-item.active .page-link,
.pagination .page-item .page-link:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}
.pagination .page-item.disabled .page-link {
    opacity: 0.5;
    pointer-events: none;
}

@media (max-width: 992px) {
    html { overflow-x: hidden; }
    body.nav-open { overflow: hidden; }
    body.nav-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(11, 31, 58, 0.48);
        z-index: 1090;
    }
    .menu-toggle {
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: var(--bg-soft);
        z-index: 1110;
        flex-shrink: 0;
        position: relative;
        margin-inline-start: auto;
    }
    .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        overflow: visible;
        transform: none;
        filter: none;
    }
    .header-inner { justify-content: space-between; }
    .logo { min-width: 0; }
    .header-actions { display: none; }
    .nav-links i { display: inline-block; width: 1.15rem; text-align: center; color: var(--gold-dark); }
    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: min(330px, 90vw);
        height: 100%;
        height: 100dvh;
        margin: 0;
        padding: 0 0 calc(1.3rem + env(safe-area-inset-bottom));
        background: #fff;
        box-shadow: none;
        overflow-y: auto;
        z-index: 1100;
        transform: translateX(110%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.28s ease, visibility 0.28s ease;
    }
    .nav-links.open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
        box-shadow: -18px 0 40px rgba(11, 31, 58, 0.22);
        border-bottom: 0;
    }
    .nav-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        padding: 1.1rem 1.1rem 1rem;
        background: linear-gradient(135deg, #0B1F3A, #16365C);
        border-bottom: 3px solid var(--gold);
        position: sticky;
        top: 0;
        z-index: 2;
    }
    .nav-drawer-brand {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        min-width: 0;
        color: #fff !important;
        border: 0 !important;
        padding: 0 !important;
        background: transparent !important;
    }
    .nav-drawer-brand img {
        height: 42px;
        width: auto;
        max-width: 118px;
        object-fit: contain;
        background: #fff;
        border-radius: 10px;
        padding: 4px 6px;
    }
    .nav-drawer-brand span { min-width: 0; }
    .nav-drawer-brand strong {
        display: block;
        color: #fff;
        font-size: 0.88rem;
        line-height: 1.25;
    }
    .nav-drawer-brand small {
        display: block;
        color: rgba(255,255,255,0.7);
        font-size: 0.68rem;
        font-weight: 600;
    }
    .nav-drawer-close {
        width: 40px;
        height: 40px;
        border: 0;
        border-radius: 12px;
        background: rgba(255,255,255,0.12);
        color: #fff;
        font-size: 1.2rem;
        cursor: pointer;
        display: grid;
        place-items: center;
        flex-shrink: 0;
    }
    .nav-drawer-close i { color: #fff; width: auto; }
    .nav-drawer-links {
        display: flex;
        flex-direction: column;
        padding: 0.4rem 0.7rem 0.2rem;
    }
    .nav-links.open a,
    .nav-links a {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        padding: 0.88rem 0.75rem;
        border-bottom: 0;
        border-radius: 12px;
        font-size: 0.98rem;
        color: var(--navy);
    }
    .nav-links a.active {
        background: rgba(201, 168, 76, 0.14);
        color: var(--gold-dark);
    }
    .nav-links a.active::after,
    .nav-links a::after { display: none; }
    .nav-links .nav-mobile-cta {
        display: flex;
        margin: 0.9rem 1.1rem 0;
        border: 0;
        justify-content: center;
    }
    .widget-body,
    .features-strip,
    .dest-grid,
    .services-row,
    .testimonials-grid,
    .dest-list-grid,
    .filters-bar,
    .info-bar,
    .activities-grid,
    .pkg-scroll,
    .footer-grid,
    .stats-grid,
    .values-grid,
    .services-grid,
    .booking-layout,
    .content-block {
        grid-template-columns: 1fr 1fr;
    }
    .widget-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .widget-tabs::-webkit-scrollbar { display: none; }
    .widget-tabs button {
        flex: 1 1 0;
        min-width: 0;
        white-space: nowrap;
        padding: 0.9rem 0.45rem;
        font-size: 0.82rem;
    }
    .footer-cta { flex-wrap: wrap; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .container { width: min(var(--container), 92%); }
    html { -webkit-text-size-adjust: 100%; }
    input, select, textarea { font-size: 16px !important; }
    .site-header { padding-top: env(safe-area-inset-top); }
    .header-inner { min-height: 68px; }
    .site-logo { height: 42px; max-width: min(158px, 52vw); }
    .logo-text strong { font-size: 0.88rem; }
    .widget-body,
    .features-strip,
    .dest-grid,
    .services-row,
    .testimonials-grid,
    .dest-list-grid,
    .filters-bar,
    .info-bar,
    .activities-grid,
    .pkg-scroll,
    .footer-grid,
    .stats-grid,
    .values-grid,
    .services-grid,
    .booking-layout,
    .content-block {
        grid-template-columns: 1fr;
    }
    .hero { min-height: 62vh; }
    .hero-content { padding: 4.2rem 3.15rem 7.2rem; max-width: 100%; }
    .hero h1 { font-size: clamp(1.7rem, 8.4vw, 2.35rem); }
    .hero p { font-size: 0.95rem; }
    .hero-arrow {
        width: 38px;
        height: 38px;
        top: 38%;
    }
    .hero-prev { right: 0.55rem; }
    .hero-next { left: 0.55rem; }
    .hero-dots { bottom: 4.2rem; }
    .booking-widget { margin-top: -52px; }
    .widget-body { padding: 1.1rem 1rem 1.2rem; }
    .widget-search { width: 100%; min-width: 0; }
    .section { padding: 2.4rem 0; }
    .section-head { align-items: flex-start; }
    .page-hero { padding: 3.2rem 0 2.2rem; }
    .filters-bar,
    .info-bar { margin-top: -1.4rem; }
    .features-strip,
    .stats-grid,
    .values-grid,
    .activities-grid,
    .services-row {
        grid-template-columns: 1fr 1fr;
    }
    .feature-item {
        background: #fff;
        border-radius: 18px;
        box-shadow: 0 10px 28px rgba(11, 31, 58, 0.06);
        padding: 1.1rem 0.7rem 1.15rem;
    }
    .dest-card { height: 260px; }
    .dest-card-overlay { padding: 1.1rem; }
    .pkg-card img { height: 168px; }
    .pkg-hero { min-height: 280px; }
    .pkg-hero-content { padding: 2rem 0 1.6rem; }
    .content-block img { height: 220px; }
    .promo-banner { min-height: 240px; }
    .promo-content { padding: 1.5rem 1.15rem; }
    .booking-form-card,
    .summary-card { padding: 1.15rem; }
    .sticky-whatsapp {
        left: 1rem;
        bottom: calc(1.1rem + env(safe-area-inset-bottom));
        transform: none;
        width: auto;
        max-width: calc(100% - 5.8rem);
    }
    .sticky-whatsapp .btn {
        width: auto;
        padding: 0.75rem 1rem;
        font-size: 0.88rem;
    }
    .footer-grid { gap: 1.4rem; }
    .site-footer { margin-top: 0; padding-bottom: 0; }
    .footer-wave { height: 40px; }
    .footer-cta {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem 1rem 1.25rem;
        margin-bottom: 1.6rem;
    }
    .footer-cta-actions {
        width: 100%;
        justify-content: center;
    }
    .footer-cta-actions .btn {
        flex: 1 1 calc(50% - 0.4rem);
        white-space: nowrap;
        padding-inline: 0.85rem;
        font-size: 0.88rem;
    }
    .footer-brand { text-align: center; }
    .footer-logo { justify-content: center; align-items: center; }
    .footer-tagline { margin-inline: auto; }
    .socials { justify-content: center; }
    .site-footer h4 { text-align: center; }
    .site-footer h4::after { right: 50%; transform: translateX(50%); }
    .footer-links { gap: 0.1rem 0.8rem; }
    .footer-bottom { text-align: center; padding-bottom: calc(1rem + env(safe-area-inset-bottom)); }
    .footer-bottom-inner { justify-content: center; flex-direction: column; }
}

@media (min-width: 993px) {
    .menu-toggle,
    .nav-drawer-head,
    .nav-drawer-close,
    .nav-mobile-cta { display: none !important; }
    .nav-links i { display: none !important; }
    .nav-links {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        justify-content: center;
        flex: 1 1 auto;
        position: static !important;
        inset: auto !important;
        transform: none !important;
        visibility: visible !important;
        pointer-events: auto !important;
        width: auto !important;
        height: auto !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    .nav-drawer-links {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: clamp(0.65rem, 1.35vw, 1.35rem);
        padding: 0;
        width: 100%;
    }
    .nav-links a,
    .nav-links.open a {
        display: inline-flex;
        align-items: center;
        gap: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        white-space: nowrap;
        font-size: clamp(0.78rem, 1.02vw, 0.92rem);
    }
    .nav-links a.active { background: transparent; }
}
