/* ========== Global Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Fresh Color Scheme - Green, Pink, White, Light Blue */
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --secondary: #ec4899;
    --secondary-light: #f472b6;
    --accent: #0ea5e9;
    --accent-light: #38bdf8;
    --dark: #1f2937;
    --dark-light: #374151;
    --light: #f0fdf4;
    --light-blue: #e0f2fe;
    --light-pink: #fce7f3;
    --gray: #6b7280;
    --white: #ffffff;
    --success: #10b981;
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-secondary: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    --gradient-accent: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    --gradient-fresh: linear-gradient(135deg, #10b981 0%, #0ea5e9 50%, #ec4899 100%);
    --gradient-hero: linear-gradient(135deg, #ecfdf5 0%, #e0f2fe 50%, #fce7f3 100%);
    --gradient-card: linear-gradient(145deg, rgba(16, 185, 129, 0.05), rgba(14, 165, 233, 0.05));
    --shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.3);
    --shadow-pink: 0 0 20px rgba(236, 72, 153, 0.3);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ========== Glowing Text Effect ========== */
.glow-text {
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.4), 0 0 20px rgba(16, 185, 129, 0.2);
}

.gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

.btn-gold {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 50%, #ec4899 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    font-weight: 700;
    padding: 14px 28px;
    font-size: 15px;
    letter-spacing: 0.5px;
    animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(236, 72, 153, 0.5),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% { 
        box-shadow: 0 4px 30px rgba(236, 72, 153, 0.8),
                    0 0 20px rgba(236, 72, 153, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.btn-gold:hover {
    background: linear-gradient(135deg, #db2777 0%, #ec4899 50%, #db2777 100%);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 35px rgba(236, 72, 153, 0.7),
                0 0 25px rgba(236, 72, 153, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-outline-white {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    border: none;
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.btn-outline-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
    animation: whiteShine 3s infinite;
}

@keyframes whiteShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-outline-white:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    color: var(--primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 35px rgba(255, 255, 255, 0.6),
                0 0 25px rgba(255, 255, 255, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

.btn i {
    font-size: 18px;
    transition: transform 0.3s;
}

/* Fix phone icon direction */
.fa-phone-alt {
    transform: scaleX(-1);
}

.btn:hover i {
    transform: translateX(5px);
}

.btn:hover i.fa-phone-alt {
    transform: scaleX(-1) translateX(-5px);
}

/* ========== Navbar ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 253, 244, 0.98));
    backdrop-filter: blur(20px);
    border-bottom: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 4px 30px rgba(16, 185, 129, 0.1);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 300% 100%;
    animation: gradientMove 4s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    animation: float 3s ease-in-out infinite;
}

.logo-icon i {
    font-size: 24px;
    color: white;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.logo-sub {
    font-size: 11px;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-weight: 500;
    color: var(--gray);
    transition: all 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.nav-links a i {
    font-size: 14px;
    color: var(--primary);
    opacity: 0.7;
    transition: all 0.3s;
}

.nav-links a:hover i {
    opacity: 1;
    transform: scale(1.2);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s;
    border-radius: 3px;
}

/* ========== Hero Section ========== */
/* ========== HERO SECTION - Premium Design ========== */
.hero {
    min-height: 100vh;
    position: relative;
    background: #fafbfc;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Background */
.hero-media {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.hero-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1585409677983-0f6c41ca9c3b?w=1920') center/cover;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #fafbfc 0%, rgba(250, 251, 252, 0.8) 30%, transparent 100%);
}

/* Main Wrapper */
.hero-wrapper {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 60px 100px;
    position: relative;
    z-index: 5;
}

/* Left Content */
.hero-left {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
    padding: 10px 20px 10px 12px;
    border-radius: 60px;
    margin-bottom: 30px;
    border: 1px solid #fcd34d;
    animation: fadeInDown 0.8s ease, badgeGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(251, 191, 36, 0.2); }
    50% { box-shadow: 0 4px 30px rgba(251, 191, 36, 0.4); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-avatars {
    display: flex;
    align-items: center;
}

.badge-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fef3c7;
    margin-left: -8px;
    object-fit: cover;
}

.badge-avatars img:first-child {
    margin-left: 0;
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 10px;
}

.badge-text {
    font-size: 12px;
    color: #92400e;
    font-weight: 500;
}

.badge-text strong {
    font-weight: 700;
    color: #78350f;
}

.hero-heading {
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease 0.2s backwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.heading-line {
    display: block;
    font-size: 52px;
    font-weight: 700;
    color: #111827;
    line-height: 1.15;
    letter-spacing: -1px;
}

.heading-highlight {
    color: #10b981;
    position: relative;
}

.hero-description {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 32px;
    animation: fadeUp 0.8s ease 0.3s backwards;
}

/* Price Tag */
.hero-price-tag {
    background: white;
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 32px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    animation: fadeUp 0.8s ease 0.4s backwards;
}

.price-amount {
    display: flex;
    flex-direction: column;
}

.price-from {
    font-size: 12px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.price-value {
    font-size: 36px;
    font-weight: 800;
    color: #10b981;
}

.price-per {
    font-size: 13px;
    color: #6b7280;
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #374151;
}

.price-features i {
    color: #10b981;
    font-size: 12px;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeUp 0.8s ease 0.5s backwards;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #10b981;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.cta-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.cta-primary i {
    transition: transform 0.3s;
}

.cta-primary:hover i {
    transform: translateX(4px);
}

.cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #25d366;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #25d366;
    transition: all 0.3s ease;
}

.cta-whatsapp:hover {
    background: #25d366;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.cta-whatsapp i {
    font-size: 20px;
}

/* Trust Section */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fadeUp 0.8s ease 0.6s backwards;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #10b981;
    color: white;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
    border: 3px solid white;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fbbf24;
    font-size: 14px;
}

.trust-rating span {
    color: #111827;
    font-weight: 700;
    margin-left: 4px;
}

.trust-text p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

/* Right Side - Card & Highlights */
.hero-right {
    position: relative;
    z-index: 5;
    animation: fadeInRight 1s ease 0.4s backwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    max-width: 380px;
    margin-left: auto;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-card:hover .card-image img {
    transform: scale(1.08);
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #ec4899;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.card-features {
    display: flex;
    gap: 16px;
}

.card-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
}

.card-features i {
    color: #10b981;
}

/* Highlights */
.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    max-width: 380px;
    margin-left: auto;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: #10b981;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 20px;
    flex-shrink: 0;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.highlight-text strong {
    font-size: 15px;
    color: #111827;
}

.highlight-text span {
    font-size: 13px;
    color: #6b7280;
}

/* Bottom Stats Bar */
.hero-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: white;
    padding: 24px 60px;
    border-top: 1px solid #e5e7eb;
    position: relative;
    z-index: 10;
}

.bottom-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #374151;
}

.bottom-stat i {
    color: #10b981;
    font-size: 18px;
}

.bottom-stat strong {
    color: #111827;
    font-weight: 700;
}

.bottom-divider {
    width: 1px;
    height: 30px;
    background: #e5e7eb;
}

/* ========== Section Styles ========== */
section {
    padding: 100px 0;
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.section-badge i {
    font-size: 14px;
    color: var(--secondary);
}

.section-title {
    font-size: 46px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* ========== Pickup Section ========== */
.pickup-section {
    background: var(--light);
    text-align: center;
}

.pickup-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.pickup-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pickup-card {
    background: white;
    padding: 45px 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(16, 185, 129, 0.1);
    position: relative;
    overflow: hidden;
}

.pickup-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.15);
    border-color: var(--primary);
}

.pickup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    position: relative;
}

.pickup-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(236, 72, 153, 0.4);
    animation: spin 20s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.pickup-icon i {
    font-size: 32px;
    color: white;
}

.pickup-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.departure-time {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.departure-time i {
    font-size: 14px;
}

.pickup-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.pickup-features span {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
    border: 1px solid rgba(16, 185, 129, 0.2);
    flex-shrink: 0;
}

.pickup-features span:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.journey-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
    color: var(--dark);
    font-weight: 500;
    padding: 25px 40px;
    background: white;
    border-radius: 100px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: var(--shadow-card);
}

.journey-features span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.journey-features i {
    color: var(--primary);
}

/* ========== Journey Timeline ========== */
.journey-section {
    background: linear-gradient(180deg, var(--light-blue) 0%, var(--light-pink) 100%);
    color: var(--dark);
    text-align: center;
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.timeline-item {
    background: white;
    padding: 45px 30px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.timeline-item:hover::before {
    opacity: 1;
}

.timeline-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.timeline-number {
    font-size: 56px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--dark);
}

.timeline-content h3 i {
    color: var(--secondary);
}

.timeline-content p {
    color: var(--gray);
    font-size: 15px;
}

.spiritual-message {
    background: white;
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(236, 72, 153, 0.2);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.spiritual-message::before {
    content: '🙏';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 40px;
    opacity: 0.3;
}

.spiritual-message::after {
    content: '🕉️';
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 40px;
    opacity: 0.3;
}

.spiritual-message .english {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.spiritual-message .hindi {
    font-size: 20px;
    color: var(--secondary);
    font-style: italic;
}

/* ========== Destinations ========== */
.destinations-section {
    background: white;
    text-align: center;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.destination-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.destination-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(16, 185, 129, 0.2);
    border-color: var(--primary);
}

.destination-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.15);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(31, 41, 55, 0.95), transparent);
}

.destination-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    text-align: left;
    color: white;
}

.destination-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.destination-content h3 i {
    color: var(--accent-light);
}

.destination-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
}

.destination-content p i {
    color: var(--primary-light);
}

/* ========== Package Section ========== */
.package-section {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-pink) 50%, var(--light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.package-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.package-card {
    background: white;
    padding: 70px 50px;
    border-radius: 30px;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-pink);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

.package-card h2 {
    color: var(--gray);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.package-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 25px;
}

.price-tag {
    margin-bottom: 40px;
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price i {
    font-size: 36px;
    color: var(--primary);
    -webkit-text-fill-color: initial;
}

.price-info {
    font-size: 15px;
    color: var(--gray);
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.price-info i {
    color: var(--success);
}

.package-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.08);
    padding: 18px 28px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--dark);
    border: 1px solid rgba(16, 185, 129, 0.15);
    transition: none !important;
}

.feature * {
    transition: none !important;
}

.feature:hover {
    background: var(--gradient-primary);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.feature:hover span,
.feature:hover i {
    color: white !important;
}

.feature i {
    color: var(--primary);
    font-size: 20px;
}

.feature-highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    padding: 22px 35px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid rgba(16, 185, 129, 0.3);
    grid-column: span 2;
    justify-content: center;
}

.feature-highlight i {
    font-size: 24px;
}

.feature-highlight:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white !important;
}

.feature-highlight:hover i {
    color: white !important;
}

/* ========== Itinerary Section - Accordion Style ========== */
.itinerary-section {
    background: var(--light);
    text-align: center;
}

.itinerary-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.itinerary-accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.accordion-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.accordion-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateX(5px);
}

.accordion-item.active {
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
    transform: scale(1.01);
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
    gap: 15px;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(16, 185, 129, 0.03);
}

.timeline-line {
    position: absolute;
    left: 47px;
    top: 100%;
    width: 3px;
    height: calc(100% + 16px);
    background: linear-gradient(180deg, #10b981 0%, #34d399 100%);
    opacity: 0.3;
    z-index: 1;
}

.accordion-item:last-child .timeline-line {
    display: none;
}

.day-emoji {
    font-size: 28px;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.accordion-item .day-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3);
    white-space: nowrap;
}

.accordion-header h4 {
    flex: 1;
    font-size: 17px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    transition: color 0.3s ease;
}

.accordion-item.active .accordion-header h4 {
    color: #10b981;
}

.accordion-item.active .day-badge {
    animation: pulseGlow 1.5s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 3px 20px rgba(16, 185, 129, 0.6); }
}

.accordion-arrow {
    color: #9ca3af;
    font-size: 12px;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), color 0.3s, background 0.3s;
    background: #f3f4f6;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-left: auto;
    flex-shrink: 0;
    position: relative;
}

.accordion-arrow::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion-item.active .accordion-arrow {
    color: white;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.accordion-item.active .accordion-arrow::before {
    transform: translate(-50%, -50%) rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    border-top: 1px solid transparent;
    opacity: 0;
}

.accordion-item.active .accordion-content {
    max-height: 1200px;
    padding: 20px 25px 25px 85px;
    opacity: 1;
    border-top-color: rgba(16, 185, 129, 0.15);
}

.accordion-content-inner {
    transform: translateY(-10px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.accordion-item.active .accordion-content-inner {
    transform: translateY(0);
}

.accordion-content p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.accordion-content p i {
    color: #10b981;
    margin-top: 3px;
}

.day-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.day-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: #374151;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.day-highlights span:hover {
    background: #10b981;
    color: white;
    border-color: #10b981;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.accordion-item.active .day-highlights span {
    animation: fadeSlideUp 0.4s ease forwards;
    opacity: 0;
}

.accordion-item.active .day-highlights span:nth-child(1) { animation-delay: 0.1s; }
.accordion-item.active .day-highlights span:nth-child(2) { animation-delay: 0.15s; }
.accordion-item.active .day-highlights span:nth-child(3) { animation-delay: 0.2s; }
.accordion-item.active .day-highlights span:nth-child(4) { animation-delay: 0.25s; }
.accordion-item.active .day-highlights span:nth-child(5) { animation-delay: 0.3s; }
.accordion-item.active .day-highlights span:nth-child(6) { animation-delay: 0.35s; }

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.day-highlights span i {
    color: #10b981;
    font-size: 11px;
}

.day-highlights span:hover i {
    color: white;
}

/* Responsive Accordion */
@media (max-width: 768px) {
    .accordion-header {
        padding: 15px 18px;
        gap: 12px;
    }
    
    .day-emoji {
        font-size: 22px;
        min-width: 38px;
        height: 38px;
    }
    
    .accordion-header h4 {
        font-size: 14px;
    }
    
    .accordion-item .day-badge {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .accordion-item.active .accordion-content {
        padding: 15px 18px 20px 68px;
        max-height: 1500px;
    }
    
    .timeline-line {
        left: 37px;
    }
    
    .day-highlights span {
        font-size: 11px;
        padding: 6px 10px;
    }

    .accordion-arrow {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
}

/* ========== Food Section ========== */
.food-section {
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.food-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.food-subtitle i {
    animation: wobble 2s infinite;
}

@keyframes wobble {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

.food-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.food-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 25px 35px;
    border-radius: 60px;
    box-shadow: var(--shadow-card);
    font-weight: 600;
    color: var(--dark);
    border: 1px solid rgba(236, 72, 153, 0.15);
    transition: all 0.2s ease;
}

.food-item:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.2);
}

.food-item i {
    color: var(--secondary);
    font-size: 28px;
    transition: color 0.2s ease;
}

.food-item:hover i {
    color: white;
}

/* ========== Why Us Section ========== */
.why-us-section {
    background: white;
    text-align: center;
}

.why-us-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.why-card {
    padding: 40px 25px;
    border-radius: 24px;
    background: var(--light);
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(20% - 20px);
    min-width: 200px;
    box-sizing: border-box;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s;
}

.why-card:hover::before {
    opacity: 0.05;
}

.why-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.15);
}

.why-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
    position: relative;
    transition: all 0.4s;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 20px 45px rgba(16, 185, 129, 0.4);
}

.why-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed rgba(236, 72, 153, 0.3);
    animation: spin 25s linear infinite;
}

.why-icon i {
    font-size: 36px;
    color: white;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    position: relative;
}

.why-card p {
    color: var(--gray);
    font-size: 15px;
    position: relative;
}

/* ========== Testimonials Section ========== */
.testimonials-section {
    background: linear-gradient(180deg, var(--light-blue) 0%, var(--light) 100%);
    text-align: center;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 45px 35px;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(14, 165, 233, 0.1);
    text-align: left;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: rgba(14, 165, 233, 0.15);
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 25px 50px rgba(14, 165, 233, 0.15);
}

.stars {
    color: #f59e0b;
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}

.stars i {
    font-size: 18px;
    animation: twinkle 1.5s infinite;
}

.stars i:nth-child(2) { animation-delay: 0.1s; }
.stars i:nth-child(3) { animation-delay: 0.2s; }
.stars i:nth-child(4) { animation-delay: 0.3s; }
.stars i:nth-child(5) { animation-delay: 0.4s; }

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.9); }
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 30px;
    color: var(--dark);
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

.author-info span {
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.author-info span i {
    font-size: 12px;
    color: var(--primary);
}

/* Slider Dots */
.slider-dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dots .dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ========== CTA Section ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0d9488 50%, var(--accent) 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

.cta-badge i {
    animation: ring 2s infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(15deg); }
    20%, 40% { transform: rotate(-15deg); }
    50% { transform: rotate(0); }
}

.cta-section .section-title {
    color: white;
    position: relative;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 50px 0;
    position: relative;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.countdown-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.countdown-value {
    display: block;
    font-size: 52px;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.countdown-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
}

/* ========== Footer ========== */
.footer {
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfeff 50%, #fdf2f8 100%);
    padding: 0 0 80px;
    color: var(--dark);
    position: relative;
}

.footer-wave {
    margin-bottom: -5px;
}

.footer-wave svg {
    display: block;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-top: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.footer-logo-icon i {
    font-size: 28px;
    color: white;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-main {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
}

.footer-logo-sub {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-brand p {
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links h4 i,
.footer-contact h4 i {
    font-size: 16px;
    color: var(--primary);
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--gray);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a i {
    font-size: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    color: var(--primary);
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--gray);
    transition: all 0.3s;
}

.footer-contact ul li:hover {
    color: var(--dark);
}

.footer-contact i {
    color: var(--primary);
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 2px solid rgba(16, 185, 129, 0.15);
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom p i {
    color: var(--secondary);
    animation: heartbeat 1.5s infinite;
}

.footer-bottom p a.developer-credit {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom p a.developer-credit:hover {
    color: var(--secondary);
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.developer-link {
    font-size: 12px;
    color: var(--gray);
}

.developer-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.developer-link a:hover {
    color: var(--secondary);
}

.footer-badges {
    display: flex;
    gap: 20px;
}

.footer-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray);
    padding: 8px 16px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.footer-badges span i {
    color: var(--primary);
}

/* ========== Floating CTA ========== */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    padding: 12px 25px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 -10px 40px rgba(16, 185, 129, 0.3);
    z-index: 999;
    transform: translateY(100%);
    animation: slideInUp 0.6s 2s forwards;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-cta .btn-gold {
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.floating-cta .btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

@keyframes slideInUp {
    to {
        transform: translateY(0);
    }
}

.cta-text {
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-text i {
    color: white;
}

.floating-cta-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-float {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 5px 35px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.2); }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
}

/* ========== Responsive Design ========== */
@media (max-width: 1200px) {
    .why-card {
        width: calc(33.333% - 20px);
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links,
    .nav-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .title-main {
        font-size: 46px;
    }

    .title-highlight {
        font-size: 36px;
    }

    .section-title {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-card {
        width: calc(50% - 15px);
    }

    .pickup-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    /* Hero Mobile Styles */
    .hero {
        min-height: auto;
        position: relative;
    }

    .hero-media {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    .hero-image-overlay {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.95) 100%);
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        padding: 120px 20px 40px;
        gap: 30px;
        position: relative;
        z-index: 10;
    }

    .hero-left {
        text-align: center;
        max-width: 100%;
    }

    .hero-badge {
        margin-bottom: 20px;
        padding: 8px 16px 8px 10px;
    }

    .badge-avatars img {
        width: 26px;
        height: 26px;
        margin-left: -6px;
    }

    .badge-stars {
        font-size: 8px;
    }

    .badge-text {
        font-size: 11px;
    }

    .heading-line {
        font-size: 32px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-price-tag {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 20px;
    }

    .price-value {
        font-size: 32px;
    }

    .price-features {
        flex-direction: row;
        gap: 16px;
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary, .cta-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-right {
        display: none;
    }

    .hero-bottom-bar {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px;
    }

    .bottom-stat {
        width: calc(50% - 20px);
        font-size: 13px;
    }

    .bottom-divider {
        display: none;
    }

    .section-title {
        font-size: 30px;
    }

    .countdown {
        gap: 10px;
        margin: 30px 0;
        padding: 0 10px;
    }

    .countdown-item {
        padding: 15px 18px;
        min-width: 70px;
        border-radius: 12px;
    }

    .countdown-value {
        font-size: 28px;
    }

    .countdown-label {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .package-card {
        padding: 50px 25px;
    }

    .price {
        font-size: 38px;
    }

    .floating-cta {
        flex-direction: column;
        gap: 8px;
        padding: 10px 15px;
        padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
        left: 0;
        right: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .cta-text {
        width: 100%;
        text-align: center;
        justify-content: center;
        font-size: 12px;
        white-space: nowrap;
        flex: none;
    }

    .floating-cta-buttons {
        display: flex;
        gap: 10px;
        width: 100%;
        justify-content: center;
    }

    .floating-cta .btn-gold {
        padding: 10px 20px;
        font-size: 12px;
        flex-shrink: 0;
        max-width: none;
        white-space: nowrap;
    }

    .floating-cta .whatsapp-float {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .pickup-card h3 {
        font-size: 20px;
    }

    .departure-time {
        font-size: 13px;
        white-space: nowrap;
    }

    .pickup-features span {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }

    .journey-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 15px 20px;
        margin-top: 30px;
        border-radius: 20px;
    }

    .journey-features span {
        font-size: 13px;
        gap: 6px;
        white-space: nowrap;
    }

    .journey-features span i {
        font-size: 13px;
    }

    .journey-features > span:nth-child(2),
    .journey-features > span:nth-child(4) {
        display: none;
    }

    .why-us-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
        padding: 0 10px;
    }

    .why-card {
        width: 100% !important;
        min-width: unset !important;
        padding: 20px 15px;
    }

    .why-card h3 {
        font-size: 14px;
    }

    .why-card p {
        display: none;
    }

    .why-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
        margin-top: 0;
    }

    .why-icon i {
        font-size: 22px;
    }

    .why-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .food-features {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
        padding: 0 10px;
    }

    .food-item {
        padding: 18px 15px;
        border-radius: 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .food-item i {
        font-size: 24px;
    }

    .food-item span {
        font-size: 13px;
    }
}

/* Medium Mobile Devices (576px) */
@media (max-width: 576px) {
    .section-title {
        font-size: 26px;
    }

    .heading-line {
        font-size: 28px;
    }

    .hero-wrapper {
        padding: 110px 18px 35px;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-item {
        padding: 14px 16px;
        min-width: 65px;
    }

    .countdown-value {
        font-size: 26px;
    }

    .package-card {
        padding: 40px 22px;
    }

    .price {
        font-size: 34px;
    }

    .why-card {
        padding: 18px 12px;
    }

    .why-card h3 {
        font-size: 13px;
    }

    .pickup-card h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .pickup-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .pickup-card {
        padding: 20px 10px;
    }

    .pickup-card h3 {
        font-size: 18px;
        white-space: nowrap;
    }

    .departure-time {
        font-size: 12px;
        white-space: nowrap;
    }

    .pickup-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .pickup-icon i {
        font-size: 24px;
    }

    .pickup-features {
        gap: 8px;
        margin-top: 15px;
    }

    .pickup-features span {
        width: 35px;
        height: 35px;
        min-width: 35px;
        min-height: 35px;
        border-radius: 50%;
    }

    .pickup-features span i {
        font-size: 14px;
    }

    .price {
        font-size: 28px;
        white-space: nowrap;
        flex-wrap: nowrap;
    }

    .package-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .feature {
        padding: 12px 10px;
        font-size: 12px;
        justify-content: center;
        text-align: center;
    }

    .feature i {
        font-size: 16px;
    }

    .feature-highlight {
        padding: 14px 15px;
        font-size: 13px;
        grid-column: span 2;
    }

    .feature-highlight i {
        font-size: 18px;
    }

    .why-us-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
        padding: 0 10px;
    }

    .why-card {
        width: 100% !important;
        min-width: unset !important;
        padding: 18px 10px;
    }

    .why-card h3 {
        font-size: 13px;
    }

    .why-card p {
        font-size: 11px;
        display: none;
    }

    .why-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .why-icon i {
        font-size: 20px;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .destination-card {
        border-radius: 16px;
    }

    .destination-image {
        height: 140px;
    }

    .destination-badge {
        top: 8px;
        right: 8px;
        padding: 4px 8px;
        font-size: 9px;
    }

    .destination-content {
        padding: 12px;
    }

    .destination-content h3 {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .destination-content h3 i {
        font-size: 10px;
    }

    .destination-content p {
        font-size: 10px;
    }

    .testimonials-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding: 10px 5px 20px;
        margin: 0 -15px;
    }

    .testimonial-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding: 25px 20px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .author-info h4 {
        font-size: 14px;
    }

    .author-info span {
        font-size: 12px;
    }

    .testimonials-slider::-webkit-scrollbar {
        height: 6px;
    }

    .testimonials-slider::-webkit-scrollbar-track {
        background: #e5e7eb;
        border-radius: 10px;
    }

    .testimonials-slider::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 10px;
    }

    .slider-dots {
        display: flex;
    }

    .journey-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .timeline-item {
        padding: 20px 12px;
    }

    .timeline-number {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .timeline-content h3 {
        font-size: 14px;
        flex-direction: column;
        gap: 5px;
    }

    .timeline-content p {
        font-size: 11px;
    }

    .food-features {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
        padding: 0 10px;
    }

    .food-item {
        padding: 15px 12px;
        border-radius: 20px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .food-item i {
        font-size: 22px;
    }

    .food-item span {
        font-size: 12px;
    }

    .hero::before,
    .hero::after {
        display: none;
    }

    .footer-bottom {
        flex-direction: row;
        text-align: center;
        justify-content: center;
    }

    .footer-bottom p {
        font-size: 11px;
        white-space: nowrap;
        flex-wrap: nowrap;
    }

    .footer-badges {
        display: none;
    }

    .footer-logo {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    /* Additional 480px Responsive Fixes */
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 14px;
    }

    /* Hero Section 480px */
    .hero-wrapper {
        padding: 100px 15px 30px;
    }

    .heading-line {
        font-size: 26px;
    }

    .hero-description {
        font-size: 13px;
        padding: 0 5px;
    }

    .hero-badge {
        padding: 6px 12px 6px 8px;
        gap: 10px;
    }

    .badge-avatars img {
        width: 22px;
        height: 22px;
    }

    .badge-text {
        font-size: 10px;
    }

    .hero-price-tag {
        padding: 15px;
        margin: 20px 0;
    }

    .price-value {
        font-size: 28px;
    }

    .price-from, .price-per {
        font-size: 11px;
    }

    .price-features span {
        font-size: 11px;
    }

    .cta-primary, .cta-whatsapp {
        padding: 12px 20px;
        font-size: 13px;
    }

    /* CTA Section 480px */
    .cta-section {
        padding: 50px 0;
    }

    .cta-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .countdown {
        gap: 8px;
        margin: 25px 0;
        padding: 0 5px;
    }

    .countdown-item {
        padding: 12px 14px;
        min-width: 60px;
        border-radius: 10px;
    }

    .countdown-value {
        font-size: 24px;
    }

    .countdown-label {
        font-size: 9px;
        letter-spacing: 0.5px;
    }

    .cta-buttons {
        gap: 12px;
    }

    .cta-buttons .btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    /* Floating CTA 480px */
    .floating-cta {
        padding: 8px 12px;
        padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
        gap: 6px;
    }

    .cta-text {
        font-size: 11px;
    }

    .floating-cta-buttons {
        gap: 8px;
    }

    .floating-cta .btn-gold {
        padding: 8px 16px;
        font-size: 11px;
    }

    .floating-cta .whatsapp-float {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    /* Footer 480px */
    .footer {
        padding-bottom: 70px;
    }

    .footer-col h4 {
        font-size: 16px;
    }

    .footer-col li {
        font-size: 13px;
    }

    .footer-logo-text h3 {
        font-size: 18px;
    }

    .footer-logo-text p {
        font-size: 12px;
    }

    /* Accordion 480px */
    .accordion-header {
        padding: 12px 15px;
        gap: 10px;
    }

    .day-emoji {
        font-size: 18px;
        min-width: 32px;
        height: 32px;
    }

    .accordion-header h4 {
        font-size: 12px;
    }

    .accordion-item .day-badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    .accordion-arrow {
        width: 24px;
        height: 24px;
        font-size: 9px;
    }

    .accordion-item.active .accordion-content {
        padding: 12px 15px 18px 55px;
    }

    .day-highlights span {
        font-size: 10px;
        padding: 5px 8px;
    }

    /* Package Card 480px */
    .package-card {
        padding: 35px 20px;
        margin: 0 10px;
    }

    .package-badge {
        font-size: 10px;
        padding: 6px 14px;
    }

    .price {
        font-size: 32px;
    }

    .price-note {
        font-size: 12px;
    }

    .package-includes h4 {
        font-size: 15px;
    }

    .package-features {
        gap: 8px;
    }

    .feature {
        padding: 10px 8px;
        font-size: 11px;
    }

    .feature i {
        font-size: 14px;
    }

    .feature-highlight {
        padding: 12px 12px;
        font-size: 12px;
    }

    /* WhatsApp Float 480px */
    .whatsapp-float {
        width: 38px;
        height: 38px;
        font-size: 18px;
        bottom: 70px;
        right: 12px;
    }

    /* Journey Timeline 480px */
    .journey-timeline {
        gap: 10px;
    }

    .timeline-item {
        padding: 15px 10px;
    }

    .timeline-number {
        font-size: 28px;
    }

    .timeline-content h3 {
        font-size: 12px;
    }

    .timeline-content p {
        font-size: 10px;
    }
}

/* Extra Small Mobile Devices (320px) */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .section-title {
        font-size: 22px;
    }

    .heading-line {
        font-size: 22px;
    }

    .hero-wrapper {
        padding: 90px 10px 25px;
    }

    .hero-badge {
        padding: 5px 10px 5px 6px;
        gap: 8px;
    }

    .badge-avatars img {
        width: 20px;
        height: 20px;
    }

    .badge-text {
        font-size: 9px;
    }

    .hero-description {
        font-size: 12px;
    }

    .hero-price-tag {
        padding: 12px;
    }

    .price-value {
        font-size: 24px;
    }

    .cta-primary, .cta-whatsapp {
        padding: 10px 16px;
        font-size: 12px;
    }

    .countdown {
        gap: 6px;
        padding: 0;
    }

    .countdown-item {
        padding: 10px 12px;
        min-width: 55px;
    }

    .countdown-value {
        font-size: 20px;
    }

    .countdown-label {
        font-size: 8px;
    }

    .package-card {
        padding: 30px 15px;
        margin: 0 5px;
    }

    .price {
        font-size: 28px;
    }

    .feature {
        padding: 8px 6px;
        font-size: 10px;
    }

    .why-card {
        padding: 15px 10px;
    }

    .why-card h3 {
        font-size: 11px;
    }

    .why-icon {
        width: 45px;
        height: 45px;
    }

    .why-icon i {
        font-size: 18px;
    }

    .pickup-card {
        padding: 15px 8px;
    }

    .pickup-card h3 {
        font-size: 16px;
    }

    .pickup-icon {
        width: 50px;
        height: 50px;
    }

    .pickup-icon i {
        font-size: 20px;
    }

    .pickup-features span {
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
    }

    .pickup-features span i {
        font-size: 12px;
    }

    .food-item {
        padding: 12px 8px;
    }

    .food-item i {
        font-size: 18px;
    }

    .food-item span {
        font-size: 10px;
    }

    .destination-image {
        height: 120px;
    }

    .destination-content h3 {
        font-size: 11px;
    }

    .testimonial-card {
        flex: 0 0 90%;
        padding: 20px 15px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
    }

    .accordion-header {
        padding: 10px 12px;
        gap: 8px;
    }

    .day-emoji {
        font-size: 16px;
        min-width: 28px;
        height: 28px;
    }

    .accordion-header h4 {
        font-size: 11px;
    }

    .accordion-arrow {
        width: 22px;
        height: 22px;
        font-size: 8px;
    }

    .floating-cta {
        padding: 6px 8px;
        padding-bottom: calc(6px + env(safe-area-inset-bottom, 0px));
        gap: 5px;
    }

    .cta-text {
        font-size: 10px;
    }

    .floating-cta-buttons {
        gap: 6px;
    }

    .floating-cta .btn-gold {
        padding: 6px 12px;
        font-size: 10px;
    }

    .floating-cta .whatsapp-float {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .footer-bottom p {
        font-size: 10px;
    }

    .timeline-item {
        padding: 12px 8px;
    }

    .timeline-number {
        font-size: 24px;
    }

    .timeline-content h3 {
        font-size: 11px;
    }

    .timeline-content p {
        font-size: 9px;
    }
}

/* ========== Custom Scrollbar ========== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
    border: 3px solid var(--light);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ========== Selection ========== */
::selection {
    background: var(--primary);
    color: white;
}
