/*
 * FoodClick Landing Page Animations
 * Inspired by modern food delivery platforms
 */

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
}

/* Fade In Animation */
.fade-in {
    transform: translateY(30px);
}

.fade-in.animated {
    transform: translateY(0);
}

/* Slide In from Left */
.slide-in-left {
    transform: translateX(-50px);
}

.slide-in-left.animated {
    transform: translateX(0);
}

/* Slide In from Right */
.slide-in-right {
    transform: translateX(50px);
}

.slide-in-right.animated {
    transform: translateX(0);
}

/* Zoom In Animation */
.zoom-in {
    transform: scale(0.9);
}

.zoom-in.animated {
    transform: scale(1);
}


/* ============================================
   STATISTICS SECTION
   ============================================ */

.sec-statistics {
    background: linear-gradient(135deg, 
        #FF6839 0%, 
        #ff8c5a 25%, 
        #ffa575 50%, 
        #ff8c5a 75%, 
        #FF6839 100%);
    position: relative;
    overflow: hidden;
}

.sec-statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.sec-statistics .container {
    position: relative;
    z-index: 1;
}

.stats-title {
    color: #ffffff !important;
    font-size: 36px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stats-subtitle {
    color: #ffffff !important;
    font-size: 18px;
    opacity: 0.95;
}

.stat-box {
    padding: 40px 20px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-box:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.stat-icon {
    color: #FF6839;
    font-size: 50px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #FF6839;
    margin: 15px 0;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 16px;
    color: #FF6839;
    font-weight: 600;
    margin: 0;
}


/* ============================================
   PARTNERS SECTION - INFINITE SCROLL
   ============================================ */

.sec-partners {
    overflow: hidden;
}

.partners-slider {
    padding: 20px 0;
    white-space: nowrap;
    position: relative;
    height: 160px; /* increased height */
    display: flex;
    align-items: center;
}

.partners-track {
    display: inline-flex;
    animation: scroll-partners 30s linear infinite;
}

.partner-logo {
    display: inline-block;
    width: 200px;
    height: 120px;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 18px;
    border: 2px solid rgba(255,104,57,0.25);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12), inset 0 0 0 6px rgba(255,104,57,0.06);
    filter: grayscale(10%);
    opacity: 0.95;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 18px 45px rgba(0,0,0,0.20), 0 0 0 8px rgba(255,104,57,0.08);
    border-color: #FF6839;
}

.partner-logo img {
    max-width: 160px;
    max-height: 80px;
    object-fit: contain;
    filter: saturate(110%);
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Modern Swiper-based partners slider */
.partners-swiper {
    padding: 10px 10px 30px;
}

.partners-swiper .swiper-slide {
    display: flex;
    justify-content: center;
}

.partner-card {
    width: 220px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 18px;
    border: 2px solid rgba(255,104,57,0.25);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12), inset 0 0 0 6px rgba(255,104,57,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.partner-card img {
    max-width: 160px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: saturate(110%);
}

.partners-swiper .swiper-slide:hover .partner-card {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 18px 45px rgba(0,0,0,0.20), 0 0 0 8px rgba(255,104,57,0.08);
    border-color: #FF6839;
}

.partners-swiper .swiper-pagination-bullet {
    background: rgba(255,104,57,0.4);
    opacity: 1;
}

.partners-swiper .swiper-pagination-bullet-active {
    background: #FF6839;
}

/* Pause animation on hover */
.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

/* ============================================
   REVIEWS SECTION - SWIPER SLIDER
   ============================================ */

.reviews-swiper {
    padding: 10px 10px 40px;
}

.reviews-swiper .swiper-slide {
    height: auto;
}

.review-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #FF6839;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.review-product-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.review-product-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.review-product-details h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.review-restaurant-name {
    margin: 0 0 8px 0;
    font-size: 13px;
    color: #FF6839;
    font-weight: 500;
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars i {
    color: #FF6839;
    font-size: 14px;
}

.review-date {
    font-size: 13px;
    color: #999;
}

.review-attributes {
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-attributes h5 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}

.review-attribute-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-attribute-label {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.review-attribute-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-attribute-stars {
    display: flex;
    gap: 2px;
}

.review-attribute-stars i {
    color: #FF6839;
    font-size: 13px;
}

.review-attribute-score {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    min-width: 20px;
    text-align: right;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6839 0%, #ff8c5a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.review-user-details h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.review-user-details p {
    margin: 0;
    font-size: 12px;
    color: #888;
}

.reviews-swiper .swiper-pagination-bullet {
    background: rgba(255,104,57,0.4);
    opacity: 1;
}

.reviews-swiper .swiper-pagination-bullet-active {
    background: #FF6839;
}

.no-reviews-message {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
}

.no-reviews-message p {
    margin: 0;
    font-style: italic;
}


/* ============================================
   FOR BUSINESS SECTION
   ============================================ */

.sec-for-business {
    background: linear-gradient(135deg, #FF6839 0%, #ff8c5a 100%);
    position: relative;
    overflow: hidden;
}

.sec-for-business::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.sec-for-business::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.business-content {
    position: relative;
    z-index: 2;
}

.business-content .btn {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.business-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.business-content p {
    font-size: 16px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.9);
}

.business-benefits {
    list-style: none;
    padding: 0;
}

.business-benefits li {
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.business-benefits li i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #ffc139;
}

.business-img img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

/* Orange square card wrapper with rounded image */
.business-img-card{
    background: #FF6839;
    border-radius: 20px;
    padding: 20px;
    width: 420px;
    height: 420px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.business-img-card img{
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}


/* ============================================
   CITIES SECTION
   ============================================ */

.city-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #fff;
}

.city-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.city-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.city-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

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

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

.city-info {
    padding: 20px;
    text-align: center;
}

.city-info h4 {
    font-size: 22px;
    font-weight: 600;
    color: #262626;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.city-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.city-info i {
    color: #FF6839;
    margin-right: 5px;
}


/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-rating i {
    color: #ffc139;
    font-size: 18px;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 26px;
    color: #484848;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: #262626;
    margin: 0;
}

.author-info p {
    font-size: 13px;
    color: #888;
    margin: 0;
}


/* ============================================
   FAQ SECTION
   ============================================ */

.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h5 {
    font-size: 16px;
    font-weight: 600;
    color: #FF6839;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.faq-question i {
    color: #FF6839;
    transition: transform 0.3s ease;
}

.faq-question:not(.collapsed) i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 24px;
    color: #FF6839;
    margin: 0;
}


/* ============================================
   DOWNLOAD CTA SECTION
   ============================================ */

.sec-download-cta {
    background: linear-gradient(135deg, #FF6839 0%, #ff8c5a 100%);
    position: relative;
    overflow: hidden;
}

.sec-download-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.app-download-buttons a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-download-buttons a:hover {
    transform: scale(1.05);
}

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

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

.feature-item i {
    font-size: 20px;
    color: #ffc139;
}

.qr-code-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: pulse 3s ease-in-out infinite;
}

.qr-code-box img {
    width: 200px;
    height: 200px;
    display: block;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}


/* ============================================
   ENHANCED EXISTING SECTIONS
   ============================================ */

/* Banner Animation */
.banner-inner {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Image Float */
.banner-right img {
    animation: float 6s ease-in-out infinite;
}

/* How It Works Hover Effects */
.howitwork-block {
    transition: all 0.3s ease;
}

.howitwork-block:hover {
    transform: translateY(-10px);
}

/* Button Hover Effects */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 104, 57, 0.3);
}


/* ============================================
   ADVANCED ANIMATIONS - INSPIRED BY MODERN PLATFORMS
   ============================================ */

/* Parallax Layers */
.parallax-layer {
    transition: transform 0.3s ease-out;
    will-change: transform;
}

/* Staggered Fade In */
@keyframes staggerFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-animation {
    animation: staggerFadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.stagger-animation:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation:nth-child(5) { animation-delay: 0.5s; }
.stagger-animation:nth-child(6) { animation-delay: 0.6s; }

/* 3D Card Tilt Effect */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.card-3d:hover {
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
}

/* Magnetic Hover Effect */
.magnetic-hover {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.magnetic-hover:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Reveal Animation */
@keyframes revealFromBottom {
    from {
        opacity: 0;
        transform: translateY(60px);
        clip-path: inset(100% 0 0 0);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
    }
}

.reveal-animation {
    animation: revealFromBottom 1s ease-out forwards;
}

/* Bounce In Animation */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.bounce-in {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Slide and Fade */
@keyframes slideAndFade {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-fade-left {
    animation: slideAndFade 1s ease-out;
}

@keyframes slideAndFadeRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-fade-right {
    animation: slideAndFadeRight 1s ease-out;
}

/* Rotate In Animation */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

.rotate-in {
    animation: rotateIn 0.8s ease-out;
}

/* Glow Effect */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 104, 57, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 104, 57, 0.6);
    }
}

.glow-effect {
    animation: glow 2s ease-in-out infinite;
}

/* Wave Animation */
@keyframes wave {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(5deg);
    }
    75% {
        transform: translateY(10px) rotate(-5deg);
    }
}

.wave-animation {
    animation: wave 3s ease-in-out infinite;
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer-effect {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0) 100%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Typewriter Effect */
@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.typewriter {
    overflow: hidden;
    white-space: nowrap;
    animation: typewriter 3s steps(40) 1s forwards;
    width: 0;
}

/* Blob Animation */
@keyframes blob {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

.blob-animation {
    animation: blob 8s ease-in-out infinite;
}

/* Gradient Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-animation {
    background: linear-gradient(270deg, #FF6839, #ff8c5a, #ffc139, #FF6839);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

/* Flip Card Animation */
.flip-card {
    perspective: 1000px;
}

.flip-card-inner {
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Elastic Scale */
@keyframes elasticScale {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.elastic-scale {
    animation: elasticScale 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Shake Animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
    20%, 40%, 60%, 80% { transform: translateX(10px); }
}

.shake-animation:hover {
    animation: shake 0.5s;
}

/* Swing Animation */
@keyframes swing {
    20% { transform: rotate(15deg); }
    40% { transform: rotate(-10deg); }
    60% { transform: rotate(5deg); }
    80% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

.swing-animation:hover {
    animation: swing 1s ease;
    transform-origin: top center;
}

/* Heartbeat Animation */
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(1); }
}

.heartbeat-animation {
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* Neon Glow */
@keyframes neonGlow {
    0%, 100% {
        text-shadow: 0 0 10px #FF6839, 0 0 20px #FF6839, 0 0 30px #FF6839;
    }
    50% {
        text-shadow: 0 0 20px #ff8c5a, 0 0 30px #ff8c5a, 0 0 40px #ff8c5a;
    }
}

.neon-glow {
    animation: neonGlow 2s ease-in-out infinite;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6839, #ff8c5a);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Particle Effect */
@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #FF6839;
    border-radius: 50%;
    animation: particleFloat 10s linear infinite;
}

/* Ripple Effect */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 104, 57, 0.5);
    transform: translate(-50%, -50%);
    animation: ripple 1s ease-out;
}

/* Morph Animation */
@keyframes morph {
    0%, 100% {
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    }
    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }
    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }
}

.morph-animation {
    animation: morph 8s ease-in-out infinite;
}

/* Text Reveal */
@keyframes textReveal {
    from {
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    }
    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

.text-reveal {
    animation: textReveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* Image Zoom on Scroll */
.zoom-on-scroll {
    transition: transform 0.5s ease;
}

.zoom-on-scroll.zoomed {
    transform: scale(1.1);
}

/* Perspective Card */
.perspective-card {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    transition: transform 0.5s ease;
}

.perspective-card:hover {
    transform: perspective(1000px) rotateX(10deg) rotateY(10deg);
}


/* ============================================
   RESPONSIVE ANIMATIONS
   ============================================ */

@media (max-width: 768px) {
    .stat-number {
        font-size: 36px;
    }
    
    .business-content h2 {
        font-size: 28px;
    }
    
    .partners-track {
        animation-duration: 20s;
    }
    
    .qr-code-box img {
        width: 150px;
        height: 150px;
    }
    
    .app-features {
        justify-content: center;
    }
    
    /* Disable complex animations on mobile for performance */
    .card-3d:hover,
    .perspective-card:hover {
        transform: none;
    }
    
    .parallax-layer {
        transform: none !important;
    }
    
    /* Ensure buttons are clickable on mobile */
    .business-content .btn {
        z-index: 100 !important;
        position: relative;
        display: inline-block;
        touch-action: manipulation;
    }
    
    .sec-for-business::before,
    .sec-for-business::after {
        display: none;
    }
}


/* ============================================
   LOADING ANIMATION
   ============================================ */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #FF6839;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* ============================================
   SMOOTH SCROLLING
   ============================================ */

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #FF6839;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e65a2e;
}


/* ============================================
   ADVANCED HOW IT WORKS ICON ANIMATIONS
   ============================================ */

/* Premium Float Animation */
@keyframes premiumFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(-8px) rotate(-2deg);
    }
    75% {
        transform: translateY(-12px) rotate(1deg);
    }
}

/* Pulse Glow Effect */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0px 9px 35px rgba(255,104,57,0.17);
    }
    50% {
        box-shadow: 0px 15px 50px rgba(255,104,57,0.4), 0 0 30px rgba(255,104,57,0.3);
    }
}

/* Icon Bounce In */
@keyframes iconBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-45deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(5deg);
    }
    70% {
        transform: scale(0.95) rotate(-3deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Rotate and Scale on Hover */
@keyframes rotateScale {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.15);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Apply animations to How It Works icons */
.hw-icon {
    animation: iconBounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards,
               premiumFloat 4s ease-in-out infinite,
               pulseGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Stagger animation delays for each icon */
.howitwork-block1 .hw-icon {
    animation-delay: 0s, 0s, 0s;
}

.howitwork-block2 .hw-icon {
    animation-delay: 0.15s, 0.5s, 0.3s;
}

.howitwork-block3 .hw-icon {
    animation-delay: 0.3s, 1s, 0.6s;
}

.howitwork-block4 .hw-icon {
    animation-delay: 0.45s, 1.5s, 0.9s;
}

/* Shimmer overlay effect */
.hw-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 3s infinite;
    animation-delay: 1s;
}

/* Enhanced hover state */
.hw-icon:hover {
    animation: rotateScale 0.6s ease-in-out forwards;
    box-shadow: 0px 20px 60px rgba(255,104,57,0.5), 
                0 0 40px rgba(255,104,57,0.4),
                inset 0 0 20px rgba(255,255,255,0.2);
    transform: translateY(-20px) scale(1.2);
}

/* Icon image animation */
.hw-icon img {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.hw-icon:hover img {
    transform: scale(1.1) rotate(10deg);
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

/* Continuous subtle animation for icons */
@keyframes subtlePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hw-icon img {
    animation: subtlePulse 2s ease-in-out infinite;
}

/* Add perspective to parent container */
.howitwork-content {
    perspective: 1000px;
}


/* ============================================
   GET STARTED IMAGE ANIMATIONS
   ============================================ */

/* Floating Animation with Rotation */
@keyframes floatingRotate {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-20px) rotate(2deg) scale(1.02);
    }
    50% {
        transform: translateY(-10px) rotate(-2deg) scale(1.05);
    }
    75% {
        transform: translateY(-15px) rotate(1deg) scale(1.02);
    }
}

/* Breathing Glow Effect */
@keyframes breathingGlow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(255, 104, 57, 0.3),
                    0 0 60px rgba(255, 104, 57, 0.2);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 20px 60px rgba(255, 104, 57, 0.5),
                    0 0 80px rgba(255, 104, 57, 0.4),
                    0 0 100px rgba(255, 104, 57, 0.2);
        filter: brightness(1.1);
    }
}

/* Ripple Effect */
@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Sparkle Effect */
@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

/* Get Started Image Container */
.get-started-img {
    position: relative;
    display: inline-block;
    perspective: 1000px;
    margin-left: 80px;
}

/* Main Floating Image */
.get-started-img .floating-image {
    animation: floatingRotate 6s ease-in-out infinite,
               breathingGlow 4s ease-in-out infinite;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(255, 104, 57, 0.3),
                0 0 60px rgba(255, 104, 57, 0.2);
}

/* Ripple Effect Behind Image */
.get-started-img::before,
.get-started-img::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(255, 104, 57, 0.4);
    animation: ripple 3s ease-out infinite;
    z-index: 1;
}

.get-started-img::after {
    animation-delay: 1.5s;
    border-color: rgba(255, 104, 57, 0.3);
}

/* Sparkle Decorations */
.get-started-img .floating-image::before,
.get-started-img .floating-image::after {
    content: '✨';
    position: absolute;
    font-size: 30px;
    animation: sparkle 3s ease-in-out infinite;
    z-index: 3;
}

.get-started-img .floating-image::before {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.get-started-img .floating-image::after {
    bottom: 15%;
    left: 5%;
    animation-delay: 1.5s;
}

/* Hover Effect */
.get-started-img:hover .floating-image {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 25px 70px rgba(255, 104, 57, 0.5),
                0 0 100px rgba(255, 104, 57, 0.4),
                inset 0 0 30px rgba(255, 255, 255, 0.2);
    animation-play-state: paused;
}

/* Magnetic Cursor Effect */
.get-started-img {
    cursor: pointer;
}

/* 3D Tilt on Hover */
@keyframes tilt3D {
    0%, 100% {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }
    25% {
        transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
    }
    75% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(-5deg);
    }
}

.get-started-img:hover .floating-image {
    animation: tilt3D 2s ease-in-out infinite;
}

/* Pulse Border Animation */
@keyframes pulseBorder {
    0%, 100% {
        border-width: 3px;
        opacity: 0.6;
    }
    50% {
        border-width: 6px;
        opacity: 1;
    }
}

/* Additional Decorative Ring */
.get-started-right {
    position: relative;
}

.get-started-right::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 104, 57, 0.2);
    animation: rotateClockwise 30s linear infinite;
    z-index: 0;
}

@keyframes rotateClockwise {
    from {
        transform: translate(0, -50%) rotate(0deg);
    }
    to {
        transform: translate(0, -50%) rotate(360deg);
    }
}


/* ============================================
   QR CODE MODAL - Styles moved to style.css to avoid conflicts
   ============================================ */
/* All QR modal styles are now in css/style.css for better organization */
