/* ============================
   CSS Variables / Design Tokens
   ============================ */
:root {
    --brand-indigo: #4F46E5;
    --brand-purple: #8B5CF6;
    --brand-indigo-dark: #4338CA;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --white: #ffffff;
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
    --radius-sm: 0.75rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-2xl: 3rem;
}

/* ============================
   Reset & Base
   ============================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--slate-50);
    font-family: var(--font-sans);
    color: var(--slate-800);
    line-height: 1.6;
}

::selection {
    background-color: rgba(139, 92, 246, 0.3);
}

a {
    text-decoration: none;
    cursor: pointer;
}

button {
    cursor: pointer;
}

/* ============================
   Custom Scrollbar
   ============================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--brand-purple); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-indigo); }

/* ============================
   Animations
   ============================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ============================
   Utility: Hidden
   ============================ */
.hidden { display: none !important; }

/* ============================
   NAVBAR
   ============================ */
.glass-nav {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.nav-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--brand-indigo), var(--brand-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-weight: 500;
}

.nav-links a {
    color: var(--slate-800);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--brand-purple); }

.nav-btn-login {
    background: var(--brand-indigo);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    transition: background 0.2s, box-shadow 0.2s !important;
    box-shadow: 0 4px 6px rgba(79,70,229,0.2);
}
.nav-btn-login:hover {
    background: var(--brand-purple) !important;
    box-shadow: 0 6px 12px rgba(79,70,229,0.25) !important;
}

.nav-btn-book {
    border: 2px solid var(--brand-indigo);
    color: var(--brand-indigo) !important;
    padding: 0.4rem 1.5rem;
    border-radius: 9999px;
    transition: all 0.2s !important;
}
.nav-btn-book:hover {
    background: var(--brand-indigo);
    color: var(--white) !important;
}

.nav-mobile-btn {
    display: none;
    background: none;
    border: none;
    color: var(--brand-indigo);
    padding: 0.5rem;
}

/* ============================
   HERO / HEADER
   ============================ */
.hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem 8rem;
    background-color: var(--slate-50);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--brand-indigo);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--slate-900);
}

.hero h1 .gradient-text {
    background: linear-gradient(to right, var(--brand-indigo), var(--brand-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--slate-600);
    margin-bottom: 3rem;
    line-height: 1.75;
    max-width: 40rem;
}

/* Hero blobs */
.hero-blobs {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
}
.hero-blob-1 {
    position: absolute;
    top: 25%; left: 25%;
    width: 18rem; height: 18rem;
    background: var(--brand-indigo);
    border-radius: 50%;
    filter: blur(60px);
}
.hero-blob-2 {
    position: absolute;
    bottom: 25%; right: 25%;
    width: 24rem; height: 24rem;
    background: var(--brand-purple);
    border-radius: 50%;
    filter: blur(80px);
}

/* ============================
   SEARCH WIDGET
   ============================ */
.search-widget {
    width: 100%;
    max-width: 56rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.12);
    padding: 1.5rem;
    position: relative;
    z-index: 20;
    border: 1px solid var(--slate-100);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-field {
    flex: 1;
    min-width: 160px;
}

.search-field label {
    display: block;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
    margin-left: 1rem;
}

.search-input-wrap {
    display: flex;
    align-items: center;
    background: var(--slate-100);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    border: 2px solid transparent;
    transition: border-color 0.2s, background 0.2s;
}
.search-input-wrap:focus-within {
    border-color: var(--brand-indigo);
    background: var(--white);
}

.search-input-wrap i {
    color: var(--brand-purple);
    margin-right: 0.75rem;
}

.search-input-wrap input {
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--slate-800);
    font-size: 0.95rem;
}

.search-input-wrap input::placeholder { color: var(--slate-400); }

.search-divider {
    width: 1px;
    height: 3rem;
    background: var(--slate-200);
    flex-shrink: 0;
}

.search-btn {
    background: var(--brand-indigo);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    border: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(79,70,229,0.3);
    height: 4.5rem;
    white-space: nowrap;
}
.search-btn:hover {
    background: var(--brand-purple);
    box-shadow: 0 6px 20px rgba(79,70,229,0.35);
}

/* ============================
   MAIN LAYOUT
   ============================ */
main {
    position: relative;
    z-index: 30;
    margin-top: -2.5rem;
    margin-bottom: 5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================
   SECTION HEADER (shared)
   ============================ */
.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-label {
    display: block;
    color: var(--brand-indigo);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--slate-900);
    margin-bottom: 1.25rem;
}

.section-desc {
    color: var(--slate-600);
    font-size: 1.1rem;
    line-height: 1.75;
}

/* Section spacing */
.section-why,
.section-destinations,
.section-packages,
.section-testimonials,
.section-contact,
.section-newsletter {
    padding: 2.5rem 0;
}

/* ============================
   WHY CHOOSE US (Services)
   ============================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid var(--slate-100);
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--brand-indigo);
    font-size: 1.5rem;
    transition: background 0.3s, color 0.3s;
}
.service-card:hover .service-icon {
    background: var(--brand-indigo);
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--slate-900);
}

.service-card p {
    color: var(--slate-500);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================
   DESTINATIONS
   ============================ */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.destination-card {
    background: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.destination-card-img {
    height: 16rem;
    overflow: hidden;
    position: relative;
}
.destination-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.destination-card:hover .destination-card-img img {
    transform: scale(1.1);
}

.destination-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-indigo);
}

.destination-card-body {
    padding: 2rem;
}
.destination-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--slate-800);
}
.destination-card-body p {
    color: var(--slate-600);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--brand-indigo);
    font-weight: 700;
    transition: gap 0.2s;
}
.explore-link:hover { gap: 0.6rem; }

.destinations-more {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--slate-900);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.toggle-btn:hover { background: var(--brand-indigo); }

.toggle-btn svg {
    transition: transform 0.3s;
}

.center-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* ============================
   PACKAGES
   ============================ */
.packages-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.package-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid var(--slate-100);
    transition: box-shadow 0.5s, transform 0.3s;
}
.package-card:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.package-inner {
    display: flex;
    flex-direction: row;
}

.package-img-wrap {
    width: 33%;
    overflow: hidden;
    position: relative;
    min-height: 300px;
}
.package-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.package-card:hover .package-img-wrap img { transform: scale(1.1); }

.package-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.package-card:hover .package-img-overlay { opacity: 1; }

.package-body {
    padding: 2rem;
    width: 67%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.package-info { width: 60%; }

.package-tag {
    display: inline-block;
    background: rgba(79, 70, 229, 0.1);
    color: var(--brand-indigo);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    font-style: italic;
}

.package-title {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--slate-900);
}

.package-desc {
    color: var(--slate-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.package-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--slate-500);
}
.package-meta span { display: flex; align-items: center; gap: 0.25rem; }
.package-meta svg { width: 1.25rem; height: 1.25rem; }

.package-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding-left: 2rem;
    border-left: 1px solid var(--slate-100);
    margin-left: 1rem;
}

.package-price-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--slate-400);
    margin-bottom: 0.25rem;
    font-style: italic;
}

.package-price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--slate-900);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.package-price span {
    font-size: 1.125rem;
    color: var(--slate-400);
    font-weight: 700;
    font-style: italic;
}

.book-btn {
    display: block;
    background: var(--brand-indigo);
    color: var(--white);
    padding: 0.75rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-align: center;
    border: none;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(79,70,229,0.25);
    white-space: nowrap;
}
.book-btn:hover {
    background: var(--brand-purple);
    box-shadow: 0 6px 20px rgba(79,70,229,0.35);
    color: var(--white);
}

.packages-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.outline-btn {
    border: 2px solid var(--slate-900);
    background: transparent;
    color: var(--slate-900);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-style: italic;
    transition: background 0.2s, color 0.2s;
}
.outline-btn:hover { background: var(--slate-900); color: var(--white); }

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid var(--slate-100);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card.featured {
    background: var(--brand-indigo);
    border: none;
    box-shadow: 0 20px 40px rgba(79,70,229,0.3);
    transform: translateY(-1rem);
}

.stars { display: flex; gap: 0.15rem; margin-bottom: 1rem; }
.stars i { color: var(--amber-400); }
.testimonial-card.featured .stars i { color: var(--amber-300); }

.testimonial-text {
    color: var(--slate-600);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.testimonial-card.featured .testimonial-text { color: rgba(255,255,255,0.9); }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.avatar-indigo { background: rgba(79,70,229,0.1); color: var(--brand-indigo); }
.avatar-purple { background: rgba(139,92,246,0.1); color: var(--brand-purple); }
.avatar-white  { background: rgba(255,255,255,0.2); color: var(--white); }

.author-name {
    font-weight: 700;
    color: var(--slate-800);
}
.testimonial-card.featured .author-name { color: var(--white); }

.author-trip {
    font-size: 0.875rem;
    color: var(--slate-500);
}
.testimonial-card.featured .author-trip { color: #c7d2fe; }

/* ============================
   CONTACT
   ============================ */
.contact-box {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    border: 1px solid var(--slate-100);
}

.contact-info {
    background: linear-gradient(135deg, var(--brand-indigo), var(--brand-purple));
    padding: 3rem;
    width: 42%;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.contact-info-inner { position: relative; z-index: 1; }

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.contact-info > div > p {
    color: rgba(199, 210, 254, 0.9);
    margin-bottom: 3rem;
    font-size: 1rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-title { font-weight: 700; margin-bottom: 0.25rem; }
.contact-detail-val { color: rgba(199, 210, 254, 0.85); font-size: 0.9rem; }

.contact-decor {
    position: absolute;
    bottom: 0; right: 0;
    width: 16rem; height: 16rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(40%, 40%);
    pointer-events: none;
}

.contact-form-wrap {
    padding: 3rem;
    width: 58%;
}

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group { display: flex; flex-direction: column; }

.form-group label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--slate-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--slate-800);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--brand-indigo);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
    background: var(--white);
}

.submit-btn {
    background: var(--brand-indigo);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    width: fit-content;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(79,70,229,0.25);
}
.submit-btn:hover {
    background: var(--brand-purple);
    box-shadow: 0 6px 20px rgba(79,70,229,0.35);
}

/* ============================
   NEWSLETTER
   ============================ */
.newsletter-box {
    background: var(--slate-900);
    border-radius: var(--radius-2xl);
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    max-width: 50rem;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.newsletter-inner { position: relative; z-index: 1; max-width: 36rem; margin: 0 auto; }

.newsletter-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.newsletter-inner p {
    color: var(--slate-400);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 32rem;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    border-radius: 9999px;
    padding: 1rem 1.5rem;
    outline: none;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: var(--slate-500); }
.newsletter-form input:focus { border-color: var(--brand-purple); }

.newsletter-form button {
    background: var(--brand-purple);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}
.newsletter-form button:hover {
    background: var(--brand-indigo);
    box-shadow: 0 6px 20px rgba(79,70,229,0.35);
}

/* ============================
   FOOTER
   ============================ */
footer {
    background: var(--slate-900);
    color: var(--slate-400);
    padding: 5rem 1.5rem 2.5rem;
    font-style: italic;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: block;
}

.footer-brand-desc {
    color: rgba(148, 163, 184, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-col-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: block;
}

.footer-col p { color: var(--white); font-weight: 600; }
.footer-col a {
    display: block;
    color: var(--slate-400);
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--brand-purple); }

.footer-links { display: flex; flex-direction: column; gap: 1rem; }
.footer-links a { font-weight: 700; letter-spacing: -0.01em; }
.footer-links a:hover { color: var(--white); }

.footer-legal { display: flex; flex-direction: column; gap: 1rem; }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.6;
}

.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--slate-400); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ============================
   TOAST NOTIFICATION
   ============================ */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--slate-900);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    z-index: 100;
    animation: fadeInUp 0.4s ease-out forwards;
    border: 1px solid rgba(79,70,229,0.3);
    backdrop-filter: blur(10px);
    transition: opacity 0.5s, transform 0.5s;
}

.toast.toast-error { background: #7f1d1d; border-color: rgba(239,68,68,0.3); }

.toast-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-icon { width: 1.5rem; height: 1.5rem; color: var(--brand-purple); flex-shrink: 0; }
.toast-error .toast-icon { color: #f87171; }

.toast-msg { font-weight: 700; font-family: var(--font-display); letter-spacing: -0.01em; }

/* ============================
   MOBILE NAV DRAWER
   ============================ */
.nav-drawer {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 80vw;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: 4px 0 30px rgba(0,0,0,0.15);
    z-index: 200;
    flex-direction: column;
    padding: 2rem 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
}
.nav-drawer.open {
    transform: translateX(0);
}

.nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.nav-drawer-brand {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--brand-indigo), var(--brand-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-drawer-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--slate-600);
    padding: 0.25rem;
    line-height: 1;
}

.nav-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-drawer-links a {
    display: block;
    padding: 1rem 0.5rem;
    border-bottom: 1px solid var(--slate-100);
    color: var(--slate-700);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}
.nav-drawer-links a:hover { color: var(--brand-indigo); padding-left: 1rem; }

.nav-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.nav-drawer-btn-login {
    background: var(--brand-indigo);
    color: var(--white) !important;
    text-align: center;
    padding: 0.875rem;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    transition: background 0.2s;
}
.nav-drawer-btn-login:hover { background: var(--brand-purple); }

.nav-drawer-btn-book {
    border: 2px solid var(--brand-indigo);
    color: var(--brand-indigo) !important;
    text-align: center;
    padding: 0.75rem;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    transition: all 0.2s;
}
.nav-drawer-btn-book:hover { background: var(--brand-indigo); color: var(--white) !important; }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(2px);
    z-index: 199;
}
.nav-overlay.open { display: block; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .testimonial-card.featured { transform: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .package-price { font-size: 2rem; }
}

@media (max-width: 768px) {
    /* Navbar */
    .glass-nav { padding: 0.875rem 1.25rem; }
    .nav-links { display: none; }
    .nav-mobile-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 0.5rem;
        background: var(--slate-100);
    }
    .nav-drawer { display: flex; }

    /* Hero */
    .hero { padding: 2.5rem 1.25rem 5rem; }
    .hero h1 { font-size: clamp(2rem, 10vw, 3rem); margin-bottom: 1rem; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 2rem; }
    .hero-badge { font-size: 0.75rem; }

    /* Search widget */
    .search-widget { padding: 1.25rem; border-radius: 1.25rem; }
    .search-form { flex-direction: column; gap: 0.75rem; }
    .search-divider { display: none; }
    .search-field { width: 100%; min-width: unset; }
    .search-btn { width: 100%; justify-content: center; height: auto; padding: 1rem; }

    /* Sections */
    .section-why, .section-destinations, .section-packages,
    .section-testimonials, .section-contact, .section-newsletter { padding: 2rem 0; }
    .section-header { margin-bottom: 2.5rem; }
    .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
    .section-desc { font-size: 0.95rem; }

    /* Services */
    .services-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .service-card { padding: 1.5rem 1rem; }

    /* Destinations */
    .destinations-grid { grid-template-columns: 1fr; }
    .destinations-more { grid-template-columns: 1fr; }
    .destination-card-img { height: 12rem; }
    .destination-card-body { padding: 1.25rem; }
    .destination-card-body h3 { font-size: 1.2rem; }

    /* Packages */
    .package-inner { flex-direction: column; }
    .package-img-wrap { width: 100%; min-height: 220px; }
    .package-body { width: 100%; flex-direction: column; padding: 1.25rem; }
    .package-info { width: 100%; }
    .package-title { font-size: 1.5rem; }
    .package-price { font-size: 2.2rem; }
    .package-pricing {
        border-left: none;
        border-top: 1px solid var(--slate-100);
        padding-left: 0;
        padding-top: 1.25rem;
        margin-left: 0;
        margin-top: 1.25rem;
        align-items: flex-start;
    }
    .book-btn { width: 100%; text-align: center; padding: 0.875rem; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card.featured { transform: none; }

    /* Contact */
    .contact-box { flex-direction: column; }
    .contact-info { width: 100%; padding: 2rem 1.5rem; }
    .contact-info h2 { font-size: 1.75rem; }
    .contact-form-wrap { width: 100%; padding: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }

    /* Newsletter */
    .newsletter-box { padding: 2.5rem 1.25rem; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form button { width: 100%; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
    footer { padding: 3rem 1.25rem 1.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }

    /* Toast on mobile */
    .toast { right: 1rem; left: 1rem; bottom: 1rem; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .glass-nav { padding: 0.75rem 1rem; }
    .hero { padding: 2rem 1rem 4.5rem; }
    .container { padding: 0 1rem; }
    .search-widget { padding: 1rem; border-radius: 1rem; }
    .contact-info, .contact-form-wrap { padding: 1.25rem; }
    .newsletter-box { padding: 2rem 1rem; }
    .pay-container { padding: 1.5rem 1rem 3rem; }
    .section-header { margin-bottom: 2rem; }
}