/* ==========================================================================
   Zingato Premium Design System & Stylesheet
   ========================================================================== */

/* 1. CSS Custom Properties / Variables */
:root {
    /* Color Palette - Vibrant, warm food startup hues (Swiggy/Zomato level) */
    --primary-hue: 12;
    --primary-sat: 100%;
    --primary-light: 60%;
    
    --primary: hsl(var(--primary-hue), var(--primary-sat), var(--primary-light)); /* #FF5B35 */
    --primary-hover: hsl(var(--primary-hue), var(--primary-sat), calc(var(--primary-light) - 8%));
    --primary-glow: hsla(var(--primary-hue), var(--primary-sat), var(--primary-light), 0.25);
    
    --primary-gradient: linear-gradient(135deg, 
        hsl(var(--primary-hue), var(--primary-sat), var(--primary-light)) 0%, 
        hsl(34, 100%, 55%) 100%
    ); /* Sunset-to-gold warm gradient */
    
    --secondary-gradient: linear-gradient(135deg, 
        hsl(227, 27%, 12%) 0%, 
        hsl(227, 27%, 6%) 100%
    ); /* Dark Night Charcoal */
    
    --neutral-dark: #12141D;      /* Soft charcoal for premium contrast */
    --neutral-light: #F7F8FC;     /* Bright, clean off-white background */
    --neutral-muted: #5C6073;     /* Muted body text */
    --neutral-border: rgba(0, 0, 0, 0.06);
    
    --success: #00C853;           /* WhatsApp Green */
    --success-hover: #00B24A;
    --success-glow: rgba(0, 200, 83, 0.2);

    /* UI Spacing & Radius Tokens */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-round: 100px;
    
    /* Layered Drop Shadows for realistic depth */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.01);
    --shadow-lg: 0 20px 40px rgba(255, 91, 53, 0.12), 0 4px 12px rgba(0, 0, 0, 0.02);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    
    --transition-fast: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-normal: 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 2. Global Resets & Base Styles */
body {
    font-family: var(--font-body);
    background-color: var(--neutral-light);
    color: var(--neutral-dark);
    overflow-x: hidden;
    position: relative;
    padding-bottom: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.025em;
    text-wrap: balance; /* Elegant headline wrapping */
    color: var(--neutral-dark);
}

p {
    line-height: 1.75;
    color: var(--neutral-muted);
    font-size: 1rem;
    text-wrap: pretty; /* Prevent orphan words in paragraphs */
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--neutral-light);
}
::-webkit-scrollbar-thumb {
    background: hsl(var(--primary-hue), 10%, 82%);
    border-radius: var(--radius-round);
    border: 3px solid var(--neutral-light);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Custom Text Selection Highlight */
::selection {
    background-color: rgba(255, 91, 53, 0.15);
    color: var(--primary);
}

/* Interactive Focus States */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

/* 3. Typography & UI Utilities */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

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

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-glass);
    border-radius: var(--radius-md);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.4s ease;
    will-change: transform, box-shadow;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 91, 53, 0.25);
    box-shadow: 0 20px 40px rgba(255, 91, 53, 0.08), 
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.glass-card-dark {
    background: rgba(18, 20, 29, 0.85);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    border-radius: var(--radius-md);
    color: #fff;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, box-shadow;
}

.glass-card-dark:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

/* Section Spacing */
.section-padding {
    padding: 120px 0;
}

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

/* Utility constraints */
.max-w-600 {
    max-width: 600px;
}
.max-w-800 {
    max-width: 800px;
}
.max-w-700 {
    max-width: 700px;
}

/* 4. Custom Button Enhancements */
.btn-primary-zingato {
    background: var(--primary-gradient);
    border: none;
    color: #fff !important;
    font-weight: 600;
    padding: 15px 32px;
    border-radius: var(--radius-round);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    will-change: transform, box-shadow;
}

.btn-primary-zingato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, hsl(34, 100%, 55%) 0%, hsl(var(--primary-hue), var(--primary-sat), var(--primary-light)) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-normal);
}

.btn-primary-zingato:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px var(--primary-glow), var(--shadow-sm);
}

.btn-primary-zingato:hover::before {
    opacity: 1;
}

.btn-primary-zingato:active {
    transform: translateY(-1px);
}

.btn-secondary-zingato {
    background: transparent;
    color: var(--neutral-dark) !important;
    border: 2px solid var(--neutral-dark);
    font-weight: 600;
    padding: 13px 32px;
    border-radius: var(--radius-round);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                background-color 0.3s ease, 
                color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    will-change: transform;
}

.btn-secondary-zingato:hover {
    background: var(--neutral-dark);
    color: #fff !important;
    transform: translateY(-3px);
}

.btn-secondary-zingato:active {
    transform: translateY(-1px);
}

.btn-white-zingato {
    background: #ffffff;
    color: var(--primary) !important;
    border: none;
    font-weight: 700;
    padding: 15px 36px;
    border-radius: var(--radius-round);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    will-change: transform, box-shadow;
}

.btn-white-zingato:hover {
    background: var(--neutral-light);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.btn-white-zingato:active {
    transform: translateY(-1px);
}

/* 5. Custom Layout Components */

/* Floating WhatsApp Button with pulsing outline */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--success);
    color: white !important;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 25px var(--success-glow);
    z-index: 999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                background-color 0.3s ease,
                box-shadow 0.3s ease;
    text-decoration: none;
    will-change: transform, box-shadow;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid var(--success);
    border-radius: var(--radius-round);
    opacity: 0;
    animation: waPulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: var(--success-hover);
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 12px 30px var(--success-glow);
}

@keyframes waPulse {
    0% { transform: scale(0.95); opacity: 0.6; }
    50% { opacity: 0; }
    100% { transform: scale(1.15); opacity: 0; }
}

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 100px; /* Shift higher on mobile to clear the sticky bottom CTA */
        right: 20px;
        width: 54px;
        height: 54px;
        font-size: 26px;
    }
}

/* Sticky Bottom App Download Banner */
.sticky-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 91, 53, 0.12);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.06);
    z-index: 990;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 14px 0;
}

.sticky-bottom-cta.visible {
    transform: translateY(0);
}

/* Exit Intent Custom Modal styling */
.exit-modal-content {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.exit-modal-badge {
    background: rgba(255, 91, 53, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius-round);
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 0.05em;
    text-uppercase: uppercase;
}

/* 6. Navigation Bar custom styles */
.navbar-zingato {
    transition: background-color 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
    padding: 24px 0;
    background: transparent;
    z-index: 1000;
    border-bottom: 1px solid transparent;
}

.navbar-zingato.scrolled,
body.page-scrolled .navbar-zingato {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.navbar-zingato .navbar-brand {
    font-size: 28px;
    font-weight: 800;
    color: var(--neutral-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-zingato .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--neutral-dark) !important;
    padding: 8px 18px !important;
    position: relative;
    transition: color var(--transition-fast);
}

/* Clean, modern hover indicators for nav links */
.navbar-zingato .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition-normal);
}

.navbar-zingato .nav-link:hover::after,
.navbar-zingato .nav-item.active .nav-link::after {
    transform: scaleX(1);
}

.navbar-zingato .nav-link:hover,
.navbar-zingato .nav-item.active .nav-link {
    color: var(--primary) !important;
}

/* Mobile responsive navigation toggler */
.navbar-toggler {
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color 0.3s ease;
}
.navbar-toggler:hover {
    background-color: rgba(255, 91, 53, 0.05);
}
.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--primary);
}

/* 7. Beautiful Page Components */

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 0 120px 0;
    background: radial-gradient(circle at 85% 20%, hsla(var(--primary-hue), 100%, 94%, 0.8) 0%, rgba(255,255,255,0) 60%),
                radial-gradient(circle at 15% 80%, hsla(34, 100%, 94%, 0.7) 0%, rgba(255,255,255,0) 60%);
    overflow: hidden;
}

@media (max-width: 992px) {
    .hero-section {
        padding: 140px 0 80px 0;
        text-align: center;
    }
    .hero-section .text-start {
        text-align: center !important;
    }
    .hero-section .d-flex {
        justify-content: center !important;
    }
    .hero-section .border-top {
        justify-content: center !important;
    }
}

.hero-phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-phone-mockup img {
    max-height: 500px;
    width: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 20px 50px rgba(255, 91, 53, 0.18);
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}

.hero-badge {
    background: rgba(255, 91, 53, 0.08);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 22px;
    border-radius: var(--radius-round);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 91, 53, 0.12);
}

/* Feature Cards Grid */
.feature-card {
    border-radius: var(--radius-md);
    padding: 45px 35px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.4s ease;
    will-change: transform, box-shadow;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 91, 53, 0.18);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 28px;
    background: rgba(255, 91, 53, 0.08);
    color: var(--primary);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(-3deg);
}

/* How It Works Steps */
.step-item {
    position: relative;
    text-align: center;
    padding: 0 15px;
}

.step-number {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-round);
    background: var(--primary-gradient);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-item:hover .step-number {
    transform: scale(1.1);
}

.step-line {
    position: absolute;
    top: 36px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(0, 0, 0, 0.04) 100%);
    z-index: 1;
}

@media (max-width: 768px) {
    .step-line {
        display: none;
    }
    .step-item {
        margin-bottom: 50px;
    }
}

/* App Download Banner CTA block */
.download-banner {
    border-radius: var(--radius-lg);
    background: var(--secondary-gradient);
    padding: 70px 85px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.download-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 91, 53, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

@media (max-width: 992px) {
    .download-banner {
        padding: 55px 35px;
        text-align: center !important;
    }
    .download-banner .text-start {
        text-align: center !important;
    }
    .download-banner .d-flex {
        justify-content: center !important;
    }
}

/* Timeline Layout for Founder Page */
.timeline-journey {
    position: relative;
    max-width: 800px;
    margin: 60px auto;
    padding: 0;
}

.timeline-journey::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(255, 91, 53, 0.05) 100%);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-block {
    padding: 15px 45px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-block::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    right: -9px;
    background-color: #fff;
    border: 4px solid var(--primary);
    top: 30px;
    border-radius: 50%;
    z-index: 1;
    transition: background-color 0.3s ease;
}

.timeline-block:hover::after {
    background-color: var(--primary);
}

.timeline-left {
    left: 0;
    text-align: right;
}

.timeline-right {
    left: 50%;
    text-align: left;
}

.timeline-right::after {
    left: -9px;
}

.timeline-block .glass-card {
    text-align: left;
}

@media screen and (max-width: 600px) {
    .timeline-journey::after {
        left: 20px;
    }
    .timeline-block {
        width: 100%;
        padding-left: 45px;
        padding-right: 15px;
        text-align: left;
    }
    .timeline-left::after, .timeline-right::after {
        left: 11px;
    }
    .timeline-right {
        left: 0%;
    }
}

/* City Grid */
.city-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    color: #fff;
    background: var(--secondary-gradient);
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.9) 100%);
    z-index: -1;
    transition: background var(--transition-normal);
}

.city-card:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.city-card:hover::before {
    background: linear-gradient(180deg, rgba(255, 91, 53, 0.15) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.city-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-round);
    letter-spacing: 0.05em;
    text-uppercase: uppercase;
}

.city-badge.coming-soon {
    background: #4A4D5A;
}

.border-dashed {
    border: 2px dashed rgba(0, 0, 0, 0.1) !important;
    background: transparent !important;
}

/* 8. Modern Input & Form Component styling */
.form-control, .form-select {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 13px 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    border-radius: var(--radius-sm) !important;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.01);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 91, 53, 0.1), inset 0 1px 2px rgba(0, 0, 0, 0.01);
    outline: none;
}

.form-control::placeholder {
    color: #9A9EAF;
}

.form-label {
    color: var(--neutral-dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

/* Accordion Custom Visuals */
.accordion-item {
    background: transparent;
    border: none;
    margin-bottom: 12px;
}

.accordion-button {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--neutral-dark);
    padding: 20px 24px;
    border-radius: var(--radius-sm) !important;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
    transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.accordion-button:not(.collapsed) {
    background-color: #ffffff;
    color: var(--primary);
    border-color: rgba(255, 91, 53, 0.15);
    box-shadow: 0 10px 25px rgba(255, 91, 53, 0.03);
}

.accordion-button::after {
    background-size: 1rem;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.accordion-collapse {
    border: none;
}

.accordion-body {
    padding: 20px 28px;
    background: #ffffff;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-top: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

/* 9. Modern Animation Declarations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 91, 53, 0.6); }
    70% { box-shadow: 0 0 0 18px rgba(255, 91, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 91, 53, 0); }
}

.pulse-glow-cta {
    animation: pulseGlow 2.5s infinite;
}

/* Page load fade in entry animations */
.fade-in-entry {
    opacity: 0;
    transform: translateY(24px);
    animation: slideUpFade 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 10. Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-delay: 0s !important;
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
    }
    .hero-phone-mockup img {
        animation: none !important;
    }
    .pulse-glow-cta {
        animation: none !important;
    }
    .whatsapp-float::before {
        animation: none !important;
    }
}
