@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #1a365d;
    --primary-dark: #0f2744;
    --primary-light: #2c5282;
    --accent: #e67e22;
    --accent-light: #f39c12;
    --accent-dark: #d35400;
    --teal: #0d9488;
    --text: #334155;
    --text-light: #64748b;
    --muted: #94a3b8;
    --line: #e2e8f0;
    --surface: #ffffff;
    --surface-alt: #f8fafc;
    --surface-warm: #fffbf5;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 60px rgba(0,0,0,0.15);
    --max-width: 1280px;
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--surface);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(var(--max-width), calc(100% - 3rem));
    margin: 0 auto;
}

.section {
    padding: 7rem 0;
    position: relative;
}

.section-alt {
    background: var(--surface-alt);
}

.section-warm {
    background: var(--surface-warm);
}

.section-dark {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header .label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header .label::before,
.section-header .label::after {
    content: '';
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 2px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 1.25rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn,
button.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 52px;
    padding: 0.875rem 2rem;
    border: 0;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.02em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 126, 34, 0.45);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 54, 93, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-ghost {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-ghost:hover {
    background: white;
    color: var(--primary);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.875rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.3);
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    transition: var(--transition);
}

.site-header.scrolled .brand-name {
    color: var(--primary);
}

.brand-tagline {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.site-header.scrolled .brand-tagline {
    color: var(--text-light);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0 auto;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    width: calc(100% - 2rem);
}

.nav-link:hover,
.nav-link.is-active {
    color: white;
}

.site-header.scrolled .nav-link {
    color: var(--text);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.is-active {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-user {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.site-header.scrolled .nav-user {
    color: var(--text);
}

.nav-actions .btn {
    min-height: 42px;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.site-header.scrolled .mobile-toggle {
    color: var(--primary);
}

.nav-item.has-dropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-item.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 0.625rem 1.25rem;
    color: var(--text);
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-dropdown a:hover {
    background: var(--surface-alt);
    color: var(--accent);
}

.nav-link svg {
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.nav-item.has-dropdown:hover .nav-link svg {
    transform: rotate(180deg);
}

@media (max-width: 1080px) {
    .site-nav {
        gap: 0;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .nav-dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        padding: 0;
        background: transparent;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    
    .nav-item.has-dropdown:hover .nav-dropdown,
    .nav-item.has-dropdown.is-open .nav-dropdown {
        display: block;
    }
    
    .nav-dropdown a {
        color: rgba(255,255,255,0.8);
        padding: 0.5rem 1.5rem;
    }
    
    .site-header.scrolled .nav-dropdown a {
        color: var(--text);
    }
    
    .nav-dropdown a:hover {
        background: rgba(255,255,255,0.1);
    }
    
    .site-header.scrolled .nav-dropdown a:hover {
        background: var(--surface-alt);
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-actions .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 39, 68, 0.85) 0%,
        rgba(15, 39, 68, 0.6) 50%,
        rgba(15, 39, 68, 0.4) 100%
    );
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 22s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 16s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 19s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 21s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 17s; }
.particle:nth-child(8) { left: 80%; animation-delay: 0.5s; animation-duration: 23s; }
.particle:nth-child(9) { left: 90%; animation-delay: 4.5s; animation-duration: 20s; }
.particle:nth-child(10) { left: 15%; animation-delay: 1.5s; animation-duration: 18s; }

@keyframes float {
    0%, 100% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; transform: translateY(80vh) scale(1); }
    90% { opacity: 1; transform: translateY(-10vh) scale(1); }
    100% { opacity: 0; transform: translateY(-20vh) scale(0); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent-light);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 0.3s forwards;
}

.hero-label svg {
    width: 24px;
    height: 24px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin: 0 0 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.5s forwards;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.7s forwards;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.9s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-search {
    position: relative;
    z-index: 3;
    margin-top: -60px;
}

.hero-search-panel {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s 1.1s forwards;
}

.hero-search-grid {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: var(--surface-alt);
    border-radius: 50px;
    padding: 6px;
    border: 1px solid var(--line);
}

.hero-search-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1.25rem;
    border-right: 1px solid var(--line);
}

.hero-search-item:last-of-type {
    border-right: none;
}

.hero-search-item label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}

.hero-search-item input,
.hero-search-item select {
    border: 0;
    background: transparent;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--primary);
    padding: 0.25rem 0;
    min-height: auto;
    width: 100%;
}

.hero-search-item input::placeholder {
    color: var(--muted);
    font-weight: 400;
}

.hero-search-item input:focus,
.hero-search-item select:focus {
    outline: none;
    box-shadow: none;
}

.hero-search-submit {
    flex-shrink: 0;
    min-width: 160px;
    border-radius: 50px !important;
    margin: 4px;
}

.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.stats-grid .stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.stats-grid .stat-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
}

.stats-grid .stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
}

.stats-grid .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-grid .stat-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.destination-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1.5rem;
}

.destination-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.destination-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.destination-card:nth-child(1) {
    grid-row: span 2;
}

.destination-card:nth-child(4) {
    grid-column: span 2;
}

.card-media {
    position: absolute;
    inset: 0;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover .card-media img {
    transform: scale(1.1);
}

.card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 39, 68, 0.9) 0%,
        rgba(15, 39, 68, 0.4) 40%,
        rgba(15, 39, 68, 0.1) 100%
    );
    transition: var(--transition);
}

.destination-card:hover .card-media::after {
    background: linear-gradient(
        to top,
        rgba(230, 126, 34, 0.9) 0%,
        rgba(230, 126, 34, 0.5) 40%,
        rgba(230, 126, 34, 0.2) 100%
    );
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    transform: translateY(20px);
    transition: var(--transition);
}

.destination-card:hover .card-content {
    transform: translateY(0);
}

.card-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.card-rating {
    color: var(--accent-light);
}

.card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.destination-card:hover .card-actions {
    opacity: 1;
    transform: translateY(0);
}

.card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.card-price span {
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.7;
}

.card-actions .btn {
    min-height: 44px;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

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

.package-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.package-media {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.package-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-card:hover .package-media img {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
}

.package-price-tag {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}

.package-price-tag .from {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.package-price-tag .amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.package-content {
    padding: 1.75rem;
}

.package-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.75rem;
}

.package-content > p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

.package-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 1.25rem;
}

.package-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.package-meta-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.package-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.package-rating {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--accent-light);
    font-weight: 600;
}

.testimonials {
    position: relative;
    overflow: hidden;
}

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

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: var(--accent);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    color: var(--accent-light);
    margin-bottom: 1.25rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--surface-alt);
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.newsletter {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter::before,
.newsletter::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.05;
}

.newsletter::before {
    top: -200px;
    left: -100px;
}

.newsletter::after {
    bottom: -200px;
    right: -100px;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin: 0 0 1rem;
}

.newsletter p {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

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

.newsletter-form input {
    flex: 1;
    min-height: 56px;
    padding: 1rem 1.5rem;
    border: 0;
    border-radius: 50px;
    font-size: 1rem;
    background: white;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.3);
}

.newsletter-form .btn {
    white-space: nowrap;
}

.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent-light);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

.footer-bottom-links a:hover {
    color: white;
}

.inner-banner {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.inner-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.inner-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 39, 68, 0.85) 0%, rgba(15, 39, 68, 0.6) 100%);
}

.inner-banner-content {
    position: relative;
    z-index: 1;
    padding-top: 6rem;
}

.inner-banner .label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent-light);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.inner-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: white;
    max-width: 700px;
    margin: 0 0 1rem;
}

.inner-banner p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
}

.page-content {
    padding: 4rem 0;
}

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

.destinations-grid .destination-card {
    border-radius: var(--radius-lg);
}

.destinations-grid .destination-card:nth-child(1) {
    grid-row: span 1;
}

.destinations-grid .destination-card:nth-child(4) {
    grid-column: span 1;
}

.filters {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr auto;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.filters .field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filters label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filters input {
    min-height: 48px;
    padding: 0.75rem 1rem;
    border: 2px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.filters input:focus {
    border-color: var(--accent);
    outline: none;
}

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.auth-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 50%);
    animation: pulse 10s ease-in-out infinite;
}

.auth-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: min(1100px, 100%);
    position: relative;
    z-index: 1;
}

.auth-info {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 0 0 1.5rem;
}

.auth-info p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.auth-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.auth-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.auth-features li::before {
    content: '✓';
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.auth-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
}

.auth-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    margin: 0 0 0.5rem;
}

.auth-card > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-field {
    margin-bottom: 1.25rem;
}

.form-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    min-height: 52px;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
}

.form-field textarea {
    min-height: 120px;
    resize: vertical;
}

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

.form-message {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: none;
}

.form-message.is-visible {
    display: block;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #166534;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(15, 39, 68, 0.6);
    backdrop-filter: blur(8px);
}

.modal.is-open {
    display: flex;
}

.modal-panel {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    width: min(500px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0;
}

.modal-header p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0.25rem 0 0;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border: 0;
    background: var(--surface-alt);
    border-radius: 50%;
    color: var(--text);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
}

.icon-btn:hover {
    background: var(--primary);
    color: white;
}

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

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

.loading-ring {
    width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.notice {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 3000;
    min-width: 300px;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: none;
    align-items: center;
    gap: 1rem;
    animation: slideIn 0.3s ease;
}

.notice.is-visible {
    display: flex;
}

.notice.success {
    border-left: 4px solid #22c55e;
}

.notice.error {
    border-left: 4px solid #ef4444;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hidden {
    display: none !important;
}

.auth-switch {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    background: var(--surface-alt);
    border-radius: var(--radius-sm);
    padding: 4px;
}

.auth-switch a {
    flex: 1;
    padding: 0.875rem 1.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
    border-radius: 6px;
    transition: var(--transition);
}

.auth-switch a.is-active {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.about-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

@media (max-width: 1024px) {
    .about-grid-2col,
    .contact-grid-2col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-box {
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    color: white;
}

.stat-box-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-box-label {
    font-size: 0.9375rem;
    opacity: 0.9;
}

.stat-box-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.stat-box-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}

.stat-box-teal {
    background: linear-gradient(135deg, var(--teal) 0%, #14b8a6 100%);
}

.stat-box-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.stats-grid .stat-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stats-grid .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.section:not(.section-alt):not(.section-warm) .stats-grid .stat-item {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: none;
}

.section:not(.section-alt):not(.section-warm) .stats-grid .stat-item:hover {
    background: rgba(255,255,255,0.12);
    box-shadow: none;
}

.section:not(.section-alt):not(.section-warm) .stats-grid .stat-number {
    color: white;
}

.section:not(.section-alt):not(.section-warm) .stats-grid .stat-label {
    color: rgba(255,255,255,0.7);
}

.stats-grid .stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stats-grid .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-grid .stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.metric-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.75rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.metric-card strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-top: 0.5rem;
}

.metric-card span {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.empty-state {
    background: var(--surface-alt);
    border: 2px dashed var(--line);
    border-radius: var(--radius);
    padding: 3rem;
    text-align: center;
}

@media (max-width: 1200px) {
    .hero-search-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-search-grid > div:last-of-type {
        grid-column: 1 / -1;
    }
    
    .hero-search-submit {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .destination-showcase {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .destination-card:nth-child(1) {
        grid-row: span 1;
    }
    
    .destination-card:nth-child(4) {
        grid-column: span 1;
    }
    
    .packages-grid,
    .testimonials-grid,
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    
    .site-header {
        position: relative;
    }
    
    .nav-shell {
        padding: 1rem 0;
    }
    
    .brand-logo {
        width: 40px;
        height: 40px;
    }
    
    .brand-name {
        font-size: 1.125rem;
    }
    
    .site-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 54, 93, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        transform: translateX(-100%);
        transition: var(--transition);
        z-index: 999;
        margin: 0;
    }
    
    .site-nav.is-open {
        transform: translateX(0);
    }
    
    .site-nav .nav-link {
        font-size: 1.25rem;
        color: white;
        padding: 0.875rem 2rem;
    }
    
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1001;
    }
    
    .nav-actions {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--primary);
        padding: 1rem;
        justify-content: center;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-user {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding-top: 2rem;
    }
    
    .hero-content {
        text-align: center;
        padding-top: 2rem;
    }
    
    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-search {
        margin-top: 2rem;
    }
    
    .hero-search-panel {
        padding: 1rem;
        border-radius: var(--radius);
    }
    
    .hero-search-grid {
        flex-direction: column;
        border-radius: var(--radius);
        padding: 0;
        gap: 0;
        background: transparent;
        border: none;
    }
    
    .hero-search-item {
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding: 1rem;
        background: white;
        border-radius: 0;
    }
    
    .hero-search-item:first-child {
        border-radius: var(--radius) var(--radius) 0 0;
    }
    
    .hero-search-item:last-of-type {
        border-bottom: none;
        border-radius: 0 0 var(--radius) var(--radius);
    }
    
    .hero-search-submit {
        width: 100%;
        border-radius: var(--radius) !important;
        margin-top: 0.5rem;
    }
    
    .stats-grid,
    .packages-grid,
    .testimonials-grid,
    .destinations-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .auth-wrapper {
        grid-template-columns: 1fr;
    }
    
    .auth-info {
        display: none;
    }
    
    .filters {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .page-content .container > div,
    .section .container > div[style*="grid"] {
        grid-template-columns: 1fr !important;
    }
    
    .about-page-grid {
        grid-template-columns: 1fr !important;
    }
    
    .contact-section-grid {
        grid-template-columns: 1fr !important;
    }
}
