/* ========== 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: "Segoe UI", Tahoma, Geneva, Verdana, 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;
    white-space: nowrap;
    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);
    overflow: visible;
}

.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;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    overflow: visible;
}

.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;
    white-space: nowrap;
}

.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: 12px;
    align-items: center;
    flex-shrink: 0;
}

/* ========== Custom Language Toggle ========== */
.lang-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-light);
    margin-right: 5px;
}

.lang-divider {
    color: #cbd5e1;
    font-weight: 400;
}

.lang-text-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray);
    transition: all 0.2s ease;
    padding: 4px;
}

.lang-text-btn:hover {
    color: var(--primary);
}

.lang-text-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

.lang-text-btn.active {
    color: var(--primary-dark);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

/* Hide all Google Translate default elements */
#google_translate_element,
iframe.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
}

body {
    top: 0px !important;
}

.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: flex;
    flex-wrap: wrap;
    justify-content: center;
    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);
    flex: 0 1 calc(25% - 23px);
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    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);
}

/* Pickup Card Call Button */
.pickup-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #10b981 100%);
    background-size: 200% 200%;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    animation: gradientShift 3s ease infinite, pulse 2s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    }

    50% {
        box-shadow: 0 8px 35px rgba(16, 185, 129, 0.6), 0 0 20px rgba(16, 185, 129, 0.3);
    }
}

.pickup-call-btn i {
    font-size: 18px;
    animation: phoneRing 1.5s ease-in-out infinite;
}

@keyframes phoneRing {

    0%,
    100% {
        transform: rotate(0deg) scaleX(-1);
    }

    10% {
        transform: rotate(-15deg) scaleX(-1);
    }

    20% {
        transform: rotate(15deg) scaleX(-1);
    }

    30% {
        transform: rotate(-15deg) scaleX(-1);
    }

    40% {
        transform: rotate(15deg) scaleX(-1);
    }

    50%,
    100% {
        transform: rotate(0deg) scaleX(-1);
    }
}

.pickup-call-btn .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 2.5s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.pickup-call-btn:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5), 0 0 30px rgba(16, 185, 129, 0.3);
    animation: none;
    background-position: 100% 50%;
}

.pickup-call-btn:hover i {
    animation: phoneRingFast 0.5s ease-in-out infinite;
}

@keyframes phoneRingFast {

    0%,
    100% {
        transform: rotate(0deg) scaleX(-1);
    }

    25% {
        transform: rotate(-20deg) scaleX(-1);
    }

    75% {
        transform: rotate(20deg) scaleX(-1);
    }
}

.pickup-call-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.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;
    width: 100%;
    max-width: 100vw;
}

.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;
}

/* ========== Nepal Gallery Section ========== */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 50%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.gallery-slider {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(16, 185, 129, 0.18);
    margin-bottom: 32px;
    background: radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.08), transparent 40%), #ffffff;
}

.gallery-slider .slider-track {
    position: relative;
    height: 420px;
}

.slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: scale(1.02);
}

.slider-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.55) 90%);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.slider-caption h3 {
    font-size: 20px;
    letter-spacing: 0.2px;
}

.slider-caption p {
    font-size: 14px;
    opacity: 0.9;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #0f766e;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: grid;
    place-items: center;
}

.slider-nav:hover {
    background: #0f766e;
    color: #fff;
}

.slider-nav.prev {
    left: 18px;
}

.slider-nav.next {
    right: 18px;
}

.gallery-slider .slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.gallery-slider .slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-slider .slider-dot.active {
    background: #10b981;
    border-color: #10b981;
    transform: scale(1.15);
}

/* Hide legacy grid now that slider is primary */
.gallery-filters,
.gallery-grid {
    display: none;
}

@media (max-width: 768px) {
    .gallery-slider .slider-track {
        height: 280px;
    }

    .slider-caption h3 {
        font-size: 18px;
    }

    .slider-caption p {
        font-size: 13px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    pointer-events: none;
}

.gallery-section::after {
    content: '🏔️';
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 100px;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
    .filter-btn {
        transition: background 0.2s, color 0.2s;
        -webkit-tap-highlight-color: transparent;
    }

    .filter-btn:hover {
        transform: none;
        box-shadow: none;
        background: transparent;
        color: var(--primary);
    }

    .filter-btn.active {
        background: var(--gradient-primary);
        color: white;
        border-color: transparent;
        transform: none;
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }

    .cursor-glow {
        display: none !important;
    }
}

.filter-btn i {
    font-size: 16px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
    overflow: hidden;
}

.gallery-item:nth-child(1) .gallery-image,
.gallery-item:nth-child(6) .gallery-image {
    min-height: 585px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.15);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-info h3 i {
    color: var(--primary-light);
}

.gallery-item:hover .gallery-info h3 {
    transform: translateY(0);
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 8px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.15s;
}

.gallery-item:hover .gallery-info p {
    transform: translateY(0);
}

.gallery-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
}

.gallery-item:hover .gallery-tag {
    transform: translateY(0);
}

/* Gallery Zoom Button */
.gallery-zoom {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0) rotate(-180deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-zoom {
    transform: scale(1) rotate(0deg);
}

.gallery-zoom:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1) rotate(0deg);
}

/* Gallery CTA */
.gallery-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: 30px;
    border: 2px dashed var(--primary);
}

.gallery-cta p {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.gallery-cta p i {
    color: var(--secondary);
    margin-right: 10px;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    text-align: center;
    margin-top: 20px;
    color: white;
}

.lightbox-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary-light);
}

.lightbox-caption p {
    font-size: 1rem;
    opacity: 0.8;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

/* Gallery Responsive */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item:nth-child(1) .gallery-image,
    .gallery-item:nth-child(6) .gallery-image {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 12px;
        transition: none;
        -webkit-tap-highlight-color: transparent;
    }

    .filter-btn:hover {
        transform: none;
        box-shadow: none;
    }

    .filter-btn.active {
        background: var(--gradient-primary);
        color: white;
        border-color: transparent;
        transform: none;
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-column: span 1;
    }

    .gallery-image,
    .gallery-item:nth-child(1) .gallery-image,
    .gallery-item:nth-child(6) .gallery-image {
        min-height: 250px;
    }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top,
                rgba(0, 0, 0, 0.85) 0%,
                rgba(0, 0, 0, 0.3) 50%,
                transparent 100%);
    }

    .gallery-info h3,
    .gallery-info p,
    .gallery-tag {
        transform: translateY(0);
    }

    .gallery-zoom {
        transform: scale(1) rotate(0deg);
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .gallery-cta {
        padding: 30px 20px;
    }

    .gallery-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .gallery-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 11px;
        gap: 5px;
        transition: none;
        -webkit-tap-highlight-color: transparent;
    }

    .filter-btn:hover,
    .filter-btn:active {
        transform: none;
        box-shadow: none;
    }

    .filter-btn.active {
        transform: none;
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    }

    .filter-btn i {
        font-size: 12px;
    }

    .gallery-info h3 {
        font-size: 1.1rem;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ========== Footer ========== */
.footer {
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfeff 50%, #fdf2f8 100%);
    padding: 0 0 80px;
    color: var(--dark);
    position: relative;
    width: 100%;
    max-width: 100vw;
}

.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);
    }

    .pickup-card {
        flex: 0 1 calc(33.333% - 22px);
        min-width: 230px;
    }
}

@media (max-width: 992px) {

    .nav-links {
        display: none;
    }

    .nav-buttons .btn {
        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 {
        gap: 25px;
    }

    .pickup-card {
        flex: 0 1 calc(50% - 15px);
        min-width: 220px;
    }
}

@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-grid {
        gap: 20px;
    }

    .pickup-card {
        flex: 0 1 calc(50% - 12px);
        min-width: 160px;
        max-width: 200px;
        padding: 30px 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;
    }

    .pickup-call-btn {
        padding: 12px 22px;
        font-size: 13px;
        margin-top: 20px;
    }

    .pickup-call-btn i {
        font-size: 16px;
    }

    .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 {
        gap: 15px;
    }

    .pickup-card {
        flex: 0 1 calc(50% - 10px);
        min-width: 140px;
        max-width: 180px;
        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;
    }

    .pickup-call-btn {
        padding: 10px 16px;
        font-size: 12px;
        margin-top: 15px;
    }

    .pickup-call-btn 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;
        min-width: 130px;
        max-width: 160px;
    }

    .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;
    }

    .pickup-call-btn {
        padding: 8px 12px;
        font-size: 10px;
        margin-top: 12px;
        gap: 6px;
    }

    .pickup-call-btn 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;
    }
}



/* ========== Selection ========== */
::selection {
    background: var(--primary);
    color: white;
}
/* ========== Tour Offer Card Section ========== */
.tour-offer-card-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 50%, #fce7f3 100%);
}

.tour-offer-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.12), 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(16, 185, 129, 0.12);
    animation: fadeUp 0.8s ease;
}

/* Trust Badge */
.toc-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #fefce8, #fef3c7);
    padding: 10px 20px 10px 12px;
    border-radius: 60px;
    border: 1px solid #fcd34d;
    margin-bottom: 28px;
}

.toc-badge-avatars {
    display: flex;
    align-items: center;
}

.toc-badge-avatars img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fef3c7;
    margin-left: -8px;
    object-fit: cover;
}

.toc-badge-avatars img:first-child { margin-left: 0; }

.toc-badge-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toc-badge-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 10px;
}

.toc-badge-info span {
    font-size: 12px;
    color: #92400e;
    font-weight: 500;
}

.toc-badge-info strong {
    color: #78350f;
    font-weight: 700;
}

/* Title Block */
.toc-title-block {
    margin-bottom: 28px;
}

.toc-heading-main {
    font-size: 40px;
    font-weight: 800;
    color: #111827;
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 0;
}

.toc-heading-sub {
    font-size: 38px;
    font-weight: 800;
    color: #10b981;
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 0 0 14px 0;
}

.toc-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Price Box */
.toc-price-box {
    background: #f9fafb;
    border-radius: 16px;
    padding: 22px 28px;
    margin-bottom: 28px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.toc-price-label {
    font-size: 11px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 4px;
}

.toc-price-amount {
    font-size: 38px;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
    margin-bottom: 4px;
}

.toc-price-per {
    font-size: 13px;
    color: #6b7280;
}

.toc-price-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toc-feature-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.toc-feature-check i {
    color: #10b981;
    font-size: 15px;
}

/* CTA Buttons */
.toc-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.toc-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #10b981;
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
    text-decoration: none;
}

.toc-btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45);
    color: white;
}

.toc-btn-primary i { transition: transform 0.3s; }
.toc-btn-primary:hover i { transform: translateX(4px); }

.toc-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #25d366;
    padding: 15px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid #25d366;
    transition: all 0.3s ease;
    text-decoration: none;
}

.toc-btn-whatsapp:hover {
    background: #25d366;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.toc-btn-whatsapp i { font-size: 18px; }

/* Happy Travelers */
.toc-happy-travelers {
    display: flex;
    align-items: center;
    gap: 16px;
}

.toc-traveler-avatars {
    display: flex;
    align-items: center;
}

.toc-traveler-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.toc-traveler-avatars img:first-child { margin-left: 0; }

.toc-extra-count {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #10b981;
    color: white;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    border: 2px solid white;
}

.toc-traveler-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.toc-star-row {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #f59e0b;
    font-size: 13px;
}

.toc-star-row strong {
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    margin-left: 2px;
}

.toc-traveler-info span {
    font-size: 13px;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 600px) {
    .tour-offer-card {
        padding: 28px 20px;
    }

    .toc-heading-main { font-size: 30px; }
    .toc-heading-sub { font-size: 28px; }
    .toc-price-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .toc-price-amount { font-size: 30px; }
    .toc-buttons { flex-direction: column; }
    .toc-btn-primary, .toc-btn-whatsapp {
        justify-content: center;
    }
}

/* ========== Daily Bus Service Card Section ========== */
.bus-service-card-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 60%, #fce7f3 100%);
}

/* Header */
.bsc-header {
    text-align: center;
    margin-bottom: 40px;
}

.bsc-main-title {
    font-size: 38px;
    font-weight: 800;
    color: #111827;
    margin: 14px 0 10px;
    letter-spacing: -1px;
}

.bsc-main-title span {
    color: #10b981;
}

.bsc-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

/* Main Card Container */
.bsc-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(16,185,129,0.12), 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(16,185,129,0.1);
}

/* Route Strip */
.bsc-route-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 24px 36px;
    gap: 20px;
}

.bsc-route-city {
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
}

.bsc-route-city > i {
    font-size: 28px;
    color: rgba(255,255,255,0.85);
    flex-shrink: 0;
}

.bsc-route-city div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bsc-city-label {
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    text-transform: uppercase;
}

.bsc-route-city strong {
    font-size: 22px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.bsc-route-city small {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

.bsc-route-city-right {
    text-align: right;
    justify-content: flex-end;
}

.bsc-route-city-right div {
    align-items: flex-end;
}

/* Route Line */
.bsc-route-line {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 8px;
}

.bsc-route-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    flex-shrink: 0;
}

.bsc-route-dashes {
    flex: 1;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,0.6) 0px,
        rgba(255,255,255,0.6) 8px,
        transparent 8px,
        transparent 16px
    );
}

.bsc-bus-icon {
    font-size: 26px;
    color: white;
    flex-shrink: 0;
    animation: busSlide 2s ease-in-out infinite;
}

@keyframes busSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
}

/* Bus Options Grid */
.bsc-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-bottom: 1px solid #f3f4f6;
}

.bsc-option-card {
    padding: 32px 28px;
    position: relative;
    border-right: 1px solid #f3f4f6;
    transition: background 0.3s;
}

.bsc-option-card:last-child {
    border-right: none;
}

.bsc-option-card:hover {
    background: #f9fafb;
}

/* Most Popular Badge */
.bsc-option-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Option Icon */
.bsc-option-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

.bsc-ac .bsc-option-icon {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #2563eb;
}

.bsc-nonac .bsc-option-icon {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #059669;
}

.bsc-sharing .bsc-option-icon {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    color: #db2777;
}

.bsc-option-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.bsc-option-card p {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

/* Option Price */
.bsc-option-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
}

.bsc-price-num {
    font-size: 30px;
    font-weight: 800;
    color: #10b981;
}

.bsc-price-label {
    font-size: 13px;
    color: #9ca3af;
    font-weight: 500;
}

/* Option Features */
.bsc-option-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bsc-option-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #374151;
}

.bsc-option-features li i {
    color: #10b981;
    font-size: 11px;
    flex-shrink: 0;
}

/* Book Button */
.bsc-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.bsc-book-ac {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.bsc-book-ac:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,99,235,0.4);
    color: white;
}

.bsc-book-nonac {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}

.bsc-book-nonac:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16,185,129,0.4);
    color: white;
}

.bsc-book-sharing {
    background: white;
    color: #db2777;
    border: 2px solid #db2777;
}

.bsc-book-sharing:hover {
    background: #db2777;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(219,39,119,0.3);
}

/* Features Strip */
.bsc-features-strip {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 22px 36px;
    background: #f9fafb;
    border-bottom: 1px solid #f3f4f6;
    flex-wrap: wrap;
    gap: 12px;
}

.bsc-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
}

.bsc-feature-item i {
    color: #10b981;
    font-size: 18px;
}

.bsc-feature-item strong {
    color: #111827;
}

.bsc-feature-divider {
    width: 1px;
    height: 30px;
    background: #e5e7eb;
}

/* Bottom CTA */
.bsc-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 36px;
    flex-wrap: wrap;
    gap: 20px;
}

.bsc-trust-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bsc-trust-avatars {
    display: flex;
    align-items: center;
}

.bsc-trust-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.bsc-trust-avatars img:first-child { margin-left: 0; }

.bsc-trust-count {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #10b981;
    color: white;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    border: 2px solid white;
}

.bsc-trust-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bsc-stars-row {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #f59e0b;
    font-size: 13px;
}

.bsc-stars-row strong {
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    margin-left: 3px;
}

.bsc-trust-info span {
    font-size: 12px;
    color: #6b7280;
}

.bsc-cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.bsc-cta-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    background: white;
    color: #10b981;
    border: 2px solid #10b981;
    text-decoration: none;
    transition: all 0.3s;
}

.bsc-cta-call:hover {
    background: #10b981;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(16,185,129,0.35);
}

.bsc-cta-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}

.bsc-cta-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.45);
    color: white;
}

/* Responsive */
@media (max-width: 900px) {
    .bsc-options-grid {
        grid-template-columns: 1fr;
    }
    .bsc-option-card {
        border-right: none;
        border-bottom: 1px solid #f3f4f6;
    }
    .bsc-option-card:last-child { border-bottom: none; }
    .bsc-feature-divider { display: none; }
    .bsc-features-strip { justify-content: flex-start; gap: 18px; }
}

@media (max-width: 600px) {
    .bsc-route-strip {
        flex-direction: column;
        padding: 20px;
        gap: 12px;
        text-align: center;
    }
    .bsc-route-city { justify-content: center; }
    .bsc-route-city-right { justify-content: center; }
    .bsc-route-city-right div { align-items: center; }
    .bsc-route-line { width: 100%; justify-content: center; }
    .bsc-main-title { font-size: 28px; }
    .bsc-bottom-cta { flex-direction: column; align-items: flex-start; }
    .bsc-cta-btns { width: 100%; }
    .bsc-cta-call, .bsc-cta-wa { flex: 1; justify-content: center; }
    .bsc-card { border-radius: 16px; }
    .bsc-option-card { padding: 24px 20px; }
}

/* ==============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   Full mobile fix for all sections
   ============================================== */

/* ---- Global Mobile Reset ---- */
@media (max-width: 768px) {

    /* Prevent horizontal scroll site-wide */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    * {
        box-sizing: border-box;
    }

    .container {
        padding: 0 16px;
    }

    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 26px !important;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .section-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    /* ---- Navbar ---- */
    .nav-container {
        padding: 12px 16px;
    }

    .logo-main {
        font-size: 16px;
    }

    .logo-sub {
        font-size: 9px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 80px 0 30px;
        box-shadow: 5px 0 30px rgba(0,0,0,0.15);
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.open {
        left: 0;
    }

    .nav-links li a {
        display: block;
        padding: 16px 28px;
        border-bottom: 1px solid #f3f4f6;
        font-size: 15px;
        color: #111827;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .lang-links {
        margin-right: 2px;
    }

    .lang-text-btn {
        font-size: 13px;
    }

    /* ---- Hero ---- */
    .hero-wrapper {
        grid-template-columns: 1fr;
        padding: 100px 16px 30px;
        gap: 24px;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-right {
        display: none;
    }

    .heading-line {
        font-size: 30px;
        letter-spacing: -0.5px;
    }

    .hero-badge {
        display: inline-flex;
        margin: 0 auto 20px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-price-tag {
        flex-direction: column;
        text-align: center;
        gap: 14px;
        padding: 18px;
    }

    .price-value { font-size: 30px; }

    .price-features {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .cta-primary, .cta-whatsapp {
        width: 100%;
        justify-content: center;
        font-size: 15px;
        padding: 14px 20px;
    }

    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-bottom-bar {
        flex-wrap: wrap;
        gap: 0;
        padding: 0;
    }

    .bottom-stat {
        width: 50%;
        padding: 16px 10px;
        font-size: 12px;
        text-align: center;
        justify-content: center;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .bottom-divider {
        display: none;
    }

    /* ---- Pickup Section ---- */
    .pickup-section .container {
        padding: 0 12px;
    }

    .pickup-grid {
        gap: 14px;
        justify-content: center;
    }

    .pickup-card {
        flex: 0 1 calc(50% - 10px);
        min-width: 145px;
        max-width: 190px;
        padding: 22px 14px;
    }

    .pickup-card h3 {
        font-size: 17px;
    }

    .departure-time {
        font-size: 12px;
        white-space: nowrap;
    }

    .pickup-icon {
        width: 56px;
        height: 56px;
    }

    .pickup-icon i {
        font-size: 22px;
    }

    .pickup-call-btn {
        padding: 10px 14px;
        font-size: 12px;
        margin-top: 14px;
    }

    .pickup-features span {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .pickup-extra-features {
        flex-direction: column !important;
        gap: 14px !important;
        padding: 20px !important;
    }

    .extra-feature-item {
        font-size: 14px !important;
    }

    /* ---- Bus Service Card ---- */
    .bus-service-card-section {
        padding: 40px 0;
    }

    .bsc-main-title {
        font-size: 24px;
    }

    .bsc-subtitle {
        font-size: 13px;
        padding: 0 10px;
    }

    .bsc-route-strip {
        flex-direction: column;
        padding: 18px 16px;
        text-align: center;
        gap: 10px;
    }

    .bsc-route-city {
        justify-content: center;
    }

    .bsc-route-city-right {
        justify-content: center;
    }

    .bsc-route-city-right div {
        align-items: center;
    }

    .bsc-route-line {
        width: 80%;
        margin: 0 auto;
    }

    .bsc-route-city strong {
        font-size: 18px;
    }

    .bsc-options-grid {
        grid-template-columns: 1fr;
    }

    .bsc-option-card {
        border-right: none;
        border-bottom: 1px solid #f3f4f6;
        padding: 24px 18px;
    }

    .bsc-option-card:last-child {
        border-bottom: none;
    }

    .bsc-price-num {
        font-size: 26px;
    }

    .bsc-features-strip {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px;
        gap: 14px;
    }

    .bsc-feature-divider {
        display: none;
    }

    .bsc-bottom-cta {
        flex-direction: column;
        padding: 20px 18px;
        gap: 16px;
    }

    .bsc-cta-btns {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .bsc-cta-call, .bsc-cta-wa {
        width: 100%;
        justify-content: center;
    }

    /* ---- Journey Section ---- */
    .journey-section {
        padding: 40px 0 30px;
    }

    .journey-timeline {
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
    }

    .timeline-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
    }

    .timeline-number {
        font-size: 20px;
        min-width: 44px;
        height: 44px;
    }

    .timeline-content h3 {
        font-size: 16px;
    }

    .timeline-content p {
        font-size: 13px;
    }

    .spiritual-message {
        margin: 20px 16px 0;
        padding: 18px 20px;
        font-size: 14px;
    }

    /* ---- Destinations ---- */
    .destinations-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
        padding: 0 4px;
    }

    .destination-card {
        border-radius: 16px;
    }

    .destination-image {
        height: 200px;
    }

    /* ---- Package Section ---- */
    .package-card {
        padding: 36px 18px;
        margin: 0 4px;
    }

    .package-card h2 {
        font-size: 14px;
    }

    .package-title {
        font-size: 22px !important;
    }

    .price-tag {
        margin: 16px 0;
    }

    .package-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .feature {
        padding: 12px 8px;
        font-size: 12px;
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .feature i {
        font-size: 18px;
    }

    .package-cta {
        width: 100%;
        justify-content: center;
    }

    /* ---- Itinerary ---- */
    .itinerary-section {
        padding: 50px 0;
    }

    .accordion-header {
        padding: 14px 16px;
        gap: 10px;
    }

    .accordion-header h4 {
        font-size: 13px;
    }

    .day-emoji {
        font-size: 20px;
        min-width: 36px;
        height: 36px;
    }

    .accordion-item.active .accordion-content {
        padding: 14px 16px 18px 62px;
    }

    .day-highlights {
        flex-wrap: wrap;
        gap: 6px;
    }

    .day-highlights span {
        font-size: 11px;
        padding: 5px 8px;
    }

    /* ---- Food Section ---- */
    .food-section {
        padding: 50px 0;
    }

    .food-subtitle {
        font-size: 22px;
        gap: 10px;
    }

    .food-features {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
        padding: 0 8px;
    }

    .food-item {
        padding: 18px 12px;
        border-radius: 16px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .food-item i {
        font-size: 22px;
    }

    .food-item span {
        font-size: 13px;
    }

    /* ---- Why Us ---- */
    .why-us-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
        padding: 0 8px;
    }

    .why-card {
        width: 100% !important;
        min-width: unset !important;
        padding: 20px 14px;
    }

    .why-card h3 {
        font-size: 13px;
    }

    .why-card p {
        display: none;
    }

    .why-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .why-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    /* ---- Testimonials ---- */
    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-slider {
        flex-direction: column;
        gap: 16px;
        padding: 0 4px;
    }

    .testimonial-card {
        width: 100%;
        padding: 24px 18px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
    }

    /* ---- Gallery Slider ---- */
    .gallery-section {
        padding: 50px 0;
    }

    .slider-slide img {
        height: 220px;
        object-fit: cover;
    }

    .slider-caption h3 {
        font-size: 18px;
    }

    .slider-caption p {
        font-size: 13px;
    }

    /* ---- CTA Section ---- */
    .cta-section {
        padding: 50px 0;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        padding: 0 20px;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .countdown {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .countdown-item {
        padding: 14px 16px;
        min-width: 70px;
    }

    .countdown-value {
        font-size: 26px;
    }

    .countdown-label {
        font-size: 10px;
    }

    /* ---- Footer ---- */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 32px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links ul, .footer-contact ul {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
    }

    /* ---- Floating CTA ---- */
    .floating-cta {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 10px 14px;
        gap: 8px;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
        box-sizing: border-box;
        padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    }

    .cta-text {
        width: 100%;
        text-align: center;
        justify-content: center;
        font-size: 12px;
        white-space: nowrap;
    }

    .floating-cta-buttons {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .floating-cta .btn-gold {
        padding: 10px 20px;
        font-size: 13px;
    }

    .floating-cta .whatsapp-float {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    /* ---- Mobile menu overlay ---- */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 998;
    }

    .nav-overlay.open {
        display: block;
    }
}

/* ---- Small phones (max 480px) ---- */
@media (max-width: 480px) {

    .heading-line {
        font-size: 26px;
    }

    .section-title {
        font-size: 22px !important;
    }

    .hero-wrapper {
        padding: 90px 14px 24px;
    }

    .bsc-options-grid {
        gap: 0;
    }

    .bsc-main-title {
        font-size: 22px;
    }

    .pickup-card {
        flex: 0 1 calc(50% - 8px);
        min-width: 130px;
        max-width: 170px;
        padding: 18px 10px;
    }

    .pickup-card h3 {
        font-size: 15px;
    }

    .departure-time {
        font-size: 11px;
    }

    .why-us-grid,
    .food-features {
        grid-template-columns: repeat(2, 1fr) !important;
    }

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

    .destinations-grid {
        grid-template-columns: 1fr !important;
    }

    .countdown {
        gap: 8px;
    }

    .countdown-item {
        min-width: 62px;
        padding: 12px 12px;
    }

    .countdown-value {
        font-size: 22px;
    }

    .cta-buttons {
        padding: 0 12px;
    }

    .bsc-route-city strong {
        font-size: 16px;
    }
}

/* ---- Very small phones (max 360px) ---- */
@media (max-width: 360px) {
    .heading-line {
        font-size: 22px;
    }

    .logo-main {
        font-size: 14px;
    }

    .pickup-card {
        flex: 0 1 calc(50% - 6px);
        min-width: 120px;
        max-width: 155px;
        padding: 16px 8px;
    }

    .pickup-card h3 {
        font-size: 14px;
    }

    .bsc-card {
        border-radius: 12px;
    }

    .bsc-main-title {
        font-size: 20px;
    }

    .countdown-item {
        min-width: 55px;
        padding: 10px;
    }

    .countdown-value {
        font-size: 20px;
    }
}

/* ========== Mobile Menu Polish ========== */
@media (max-width: 992px) {

    /* Mobile menu dropdown from JS - better styling */
    .mobile-menu {
        border-radius: 0 0 16px 16px !important;
        padding: 20px 20px 24px !important;
    }

    .mobile-menu ul li {
        padding: 14px 0 !important;
    }

    .mobile-menu ul li a {
        font-size: 15px !important;
        font-weight: 600 !important;
    }

    .mobile-buttons {
        gap: 12px !important;
    }

    .mobile-buttons .btn {
        display: flex !important;
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
    }

    /* Hamburger animation */
    .hamburger span {
        transition: all 0.3s ease;
    }

    /* Touch targets - make all clickable areas larger on mobile */
    .pickup-call-btn,
    .bsc-book-btn,
    .bsc-cta-call,
    .bsc-cta-wa,
    .btn {
        min-height: 44px;
    }

    /* Remove hover-only effects on touch */
    .pickup-card:hover,
    .destination-card:hover,
    .why-card:hover {
        transform: none;
    }

    /* Testimonials: make scrollable on mobile */
    .testimonials-slider {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 10px 4px 20px;
        scrollbar-width: none;
    }

    .testimonials-slider::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        min-width: 280px;
    }

    /* Gallery slider touch-friendly */
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    /* Journey section */
    .journey-timeline {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .timeline-item {
        flex: none;
        min-width: unset;
        width: 100%;
    }
}

/* ========== Touch Device Improvements ========== */
@media (hover: none) and (pointer: coarse) {

    /* Disable complex hover animations on touch */
    .pickup-card,
    .destination-card,
    .why-card,
    .bsc-option-card,
    .food-item {
        transition: none !important;
    }

    .pickup-card:active,
    .bsc-book-btn:active,
    .toc-btn-primary:active,
    .toc-btn-whatsapp:active {
        opacity: 0.85;
        transform: scale(0.98);
    }

    /* Make links easier to tap */
    a, button {
        -webkit-tap-highlight-color: rgba(16, 185, 129, 0.1);
    }
}

/* ========== Journey Cards: 2-column grid on mobile ========== */
@media (max-width: 768px) {
    .journey-timeline {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
        flex-direction: unset !important;
        padding: 0 12px !important;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        min-width: unset !important;
        background: white !important;
        border-radius: 16px !important;
        padding: 20px 12px !important;
        box-shadow: 0 4px 16px rgba(0,0,0,0.07) !important;
        border: 1px solid #f3f4f6 !important;
        gap: 8px !important;
    }

    .timeline-number {
        font-size: 22px !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        margin: 0 auto !important;
    }

    .timeline-content {
        text-align: center !important;
    }

    .timeline-content h3 {
        font-size: 14px !important;
        margin-bottom: 4px !important;
    }

    .timeline-content p {
        font-size: 12px !important;
        line-height: 1.5 !important;
        color: #6b7280 !important;
    }

    /* Hide connector line between cards on mobile */
    .timeline-connector,
    .journey-timeline::before {
        display: none !important;
    }
}

/* ========== Footer Bottom Mobile Fix ========== */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 14px !important;
        padding-top: 20px !important;
    }

    .footer-bottom p {
        font-size: 13px !important;
        white-space: normal !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .footer-badges {
        display: flex !important;
        justify-content: center !important;
        gap: 16px !important;
        flex-wrap: wrap !important;
    }

    .footer-badges span {
        font-size: 13px !important;
    }
}

/* ========== Footer: Extra bottom padding on mobile (for floating CTA bar) ========== */
@media (max-width: 768px) {
    .footer {
        padding-bottom: 130px !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 12px !important;
        padding-top: 20px !important;
        padding-bottom: 10px !important;
    }

    .footer-bottom p {
        font-size: 13px !important;
        white-space: normal !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .footer-badges {
        display: flex !important;
        justify-content: center !important;
        gap: 18px !important;
        flex-wrap: wrap !important;
        width: 100% !important;
    }

    .footer-badges span {
        font-size: 13px !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
    }
}
