/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(270deg, #5f0090, #0bc8f3, #f8461d, #ffcc00);
    background-size: 800% 800%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 8s 
ease-in-out infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.highlight {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #00d4ff;
}

.nav-logo i {
    font-size: 28px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00d4ff;
}

.nav-cta {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    padding: 10px 20px;
    border-radius: 25px;
    color: #000 !important;
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: 
        linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)),
        url('hero-bg.jpg') center/cover no-repeat,
        radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, rgba(10, 10, 10, 1) 70%);
    overflow: hidden;
}

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

/* Enhanced Responsive Animated Elements */
.animated-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    color: rgba(0, 212, 255, 0.3);
    font-size: 24px;
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
    z-index: 1;
    will-change: transform;
}

/* Desktop positioning (1200px+) */
.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    font-size: 28px;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    font-size: 24px;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    font-size: 26px;
}

.floating-icon:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
    font-size: 22px;
}

.floating-icon:nth-child(5) {
    top: 15%;
    right: 8%;
    animation-delay: 3s;
    font-size: 20px;
}

.floating-icon:nth-child(6) {
    bottom: 20%;
    right: 25%;
    animation-delay: 5s;
    font-size: 24px;
}

/* Enhanced floating animation */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-15px) rotate(45deg) scale(1.05);
        opacity: 0.4;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg) scale(1.1);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-10px) rotate(270deg) scale(1.05);
        opacity: 0.4;
    }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .floating-icon {
        font-size: 28px;
    }
    
    .floating-icon:nth-child(1) {
        top: 18%;
        left: 8%;
        font-size: 32px;
    }
    
    .floating-icon:nth-child(2) {
        top: 65%;
        right: 12%;
        font-size: 28px;
    }
    
    .floating-icon:nth-child(3) {
        bottom: 25%;
        left: 18%;
        font-size: 30px;
    }
    
    .floating-icon:nth-child(4) {
        top: 35%;
        right: 28%;
        font-size: 26px;
    }
    
    .floating-icon:nth-child(5) {
        top: 12%;
        right: 6%;
        font-size: 24px;
    }
    
    .floating-icon:nth-child(6) {
        bottom: 15%;
        right: 22%;
        font-size: 28px;
    }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .floating-icon {
        font-size: 24px;
    }
    
    .floating-icon:nth-child(1) {
        top: 22%;
        left: 12%;
        font-size: 26px;
    }
    
    .floating-icon:nth-child(2) {
        top: 58%;
        right: 18%;
        font-size: 24px;
    }
    
    .floating-icon:nth-child(3) {
        bottom: 32%;
        left: 22%;
        font-size: 25px;
    }
    
    .floating-icon:nth-child(4) {
        top: 42%;
        right: 32%;
        font-size: 23px;
    }
    
    .floating-icon:nth-child(5) {
        top: 18%;
        right: 10%;
        font-size: 22px;
    }
    
    .floating-icon:nth-child(6) {
        bottom: 22%;
        right: 28%;
        font-size: 24px;
    }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .floating-icon {
        font-size: 20px;
        animation-duration: 8s; /* Slower on tablets */
    }
    
    .floating-icon:nth-child(1) {
        top: 25%;
        left: 15%;
        font-size: 22px;
    }
    
    .floating-icon:nth-child(2) {
        top: 55%;
        right: 20%;
        font-size: 20px;
    }
    
    .floating-icon:nth-child(3) {
        bottom: 35%;
        left: 25%;
        font-size: 21px;
    }
    
    .floating-icon:nth-child(4) {
        top: 45%;
        right: 35%;
        font-size: 19px;
    }
    
    .floating-icon:nth-child(5) {
        top: 20%;
        right: 12%;
        font-size: 18px;
    }
    
    .floating-icon:nth-child(6) {
        bottom: 25%;
        right: 30%;
        font-size: 20px;
    }
    
    @keyframes float {
        0%, 100% { 
            transform: translateY(0px) rotate(0deg) scale(1);
            opacity: 0.25;
        }
        50% { 
            transform: translateY(-15px) rotate(180deg) scale(1.05);
            opacity: 0.4;
        }
    }
}

/* Tablet Portrait (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .floating-icon {
        font-size: 18px;
        animation-duration: 10s; /* Even slower on smaller tablets */
    }
    
    .floating-icon:nth-child(1) {
        top: 30%;
        left: 20%;
        font-size: 20px;
    }
    
    .floating-icon:nth-child(2) {
        top: 50%;
        right: 25%;
        font-size: 18px;
    }
    
    .floating-icon:nth-child(3) {
        bottom: 40%;
        left: 30%;
        font-size: 19px;
    }
    
    .floating-icon:nth-child(4) {
        top: 48%;
        right: 40%;
        font-size: 17px;
    }
    
    /* Hide some icons on smaller tablets to reduce clutter */
    .floating-icon:nth-child(5) {
        display: none;
    }
    
    .floating-icon:nth-child(6) {
        bottom: 30%;
        right: 35%;
        font-size: 18px;
    }
    
    @keyframes float {
        0%, 100% { 
            transform: translateY(0px) rotate(0deg) scale(1);
            opacity: 0.2;
        }
        50% { 
            transform: translateY(-12px) rotate(90deg) scale(1.03);
            opacity: 0.35;
        }
    }
}

/* Mobile (up to 575px) */
@media (max-width: 575px) {
    .floating-icon {
        font-size: 16px;
        animation-duration: 12s; /* Slowest on mobile */
    }
    
    .floating-icon:nth-child(1) {
        top: 35%;
        left: 25%;
        font-size: 18px;
    }
    
    .floating-icon:nth-child(2) {
        top: 45%;
        right: 30%;
        font-size: 16px;
    }
    
    .floating-icon:nth-child(3) {
        bottom: 45%;
        left: 35%;
        font-size: 17px;
    }
    
    /* Hide more icons on mobile to avoid overcrowding */
    .floating-icon:nth-child(4),
    .floating-icon:nth-child(5),
    .floating-icon:nth-child(6) {
        display: none;
    }
    
    @keyframes float {
        0%, 100% { 
            transform: translateY(0px) rotate(0deg) scale(1);
            opacity: 0.15;
        }
        50% { 
            transform: translateY(-8px) rotate(45deg) scale(1.02);
            opacity: 0.25;
        }
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .floating-icon {
        font-size: 14px;
        animation-duration: 15s; /* Very slow on small mobile */
    }
    
    .floating-icon:nth-child(1) {
        top: 40%;
        left: 30%;
        font-size: 16px;
    }
    
    .floating-icon:nth-child(2) {
        top: 50%;
        right: 35%;
        font-size: 14px;
    }
    
    .floating-icon:nth-child(3) {
        bottom: 50%;
        left: 40%;
        font-size: 15px;
    }
    
    @keyframes float {
        0%, 100% { 
            transform: translateY(0px) rotate(0deg) scale(1);
            opacity: 0.1;
        }
        50% { 
            transform: translateY(-5px) rotate(30deg) scale(1.01);
            opacity: 0.2;
        }
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .floating-icon {
        font-size: 14px;
        animation-duration: 20s; /* Very slow in landscape */
    }
    
    .floating-icon:nth-child(1) {
        top: 25%;
        left: 20%;
    }
    
    .floating-icon:nth-child(2) {
        top: 35%;
        right: 25%;
    }
    
    .floating-icon:nth-child(3) {
        bottom: 35%;
        left: 30%;
    }
    
    .floating-icon:nth-child(4),
    .floating-icon:nth-child(5),
    .floating-icon:nth-child(6) {
        display: none;
    }
    
    @keyframes float {
        0%, 100% { 
            transform: translateY(0px) rotate(0deg) scale(1);
            opacity: 0.08;
        }
        50% { 
            transform: translateY(-3px) rotate(15deg) scale(1.005);
            opacity: 0.15;
        }
    }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    .floating-icon {
        animation: none;
        opacity: 0.1;
    }
}

/* High contrast mode adjustments */
@media (prefers-contrast: high) {
    .floating-icon {
        color: rgba(0, 212, 255, 0.6);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #00d4ff;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #000;
    border: none;
    padding: 18px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.4);
}

.cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #00d4ff;
    padding: 16px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
}

.social-proof {
    text-align: center;
}

.social-proof p {
    color: #888;
    margin-bottom: 20px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.logo-placeholder {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    color: #666;
    font-size: 12px;
}

/* Problem Section */
.problem {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.05), rgba(10, 10, 10, 1));
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.2;
}

.pain-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pain-point {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #ff6b6b;
}

.pain-point i {
    font-size: 20px;
}

.restaurant-comparison {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

.empty-restaurant, .full-restaurant {
    text-align: center;
}

.empty-restaurant h4, .full-restaurant h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.restaurant-visual {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-height: 150px;
    justify-content: center;
}

.restaurant-visual.empty {
    border-color: #ff6b6b;
}

.restaurant-visual.full {
    border-color: #00d4ff;
}

.restaurant-visual i {
    font-size: 24px;
    opacity: 0.7;
}

.restaurant-visual.empty i {
    color: #ff6b6b;
}

.restaurant-visual.full i {
    color: #00d4ff;
}

.status {
    font-weight: 600;
    font-size: 14px;
}

.arrow {
    font-size: 24px;
    color: #00d4ff;
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background: rgba(0, 212, 255, 0.02);
}

.solution h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.5);
}

.feature i {
    font-size: 36px;
    color: #00d4ff;
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature p {
    color: #cccccc;
    font-size: 14px;
}

.dashboard-mockup {
    display: flex;
    justify-content: center;
}

.mockup-screen {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.mockup-header {
    background: rgba(0, 212, 255, 0.1);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.mockup-dots {
    display: flex;
    gap: 5px;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f94f1e;
}

.mockup-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 8px;
}

.metric-label {
    color: #cccccc;
    font-size: 14px;
}

.metric-value {
    color: #00d4ff;
    font-weight: 700;
    font-size: 18px;
}

/* Value Section */
.value {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.05), rgba(10, 10, 10, 1));
}

.value h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.pricing-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.traditional-cost, .ai-cost {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.ai-cost {
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(0, 212, 255, 0.05);
}

.traditional-cost h4, .ai-cost h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.cost {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.cost span {
    font-size: 1.2rem;
    color: #888;
}

.setup-cost {
    color: #888;
    margin-bottom: 20px;
    font-size: 14px;
}

.traditional-cost ul, .ai-cost ul {
    list-style: none;
    margin-bottom: 20px;
}

.traditional-cost li, .ai-cost li {
    padding: 8px 0;
    color: #cccccc;
}

.roi-highlight {
    background: rgba(0, 212, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    color: #00d4ff;
    font-weight: 600;
    font-style: italic;
}

.vs {
    font-size: 2rem;
    font-weight: 900;
    color: #ff3000;
    text-align: center;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.features h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 36px;
    color: #000;
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(10, 10, 10, 1));
}

.testimonials h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-content {
    text-align: center;
    margin-bottom: 40px;
}

.quote-icon {
    font-size: 48px;
    color: #00d4ff;
    margin-bottom: 20px;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.6;
}

.author-info h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info span {
    color: #888;
}

.results-metrics {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 15px;
}

.results-metrics .metric {
    text-align: center;
}

.results-metrics .before, .results-metrics .after {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.results-metrics .value {
    font-size: 1.5rem;
    font-weight: 700;
}

.results-metrics .arrow {
    font-size: 24px;
    color: #00d4ff;
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: rgba(0, 255, 0, 0.02);
}

.guarantee-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 64px;
    color: #00ff88;
    margin-bottom: 30px;
}

.guarantee h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.guarantee p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 255, 0.1));
    text-align: center;
}

.final-cta h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.final-cta p {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.large {
    padding: 20px 40px;
    font-size: 20px;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #00d4ff;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00d4ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .problem-content,
    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vs {
        order: 2;
    }
    
    .solution-features {
        grid-template-columns: 1fr;
    }
    
    .restaurant-comparison {
        flex-direction: column;
        gap: 20px;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .results-metrics {
        flex-direction: column;
        gap: 20px;
    }
    
    .results-metrics .arrow {
        transform: rotate(90deg);
    }
    
    .nav-links {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .final-cta h2 {
        font-size: 2.5rem !important;
    }
}



/* Lead Generation Section */
.lead-gen {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.lead-gen h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.lead-gen p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.lead-form {
    max-width: 600px;
    margin: 0 auto;
    background: #1e1e1e;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #00d4ff;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #333333;
    border-radius: 8px;
    background-color: #2a2a2a;
    color: #ffffff;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="email"]:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
    outline: none;
}

.form-group input::placeholder {
    color: #888888;
}

.lead-form .cta-primary {
    width: 100%;
    padding: 18px 30px;
    font-size: 20px;
    border-radius: 10px;
    margin-top: 20px;
    background: linear-gradient(90deg, #00d4ff, #008cff);
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lead-form .cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.4);
}

.lead-form .cta-primary i {
    margin-right: 10px;
}




/* Lead Generation Section */
.lead-gen {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.lead-gen h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.lead-gen p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.lead-form {
    max-width: 600px;
    margin: 0 auto;
    background: #1e1e1e;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #00d4ff;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #333333;
    border-radius: 8px;
    background-color: #2a2a2a;
    color: #ffffff;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="email"]:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
    outline: none;
}

.form-group input::placeholder {
    color: #888888;
}

.lead-form .cta-primary {
    width: 100%;
    padding: 18px 30px;
    font-size: 20px;
    border-radius: 10px;
    margin-top: 20px;
    background: linear-gradient(90deg, #00d4ff, #008cff);
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lead-form .cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.4);
}

.lead-form .cta-primary i {
    margin-right: 10px;
}




/* Demo Video Section */
.demo-video {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.demo-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.demo-video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.demo-text {
    max-width: 500px;
}

.demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 255, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.demo-badge i {
    color: #00d4ff;
}

.demo-video h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.demo-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.demo-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #e0e0e0;
}

.demo-feature i {
    color: #00d4ff;
    font-size: 1.1rem;
}

.demo-video-container {
    position: relative;
}

.video-placeholder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 212, 255, 0.4);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-placeholder:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    transition: all 0.3s ease;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.play-button i {
    font-size: 2rem;
    color: white;
    margin-left: 4px;
}

.video-info {
    text-align: center;
    color: white;
}

.video-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.video-info p {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 15px;
    max-width: 300px;
}

.video-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.video-testimonial {
    margin-top: 30px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 255, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -5px;
    font-size: 2rem;
    color: #00d4ff;
    opacity: 0.3;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 20px;
    padding-left: 20px;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.author-info strong {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info span {
    color: #888;
    font-size: 0.9rem;
}

.result-badge {
    background: #ff3000;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Enhanced Responsive Design for Demo Video Section */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .demo-video {
        padding: 120px 0;
    }
    
    .demo-video-content {
        gap: 80px;
    }
    
    .demo-video h2 {
        font-size: 3rem;
    }
    
    .demo-subtitle {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .demo-video {
        padding: 100px 0;
    }
    
    .demo-video-content {
        gap: 60px;
    }
    
    .demo-video h2 {
        font-size: 2.5rem;
    }
    
    .demo-subtitle {
        font-size: 1.1rem;
    }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .demo-video {
        padding: 80px 0;
    }
    
    .demo-video-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .demo-text {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .demo-video h2 {
        font-size: 2.3rem;
        line-height: 1.1;
    }
    
    .demo-subtitle {
        font-size: 1.05rem;
        margin-bottom: 35px;
    }
    
    .demo-stats {
        justify-content: center;
        gap: 30px;
        margin-bottom: 35px;
    }
    
    .stat-item {
        min-width: 140px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .demo-features {
        justify-content: center;
        gap: 25px;
    }
    
    .video-placeholder {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .testimonial-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Tablet Portrait (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .demo-video {
        padding: 70px 0;
    }
    
    .demo-video-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .demo-text {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .demo-video h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 18px;
    }
    
    .demo-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.5;
    }
    
    .demo-stats {
        justify-content: center;
        gap: 20px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 120px;
        flex: 1;
        max-width: 150px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .demo-features {
        justify-content: center;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .feature-item {
        font-size: 0.95rem;
    }
    
    .video-placeholder {
        margin-bottom: 30px;
    }
    
    .video-info h3 {
        font-size: 1.3rem;
    }
    
    .video-info p {
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .testimonial-author h4 {
        font-size: 1.1rem;
    }
    
    .testimonial-author span {
        font-size: 0.85rem;
    }
    
    .revenue-badge {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

/* Mobile (up to 575px) */
@media (max-width: 575px) {
    .demo-video {
        padding: 50px 0;
    }
    
    .demo-video .container {
        padding: 0 15px;
    }
    
    .demo-video-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .demo-text {
        max-width: 100%;
    }
    
    .demo-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    
    .demo-video h2 {
        font-size: 1.7rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .demo-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.4;
    }
    
    .demo-stats {
        justify-content: center;
        gap: 15px;
        margin-bottom: 25px;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        min-width: 100px;
        width: 100%;
        max-width: 200px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .demo-features {
        justify-content: center;
        gap: 15px;
        margin-bottom: 25px;
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        font-size: 0.9rem;
        text-align: center;
        width: 100%;
        max-width: 280px;
    }
    
    .feature-item i {
        font-size: 16px;
        margin-right: 8px;
    }
    
    .video-placeholder {
        margin-bottom: 25px;
        border-radius: 15px;
    }
    
    .video-info {
        padding: 20px;
    }
    
    .video-info h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .video-info p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .video-duration {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
        border-radius: 15px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 18px;
        line-height: 1.4;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .testimonial-author h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .testimonial-author span {
        font-size: 0.8rem;
    }
    
    .revenue-badge {
        font-size: 0.85rem;
        padding: 8px 14px;
        margin-top: 10px;
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .demo-video {
        padding: 40px 0;
    }
    
    .demo-video .container {
        padding: 0 10px;
    }
    
    .demo-video h2 {
        font-size: 1.5rem;
    }
    
    .demo-subtitle {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .feature-item {
        font-size: 0.85rem;
    }
    
    .video-info h3 {
        font-size: 1.1rem;
    }
    
    .video-info p {
        font-size: 0.8rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .demo-video {
        padding: 30px 0;
    }
    
    .demo-video-content {
        gap: 25px;
    }
    
    .demo-video h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .demo-subtitle {
        margin-bottom: 20px;
    }
    
    .demo-stats {
        margin-bottom: 20px;
    }
    
    .demo-features {
        margin-bottom: 20px;
    }
}
    }
    
    .video-thumbnail {
        height: 250px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .demo-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .demo-features {
        align-items: center;
    }
    
    .video-info p {
        font-size: 0.9rem;
    }
}


/* Video Reviews Carousel Section */
.video-reviews {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.video-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.video-reviews-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 255, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.4);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
}

.section-badge i {
    color: #00d4ff;
    font-size: 18px;
}

.video-reviews h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.video-carousel-container {
    position: relative;
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 40px;
    overflow: hidden;
}

.video-carousel {
    display: flex;
    gap: 25px;
    padding: 20px 0;
    scroll-behavior: smooth;
    overflow: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
    animation: slideRightToLeft 90s linear infinite;
    will-change: transform;
    width: fit-content;
}

.video-carousel:hover {
    animation-play-state: paused;
}

@keyframes slideRightToLeft {
    0% {
        transform: translateX(100px);
    }
    100% {
        transform: translateX(calc(-50% - 100px));
    }
}

.video-carousel::-webkit-scrollbar {
    display: none;
}

.video-reel {
    flex: 0 0 320px;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.6s ease;
    cursor: grab;
}

.video-reel:active {
    cursor: grabbing;
}

.video-reel.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reel-container {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    height: 660px;
    width: 320px;
}

.reel-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 212, 255, 0.4),
        0 0 50px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.reel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 255, 0.05));
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    z-index: 2;
}

.restaurant-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.restaurant-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    flex-shrink: 0;
}

.restaurant-details {
    min-width: 0;
    flex: 1;
}

.restaurant-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.restaurant-details span {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.growth-badge {
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    color: #000;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    animation: pulse 2s infinite;
    white-space: nowrap;
    flex-shrink: 0;
}

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

.reel-video {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.reel-container:hover .video-placeholder img {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    cursor: pointer;
}

.play-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
}

.play-btn i {
    margin-left: 2px;
}

.reel-content {
    padding: 20px;
    height: 185px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-text p {
    font-size: 0.95rem;
    font-style: italic;
    color: #e0e0e0;
    line-height: 1.4;
    margin-bottom: 15px;
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-text p::before {
    content: '"';
    position: absolute;
    left: -12px;
    top: -3px;
    font-size: 1.5rem;
    color: #00d4ff;
    opacity: 0.5;
}

.review-text p::after {
    content: '"';
    position: absolute;
    right: -8px;
    bottom: -8px;
    font-size: 1.5rem;
    color: #00d4ff;
    opacity: 0.5;
}

.review-stats {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #00d4ff;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stat-label {
    font-size: 0.75rem;
    color: #888;
    font-weight: 500;
    line-height: 1.2;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.9), rgba(255, 0, 255, 0.7));
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.5);
}

.prev-btn {
    margin-left: -25px;
}

.next-btn {
    margin-right: -25px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.indicator:hover {
    background: rgba(0, 212, 255, 0.6);
    transform: scale(1.1);
}

/* Call to Action */
.video-reviews-cta {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 255, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.video-reviews-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
}

.video-reviews-cta p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 30px;
}

.video-reviews-cta .cta-primary {
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.video-reviews-cta .cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .video-reel {
        flex: 0 0 300px;
    }
    
    .reel-container {
        width: 300px;
        height: 550px;
    }
    
    .reel-video {
        height: 350px;
    }
    
    .reel-content {
        height: 165px;
    }
}

@media (max-width: 768px) {
    .video-reviews {
        padding: 80px 0;
    }
    
    .video-reviews h2 {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .video-reel {
        flex: 0 0 280px;
    }
    
    .reel-container {
        width: 280px;
        height: 500px;
    }
    
    .reel-video {
        height: 320px;
    }
    
    .reel-content {
        height: 145px;
        padding: 15px;
    }
    
    .restaurant-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .restaurant-details h4 {
        font-size: 0.9rem;
    }
    
    .restaurant-details span {
        font-size: 0.75rem;
    }
    
    .growth-badge {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .review-text p {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }
    
    .stat-value {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .carousel-nav {
        display: none;
    }
    
    .video-reviews-cta {
        margin-top: 60px;
        padding: 30px 20px;
    }
    
    .video-reviews-cta h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .video-carousel-container {
        padding: 0 20px;
        overflow: hidden;
    }
    
    .video-reel {
        flex: 0 0 260px;
    }
    
    .reel-container {
        width: 260px;
        height: 460px;
    }
    
    .reel-header {
        padding: 12px 15px;
    }
    
    .restaurant-avatar {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .restaurant-details h4 {
        font-size: 0.85rem;
    }
    
    .restaurant-details span {
        font-size: 0.7rem;
    }
    
    .growth-badge {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    
    .reel-video {
        height: 280px;
    }
    
    .reel-content {
        padding: 15px;
        height: 135px;
    }
    
    .review-text p {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }
    
    .stat-value {
        font-size: 0.9rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

/* Animation for scroll reveal */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-reviews.animate {
    animation: slideInUp 0.8s ease-out;
}

/* Hover effects for better interactivity */
.video-reel:hover .growth-badge {
    animation-play-state: paused;
    transform: scale(1.1);
}

.video-reel:hover .restaurant-avatar {
    transform: rotate(5deg) scale(1.1);
}

/* Loading animation for video placeholders */
.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
    z-index: 1;
}

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


/* Unmissable Features Section */
.unmissable-features {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.unmissable-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 0, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.unmissable-features .container {
    position: relative;
    z-index: 2;
}

.unmissable-features h2 {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

/*.gradient-text {*/
/*    background: linear-gradient(135deg, #00d4ff, #ff00ff);*/
/*    -webkit-background-clip: text;*/
/*    -webkit-text-fill-color: transparent;*/
/*    background-clip: text;*/
/*    text-shadow: none;*/
/*}*/

.unmissable-content {
    max-width: 900px;
    margin: 0 auto;
}

.benefits-header {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    padding: 25px 40px;
    border-radius: 15px 15px 0 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    position: relative;
}

.benefits-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 15px 15px 0 0;
    pointer-events: none;
}

.benefits-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.benefits-list {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 0 0 15px 15px;
    padding: 0;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.benefit-item {
    padding: 30px 40px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #ff3000;
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.benefit-item:hover::before {
    transform: scaleY(1);
}

.benefit-item:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(255, 0, 255, 0.02));
    transform: translateX(10px);
    box-shadow: inset 0 0 20px rgba(0, 212, 255, 0.1);
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 12px;
    line-height: 1.3;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-title {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.benefit-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.6;
    font-weight: 400;
    transition: color 0.3s ease;
}

.benefit-item:hover .benefit-description {
    color: #e0e0e0;
}

/* Animation for scroll reveal */
.unmissable-features.animate {
    animation: slideInUp 0.8s ease-out;
}

.unmissable-features .benefit-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.unmissable-features .benefit-item:nth-child(1) { animation-delay: 0.1s; }
.unmissable-features .benefit-item:nth-child(2) { animation-delay: 0.2s; }
.unmissable-features .benefit-item:nth-child(3) { animation-delay: 0.3s; }
.unmissable-features .benefit-item:nth-child(4) { animation-delay: 0.4s; }
.unmissable-features .benefit-item:nth-child(5) { animation-delay: 0.5s; }

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

/* Responsive Design */
@media (max-width: 768px) {
    .unmissable-features {
        padding: 80px 0;
    }
    
    .unmissable-features h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .unmissable-content {
        margin: 0 20px;
    }
    
    .benefits-header {
        padding: 20px 25px;
        border-radius: 12px 12px 0 0;
    }
    
    .benefits-header h3 {
        font-size: 1.3rem;
    }
    
    .benefit-item {
        padding: 25px 25px;
    }
    
    .benefit-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .benefit-description {
        font-size: 1rem;
    }
    
    .benefit-item:hover {
        transform: translateX(5px);
    }
}

@media (max-width: 480px) {
    .unmissable-features h2 {
        font-size: 2rem;
    }
    
    .benefits-header {
        padding: 18px 20px;
    }
    
    .benefits-header h3 {
        font-size: 1.2rem;
    }
    
    .benefit-item {
        padding: 20px 20px;
    }
    
    .benefit-title {
        font-size: 1.1rem;
    }
    
    .benefit-description {
        font-size: 0.95rem;
    }
}

/* Enhanced visual effects */
.unmissable-features .benefits-header {
    position: relative;
    overflow: hidden;
}

.unmissable-features .benefits-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(0%) translateY(0%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Intersection Observer Animation */
.unmissable-features {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.unmissable-features.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Standardized Button Branding - Bluish Gradient */
/* Override all button styles to use consistent branding */

/* Primary Button Style - Bluish Gradient */
.cta-primary,
.nav-cta,
.lead-form .cta-primary,
.video-reviews-cta .cta-primary,
.play-button,
.play-btn,
.nav-btn,
button[type="submit"],
.btn-primary,
.cta-button {
    background: linear-gradient(135deg, #00d4ff, #0099cc) !important;
    color: #000000 !important;
    border: none !important;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    text-shadow: none;
}

.cta-primary:hover,
.nav-cta:hover,
.lead-form .cta-primary:hover,
.video-reviews-cta .cta-primary:hover,
.play-button:hover,
.play-btn:hover,
.nav-btn:hover,
button[type="submit"]:hover,
.btn-primary:hover,
.cta-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.5) !important;
    background: linear-gradient(135deg, #00e5ff, #00aadd) !important;
}

/* Secondary Button Style - Outlined Bluish */
.cta-secondary,
.btn-secondary {
    background: transparent !important;
    color: #00d4ff !important;
    border: 2px solid #00d4ff !important;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.cta-secondary:hover,
.btn-secondary:hover {
    background: linear-gradient(135deg, #00d4ff, #0099cc) !important;
    color: #000000 !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.4);
}

/* Special button sizes */
.cta-primary.large,
.btn-large {
    padding: 20px 40px !important;
    font-size: 18px !important;
}

.cta-primary.small,
.btn-small {
    padding: 12px 24px !important;
    font-size: 14px !important;
}

/* Navigation CTA specific adjustments */
.nav-cta {
    padding: 10px 20px !important;
    font-size: 14px !important;
    border-radius: 25px !important;
}

/* Play button specific adjustments */
.play-button,
.play-btn {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    font-size: 24px !important;
}

.play-btn i {
    margin-left: 3px;
}

/* Navigation buttons for carousel */
.nav-btn {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    font-size: 18px !important;
}

/* Form submit buttons */
.lead-form .cta-primary {
    width: 100%;
    padding: 18px 32px !important;
    font-size: 18px !important;
    margin-top: 20px;
}

/* Video reviews CTA button */
.video-reviews-cta .cta-primary {
    padding: 18px 40px !important;
    font-size: 18px !important;
}

/* Ensure icons in buttons maintain proper styling */
.cta-primary i,
.nav-cta i,
.play-button i,
.play-btn i,
.nav-btn i {
    color: inherit !important;
}

/* Mobile responsiveness for buttons */
@media (max-width: 768px) {
    .cta-primary,
    .cta-secondary {
        padding: 14px 28px !important;
        font-size: 15px !important;
    }
    
    .cta-primary.large {
        padding: 16px 32px !important;
        font-size: 16px !important;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .cta-primary,
    .hero-cta .cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-primary,
    .cta-secondary {
        padding: 12px 24px !important;
        font-size: 14px !important;
    }
    
    .play-button,
    .play-btn {
        width: 60px !important;
        height: 60px !important;
        font-size: 20px !important;
    }
    
    .nav-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 16px !important;
    }
}

/* Focus states for accessibility */
.cta-primary:focus,
.cta-secondary:focus,
.nav-cta:focus,
.play-button:focus,
.play-btn:focus,
.nav-btn:focus {
    outline: 3px solid rgba(0, 212, 255, 0.5);
    outline-offset: 2px;
}

/* Active states */
.cta-primary:active,
.nav-cta:active,
.play-button:active,
.play-btn:active,
.nav-btn:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4) !important;
}

/* Disabled state */
.cta-primary:disabled,
.cta-secondary:disabled,
.nav-cta:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.cta-primary:disabled:hover,
.cta-secondary:disabled:hover,
.nav-cta:disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2) !important;
}


/* Auto-Scrolling Logo Carousel */

.logo-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.logo-carousel {
    display: flex;
    align-items: center;
    animation: scroll-logos 30s linear infinite;
    width: calc(200% + 40px); /* Double width for seamless loop */
}

.logo-item {
    flex: 0 0 auto;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 60px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.logo-item:hover {
    transform: translateY(-3px);
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.logo-item img {
    max-width: 100%;
    max-height: 35px;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: brightness(1.1) contrast(1.2);
    transform: scale(1.05);
}

.logo-item .logo-placeholder {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo-item:hover .logo-placeholder {
    opacity: 1;
    color: #00d4ff;
}

/* Keyframe animation for smooth scrolling */
@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover for better UX */
.logo-carousel-container:hover .logo-carousel {
    animation-play-state: paused;
}

/* Responsive adjustments for logo carousel */
@media (max-width: 768px) {
    .logo-carousel-container {
        padding: 15px 0;
    }
    
    .logo-item {
        margin: 0 15px;
        min-width: 100px;
        height: 50px;
        padding: 8px 12px;
    }
    
    .logo-item img {
        max-height: 30px;
    }
    
    .logo-item .logo-placeholder {
        font-size: 12px;
    }
    
    .logo-carousel {
        animation-duration: 25s; /* Slightly faster on mobile */
    }
}

@media (max-width: 480px) {
    .logo-carousel-container {
        padding: 10px 0;
    }
    
    .logo-item {
        margin: 0 10px;
        min-width: 80px;
        height: 45px;
        padding: 6px 10px;
    }
    
    .logo-item img {
        max-height: 25px;
    }
    
    .logo-item .logo-placeholder {
        font-size: 11px;
    }
    
    .logo-carousel {
        animation-duration: 20s; /* Faster on small mobile */
    }
}

/* Enhanced social proof styling */
.social-proof {
    text-align: center;
    margin-top: 40px;
}

.social-proof p {
    color: #888;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 500;
}

/* Add subtle glow effect */
.logo-carousel-container::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 212, 255, 0.1) 25%, 
        rgba(0, 212, 255, 0.2) 50%, 
        rgba(0, 212, 255, 0.1) 75%, 
        transparent 100%);
    border-radius: 15px;
    z-index: -1;
    animation: glow-sweep 8s ease-in-out infinite;
}

@keyframes glow-sweep {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

/* Smooth fade edges for infinite scroll effect */
.logo-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to left, rgba(10, 10, 10, 0.8), transparent);
    pointer-events: none;
    z-index: 1;
}

.logo-carousel-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.8), transparent);
    pointer-events: none;
    z-index: 1;
}


/* Comprehensive Hero Section Responsive Design */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .hero {
        min-height: 100vh;
        padding: 120px 0 80px;
    }
    
    .hero-content {
        max-width: 1200px;
        padding: 0 40px;
    }
    
    .hero-badge {
        font-size: 15px;
        padding: 12px 24px;
        margin-bottom: 35px;
    }
    
    .hero-title {
        font-size: 4.5rem;
        margin-bottom: 25px;
        line-height: 1.05;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 45px;
        max-width: 900px;
        line-height: 1.5;
    }
    
    .hero-cta {
        gap: 25px;
        margin-bottom: 70px;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 20px 40px;
        font-size: 18px;
        min-width: 220px;
    }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .hero {
        min-height: 100vh;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        max-width: 1000px;
        padding: 0 30px;
    }
    
    .hero-badge {
        font-size: 14px;
        padding: 10px 20px;
        margin-bottom: 30px;
    }
    
    .hero-title {
        font-size: 4rem;
        margin-bottom: 20px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 40px;
        max-width: 800px;
        line-height: 1.5;
    }
    
    .hero-cta {
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 18px 35px;
        font-size: 18px;
        min-width: 200px;
    }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: 80px 0 40px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 40px;
        text-align: center;
    }
    
    .hero-badge {
        font-size: 13px;
        padding: 8px 16px;
        margin-bottom: 25px;
    }
    
    .hero-title {
        font-size: 3.2rem;
        margin-bottom: 18px;
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 35px;
        max-width: 700px;
        line-height: 1.4;
    }
    
    .hero-cta {
        gap: 15px;
        margin-bottom: 50px;
        flex-direction: row;
        justify-content: center;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 16px 30px;
        font-size: 16px;
        min-width: 180px;
    }
    
    .social-proof {
        margin-top: 30px;
    }
    
    .social-proof p {
        font-size: 15px;
        margin-bottom: 25px;
    }
}

/* Tablet Portrait (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .hero {
        min-height: 85vh;
        padding: 60px 0 30px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 30px;
        text-align: center;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 14px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 16px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
        max-width: 100%;
        line-height: 1.4;
        padding: 0 10px;
    }
    
    .hero-cta {
        gap: 12px;
        margin-bottom: 40px;
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 15px 28px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .social-proof {
        margin-top: 25px;
    }
    
    .social-proof p {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* Mobile (up to 575px) */
@media (max-width: 575px) {
    .hero {
        min-height: 80vh;
        padding: 50px 0 20px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 20px;
        text-align: center;
        margin-top: 100px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 18px;
        border-radius: 20px;
         margin-top: 50px !important;

    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 14px;
        line-height: 1.25;
        padding: 0 5px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        max-width: 100%;
        line-height: 1.4;
        padding: 0 5px;
    }
    
    .hero-cta {
        gap: 10px;
        margin-bottom: 30px;
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 14px 24px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
        border-radius: 25px;
    }
    
    .social-proof {
        margin-top: 20px;
    }
    
    .social-proof p {
        font-size: 13px;
        margin-bottom: 18px;
        padding: 0 10px;
    }
    
    .logo-carousel-container {
        padding: 12px 0;
    }
    
    .logo-item {
        margin: 0 12px;
        min-width: 90px;
        height: 45px;
        padding: 6px 10px;
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .hero {
        min-height: 75vh;
        padding: 40px 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 5px 10px;
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 1.9rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.35;
    }
    
    .hero-cta {
        gap: 8px;
        margin-bottom: 25px;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 12px 20px;
        font-size: 14px;
        max-width: 260px;
    }
    
    .social-proof p {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .logo-carousel-container {
        padding: 10px 0;
    }
    
    .logo-item {
        margin: 0 8px;
        min-width: 80px;
        height: 40px;
        padding: 5px 8px;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 20px 0 10px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-badge {
        margin-bottom: 10px;
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .hero-cta {
        gap: 8px;
        margin-bottom: 15px;
        flex-direction: row;
        justify-content: center;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 10px 18px;
        font-size: 13px;
        min-width: 140px;
    }
    
    .social-proof {
        margin-top: 10px;
    }
    
    .social-proof p {
        font-size: 11px;
        margin-bottom: 10px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-title {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .hero-subtitle {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
    .hero {
        background: 
            linear-gradient(rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.8)),
            url('hero-bg.jpg') center/cover no-repeat,
            radial-gradient(ellipse at center, rgba(0, 212, 255, 0.15) 0%, rgba(5, 5, 5, 1) 70%);
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .hero * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus management for better accessibility */
.hero-cta .cta-primary:focus,
.hero-cta .cta-secondary:focus {
    outline: 3px solid rgba(0, 212, 255, 0.5);
    outline-offset: 2px;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .cta-primary,
    .cta-secondary {
        min-height: 48px; /* Minimum touch target size */
        padding: 14px 24px;
    }
    
    .hero-badge {
        min-height: 36px;
    }
}



/* Promotional Top Bar */
.promo-top-bar {
    background: linear-gradient(135deg, #ff0080, #ff8c00);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 0, 128, 0.3);
    animation: promoGlow 2s ease-in-out infinite alternate;
}

.promo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.promo-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: promoBadgePulse 1.5s ease-in-out infinite;
}

.promo-badge i {
    animation: promoIconSpin 2s linear infinite;
}

.promo-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.promo-text strong {
    font-weight: 700;
}

.promo-countdown {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.promo-cta {
    background: #ffffff;
    color: #ff0080;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.promo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
    background: #f0f0f0;
}

.promo-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.promo-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Limited Time Offer Badge */
.limited-offer-badge {
    background: linear-gradient(135deg, #ff0080, #ff8c00, #ffff00);
    background-size: 200% 200%;
    animation: limitedOfferGradient 3s ease-in-out infinite;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(255, 0, 128, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.limited-offer-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff0080, #ff8c00, #ffff00, #ff0080);
    background-size: 400% 400%;
    animation: limitedOfferBorder 2s linear infinite;
    border-radius: 22px;
    z-index: -1;
}

.offer-badge-content {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.offer-badge-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    animation: offerIconPulse 1.5s ease-in-out infinite;
}

.offer-badge-text {
    flex: 1;
}

.offer-badge-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 4px;
}

.offer-badge-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.offer-badge-timer {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
    color: #ffffff;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: timerPulse 1s ease-in-out infinite;
}

.offer-badge-cta {
    background: #ffffff;
    color: #ff0080;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-badge-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.5);
    background: #f0f0f0;
}

/* Animations */
@keyframes promoGlow {
    0% { box-shadow: 0 2px 20px rgba(255, 0, 128, 0.3); }
    100% { box-shadow: 0 2px 30px rgba(255, 140, 0, 0.4); }
}

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

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

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

@keyframes limitedOfferBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

@keyframes timerPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Adjust navbar for top bar */
.navbar {
    margin-top: 60px;
}

/* Responsive Design for Promotional Elements */
@media (max-width: 768px) {
    .promo-top-bar {
        padding: 10px 0;
    }
    
    .promo-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .promo-text {
        font-size: 0.8rem;
    }
    
    .promo-countdown {
        margin-left: 0;
        margin-top: 4px;
        display: inline-block;
    }
    
    .limited-offer-badge {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .offer-badge-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .offer-badge-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .offer-badge-title {
        font-size: 1rem;
    }
    
    .offer-badge-subtitle {
        font-size: 0.8rem;
    }
    
    .offer-badge-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .navbar {
        margin-top: 80px;
    }
}

@media (max-width: 480px) {
    .promo-container {
        padding: 0 15px;
    }
    
    .promo-text {
        font-size: 0.75rem;
    }
    
    .promo-cta {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .limited-offer-badge {
        padding: 12px;
        border-radius: 15px;
    }
    
    .navbar {
        margin-top: 100px;
    }
}

/* Promotional Navigation Menu Item */
.nav-promo {
    background: linear-gradient(135deg, #ff0080, #ff8c00);
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: navPromoGlow 2s ease-in-out infinite alternate;
    margin: 0 10px;
}

.nav-promo::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff0080, #ff8c00, #ffff00, #ff0080);
    background-size: 400% 400%;
    animation: navPromoBorder 3s linear infinite;
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-promo:hover::before {
    opacity: 1;
}

.nav-promo:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 0, 128, 0.4);
    background: linear-gradient(135deg, #ff1a8a, #ff9500);
}

.nav-promo i {
    animation: navPromoIconFlame 1.5s ease-in-out infinite;
}

.nav-promo-badge {
    background: rgba(255, 255, 255, 0.3);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 4px;
    animation: navPromoBadgePulse 2s ease-in-out infinite;
}

/* Navigation Menu Responsive Adjustments */
@media (max-width: 1024px) {
    .nav-promo {
        font-size: 0.8rem;
        padding: 6px 12px;
        margin: 0 5px;
    }
    
    .nav-promo-badge {
        font-size: 0.65rem;
        padding: 1px 6px;
    }
}


 
/* Navigation Menu Animations */
@keyframes navPromoGlow {
    0% { box-shadow: 0 4px 15px rgba(255, 0, 128, 0.3); }
    100% { box-shadow: 0 4px 20px rgba(255, 140, 0, 0.4); }
}

@keyframes navPromoBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes navPromoIconFlame {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    75% { transform: scale(1.1) rotate(5deg); }
}

@keyframes navPromoBadgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(0.95); }
}

/* WhatsApp Live Chat Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2000;
    font-family: 'Inter', sans-serif;
}

.whatsapp-chat-window {
    width: 350px;
    height: 500px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 15px;
    animation: whatsappSlideUp 0.3s ease-out;
}

.whatsapp-chat-window.active {
    display: flex;
}

.whatsapp-header {
    background: #25D366;
    color: #ffffff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.whatsapp-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.whatsapp-info {
    flex: 1;
}

.whatsapp-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.whatsapp-status {
    font-size: 0.8rem;
    color: #ffffff;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

.whatsapp-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.whatsapp-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.whatsapp-messages {
    flex: 1;
    padding: 20px;
    background: #ECE5DD;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-message {
    max-width: 80%;
    animation: messageSlideIn 0.3s ease-out;
}

.whatsapp-message.received {
    align-self: flex-start;
}

.whatsapp-message.sent {
    align-self: flex-end;
}

.message-content {
    background: #ffffff;
    color: #333333;
    padding: 12px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.whatsapp-message.received .message-content {
    background: #ffffff;
    color: #333333;
    border-bottom-left-radius: 5px;
}

.whatsapp-message.sent .message-content {
    background: #DCF8C6;
    color: #2D5016;
    border-bottom-right-radius: 5px;
}

.message-time {
    font-size: 0.7rem;
    color: #555555;
    font-weight: 500;
    margin-top: 5px;
    text-align: right;
}

.whatsapp-message.received .message-time {
    text-align: left;
}

.whatsapp-input {
    padding: 15px 20px;
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #e0e0e0;
}

.whatsapp-input input {
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    padding: 10px 15px;
    font-size: 0.9rem;
    color: #333333;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s ease;
}

.whatsapp-input input:focus {
    border-color: #25D366;
}

.whatsapp-input input::placeholder {
    color: #888888;
    font-weight: 400;
}

.whatsapp-send {
    width: 40px;
    height: 40px;
    background: #25D366;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.whatsapp-send:hover {
    background: #1DA851;
    transform: scale(1.05);
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-button:hover {
    background: #1DA851;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #FF4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    animation: notificationBounce 0.5s ease-out;
}

/* WhatsApp Widget Animations */
@keyframes whatsappSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.9);
    }
}

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

@keyframes notificationBounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* WhatsApp Widget Responsive Design */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-chat-window {
        width: 320px;
        height: 450px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-chat-window {
        width: calc(100vw - 30px);
        height: 400px;
        right: 15px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .whatsapp-notification {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
}

/* WhatsApp Widget Integration with Promotional Elements */
.whatsapp-widget {
    /* Ensure widget stays above promotional elements */
    z-index: 2000;
}

/* Adjust positioning when promotional top bar is visible */
body:not(.promo-dismissed) .whatsapp-widget {
    /* Add slight adjustment if needed for promotional elements */
}

/* WhatsApp Widget Dark Theme Support */
@media (prefers-color-scheme: dark) {
    .whatsapp-messages {
        background: #0B141A;
    }
    
    .whatsapp-message.received .message-content {
        background: #202C33;
        color: #E9EDEF;
    }
    
    .whatsapp-input {
        background: #202C33;
        border-top-color: #3C4043;
    }
    
    .whatsapp-input input {
        background: #2A3942;
        border-color: #3C4043;
        color: #E9EDEF;
    }
    
    .whatsapp-input input::placeholder {
        color: #8696A0;
    }
}

