/**
 * Home Page v3.0 Styles
 * Premium, High-Converting Design with Modern UX
 * 
 * Extracted from home.php for better maintainability
 * Created: December 2025
 */

/* ============ CSS VARIABLES ============ */
/* Color Palette: Beige Safari Theme */
/* Sage: #90B3A7 | Terracotta: #C7805C | Beige: #D9B39B | Cream: #F5F0E1 */
:root {
    --primary: #C7805C;
    --primary-dark: #A8684A;
    --primary-light: #D9B39B;
    --secondary: #90B3A7;
    --secondary-dark: #7A9A8F;
    --accent: #D9B39B;
    --success: #90B3A7;
    --danger: #C7805C;
    --warning: #D9B39B;
    --info: #90B3A7;
    --light: #F5F0E1;
    --dark: #3D3029;
    --cream: #F5F0E1;
    --beige: #D9B39B;
    --terracotta: #C7805C;
    --sage: #90B3A7;
    --gradient-primary: linear-gradient(135deg, #C7805C 0%, #A8684A 100%);
    --gradient-secondary: linear-gradient(135deg, #90B3A7 0%, #7A9A8F 100%);
    --gradient-warm: linear-gradient(135deg, #D9B39B 0%, #C7805C 100%);
    --gradient-gold: linear-gradient(135deg, #D9B39B 0%, #C7805C 100%);
    --shadow-soft: 0 4px 20px rgba(61, 48, 41, 0.08);
    --shadow-medium: 0 8px 30px rgba(61, 48, 41, 0.12);
    --shadow-strong: 0 20px 60px rgba(61, 48, 41, 0.2);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ STICKY CTA BAR ============ */
.sticky-cta-bar {
    position: fixed;
    top: -60px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark) 0%, #2a211c 100%);
    padding: 12px 0;
    z-index: 1050;
    transition: top 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-cta-bar.visible {
    top: 0;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

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

/* On home page, hero needs padding for absolute nav */
.home-page .hero-section-v3 {
    padding-top: 140px;
}

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

.hero-video,
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Ken Burns Animation */
.hero-image {
    animation: kenBurns 20s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translateX(0);
    }

    50% {
        transform: scale(1.1) translateX(-2%);
    }

    100% {
        transform: scale(1) translateX(0);
    }
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-particles-v3 {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 60px 70px, #fff, transparent),
        radial-gradient(1px 1px at 100px 100px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: drift 30s linear infinite;
}

.hero-content-wrapper-v3 {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title-v3 {
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-v3 {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

/* Hero Social Proof Badge */
.hero-social-proof-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
}

.avatar-stack {
    display: flex;
}

.avatar-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
    object-fit: cover;
}

.avatar-img:first-child {
    margin-left: 0;
}

/* Hero Search Bar */
.hero-search-bar {
    max-width: 950px;
    margin: 0 auto;
}

.search-form-v3 {
    background: white;
    padding: 25px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-strong);
}

.search-form-v3 .row {
    align-items: flex-end;
}

.search-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: #f8f9fa;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

.btn-search-v3 {
    width: 100%;
    padding: 14px 24px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-search-v3:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(199, 128, 92, 0.4);
}

/* Hero CTA Buttons */
.hero-cta-v3 {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(199, 128, 92, 0.35);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(199, 128, 92, 0.5);
    color: white;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Scroll Indicator */
.scroll-indicator-v3 {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 10;
}

.mouse-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    margin: 0 auto 10px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
}

/* ============ STATS SECTION ============ */
.trust-stats-v3 {
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.stat-item-v3 {
    padding: 40px 25px;
    background: var(--light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.stat-item-v3:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    background: #fff;
}

.stat-icon {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin: 0;
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-left: 2px;
    display: inline-block;
}

.stat-label {
    color: #666;
    margin: 12px 0 8px 0;
    font-weight: 600;
    font-size: 0.95rem;
}

.stat-stars {
    color: #ffc107;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ============ SECTION HEADERS ============ */
.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title-v3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-desc {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ============ EXPERIENCE CARDS V3 ============ */
.featured-experiences-v3 {
    background: var(--light);
}

.experience-card-v3 {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.experience-card-v3:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-strong);
}

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

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

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.badge-popular {
    background: var(--danger);
}

.badge-adventure {
    background: var(--success);
}

.badge-beach {
    background: var(--info);
}

.card-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.card-wishlist:hover {
    background: var(--danger);
    color: white;
}

.card-quick-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 12px;
    color: white;
    font-size: 0.85rem;
}

.card-content {
    padding: 20px;
}

.card-rating {
    margin-bottom: 10px;
}

.card-rating .stars {
    color: #ffc107;
    font-size: 1rem;
}

.card-rating .count {
    color: #999;
    font-size: 0.85rem;
    margin-left: 5px;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.card-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.card-price small {
    color: #999;
    font-size: 0.8rem;
}

.card-price strong {
    font-size: 1.4rem;
    color: var(--danger);
    font-weight: 700;
}

.btn-card-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: var(--light);
    color: var(--primary);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

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

.btn-view-all {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

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

/* ============ WHY CHOOSE US V3 - Premium ============ */
.why-choose-section-v3 {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-image-wrapper {
    position: relative;
    padding: 30px;
}

.why-choose-main-image img {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.why-choose-trust-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    padding: 18px 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    animation: float 3s ease-in-out infinite;
}

.why-choose-trust-badge .trust-icon {
    font-size: 2rem;
}

.why-choose-trust-badge .trust-content {
    display: flex;
    flex-direction: column;
}

.why-choose-trust-badge .trust-content strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.why-choose-trust-badge .trust-content span {
    font-size: 0.8rem;
    color: #666;
}

.why-choose-satisfaction-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    animation: float 3s ease-in-out infinite 1.5s;
}

.satisfaction-circle {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    position: relative;
}

.satisfaction-circle svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.satisfaction-text {
    text-align: center;
    z-index: 1;
}

.satisfaction-text strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.satisfaction-text span {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-choose-dots {
    position: absolute;
    top: 50%;
    right: -20px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, var(--primary) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.3;
}

.why-choose-lead {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Feature Items */
.why-choose-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.why-feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.why-feature-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
}

.bg-primary-gradient {
    background: var(--gradient-primary);
}

.bg-success-gradient {
    background: var(--gradient-secondary);
}

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

.bg-warning-gradient {
    background: linear-gradient(135deg, var(--beige) 0%, var(--primary-light) 100%);
    color: var(--dark) !important;
}

.bg-primary-soft {
    background: rgba(199, 128, 92, 0.1);
    color: var(--primary);
}

.bg-success-soft {
    background: rgba(144, 179, 167, 0.1);
    color: var(--secondary);
}

.bg-danger-soft {
    background: rgba(199, 128, 92, 0.1);
    color: var(--primary);
}

.bg-warning-soft {
    background: rgba(217, 179, 155, 0.1);
    color: var(--primary-dark);
}

.why-feature-content {
    flex: 1;
}

.why-feature-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.why-feature-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.why-feature-check {
    color: #25D366;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* CTA Buttons */
.why-choose-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-why-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(199, 128, 92, 0.3);
}

.btn-why-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(199, 128, 92, 0.4);
    color: white;
}

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

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

.btn-why-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: white;
    color: var(--dark);
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-why-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Stats Bar */
.why-choose-stats-bar {
    background: white;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.why-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.why-stat-icon {
    font-size: 2.2rem;
}

.why-stat-info {
    display: flex;
    flex-direction: column;
}

.why-stat-info strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.why-stat-info span {
    font-size: 0.8rem;
    color: #888;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive for Why Choose */
@media (max-width: 991px) {
    .why-choose-image-wrapper {
        padding: 40px 30px;
        margin-bottom: 20px;
    }

    .why-choose-trust-badge {
        top: 10px;
        left: 10px;
    }

    .why-choose-satisfaction-badge {
        right: 10px;
        bottom: 10px;
    }

    .satisfaction-circle {
        width: 100px;
        height: 100px;
    }

    .satisfaction-text strong {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .why-feature-item {
        padding: 15px;
    }

    .why-feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .why-feature-check {
        display: none;
    }

    .why-choose-cta {
        flex-direction: column;
    }

    .btn-why-primary,
    .btn-why-secondary {
        width: 100%;
        justify-content: center;
    }

    .why-choose-stats-bar {
        padding: 20px;
    }

    .why-stat-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

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

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
}

.trust-badge-item span {
    font-weight: 600;
    color: var(--dark);
}

/* ============ FINAL CTA V3 ============ */
.final-cta-v3 {
    background: var(--gradient-primary);
    position: relative;
}

.final-cta-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>') repeat;
    opacity: 0.3;
}

.cta-card-v3 {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.urgency-badge {
    display: inline-block;
    background: #fff;
    color: var(--primary-dark);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.cta-desc {
    color: #2d2d2d;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-features span {
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-features i {
    color: #1a6b2d;
    margin-right: 5px;
}

.cta-buttons-v3 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #fff;
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    color: var(--primary-dark);
    background: #f8f8f8;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    color: white;
}

/* ============ EXIT POPUP ============ */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.exit-popup-overlay.active {
    display: flex;
}

.exit-popup-content {
    background: white;
    padding: 50px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 450px;
    position: relative;
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border: none;
    background: var(--light);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.exit-popup-close:hover {
    background: var(--danger);
    color: white;
}

.exit-popup-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.exit-popup-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.exit-popup-content p {
    color: #666;
    margin-bottom: 25px;
}

.exit-popup-form {
    display: flex;
    gap: 10px;
}

.exit-popup-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
}

.exit-popup-form button {
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.exit-popup-form button:hover {
    transform: translateY(-2px);
}

/* ============ UTILITY CLASSES ============ */
.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

/* ============ ENHANCED BUTTON EFFECTS ============ */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

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

.btn-warning:hover {
    background: linear-gradient(135deg, var(--beige) 0%, var(--terracotta) 100%);
    box-shadow: 0 10px 30px rgba(199, 128, 92, 0.4);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

/* Shine effect on primary buttons */
.btn-primary::after,
.btn-warning::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::after,
.btn-warning:hover::after {
    transform: rotate(45deg) translateX(100%);
}

/* Card hover lift effect */
.card,
.package-card-v3,
.experience-card-v3,
.destination-card-v3 {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover,
.package-card-v3:hover,
.experience-card-v3:hover,
.destination-card-v3:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ============ ANIMATIONS ============ */
@keyframes drift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
    .cta-card-v3 {
        padding: 30px;
        text-align: center;
    }

    .cta-features {
        justify-content: center;
    }

    .cta-buttons-v3 {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-title-v3 {
        font-size: 2rem;
    }

    .hero-subtitle-v3 {
        font-size: 1rem;
    }

    .search-form-v3 {
        padding: 15px;
    }

    .hero-cta-v3 {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .exit-popup-content {
        margin: 20px;
        padding: 30px;
    }

    .exit-popup-form {
        flex-direction: column;
    }
}

/* ============ FOOTER CTA BANNER ============ */
.footer-cta-banner {
    background: linear-gradient(135deg, #3D3029 0%, #2a211c 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.footer-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    pointer-events: none;
}

.footer-cta-banner .cta-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 40px 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

.footer-cta-banner h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.btn-footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: #ffffff;
    color: #3D3029;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.btn-footer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    color: #3D3029;
    background: #f5f5f5;
}

.btn-footer-cta i {
    color: var(--terracotta);
}

@media (max-width: 991px) {
    .footer-cta-banner .cta-content {
        padding: 30px;
        text-align: center;
    }

    .footer-cta-banner h3 {
        font-size: 1.5rem;
    }

    .footer-cta-banner p {
        margin-bottom: 20px;
    }
}