@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --navy: #0D1B3E;
    --navy2: #162040;
    --navy3: #1e2d55;
    --red: #C8102E;
    --red2: #e01535;
    --white: #ffffff;
    --offwhite: #f8f6f2;
    --gray: #6b7280;
    --light: #e8edf5;
    --gold: #d4a843;
    --radius: 12px;
    --shadow: 0 20px 60px rgba(13,27,62,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 60px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
}

.navbar.transparent { background: transparent; }
.navbar.scrolled {
    background: var(--navy);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.navbar.nav-hidden {
    transform: translateY(-100%);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img { height: 48px; }

.nav-logo-text .top {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.nav-logo-text .bot {
    font-size: 10px;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s;
}

.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-links a.active { color: var(--white); }

.nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
}

.nav-cta:hover { background: var(--red2) !important; transform: translateY(-1px); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,27,62,0.95) 0%, rgba(13,27,62,0.7) 60%, transparent 100%);
}

.hero-shape {
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 60px 100px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,16,46,0.15);
    border: 1px solid rgba(200,16,46,0.3);
    color: #ff6b80;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease both;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.0;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease 0.1s both;
}

.hero-title .accent { color: var(--red); font-style: italic; }
.hero-title .line2 { display: block; }

.hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeUp 0.6s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s ease 0.3s both;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-primary:hover { background: var(--red2); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(200,16,46,0.4); }

.btn-outline {
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 14px 34px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-3px); }

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: fadeUp 0.6s ease 0.4s both;
}

.stat-item .num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
}

.stat-item .label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ===== SECTIONS ===== */
.section { padding: 100px 60px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--red);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-title .italic { font-style: italic; color: var(--red); }

.section-sub {
    font-size: 17px;
    color: var(--gray);
    max-width: 560px;
    line-height: 1.8;
    font-weight: 300;
}

/* ===== SERVICES ===== */
.services-bg { background: var(--offwhite); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    border: 1px solid rgba(13,27,62,0.06);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 56px; height: 56px;
    background: rgba(200,16,46,0.08);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.service-card:hover .service-icon { background: var(--red); color: var(--white); }

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-desc { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ===== GLOBAL MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 27, 62, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    background: var(--white);
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.modal-overlay.open .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--light);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: var(--navy);
    transition: all 0.2s;
    z-index: 10;
}

.modal-close:hover {
    background: var(--red);
    color: var(--white);
}

.modal-body {
    padding: 40px;
}

@media (max-width: 768px) {
    .modal-body { padding: 32px 20px; }
}

/* ===== DESTINATIONS ===== */
.dest-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 16px;
    margin-top: 60px;
}

.dest-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.dest-card:first-child { grid-row: 1 / 3; }

.dest-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.dest-card:hover img { transform: scale(1.06); }

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,27,62,0.85) 0%, transparent 60%);
    transition: all 0.3s;
}

.dest-card:hover .dest-overlay { background: linear-gradient(to top, rgba(13,27,62,0.9) 0%, rgba(13,27,62,0.2) 100%); }

.dest-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
}

.dest-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.dest-country { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 2px; }

.dest-tag {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== WHY US ===== */
.why-bg { background: var(--navy); }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 520px;
}

.why-image img { width: 100%; height: 100%; object-fit: cover; }

.why-image-badge {
    position: absolute;
    bottom: 32px; right: -20px;
    background: var(--red);
    color: var(--white);
    padding: 20px 28px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(200,16,46,0.4);
}

.why-image-badge .big {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
}

.why-image-badge .small { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }

.why-content .section-title { color: var(--white); }
.why-content .section-sub { color: rgba(255,255,255,0.6); }

.why-list { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-item-icon {
    width: 44px; height: 44px;
    background: rgba(200,16,46,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-item-text .title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.why-item-text .desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ===== OUR PROCESS — MOSAIC ===== */
.process-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 3px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--light);
}

.pm-cell {
    position: relative;
    padding: 40px 36px;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* span cols 1-2 in row 2 */
.pm-wide:nth-child(4) {
    grid-column: 1 / 3;
}
/* span col 3 in row 2 */
.pm-wide:nth-child(5) {
    grid-column: 3 / 4;
}

/* Colour variants */
.pm-light  { background: #ffffff; }
.pm-red    { background: var(--red); }
.pm-navy   { background: var(--navy); }

/* Ghost number watermark */
.pm-ghost {
    font-family: 'Playfair Display', serif;
    font-size: 110px;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    top: -10px;
    left: 24px;
    pointer-events: none;
    user-select: none;
}

.pm-light  .pm-ghost { color: rgba(13, 27, 62, 0.06); }
.pm-red    .pm-ghost { color: rgba(255,255,255,0.12); }
.pm-navy   .pm-ghost { color: rgba(255,255,255,0.08); }

/* Badge */
.pm-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    width: fit-content;
}

.pm-light .pm-badge {
    background: var(--light);
    color: var(--navy);
}
.pm-red .pm-badge {
    background: rgba(255,255,255,0.18);
    color: #fff;
}
.pm-navy .pm-badge {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
}

/* Title */
.pm-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.pm-light .pm-title { color: var(--navy); }
.pm-red   .pm-title { color: #fff; }
.pm-navy  .pm-title { color: #fff; }

/* Description */
.pm-desc {
    font-size: 14px;
    line-height: 1.8;
}

.pm-light .pm-desc { color: var(--gray); }
.pm-red   .pm-desc { color: rgba(255,255,255,0.75); }
.pm-navy  .pm-desc { color: rgba(255,255,255,0.6); }

/* ── Responsive ── */
@media (max-width: 900px) {
    .process-mosaic {
        grid-template-columns: 1fr 1fr;
    }
    .pm-wide:nth-child(4),
    .pm-wide:nth-child(5) {
        grid-column: auto;
    }
}

@media (max-width: 580px) {
    .process-mosaic {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }
    .pm-cell {
        min-height: auto;
        padding: 30px 24px;
    }
    .pm-ghost {
        font-size: 80px;
    }
    .pm-wide:nth-child(4),
    .pm-wide:nth-child(5) {
        grid-column: auto;
    }
}

/* ===== INQUIRY FORM ===== */
.inquiry-bg {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
    position: relative;
    overflow: hidden;
}

.inquiry-bg::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200,16,46,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.inquiry-info .section-title { color: var(--white); }
.inquiry-info .section-sub { color: rgba(255,255,255,0.6); }

.contact-items { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }

.contact-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.contact-item-icon {
    width: 44px; height: 44px;
    background: rgba(200,16,46,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #ff6b80;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item-text .label { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }
.contact-item-text .value { font-size: 15px; color: var(--white); font-weight: 500; margin-top: 2px; }

/* Map column alignment for inquiry section */
.inquiry-grid .map-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    padding-top: 120px;
}
.inquiry-grid .map-column .map-cta {
    margin-bottom: 12px;
    align-self: flex-end;
}
@media (max-width: 768px) {
    .inquiry-grid .map-column { 
        justify-content: flex-start;
        padding-top: 0;
     }
    .inquiry-grid .map-column .map-cta { align-self: stretch; }
}

.form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-subtitle { font-size: 14px; color: var(--gray); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 16px; }

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--light);
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--navy);
    background: var(--offwhite);
    transition: border-color 0.2s;
    outline: none;
}

.form-control:focus { border-color: var(--red); background: var(--white); }

select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 90px; }

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    margin-top: 8px;
}

.form-submit:hover { background: var(--red2); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(200,16,46,0.4); }

/* ===== FOOTER ===== */
footer {
    background: #080f22;
    color: rgba(255,255,255,0.6);
    padding: 70px 60px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-brand .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.footer-brand .tagline {
    font-size: 11px;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }

.social-links { display: flex; gap: 10px; }

.social-link {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover { background: var(--red); color: var(--white); }

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--red); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 30px; right: 30px;
    background: var(--navy);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s;
    z-index: 9999;
    border-left: 4px solid var(--red);
}

.toast.show { transform: translateY(0); opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .navbar { padding: 0 30px; }
    .section { padding: 70px 30px; }
    .hero-content { padding: 120px 30px 80px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid, .inquiry-grid { grid-template-columns: 1fr; gap: 40px; }
    .why-image { height: 360px; }
    .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .dest-card:first-child { grid-row: auto; }
    footer { padding: 60px 30px 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--navy2);
        padding: 30px 24px;
        gap: 16px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        border-top: 1px solid rgba(255,255,255,0.05);
        align-items: stretch;
    }
    .nav-links.open li {
        width: 100%;
        text-align: center;
    }
    .nav-links.open a {
        display: block;
        padding: 12px 20px;
        font-size: 16px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.02);
        transition: all 0.2s ease;
    }
    .nav-links.open a:hover {
        background: rgba(255, 255, 255, 0.08);
    }
    .nav-links.open .nav-cta {
        margin-top: 8px;
        background: var(--red) !important;
    }
    .hero-title { font-size: 42px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .services-grid { grid-template-columns: 1fr; }
    .dest-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .form-card { padding: 28px 20px; }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(37,211,102,0.6);
}
.whatsapp-float-tooltip {
    position: absolute;
    right: 68px;
    background: var(--navy);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.whatsapp-float:hover .whatsapp-float-tooltip { opacity: 1; }

/* ===== TESTIMONIALS SLIDER ===== */
.tslider-wrap {
    overflow: hidden;
}

.tslider-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: stretch;
}

.tslide {
    flex: 0 0 50%;
    padding: 0 10px;
}

.tcard {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(13,27,62,0.07);
    box-shadow: 0 4px 20px rgba(13,27,62,0.05);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tcard-quote {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    color: rgba(200,16,46,0.08);
    line-height: 1;
    position: absolute;
    top: 14px;
    right: 24px;
    pointer-events: none;
    user-select: none;
}

.tcard-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.tcard-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 24px;
    flex: 1;
}

.tcard-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tcard-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.tcard-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
}

.tcard-trip {
    font-size: 12px;
    color: var(--red);
    font-weight: 600;
    margin-top: 2px;
}

/* Controls */
.tslider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.tslider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--light);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--navy);
    transition: all 0.2s;
    font-family: inherit;
}

.tslider-arrow:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.tslider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.tslider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--light);
    cursor: pointer;
    transition: all 0.25s;
    border: none;
    padding: 0;
}

.tslider-dot.active {
    background: var(--red);
    width: 26px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .tslide {
        flex: 0 0 100%;
        padding: 0 4px;
    }
}

/* ===== FAQ PAGE ===== */
.faq-item { border-bottom: 1px solid var(--light); }
.faq-question {
    width: 100%; background: none; border: none; text-align: left;
    padding: 20px 0; font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px; font-weight: 600; color: var(--navy);
    cursor: pointer; display: flex; justify-content: space-between;
    align-items: center; gap: 16px;
}
.faq-question:hover { color: var(--red); }
.faq-icon { font-size: 20px; color: var(--red); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { font-size: 15px; color: var(--gray); line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }

/* ===== PRIVACY PAGE ===== */
.privacy-content h2 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--navy); margin: 36px 0 12px; }
.privacy-content p, .privacy-content li { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 12px; }
.privacy-content ul { padding-left: 20px; }
.privacy-content li { margin-bottom: 6px; }

/* ===== TRUST BADGE ===== */
.trust-bar {
    background: var(--offwhite);
    border-top: 1px solid var(--light);
    border-bottom: 1px solid var(--light);
    padding: 18px 60px;
}
.trust-bar-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    gap: 40px; flex-wrap: wrap;
}
.trust-badge {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 600; color: var(--navy);
}
.trust-badge i { color: var(--red); font-size: 18px; }
@media (max-width: 768px) {
    .trust-bar { padding: 16px 20px; }
    .trust-bar-inner { gap: 20px; }
    .whatsapp-float { bottom: 18px; right: 18px; }
}
