/**
 * Front Page Main Styles - BagsAndGo
 * 
 * Complete styles for front-page.php
 * Extracted from inline CSS for better performance
 * 
 * @package BagsAndGo
 * @version 2.0.0
 * @updated December 2025
 * 
 * BREAKPOINTS:
 * - Desktop XL: 1400px+
 * - Desktop: 1200px
 * - Tablet L: 992px
 * - Tablet: 768px
 * - Mobile L: 576px
 * - Mobile: 480px
 * - Mobile S: 360px
 */

/* ==========================================================================
   CSS CUSTOM PROPERTIES
   ========================================================================== */

:root {
    /* Colors */
    --primary: #FF914D;
    --primary-dark: #ff7a3d;
    --primary-light: #ffb080;
    --secondary: #004aad;
    --secondary-dark: #003d8f;
    --dark: #1a1a1a;
    --gray: #6c757d;
    --gray-light: #adb5bd;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --shadow-xl: 0 12px 40px rgba(0,0,0,0.2);
    
    /* Borders & Radius */
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    --border-radius-full: 50px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Archivo', var(--font-family);
    
    /* Spacing - Fluid */
    --section-padding: clamp(50px, 8vw, 100px);
    --container-padding: clamp(16px, 4vw, 24px);
    
    /* Container widths */
    --container-max: 1280px;
}

/* ==========================================================================
   CONTAINER
   ========================================================================== */

.container-wide {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-modern {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Large screens - limit hero height */
@media (min-width: 1400px) {
    .hero-modern {
        min-height: 80vh;
        max-height: 850px;
    }
}

@media (min-width: 1920px) {
    .hero-modern {
        min-height: 70vh;
        max-height: 750px;
    }
}

/* Video Background */
.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-video-embed {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77vh;
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    pointer-events: none;
    object-fit: cover;
}

@media (min-aspect-ratio: 16/9) {
    .hero-video-embed {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    .hero-video-embed {
        width: auto;
        height: 100%;
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-video-embed {
        width: 300%;
        min-width: 300%;
    }
}

@media (max-width: 480px) and (orientation: portrait) {
    .hero-video-embed {
        width: 500%;
    }
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: clamp(60px, 10vw, 100px) 0;
}

.hero-text {
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.hero-title {
    margin-bottom: 16px;
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 4rem);
    line-height: 1.15;
    font-weight: 900 !important;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.4rem);
    margin: 1rem 0 2rem;
    display: inline-block;
    opacity: 0.95;
    color: white;
    border: 1px solid var(--primary);
    padding: 5px 1.5rem;
    border-radius: 20px;
}

.hero-description {
    font-size: clamp(0.9rem, 1.3vw, 1.1rem);
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.6;
    color: white;
    max-width: 650px;
    padding: 0 1rem;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: clamp(15px, 3vw, 40px);
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 0 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: clamp(0.8rem, 1.1vw, 0.95rem);
}

@media (max-width: 576px) {
    .trust-item {
        flex-basis: 45%;
        justify-content: center;
    }
}

.trust-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.rating {
    color: #FFD700;
}

/* ==========================================================================
   DESTINATIONS SECTION
   ========================================================================== */

.destinations-section {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(30px, 5vw, 50px);
}

.section-header h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.city-selector {
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--primary);
    font-size: inherit;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    padding: 0 10px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 2vw, 20px);
    margin-bottom: 40px;
}

@media (max-width: 1100px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}

.destination-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.destination-image {
    height: clamp(120px, 14vw, 180px);
    background-size: cover;
    background-position: center;
    position: relative;
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.destination-content {
    padding: clamp(12px, 2vw, 20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.destination-content h3 {
    font-size: clamp(0.8rem, 1.1vw, 0.95rem);
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-from {
    font-size: 0.7rem;
    color: var(--gray);
}

.price {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: 700;
    color: var(--dark);
}

.destination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
}

.destination-link:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.arrow {
    font-size: 1.2rem;
    line-height: 1;
    color: #fff;
}

/* ==========================================================================
   ALL LOCATIONS SECTION
   ========================================================================== */

.all-locations {
    padding: var(--section-padding) 0;
    background: white;
}

.all-locations h2 {
    text-align: center;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    color: var(--dark);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    margin-bottom: clamp(25px, 5vw, 50px);
}

.locations-grid-complete {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(12px, 2vw, 25px);
}

@media (max-width: 900px) {
    .locations-grid-complete {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .locations-grid-complete {
        grid-template-columns: 1fr;
    }
}

.location-item {
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    min-height: clamp(200px, 22vw, 280px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.location-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    transition: var(--transition);
}

.location-item:hover .location-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
}

.home-location-content {
    position: relative;
    z-index: 2;
    padding: clamp(15px, 2.5vw, 30px) clamp(12px, 2vw, 20px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.location-icon {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 10px;
}

.location-item h4 {
    font-size: clamp(1rem, 1.4vw, 1.3rem);
    color: white;
    margin-bottom: 8px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.location-item p {
    color: rgba(255,255,255,0.9);
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.location-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

@media (max-width: 550px) {
    .location-actions {
        flex-direction: column;
    }
}

.location-actions a {
    flex: 1;
    padding: clamp(8px, 1vw, 10px) 12px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: clamp(0.75rem, 0.9vw, 0.9rem);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.location-actions a:hover {
    background: var(--primary-dark);
}

.location-item.featured {
    border: 2px solid var(--primary);
}

.location-item.featured .location-overlay {
    background: linear-gradient(to bottom, rgba(255,145,77,0.3) 0%, rgba(255,145,77,0.7) 100%);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services-clean {
    padding: var(--section-padding) 0;
    background: white;
}

.services-clean h2 {
    text-align: center;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    color: var(--dark);
    margin-bottom: 15px;
}

.services-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(15px, 3vw, 40px);
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .services-split {
        grid-template-columns: 1fr;
    }
}

.service-block {
    padding: clamp(25px, 4vw, 50px);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    background: #fff;
}

.service-block.transfer {
    border: 3px solid var(--primary);
}

.service-block.storage {
    border: 3px solid var(--secondary);
}

.service-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.service-block.transfer .service-icon {
    background: rgba(255,145,77,0.1);
    color: var(--primary);
}

.service-block.storage .service-icon {
    background: rgba(0,74,173,0.1);
    color: var(--secondary);
}

.service-block h3 {
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    margin-bottom: 15px;
    color: #333;
}

.service-block p {
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    margin-bottom: 25px;
    color: #666;
}

.service-list {
    list-style: none;
    text-align: center;
    margin-bottom: 25px;
    padding: 0;
}

.service-list li {
    padding: 8px 0;
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.service-list li::before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
    font-size: 1.1rem;
}

.btn-service {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: clamp(0.85rem, 1vw, 1rem);
}

.service-block.transfer .btn-service {
    background: var(--primary);
    color: white;
}

.service-block.storage .btn-service {
    background: var(--secondary);
    color: white;
}

.btn-service:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ==========================================================================
   PROCESS TIMELINE
   ========================================================================== */

.process-timeline {
    padding: var(--section-padding) 0;
    background: white;
}

.process-timeline h2 {
    text-align: center;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    margin-bottom: clamp(25px, 5vw, 50px);
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 1rem;
}

@media (max-width: 700px) {
    .timeline {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 180px;
}

.step-icon {
    width: 55px;
    height: 55px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary);
    margin: 0 auto 15px;
}

.step-content h4 {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    margin-bottom: 5px;
}

.step-content p {
    color: var(--gray);
    font-size: clamp(0.8rem, 1vw, 0.95rem);
}

.timeline-connector {
    position: absolute;
    top: 27px;
    width: 100%;
    height: 3px;
    background: var(--primary);
    opacity: 0.3;
    z-index: 1;
}

@media (max-width: 700px) {
    .timeline-connector {
        display: none;
    }
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */

.pricing-modern {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.pricing-modern h2 {
    text-align: center;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    margin-bottom: 10px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(15px, 2.5vw, 30px);
    max-width: 900px;
    margin: clamp(25px, 5vw, 50px) auto;
    padding: 0 1rem;
}

@media (max-width: 700px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    padding: clamp(25px, 3.5vw, 40px) clamp(18px, 2.5vw, 30px);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    margin-bottom: 20px;
}

.price-tag {
    margin: 20px 0;
}

.currency {
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    vertical-align: top;
}

.amount {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--primary);
}

.period {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 5px;
}

.pricing-features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: clamp(0.85rem, 1vw, 1rem);
}

.check {
    color: #4caf50;
    font-weight: bold;
}

.btn-pricing {
    display: inline-block;
    width: 100%;
    padding: 10px 25px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--border-radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-pricing:hover,
.btn-pricing.featured {
    background: var(--primary);
    color: white;
}

.btn-pricing.featured:hover {
    background: var(--primary-dark);
}

/* ==========================================================================
   REVIEWS & BENEFITS SECTIONS
   ========================================================================== */

.reviews-modern {
    padding: var(--section-padding) 0;
    background: white;
}

.reviews-modern h2 {
    text-align: center;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    margin-bottom: clamp(25px, 5vw, 50px);
}

.reviews-widget {
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-section {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.benefits-section h2 {
    text-align: center;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    color: var(--dark);
    margin-bottom: clamp(25px, 5vw, 50px);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(15px, 2.5vw, 30px);
}

@media (max-width: 850px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}

.benefit-card {
    background: white;
    padding: clamp(25px, 3.5vw, 40px) clamp(18px, 2.5vw, 30px);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: clamp(1.05rem, 1.4vw, 1.3rem);
    color: var(--dark);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: clamp(0.85rem, 1vw, 1rem);
}

/* ==========================================================================
   INSTAGRAM & PARTNERS SECTIONS
   ========================================================================== */

.instagram-section {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.instagram-section h2 {
    text-align: center;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    color: var(--dark);
    margin-bottom: 15px;
}

.instagram-section p {
    text-align: center;
    color: var(--gray);
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    margin-bottom: 40px;
}

.partners-modern {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.partners-modern h2 {
    text-align: center;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    color: #333;
    margin-bottom: 10px;
}

.partners-subtitle {
    text-align: center;
    color: #666;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    margin-bottom: clamp(25px, 5vw, 50px);
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: clamp(12px, 2.5vw, 30px);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.partners-logos img {
    width: 100%;
    max-width: 130px;
    height: auto;
    margin: 0 auto;
    display: block;
    background: white;
    padding: 12px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.partners-logos img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 480px) {
    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   CTA FINAL SECTION
   ========================================================================== */

.cta-final {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
    text-align: center;
    color: white;
    min-height: clamp(35vh, 45vw, 55vh);
    display: flex;
    align-items: center;
}

.cta-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 2;
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    font-size: clamp(1.3rem, 2.5vw, 2.5rem);
    opacity: 0.8;
    animation: gentleFloat 12s infinite ease-in-out;
    pointer-events: none;
    z-index: 3;
    color: rgba(255, 255, 255, 0.8);
}

.icon-1 { top: 15%; left: 8%; animation-delay: 0s; }
.icon-2 { top: 25%; right: 12%; animation-delay: -2s; }
.icon-3 { top: 70%; left: 15%; animation-delay: -4s; }
.icon-4 { top: 35%; right: 8%; animation-delay: -6s; }
.icon-5 { top: 80%; right: 20%; animation-delay: -8s; }
.icon-6 { top: 60%; left: 85%; animation-delay: -10s; }

@media (max-width: 700px) {
    .floating-icon {
        opacity: 0.5;
    }
}

.cta-final-content {
    position: relative;
    z-index: 10;
    max-width: 550px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.cta-final h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: clamp(0.95rem, 1.3vw, 1.2rem);
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta-final {
    display: inline-block;
    padding: clamp(12px, 1.8vw, 18px) clamp(25px, 3.5vw, 40px);
    background: var(--primary);
    color: white !important;
    border-radius: var(--border-radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(0.95rem, 1.2vw, 1.2rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(255, 145, 77, 0.4);
}

.btn-cta-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 145, 77, 0.6);
    background: var(--primary-dark);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-text,
.booking-widget-modern,
.trust-indicators {
    animation: fadeInUp 0.8s ease-out;
}

.destination-card {
    animation: fadeInUp 0.6s ease-out both;
}

.destination-card:nth-child(1) { animation-delay: 0.1s; }
.destination-card:nth-child(2) { animation-delay: 0.2s; }
.destination-card:nth-child(3) { animation-delay: 0.3s; }
.destination-card:nth-child(4) { animation-delay: 0.4s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
