/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --teal:      #1a6b6b;
    --teal-mid:  #20878a;
    --teal-lt:   #2cb8bd;
    --gold:      #f0a500;
    --gold-lt:   #ffbe2e;
    --dark:      #0d1f1f;
    --dark-mid:  #153030;
    --light:     #f4fafa;
    --white:     #ffffff;
    --text:      #2a3a3a;
    --text-muted:#5a7070;
    --radius:    18px;
    --shadow:    0 12px 40px rgba(0,0,0,0.10);
    --shadow-lg: 0 24px 60px rgba(0,0,0,0.16);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--light);
    color: var(--text);
    overflow-x: hidden;
}

em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--teal-mid); }

a { text-decoration: none; color: inherit; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 14px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(13,31,31,0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: background 0.3s;
}
.navbar.scrolled {
    background: rgba(13,31,31,0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.logo-link { display: flex; align-items: center; }
.logo-img {
    height: 54px;
    width: 54px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: white;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.logo-img:hover {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 0 20px rgba(240,165,0,0.6);
}

nav { display: flex; gap: 8px; }
nav a {
    color: rgba(255,255,255,0.85);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 0.93rem;
    font-weight: 500;
    transition: color 0.2s, background 0.2s;
}
nav a:hover { color: var(--gold-lt); background: rgba(255,255,255,0.07); }

.nav-btn {
    display: flex; align-items: center; gap: 8px;
    padding: 11px 22px;
    border: none;
    border-radius: 30px;
    background: var(--gold);
    color: var(--dark);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-btn:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(240,165,0,0.4); }

.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 82px; left: 0; right: 0;
    background: var(--dark);
    padding: 20px 6%;
    z-index: 999;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: white; padding: 12px 0; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.07); }


/* ===== HERO ===== */
.hero {
    height: 100vh;
    min-height: 620px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.13); }
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(165deg, rgba(13,31,31,0.72) 0%, rgba(26,107,107,0.45) 60%, rgba(13,31,31,0.78) 100%);
}

.hero-content {
    position: relative;
    color: white;
    max-width: 820px;
    padding: 0 20px;
    animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-block;
    background: rgba(240,165,0,0.2);
    border: 1px solid rgba(240,165,0,0.5);
    color: var(--gold-lt);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeUp 1s 0.2s ease both;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeUp 1s 0.35s ease both;
}
.hero-content h1 em { color: var(--gold-lt); }
.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.82);
    max-width: 560px;
    margin: 0 auto 36px;
    font-weight: 300;
    animation: fadeUp 1s 0.5s ease both;
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeUp 1s 0.65s ease both; }

.primary-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.25s;
    border: none; cursor: pointer;
}
.primary-btn:hover { background: var(--gold-lt); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(240,165,0,0.45); }

.secondary-btn {
    display: inline-flex; align-items: center;
    padding: 15px 30px;
    border: 2px solid rgba(255,255,255,0.7);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s;
}
.secondary-btn:hover { background: rgba(255,255,255,0.15); border-color: white; transform: translateY(-3px); }

.hero-scroll {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; color: rgba(255,255,255,0.55);
    font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4; transform:scaleY(1)} 50%{opacity:1; transform:scaleY(1.2)} }


/* ===== STATS ===== */
.stats {
    background: var(--dark);
    padding: 50px 6%;
}
.stats-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}
.stat-card {
    flex: 1 1 160px;
    text-align: center;
    padding: 28px 20px;
    color: white;
}
.stat-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 10px; }
.stat-card h2 {
    display: inline;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: white;
}
.stat-plus { font-size: 1.8rem; color: var(--gold); font-weight: 700; }
.stat-card p { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-top: 6px; letter-spacing: 1px; text-transform: uppercase; }
.stat-divider { width: 1px; height: 70px; background: rgba(255,255,255,0.12); flex-shrink: 0; }


/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header.light h2, .section-header.light p { color: white; }
.section-header.light em { color: var(--gold-lt); }
.section-tag {
    display: inline-block;
    background: rgba(44,184,189,0.12);
    color: var(--teal-mid);
    border: 1px solid rgba(44,184,189,0.3);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.section-header.light .section-tag { background: rgba(255,255,255,0.1); color: var(--gold-lt); border-color: rgba(255,190,46,0.3); }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; color: var(--dark); }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }


/* ===== DESTINATIONS ===== */
.destinations { padding: 100px 6%; }

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}
.travel-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.travel-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.card-img-wrap { position: relative; overflow: hidden; }
.travel-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.travel-card:hover img { transform: scale(1.07); }
.card-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--gold);
    color: var(--dark);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.card-content { padding: 22px; }
.card-content h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 6px; }
.card-content p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 16px; }
.card-footer { display: flex; justify-content: space-between; align-items: center; }
.card-footer h4 { font-size: 1.1rem; color: var(--teal); font-weight: 700; }
.card-footer h4 span { font-size: 0.78rem; color: var(--text-muted); font-weight: 400; }
.card-btn {
    background: var(--teal);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}
.card-btn:hover { background: var(--teal-lt); transform: scale(1.05); }


/* ===== PACKAGES ===== */
.packages {
    padding: 100px 6%;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
}
.package-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1060px;
    margin: 0 auto;
    align-items: stretch;
}
.package-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 38px 30px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.package-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }

.package-card.featured {
    background: linear-gradient(145deg, var(--teal), var(--teal-lt));
    border-color: transparent;
    box-shadow: 0 16px 50px rgba(44,184,189,0.35);
    transform: scale(1.04);
}
.package-card.featured:hover { transform: scale(1.04) translateY(-8px); }

.featured-badge {
    position: absolute; top: 18px; right: 18px;
    background: var(--gold);
    color: var(--dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}
.pkg-icon { font-size: 1.8rem; color: var(--gold); }
.package-card h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; }
.package-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.package-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.package-card ul li { font-size: 0.88rem; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 8px; }
.package-card ul li i { color: var(--gold); font-size: 0.75rem; }
.pkg-price { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; margin-top: auto; padding-top: 12px; }
.pkg-btn {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 30px;
    border: 2px solid rgba(255,255,255,0.5);
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    transition: all 0.25s;
}
.pkg-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.featured .pkg-btn { border-color: white; }
.featured .pkg-btn:hover { background: white; color: var(--teal); }


/* ===== WHY US ===== */
.why-us { padding: 100px 6%; background: var(--light); }
.why-inner { max-width: 1100px; margin: 0 auto; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-card {
    background: white;
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.why-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(26,107,107,0.1), rgba(44,184,189,0.15));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    color: var(--teal);
    transition: background 0.3s;
}
.why-card:hover .why-icon { background: linear-gradient(135deg, var(--teal), var(--teal-lt)); color: white; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 10px; font-weight: 600; }
.why-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }


/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 6%;
    background: linear-gradient(135deg, var(--dark-mid) 0%, var(--dark) 100%);
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1060px;
    margin: 0 auto;
    align-items: stretch;
}
.testi-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 36px 28px;
    display: flex; flex-direction: column; gap: 16px;
    transition: transform 0.3s;
}
.testi-card:hover { transform: translateY(-6px); }
.testi-card.featured-testi {
    background: linear-gradient(145deg, rgba(240,165,0,0.15), rgba(240,165,0,0.05));
    border-color: rgba(240,165,0,0.3);
}
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.testi-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.7; flex: 1; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--teal), var(--teal-lt));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 700; color: white;
    flex-shrink: 0;
}
.testi-author span { color: rgba(255,255,255,0.6); font-size: 0.85rem; }


/* ===== CONTACT ===== */
.contact-section { padding: 100px 6%; background: var(--light); }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 940px;
    margin: 0 auto;
}
.contact-card {
    background: white;
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}
.contact-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.contact-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--teal), var(--teal-lt));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.3rem;
    color: white;
}
.contact-card h3 { font-size: 1.05rem; margin-bottom: 10px; font-weight: 600; }
.contact-card p, .contact-card a { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.contact-card a:hover { color: var(--teal); }


/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    padding: 50px 6% 30px;
}
.footer-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer-logo {
    height: 70px; width: 70px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: white;
}
.footer-tagline { color: rgba(255,255,255,0.4); font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.82rem; margin-top: 8px; }
.footer-copy a { color: rgba(255,255,255,0.4); }
.footer-copy a:hover { color: var(--gold); }


/* ===== AOS (scroll reveal) ===== */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].visible { opacity: 1; transform: translateY(0); }


/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
    nav, .nav-btn { display: none; }
    .hamburger { display: block; }
    .card-grid, .package-container, .testi-grid, .contact-grid { grid-template-columns: 1fr; max-width: 500px; }
    .package-card.featured { transform: scale(1); }
    .stat-divider { display: none; }
    .stats-inner { gap: 10px; }
    .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
    .why-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.2rem; }
}





.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-mid), var(--dark));
    overflow: hidden;
}

.review-slider {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    position: relative;
}

.review-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: slideReviews 25s linear infinite;
}

.review-card {
    min-width: 350px;
    max-width: 350px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 18px;
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.review-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 15px 0;
    color: rgba(255,255,255,0.8);
}

.review-card span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

@keyframes slideReviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.review-track:hover {
    animation-play-state: paused;
}