/* ===== VARIABLES CSS ===== */
:root {
    /* Colors - Palette Moderne 2024 */
    --white: #FFFFFF;
    --primary-color: #6366F1;        /* Indigo moderne */
    --primary-dark: #4F46E5;         /* Indigo foncé */
    --secondary-color: #F59E0B;      /* Amber vibrant */
    --secondary-dark: #D97706;       /* Amber foncé */
    --accent-color: #10B981;         /* Emerald */
    --accent-dark: #059669;          /* Emerald foncé */
    --neutral-50: #F8FAFC;           /* Gris très clair */
    --neutral-100: #F1F5F9;          /* Gris clair */
    --neutral-200: #E2E8F0;          /* Gris moyen clair */
    --neutral-400: #94A3B8;          /* Gris moyen */
    --neutral-600: #475569;          /* Gris foncé */
    --neutral-800: #1E293B;          /* Gris très foncé */
    --neutral-900: #0F172A;          /* Presque noir */
    
    /* Aliases pour compatibilité */
    --azure-blue: var(--primary-color);
    --dark-blue: var(--primary-dark);
    --golden-sand: var(--secondary-color);
    --dark-golden: var(--secondary-dark);
    --light-gray: var(--neutral-50);
    --medium-gray: var(--neutral-400);
    --dark-gray: var(--neutral-800);
    --text-dark: var(--neutral-800);
    --text-light: var(--neutral-600);
    --overlay-dark: rgba(15, 23, 42, 0.6);
    --overlay-light: rgba(15, 23, 42, 0.3);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    --border-radius: 12px;
    --border-radius-large: 20px;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--golden-sand), var(--azure-blue));
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-fast);
    background: transparent;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-medium);
    padding: 15px 0;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 20px;
}

.nav-logo h2 {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-logo h2::before {
    content: '✈';
    font-size: 1.2rem;
    margin-right: 0.3rem;
    color: var(--secondary-color);
}

.navbar.scrolled .nav-logo h2 {
    color: var(--dark-blue);
}

.nav-logo .signature {
    color: var(--secondary-color);
    font-style: italic;
    font-weight: 400;
    position: relative;
}

.nav-logo .signature::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--golden-sand), transparent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: flex-end;
    margin: 0 20px;
    padding-right: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
    position: relative;
    white-space: nowrap;
    font-size: 1rem;
}

.navbar.scrolled .nav-link {
    color: var(--dark-blue);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.navbar.scrolled .nav-link:hover {
    background: rgba(99, 102, 241, 0.3);
    color: var(--azure-blue);
}

/* Dropdown & Mega Menu */
.dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    padding: 2rem;
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    margin-top: 1rem;
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.mega-card {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
    cursor: pointer;
    text-align: center;
}

.mega-card:hover {
    background: var(--light-gray);
    transform: translateY(-5px);
}

.mega-card i {
    font-size: 2rem;
    color: var(--azure-blue);
    margin-bottom: 1rem;
}

.mega-card h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.mega-card p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--golden-sand), var(--dark-golden));
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-light);
    font-size: 1rem;
    white-space: nowrap;
    margin-right: 20px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--dark-golden), var(--golden-sand));
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all var(--transition-fast);
}

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

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video iframe {
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--overlay-dark), var(--overlay-light));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: var(--container-padding);
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--golden-sand), var(--azure-blue));
    border-radius: 2px;
}

/* Search Bar */
.search-bar {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    box-shadow: var(--shadow-heavy);
    margin-top: 2rem;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
}

.search-field {
    flex: 1;
    min-width: 200px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
}

.search-field:focus-within {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.search-field i {
    color: var(--azure-blue);
    font-size: 1.1rem;
}

.search-field input,
.search-field select {
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    color: var(--dark-gray);
    width: 100%;
}

.search-field input::placeholder {
    color: var(--medium-gray);
}

.search-btn {
    background: linear-gradient(135deg, var(--azure-blue), var(--dark-blue));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    align-self: flex-end;
    margin-left: auto;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ===== SECTIONS GÉNÉRALES ===== */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== DESTINATIONS SECTION ===== */
.destinations {
    background: var(--light-gray);
    position: relative;
}

.destinations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--golden-sand), transparent);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.destination-card {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: all var(--transition-medium);
}

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

.card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, var(--overlay-dark));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--white);
    opacity: 0;
    transition: all var(--transition-fast);
}

.destination-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.card-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.discover-btn {
    background: var(--golden-sand);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    align-self: flex-start;
}

.discover-btn:hover {
    background: var(--dark-golden);
    transform: translateX(5px);
}

/* ===== EXPERIENCES SECTION ===== */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.experience-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--azure-blue), var(--golden-sand));
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.experience-card:hover::before {
    transform: scaleX(1);
}

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

.experience-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--azure-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.experience-card:hover .experience-icon {
    background: linear-gradient(135deg, var(--golden-sand), var(--dark-golden));
    transform: scale(1.1);
}

.experience-icon i {
    font-size: 2rem;
    color: var(--white);
}

.experience-card h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: var(--light-gray);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: all var(--transition-fast);
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-content {
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--golden-sand);
    transform: scale(1.2);
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--white);
}

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

.service-item {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-large);
    background: var(--light-gray);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    background: var(--white);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--azure-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.service-item:hover .service-icon {
    background: linear-gradient(135deg, var(--golden-sand), var(--dark-golden));
    transform: scale(1.1) rotate(360deg);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.service-item h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ===== STATISTICS SECTION ===== */
.statistics {
    background: linear-gradient(135deg, var(--dark-blue), var(--azure-blue));
    color: var(--white);
    padding: 100px 0;
    margin-top: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    display: block;
}

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

/* ===== POPULAR DESTINATIONS SECTION ===== */
.popular-destinations {
    padding: 100px 0;
    background: var(--light-gray);
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.popular-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-smooth);
    position: relative;
}

.popular-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
}

.popular-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.popular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.popular-card:hover .popular-image img {
    transform: scale(1.1);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: var(--shadow-light);
}

.popular-badge.luxury {
    background: linear-gradient(135deg, var(--golden-sand), var(--dark-golden));
}

.popular-badge.culture {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
}

.popular-badge.nature {
    background: linear-gradient(135deg, #00b894, #00a085);
}

.popular-content {
    padding: 1.5rem;
}

.popular-content h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.popular-description {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.popular-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.popular-price {
    font-weight: 700;
    color: var(--azure-blue);
    font-size: 1.1rem;
}

.popular-duration {
    background: var(--light-gray);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.popular-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.stars i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.rating-text {
    font-size: 0.8rem;
    color: var(--medium-gray);
    font-weight: 500;
}

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

.btn-view-all {
    background: linear-gradient(135deg, var(--azure-blue), var(--dark-blue));
    color: var(--white);
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-light);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-view-all:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
    background: linear-gradient(135deg, var(--dark-blue), var(--azure-blue));
}

/* ===== COMMENTS SECTION ===== */
.comments {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--white) 100%);
    position: relative;
}

.comments::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%236366F1" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23F59E0B" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.comments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.comment-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.comment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-info {
    flex: 1;
}

.comment-info h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.comment-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 5px;
}

.comment-rating i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.comment-date {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

.comment-text {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
    font-style: italic;
    position: relative;
}

.comment-text::before {
    content: '"';
    position: absolute;
    left: -15px;
    top: -10px;
    font-size: 3rem;
    color: var(--azure-blue);
    opacity: 0.3;
    font-family: serif;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.newsletter-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--primary-dark) 50%, 
        var(--secondary-color) 100%);
}

.newsletter-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.newsletter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

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

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-icon i {
    font-size: 2rem;
    color: var(--white);
}

.newsletter-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.newsletter-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.newsletter-form {
    margin-bottom: 40px;
}

.form-group {
    display: flex;
    max-width: 550px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 60px;
    padding: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 25px;
    color: var(--text-light);
    font-size: 1.1rem;
    z-index: 1;
}

.input-wrapper input {
    width: 100%;
    padding: 20px 25px 20px 55px;
    border: none;
    font-size: 1.1rem;
    outline: none;
    background: transparent;
    color: var(--text-dark);
}

.input-wrapper input::placeholder {
    color: var(--text-light);
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--azure-blue), var(--dark-blue));
    color: var(--white);
    border: none;
    padding: 20px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

.newsletter-btn i {
    transition: transform 0.3s ease;
}

.newsletter-btn:hover i {
    transform: translateX(5px);
}

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.benefit i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.newsletter-privacy {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.newsletter-privacy i {
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .comments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .comment-card {
        padding: 25px 20px;
    }
    
    .comment-header {
        gap: 12px;
    }
    
    .comment-avatar {
        width: 50px;
        height: 50px;
    }
    
    .comment-info h4 {
        font-size: 1rem;
    }
    
    .comment-text {
        font-size: 0.95rem;
    }
    
    .newsletter-content h2 {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-radius: 20px;
    }
    
    .newsletter-btn {
        width: 100%;
        justify-content: center;
        border-radius: 15px;
    }
    
    .newsletter-benefits {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    z-index: -1;
}

.cta-content {
    text-align: center;
    color: var(--white);
    max-width: 600px;
    padding: var(--container-padding);
    z-index: 10;
    position: relative;
}

.cta-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 700;
}

.cta-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

.cta-button-large {
    background: linear-gradient(135deg, var(--golden-sand), var(--dark-golden));
    color: var(--white);
    padding: 1.5rem 3rem;
    border-radius: var(--border-radius-large);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
    display: inline-block;
    box-shadow: var(--shadow-medium);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    position: relative;
}

.footer-top {
    height: 4px;
    background: linear-gradient(90deg, var(--azure-blue), var(--golden-sand), var(--azure-blue));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 4rem 0;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-column h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--golden-sand);
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: var(--secondary-color);
    width: 20px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* ===== OFFERS PAGE STYLES ===== */
.offers-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.offers-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.offers-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.offers-hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Filters Section */
.offers-filters {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid var(--neutral-200);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filters-wrapper {
    display: flex;
    gap: 2rem;
    align-items: end;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 180px;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.filter-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--neutral-200);
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.filter-reset {
    background: var(--neutral-100);
    border: 2px solid var(--neutral-200);
    color: var(--text-dark);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.filter-reset:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Offers Grid */
.offers-grid-section {
    padding: 60px 0;
    background: var(--neutral-50);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.offer-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-200);
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.offer-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.05);
}

.offer-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-card:hover .offer-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-quick-view:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.offer-content {
    padding: 25px;
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.offer-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.offer-rating {
    text-align: right;
}

.offer-rating .stars {
    display: flex;
    gap: 2px;
    margin-bottom: 5px;
}

.offer-rating .stars i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.offer-rating span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.offer-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.offer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.offer-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.offer-features .feature i {
    color: var(--primary-color);
    width: 16px;
}

.offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--neutral-200);
}

.offer-price {
    display: flex;
    flex-direction: column;
}

.offer-price .price-from,
.offer-price .price-per {
    font-size: 0.8rem;
    color: var(--text-light);
}

.offer-price .price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-primary);
}

.btn-book {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

/* Load More */
.load-more-section {
    text-align: center;
}

.btn-load-more {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius-large);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

.modal-body {
    padding: 40px;
}

/* Active nav link */
.nav-link.active {
    color: var(--secondary-color) !important;
    background: rgba(245, 158, 11, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .offers-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .filters-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offer-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .offer-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .btn-book {
        width: 100%;
        text-align: center;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.fade-in {
    animation: fadeInUp 0.8s ease;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease;
}

.slide-in-right {
    animation: slideInRight 0.8s ease;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .search-bar {
        flex-direction: column;
    }
    
    .search-field {
        min-width: 100%;
    }
    
    .nav-menu {
        gap: 0.8rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-medium);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-fast);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu .nav-link {
        color: var(--dark-blue);
        padding: 1rem;
        border-bottom: 1px solid var(--light-gray);
        width: 100%;
        justify-content: space-between;
    }
    
    .mega-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        box-shadow: none;
        background: var(--light-gray);
        min-width: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .experiences-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .experience-card {
        padding: 2rem 1rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .footer-content {
        padding: 3rem 0;
    }
}

/* ===== DETAILED DESTINATIONS SECTION ===== */
.detailed-destinations {
    background: var(--light-gray);
    margin-top: 50px;
}

.detailed-destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.detailed-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    position: relative;
}

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

.card-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.detailed-card:hover .card-image-container img {
    transform: scale(1.05);
}

.card-tags {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-gray);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.tag.luxury { background: linear-gradient(135deg, var(--golden-sand), var(--dark-golden)); color: var(--white); }
.tag.popular { background: linear-gradient(135deg, var(--azure-blue), var(--dark-blue)); color: var(--white); }
.tag.romantic { background: linear-gradient(135deg, #ff6b9d, #c44569); color: var(--white); }
.tag.sunset { background: linear-gradient(135deg, #ff9a56, #ff6348); color: var(--white); }
.tag.culture { background: linear-gradient(135deg, #a55eea, #8854d0); color: var(--white); }
.tag.modern { background: linear-gradient(135deg, #26de81, #20bf6b); color: var(--white); }

.card-content {
    padding: 2rem;
}

.card-content h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.card-description {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--azure-blue);
    font-size: 0.9rem;
}

.feature i {
    font-size: 1rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.price {
    display: flex;
    flex-direction: column;
}

.price-from {
    font-size: 0.8rem;
    color: var(--medium-gray);
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-primary);
}

.price-per {
    font-size: 0.8rem;
    color: var(--medium-gray);
}

.btn-details {
    background: linear-gradient(135deg, var(--azure-blue), var(--dark-blue));
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-details:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, var(--dark-blue), var(--azure-blue));
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.hidden { display: none; }
.visible { display: block; }

/* ===== SCROLL ANIMATIONS ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
