:root {
    --primary: #75AADB;
    --primary-dark: #5B8FB9;
    --primary-light: #A8D4F0;
    --accent: #FF6B6B;
    --accent-gradient: linear-gradient(135deg, #FF6B6B, #FF8E53);
    --primary-gradient: linear-gradient(135deg, #75AADB, #5B8FB9);
    --dark: #0a0a0f;
    --dark-2: #12121a;
    --dark-3: #1a1a2e;
    --gray: #8a8a9a;
    --gray-light: #f0f2f5;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-light: rgba(255, 255, 255, 0.95);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(117, 170, 219, 0.3);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

body.nav-open {
    overflow: hidden;
}

body.modal-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: var(--font-body); }

.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden { opacity: 0; visibility: hidden; }

.loader-content { text-align: center; color: var(--white); }

.loader-logo img { height: 60px; margin: 0 auto 30px; }

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 20px;
}

.loader-progress {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 10px;
    animation: loading 1.5s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}

.loader-content p {
    font-size: 0.9rem;
    opacity: 0.6;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 20px 0;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 12px 0;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 72px; }
.logo span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

#navbar.scrolled .logo span { color: var(--dark); }

.nav-menu { display: flex; align-items: center; gap: 8px; }

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

#navbar.scrolled .nav-link { color: var(--dark); }
#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active {
    color: var(--primary);
    background: rgba(117, 170, 219, 0.1);
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown > .nav-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover > .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 260px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-xs);
    color: var(--dark);
    font-weight: 500;
    font-size: 0.88rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(117, 170, 219, 0.1);
    color: var(--primary);
}

.dropdown-item.active {
    background: rgba(117, 170, 219, 0.15);
    color: var(--primary);
    font-weight: 600;
}

.dropdown-item img {
    width: 40px;
    height: 28px;
    object-fit: cover;
    border-radius: 6px;
}

.dropdown-item span {
    flex: 1;
}

#navbar.scrolled .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(117, 170, 219, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

#navbar.scrolled .hamburger span { background: var(--dark); }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease, transform 8s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.4) 0%, rgba(10, 10, 15, 0.6) 50%, rgba(10, 10, 15, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.5s forwards;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
}

.hero-title .line-1 { animation: heroReveal 1s 0.7s forwards; }
.hero-title .line-2 { animation: heroReveal 1s 0.9s forwards; }

.hero-title em {
    font-family: var(--font-serif);
    font-style: italic;
    background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 0.8s 1.1s forwards;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s 1.3s forwards;
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-glow::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: left 0.5s ease;
}

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

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(117, 170, 219, 0.5);
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 0.8s 1.8s forwards;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; height: 50px; }
    50% { opacity: 1; height: 70px; }
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 30px 24px;
    z-index: 3;
    flex-wrap: wrap;
}

.stat-glass {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.stat-info { text-align: left; }

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Search Section */
.search-section {
    position: relative;
    z-index: 10;
    margin-top: -40px;
    padding: 0 24px;
}

.search-glass {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-lg);
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.field-icon {
    width: 45px;
    height: 45px;
    background: rgba(117, 170, 219, 0.1);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.field-content label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 4px;
}

.field-content select,
.field-content input {
    width: 100%;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    outline: none;
}

.search-divider {
    width: 1px;
    height: 50px;
    background: #e5e7eb;
}

.search-btn-glow {
    width: 55px;
    height: 55px;
    background: var(--primary-gradient);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.search-btn-glow:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

/* Trust Bar */
.trust-bar {
    padding: 40px 0;
    background: var(--white);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.1;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 550px;
    margin: 0 auto;
}

/* Filter Pills */
.filter-pills {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    color: var(--gray);
}

.filter-pill:hover, .filter-pill.active {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.filter-pill i { font-size: 0.85rem; }

/* Destinations Grid */
.destinations-section { padding: 100px 0; }

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.dest-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.dest-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.dest-card.hidden { display: none; }

.dest-card.featured {
    grid-column: span 2;
}

.dest-card-inner {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.dest-card:hover .dest-card-inner {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.dest-card-visual {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.dest-card.featured .dest-card-visual { height: 350px; }

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

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

.dest-card-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.dest-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--dark);
}

.featured-badge {
    background: var(--accent-gradient);
    color: var(--white);
}

.dest-card-actions {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
}

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

.action-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: var(--transition);
    font-size: 0.9rem;
}

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

.dest-card-body { padding: 24px; flex: 1; }

.dest-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.dest-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.dest-card-desc {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.dest-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.dest-card-tags span {
    padding: 4px 12px;
    background: var(--gray-light);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray);
}

.dest-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.dest-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stars { display: flex; gap: 2px; }
.stars i { color: #FFB800; font-size: 0.7rem; }

.dest-card-rating > span { font-weight: 700; font-size: 0.95rem; }
.reviews { color: var(--gray); font-size: 0.8rem; font-weight: 400; }

.dest-card-price { text-align: right; }
.dest-card-price small { display: block; font-size: 0.75rem; color: var(--gray); }
.dest-card-price strong { font-size: 1.3rem; color: var(--primary); font-weight: 800; }

.dest-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: var(--dark);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    margin-top: 0;
}

.dest-card-cta:hover {
    background: var(--primary);
}

.dest-card-cta i {
    transition: transform 0.3s ease;
}

.dest-card-cta:hover i {
    transform: translateX(5px);
}

/* Activities Section */
.activities-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.activity-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.activity-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 22px;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    color: var(--gray);
}

.activity-tab i { font-size: 1.2rem; transition: var(--transition); }
.activity-tab span { font-weight: 500; font-size: 0.85rem; }

.activity-tab:hover, .activity-tab.active {
    border-color: var(--primary);
    background: var(--white);
    color: var(--primary);
}

.activity-tab.active { box-shadow: 0 4px 15px rgba(117, 170, 219, 0.2); }

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.activity-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.activity-card.hidden { display: none; }

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

.activity-card-visual {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.activity-card:hover .activity-card-visual img { transform: scale(1.08); }

.activity-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.3) 100%);
}

.activity-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 14px;
    background: var(--accent-gradient);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.activity-card-price-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xs);
}

.activity-card-price-tag .from { display: block; font-size: 0.7rem; color: var(--gray); }
.activity-card-price-tag .price { font-size: 1.2rem; font-weight: 800; color: var(--dark); }

.activity-card-content { padding: 24px; }

.activity-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--gray);
}

.activity-card-meta i { color: var(--primary); margin-right: 4px; }

.activity-card-rating {
    margin-left: auto;
    color: var(--dark);
    font-weight: 600;
}

.activity-card-rating i { color: #FFB800; }

.activity-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.activity-card-content > p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.activity-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.activity-card-pricing { display: flex; align-items: center; gap: 8px; }
.activity-card-pricing .old { text-decoration: line-through; color: var(--gray); font-size: 0.9rem; }
.activity-card-pricing .new { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.activity-card-pricing .save {
    padding: 3px 8px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
}

.btn-book {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-book:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* GYG Mega CTA */
.gyg-mega-cta {
    position: relative;
    margin-top: 60px;
    padding: 60px 40px;
    background: var(--dark);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
}

.gyg-mega-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/iguazu-falls.jpg') center/cover;
    opacity: 0.15;
}

.gyg-mega-content { position: relative; z-index: 2; }

.gyg-mega-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    color: var(--white);
}

.gyg-mega-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.gyg-mega-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.btn-large { padding: 18px 45px; font-size: 1.1rem; }

.gyg-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.gyg-trust span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gyg-trust i { color: #4ade80; }

/* Comparatif Section */
.comparatif-section { padding: 100px 0; }

.comparatif-glass {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #f0f0f0;
    margin-bottom: 60px;
}

.comparatif-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}

.comparatif-table thead {
    background: var(--dark);
    color: var(--white);
}

.comparatif-table th {
    padding: 18px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparatif-table td {
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
    font-size: 0.9rem;
}

.comparatif-table tbody tr { transition: var(--transition-fast); }
.comparatif-table tbody tr:hover { background: rgba(117, 170, 219, 0.05); }

.dest-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.dest-cell img {
    width: 55px;
    height: 40px;
    object-fit: cover;
    border-radius: var(--radius-xs);
}

.type-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.type-badge.ville { background: #dbeafe; color: #2563eb; }
.type-badge.nature { background: #dcfce7; color: #16a34a; }
.type-badge.aventure { background: #fef3c7; color: #d97706; }
.type-badge.culture { background: #fce7f3; color: #db2777; }

.budget { font-weight: 600; color: var(--dark); }

.note {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    color: var(--dark);
}

.note i { color: #FFB800; font-size: 0.8rem; }

.btn-table {
    display: inline-block;
    padding: 8px 18px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-table:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(117, 170, 219, 0.3);
}

/* Budget Section */
.budget-section { margin-bottom: 60px; }

.budget-title, .season-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 800;
}

.budget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.budget-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid #f0f0f0;
    transition: var(--transition);
    position: relative;
}

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

.budget-card.recommended {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.recommended-badge {
    position: absolute;
    top: 16px;
    right: -30px;
    background: var(--accent-gradient);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.budget-card-header {
    padding: 30px;
    text-align: center;
    color: var(--white);
}

.budget-card-header.eco { background: linear-gradient(135deg, #4ade80, #16a34a); }
.budget-card-header.premium { background: var(--primary-gradient); }
.budget-card-header.luxury { background: linear-gradient(135deg, #a855f7, #7c3aed); }

.budget-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.2rem;
}

.budget-card-header h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.budget-range { font-size: 1rem; font-weight: 600; opacity: 0.9; }

.budget-list { padding: 20px; }

.budget-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.budget-list li:last-child { border-bottom: none; }

.budget-list li .price { font-weight: 700; color: var(--primary); }

.budget-list li a {
    width: 32px;
    height: 32px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
    font-size: 0.8rem;
}

.budget-list li a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Season Section */
.season-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.season-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid #f0f0f0;
    transition: var(--transition);
    position: relative;
}

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

.season-card.best {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.best-season-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.season-visual {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--white);
}

.season-visual.summer { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.season-visual.autumn { background: linear-gradient(135deg, #f97316, #ea580c); }
.season-visual.winter { background: linear-gradient(135deg, #60a5fa, #3b82f6); }
.season-visual.spring { background: linear-gradient(135deg, #4ade80, #22c55e); }

.season-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.season-period { display: block; color: var(--gray); font-size: 0.85rem; margin-bottom: 4px; }
.season-temp { display: block; color: var(--primary); font-weight: 700; margin-bottom: 16px; }

.season-pros-cons { text-align: left; margin-bottom: 20px; }

.season-pros-cons li {
    padding: 6px 0;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.season-pros-cons .pro i { color: #4ade80; }
.season-pros-cons .con i { color: var(--accent); }

.btn-season {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-season:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(117, 170, 219, 0.3);
}

/* Quiz Section */
.quiz-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 50px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.quiz-progress {
    height: 4px;
    background: #e5e7eb;
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 10px;
    transition: width 0.5s ease;
    width: 25%;
}

.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeInUp 0.5s ease; }

.quiz-step h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.quiz-option {
    padding: 24px 16px;
    background: var(--gray-light);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.quiz-option:hover { border-color: var(--primary); background: rgba(117, 170, 219, 0.05); }

.quiz-option.selected {
    border-color: var(--primary);
    background: rgba(117, 170, 219, 0.1);
}

.quiz-option-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.2rem;
    color: var(--primary);
    transition: var(--transition);
}

.quiz-option.selected .quiz-option-icon {
    background: var(--primary);
    color: var(--white);
}

.quiz-option span { display: block; font-weight: 600; margin-bottom: 4px; }
.quiz-option small { color: var(--gray); font-size: 0.8rem; }

.quiz-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.quiz-prev, .quiz-next {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.quiz-prev {
    background: var(--gray-light);
    color: var(--gray);
}

.quiz-prev:disabled { opacity: 0.5; cursor: not-allowed; }

.quiz-next {
    background: var(--primary-gradient);
    color: var(--white);
}

.quiz-next:disabled { opacity: 0.5; cursor: not-allowed; }

.quiz-result {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.quiz-result.active { display: block; animation: fadeInUp 0.5s ease; }

.result-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--white);
}

.quiz-result h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

#result-destination { color: var(--primary); }

.quiz-result > p {
    color: var(--gray);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.result-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.result-activity {
    padding: 8px 18px;
    background: var(--gray-light);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
}

.quiz-restart {
    margin-top: 16px;
    color: var(--dark);
    border: 2px solid #e5e7eb;
}

/* Témoignages Section */
.temoignages-section {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
}

.temoignages-section .section-badge { background: var(--accent-gradient); }
.temoignages-section .section-title { color: var(--white); }
.temoignages-section .section-subtitle { color: rgba(255, 255, 255, 0.6); }

.temoignages-track-wrapper {
    overflow: hidden;
    margin: 0 -24px;
    padding: 20px 0;
}

.temoignages-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    padding: 0 24px;
}

.temoignage-card {
    min-width: 400px;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 30px;
    flex-shrink: 0;
}

.temoignage-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.temoignage-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.temoignage-info strong { display: block; font-size: 1rem; }
.temoignage-info span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); }

.temoignage-verified {
    margin-left: auto;
    font-size: 0.75rem;
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 4px;
}

.temoignage-stars { margin-bottom: 16px; }
.temoignage-stars i { color: #FFB800; font-size: 0.9rem; }

.temoignage-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.temoignages-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.temoignages-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.temoignages-nav button:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.temoignages-dots { display: flex; gap: 8px; }

.temoignages-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.temoignages-dots .dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* Newsletter */
.newsletter-section { padding: 80px 0; }

.newsletter-glass {
    max-width: 900px;
    margin: 0 auto;
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.newsletter-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.newsletter-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.newsletter-content p { color: var(--gray); font-size: 0.95rem; }

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--white);
    border-radius: 50px;
    border: 2px solid #e5e7eb;
    transition: var(--transition);
}

.input-group:focus-within { border-color: var(--primary); }

.input-group i { color: var(--gray); }

.input-group input {
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    min-width: 250px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    color: var(--white);
    transform: rotate(180deg);
}

.footer-wave svg { height: 60px; width: 100%; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo img { height: 35px; }
.footer-logo span { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; }

.footer-brand p { color: rgba(255, 255, 255, 0.6); line-height: 1.7; margin-bottom: 20px; }

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

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

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

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links ul li { margin-bottom: 10px; }

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p { color: rgba(255, 255, 255, 0.4); margin-bottom: 8px; font-size: 0.85rem; }
.affiliate-disclosure { font-style: italic; font-size: 0.8rem !important; }

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 24px;
}

.modal.active { opacity: 1; visibility: visible; }

.modal-content {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 750px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition);
}

.modal.active .modal-content { transform: scale(1) translateY(0); }

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    font-size: 1rem;
}

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

.modal-hero {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}

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

.modal-info { padding: 35px; }

.modal-info h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.modal-location {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-description {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.modal-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.modal-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--gray-light);
    border-radius: var(--radius-xs);
    font-size: 0.9rem;
}

.modal-highlight i { color: var(--primary); }

.modal-cta {
    display: block;
    text-align: center;
    padding: 16px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
}

.modal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(117, 170, 219, 0.4);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9999;
    box-shadow: var(--shadow);
}

.back-to-top.visible { opacity: 1; visibility: visible; }

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* Responsive — Tablet */
@media (max-width: 1024px) {
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .search-glass { flex-wrap: wrap; }
    .search-divider { display: none; }
    .newsletter-glass { flex-direction: column; text-align: center; }
    .newsletter-form { margin-left: 0; width: 100%; flex-direction: column; }
    .input-group input { min-width: auto; width: 100%; }
    .comparatif-glass { overflow-x: auto; }
    .budget-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
}

/* Responsive — Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: relative;
        z-index: 10002;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 90px 24px 30px;
        gap: 4px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        z-index: 10001;
    }
    .nav-menu.active { right: 0; }
    .nav-link { color: var(--dark) !important; font-size: 1.05rem; width: 100%; padding: 12px 16px !important; }
    .nav-link:hover, .nav-link.active { background: rgba(117, 170, 219, 0.1); }
    .nav-cta { display: none; }

    /* Dropdown in mobile menu */
    .nav-dropdown { position: static; }
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        background: transparent;
        backdrop-filter: none;
        display: none;
        min-width: 0;
    }
    .nav-dropdown.menu-open .dropdown-menu { display: block; }
    .nav-dropdown > .nav-link i { transition: transform 0.3s ease; }
    .nav-dropdown.menu-open > .nav-link i { transform: rotate(180deg); }
    .dropdown-item { padding: 8px 12px; font-size: 0.85rem; }
    .dropdown-item img { width: 36px; height: 24px; }

    /* Hero */
    .hero { min-height: auto; height: 100vh; height: 100dvh; }
    .hero-content { padding: 0 20px 180px; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 0.95rem; padding: 0 10px; }
    .hero-cta-group { flex-direction: column; align-items: center; }
    .btn-glow, .btn-glass { width: 100%; max-width: 280px; justify-content: center; }
    .hero-stats {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        gap: 8px;
        padding: 16px 12px;
        flex-wrap: wrap;
    }
    .stat-glass { padding: 10px 12px; gap: 10px; flex: 1; min-width: 140px; justify-content: center; }
    .stat-glass .stat-value { font-size: 1rem; }
    .stat-glass .stat-label { font-size: 0.65rem; }
    .hero-scroll { display: none; }

    /* Search */
    .search-section { margin-top: -30px; }
    .search-glass { padding: 16px; flex-direction: column; gap: 12px; }
    .search-input-group { width: 100%; }

    /* Trust bar */
    .trust-items { gap: 12px; justify-content: center; }
    .trust-item { font-size: 0.75rem; gap: 6px; }

    /* Destinations */
    .destinations-grid { grid-template-columns: 1fr; }
    .dest-card.featured { grid-column: span 1; }
    .dest-card.featured .dest-card-visual { height: 240px; }
    .filter-pills { flex-wrap: wrap; justify-content: center; gap: 8px; }
    .filter-pill { font-size: 0.8rem; padding: 8px 14px; }

    /* Activities */
    .activities-grid { grid-template-columns: 1fr; }

    /* Comparison table */
    .comparatif-glass { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .comparatif-table { min-width: 700px; }

    /* Budget cards */
    .budget-grid { grid-template-columns: 1fr; }
    .recommended-badge { right: -20px; font-size: 0.65rem; padding: 4px 30px; }

    /* Quiz */
    .quiz-container { padding: 24px 16px; }
    .quiz-options { grid-template-columns: 1fr 1fr; gap: 10px; }
    .quiz-option { padding: 16px; }
    .quiz-option i { font-size: 1.5rem; }
    .quiz-option span { font-size: 0.85rem; }

    /* Testimonials */
    .temoignage-card { min-width: 260px; max-width: 260px; padding: 20px; }

    /* Newsletter */
    .newsletter-section { padding: 60px 0; }
    .newsletter-glass { padding: 30px 20px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

    /* Modal */
    .modal-highlights { grid-template-columns: 1fr; }

    /* Season grid */
    .season-grid { grid-template-columns: 1fr; }

    /* Back to top */
    .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; font-size: 1rem; }

    /* Sections spacing */
    .destinations-section, .activities-section, .comparatif-section, .quiz-section, .temoignages-section { padding: 60px 0; }
    .section-title { font-size: 1.8rem; }
    .section-subtitle { font-size: 0.9rem; }
}

/* Responsive — Small phones */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-content { padding: 0 16px 160px; }
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.85rem; }
    .hero-stats { gap: 6px; padding: 12px 8px; }
    .stat-glass { padding: 8px 10px; min-width: 0; flex: 1 1 calc(50% - 6px); }
    .stat-glass .stat-value { font-size: 0.9rem; }
    .stat-glass .stat-label { font-size: 0.6rem; }
    .stat-glass i { font-size: 0.9rem; }
    .btn-glow, .btn-glass { font-size: 0.9rem; padding: 12px 20px; }
    .search-glass { padding: 12px; }
    .search-input-group input { font-size: 0.9rem; }
    .dest-card-body { padding: 18px; }
    .dest-card-title { font-size: 1.1rem; }
    .dest-card-desc { font-size: 0.85rem; }
    .dest-card-tags span { font-size: 0.7rem; padding: 2px 8px; }
    .dest-card-footer { flex-direction: column; gap: 8px; }
    .dest-card-price { text-align: left; }
    .dest-card-cta { padding: 14px; font-size: 0.85rem; }
    .filter-pills { gap: 6px; }
    .filter-pill { font-size: 0.75rem; padding: 6px 12px; }
    .section-title { font-size: 1.5rem; }
    .section-badge { font-size: 0.7rem; padding: 4px 14px; }
    .trust-items { flex-wrap: wrap; }
    .temoignage-card { min-width: 240px; max-width: 240px; padding: 16px; }
    .comparatif-table { min-width: 600px; }
    .quiz-options { grid-template-columns: 1fr; }
    .nav-menu { width: 260px; }
    .back-to-top { bottom: 16px; right: 16px; width: 40px; height: 40px; }
}

/* ============================================
   MODERN ENHANCEMENTS
   ============================================ */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection Color */
::selection {
    background: var(--primary);
    color: var(--white);
}

/* Animated Background Gradient */
.gradient-bg-animated {
    background: linear-gradient(-45deg, var(--primary), var(--primary-dark), var(--accent), #FF8E53);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glass Effect Enhancement */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Glow Text Effect */
.glow-text {
    text-shadow: 0 0 10px rgba(117, 170, 219, 0.5),
                 0 0 20px rgba(117, 170, 219, 0.3),
                 0 0 30px rgba(117, 170, 219, 0.2);
}

/* Animated Border Gradient */
.animated-border {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
}

.animated-border::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, var(--primary), var(--accent), var(--primary));
    animation: rotateBorder 4s linear infinite;
    z-index: -1;
}

.animated-border::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--white);
    border-radius: calc(var(--radius) - 2px);
    z-index: -1;
}

@keyframes rotateBorder {
    100% { transform: rotate(360deg); }
}

/* Floating Animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Shake Animation */
.shake-hover:hover {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Shine Effect */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.shine-effect:hover::after {
    transform: translateX(100%);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Scale Reveal */
.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger Animation */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Button Ripple Effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.btn-ripple:active::after {
    transform: scale(2);
    opacity: 1;
    transition: 0s;
}

/* Neon Glow Effect */
.neon-glow:hover {
    box-shadow: 0 0 5px var(--primary),
                0 0 10px var(--primary),
                0 0 20px var(--primary),
                0 0 40px var(--primary);
}

/* Smooth Card Hover with Shadow */
.card-hover-lift {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-hover-lift:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Text Gradient Animated */
.gradient-text-animated {
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradient 3s ease infinite;
}

@keyframes textGradient {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* Magnetic Button Effect */
.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Pulse Ring Effect */
.pulse-ring {
    position: relative;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: pulseRing 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Smooth Underline Animation */
.underline-animated {
    position: relative;
    display: inline-block;
}

.underline-animated::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.underline-animated:hover::after {
    width: 100%;
}

/* Typing Effect Cursor */
.typing-cursor::after {
    content: '|';
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* 3D Card Tilt */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

/* Counter Spin */
.spin-hover:hover i {
    animation: spinOnce 0.6s ease;
}

@keyframes spinOnce {
    100% { transform: rotate(360deg); }
}

/* Bounce Animation */
.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

/* Fade In Slide */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.fade-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.fade-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Progress Bar Animation */
.progress-bar-animated {
    position: relative;
    overflow: hidden;
}

.progress-bar-animated::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Hover Color Shift */
.color-shift {
    transition: color 0.3s ease, background 0.3s ease;
}

.color-shift:hover {
    color: var(--primary);
}

/* Focus Ring */
.focus-ring:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(117, 170, 219, 0.4);
}

/* Tooltip */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    padding: 6px 12px;
    background: var(--dark);
    color: var(--white);
    font-size: 0.75rem;
    border-radius: var(--radius-xs);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Smooth Page Transition */
.page-transition {
    animation: pageIn 0.6s ease forwards;
}

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

/* Image Lazy Load Placeholder */
.lazy-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loadingShimmer 1.5s infinite;
}

@keyframes loadingShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Enhanced Hover States for Links */
.link-hover-effect {
    position: relative;
    transition: color 0.3s ease;
}

.link-hover-effect:hover {
    color: var(--primary);
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
}

/* Dark Glass Card */
.dark-glass-card {
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

/* Smooth Image Zoom */
.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.img-zoom:hover img {
    transform: scale(1.1);
}

/* ============================================
   CIRCUIT CONFIGURATOR
   ============================================ */
.configurator-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #f0f4f8 0%, #e8eef5 50%, #f0f4f8 100%);
    position: relative;
}

.config-wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.config-wave-top svg {
    width: 100%;
    height: 60px;
}

.config-wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.config-wave-bottom svg {
    width: 100%;
    height: 60px;
}

.configurator-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Live Summary Bar */
.config-live-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 28px;
    background: var(--white);
    border-radius: 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid rgba(117,170,219,0.12);
    margin-bottom: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.live-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-bar-item i {
    color: var(--primary);
    font-size: 0.9rem;
    opacity: 0.7;
}

.live-bar-num {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
}

.live-bar-lbl {
    font-size: 0.78rem;
    color: var(--gray);
    font-weight: 500;
}

.live-bar-item.budget .live-bar-num {
    color: var(--primary);
}

.live-bar-divider {
    width: 1px;
    height: 28px;
    background: #e5e7eb;
}

.live-bar-itinerary {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.live-bar-itinerary:empty {
    display: none;
}

.live-bar-dest-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    background: rgba(117,170,219,0.08);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary);
}

.live-bar-dest-tag img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 3px;
}

/* Step Indicator */
.config-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    padding: 16px 0;
}

.config-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.35;
    transition: all 0.4s ease;
}

.config-step.active {
    opacity: 1;
}

.config-step.completed {
    opacity: 0.6;
}

.step-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gray);
    border: 2px solid #e5e7eb;
    transition: all 0.4s ease;
}

.config-step.active .step-circle {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(117, 170, 219, 0.35);
}

.config-step.completed .step-circle {
    background: #4ade80;
    color: var(--white);
    border-color: #22c55e;
}

.config-step span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.config-step.active span {
    color: var(--primary);
}

.step-connector {
    width: 50px;
    height: 2px;
    background: #e5e7eb;
    border-radius: 2px;
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
}

.step-connector::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--primary-gradient);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.step-connector.filled::after {
    width: 100%;
}

/* Config Content */
.config-content {
    background: var(--white);
    border-radius: var(--radius-lg, 20px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid rgba(117,170,219,0.08);
    overflow: hidden;
}

.config-panel {
    display: none;
    padding: 40px;
    animation: fadeInUp 0.5s ease;
}

.config-panel.active {
    display: block;
}

.panel-header {
    margin-bottom: 30px;
}

.panel-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-header h3 i {
    color: var(--primary);
}

.panel-header p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Duration Selector */
.duration-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.duration-card {
    background: var(--gray-light);
    border: 3px solid transparent;
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.duration-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.duration-card.selected {
    border-color: var(--primary);
    background: rgba(117, 170, 219, 0.08);
    box-shadow: 0 0 20px rgba(117, 170, 219, 0.2);
}

.duration-card.popular {
    border-color: var(--accent);
}

.duration-card.popular.selected {
    border-color: var(--primary);
}

.duration-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: var(--white);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
}

.duration-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.duration-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.duration-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 6px;
}

.duration-desc {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.duration-tag {
    display: inline-block;
    background: var(--white);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray);
}

.custom-duration {
    text-align: center;
    padding: 20px;
    background: var(--gray-light);
    border-radius: var(--radius);
}

.custom-duration label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 12px;
}

.custom-input-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.custom-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.custom-input-group input {
    width: 80px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    border: none;
    background: transparent;
    outline: none;
}

.custom-input-group .days-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Days Timeline */
.days-timeline {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    padding: 16px;
    background: var(--gray-light);
    border-radius: var(--radius);
}

.timeline-day {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--white);
    color: var(--gray);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.timeline-day.assigned {
    border-color: var(--primary);
    background: rgba(117, 170, 219, 0.15);
    color: var(--primary);
}

.timeline-day.current-dest {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: var(--primary);
}

/* Destination Selector */
.dest-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.dest-option {
    display: flex;
    background: var(--white);
    border: 2px solid #f0f0f0;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dest-option:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.dest-option.selected {
    border-color: var(--primary);
    background: rgba(117, 170, 219, 0.04);
}

.dest-option-img {
    width: 100px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.dest-option-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dest-option-overlay {
    position: absolute;
    inset: 0;
    background: rgba(117, 170, 219, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dest-option:hover .dest-option-overlay {
    opacity: 1;
}

.dest-option-overlay i {
    color: var(--white);
    font-size: 1.5rem;
}

.dest-option-info {
    flex: 1;
    padding: 14px;
}

.dest-option-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.dest-option-info p {
    font-size: 0.78rem;
    color: var(--gray);
    margin-bottom: 8px;
}

.dest-option-tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.dest-option-tags span {
    padding: 2px 8px;
    background: var(--gray-light);
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--gray);
}

.dest-option-days {
    padding: 14px 12px;
    display: flex;
    align-items: center;
}

.dest-option-days select {
    padding: 8px 12px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-xs);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
}

.dest-option-days select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Activities per destination */
.activities-per-dest {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dest-activities-block {
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 24px;
}

.dest-activities-block h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dest-activities-block h4 img {
    width: 32px;
    height: 24px;
    object-fit: cover;
    border-radius: 4px;
}

.activity-choice {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--white);
    border: 2px solid #f0f0f0;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.activity-choice:hover {
    border-color: var(--primary);
}

.activity-choice.selected {
    border-color: var(--primary);
    background: rgba(117, 170, 219, 0.06);
}

.activity-choice input[type="checkbox"] {
    display: none;
}

.activity-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.activity-choice.selected .activity-checkbox {
    background: var(--primary);
    border-color: var(--primary);
}

.activity-choice.selected .activity-checkbox::after {
    content: '✓';
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
}

.activity-choice-info {
    flex: 1;
}

.activity-choice-info h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.activity-choice-info p {
    font-size: 0.78rem;
    color: var(--gray);
}

.activity-choice-price {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

/* Circuit Summary */
.circuit-summary {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.summary-day {
    display: flex;
    gap: 20px;
    background: var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
}

.summary-day-number {
    width: 70px;
    background: var(--primary-gradient);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.summary-day-number span:first-child {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}

.summary-day-number span:last-child {
    font-size: 0.72rem;
    opacity: 0.8;
    text-transform: uppercase;
}

.summary-day-content {
    padding: 16px;
    flex: 1;
}

.summary-day-content h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.summary-day-content p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 8px;
}

.summary-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.summary-activity-tag {
    padding: 3px 10px;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid rgba(117, 170, 219, 0.3);
}

/* Budget Summary */
.circuit-budget {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 30px;
}

.budget-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.budget-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.budget-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.budget-item i {
    color: var(--primary);
    width: 20px;
}

.budget-item span {
    flex: 1;
}

.budget-item strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
}

.budget-item.total {
    color: var(--white);
    font-weight: 600;
    padding-top: 12px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: none;
}

.budget-item.total strong {
    font-size: 1.3rem;
    color: var(--primary-light);
}

/* Circuit CTA */
.circuit-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Config Navigation */
.panel-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.config-prev {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gray-light);
    color: var(--gray);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.config-prev:hover {
    background: #e5e7eb;
    color: var(--dark);
}

.config-next {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.config-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(117, 170, 219, 0.4);
}

.config-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Sidebar - legacy, kept for JS compatibility */

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
    margin-bottom: 16px;
}

.sidebar-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card h4 i {
    color: var(--primary);
}

.sidebar-empty {
    color: var(--gray);
    font-size: 0.85rem;
    font-style: italic;
}

.sidebar-itinerary {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-dest-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: var(--gray-light);
    border-radius: var(--radius-xs);
    font-size: 0.82rem;
}

.sidebar-dest-item img {
    width: 32px;
    height: 22px;
    object-fit: cover;
    border-radius: 4px;
}

.sidebar-dest-item .dest-name {
    flex: 1;
    font-weight: 600;
    color: var(--dark);
}

.sidebar-dest-item .dest-days {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
}

.sidebar-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.sidebar-stat {
    text-align: center;
    padding: 12px 8px;
    background: var(--gray-light);
    border-radius: var(--radius-xs);
}

.sidebar-stat .stat-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.sidebar-stat .stat-txt {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
}

.sidebar-budget {
    text-align: center;
    padding: 16px;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
}

.sidebar-budget .budget-amount {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.sidebar-budget .budget-note {
    font-size: 0.78rem;
    color: var(--gray);
}

/* Configurator Responsive */
@media (max-width: 1024px) {
    .config-live-bar {
        padding: 12px 20px;
        gap: 14px;
    }

    .duration-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dest-selector {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .config-live-bar {
        gap: 10px;
        padding: 12px 16px;
        border-radius: var(--radius);
    }

    .live-bar-divider {
        display: none;
    }

    .live-bar-item {
        flex: 1;
        flex-direction: column;
        gap: 2px;
        text-align: center;
    }

    .live-bar-num {
        font-size: 1rem;
    }

    .live-bar-lbl {
        font-size: 0.68rem;
    }

    .config-steps {
        gap: 6px;
    }

    .step-connector {
        width: 30px;
    }

    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .config-step span {
        font-size: 0.65rem;
    }

    .config-panel {
        padding: 24px;
    }

    .duration-grid {
        grid-template-columns: 1fr 1fr;
    }

    .duration-value {
        font-size: 2rem;
    }

    .circuit-cta {
        flex-direction: column;
    }
}
