/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(45deg, #4285F4, #0066CC);
    color: white;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(66, 133, 244, 0.4);
}

.btn-mega {
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    color: white;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

.btn-mega:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
    }
    100% {
        box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-text {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(45deg, #FFD700, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #FF6B35;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(255, 107, 53, 0.1);
    border-left-color: #FF6B35;
    color: #FF6B35;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 0.5rem;
        border-radius: 5px;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="1000" height="1000" fill="url(%23pattern)"/></svg>');
}

.hero-particles::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 4px;
    height: 4px;
    background: #FFD700;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.hero-particles::after {
    content: '';
    position: absolute;
    top: 60%;
    right: 15%;
    width: 6px;
    height: 6px;
    background: #FF6B35;
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: slideInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.feature-item i {
    font-size: 24px;
    color: #FFD700;
}

.feature-item span {
    font-weight: 600;
    font-size: 14px;
}

.hero-cta {
    text-align: center;
}

.cta-note {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

/* Section Titles */
.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #333, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background: #f8f9fa;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4285F4, #0066CC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advantage-icon i {
    font-size: 32px;
    color: white;
}

.advantage-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
}

/* Providers Section */
.providers {
    padding: 100px 0;
    background: white;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.provider-card {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.provider-logo {
    width: 120px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.provider-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.provider-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.provider-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.provider-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.stat {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.member-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.member-location {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #FFD700;
    font-size: 14px;
}

.testimonial-text {
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.win-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #333;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cta-feature i {
    font-size: 28px;
    color: #FFD700;
}

.cta-feature span {
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-guarantee {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #FFD700, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: #FFD700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: #FFD700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.6;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn i {
    font-size: 24px;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZED
======================================== */

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

.mobile-menu-close {
    display: none;
}

/* Desktop navigation styles */
@media (min-width: 769px) {
    .nav-menu {
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        backdrop-filter: none !important;
        border: none !important;
        transition: none !important;
        z-index: auto !important;
        overflow: visible !important;
        padding: 0 !important;
        box-shadow: none !important;
    }
    
    .nav-links {
        flex-direction: row !important;
        gap: 2rem !important;
        align-items: center !important;
    }
    
    .nav-item {
        border-bottom: none !important;
    }
    
    .nav-link {
        padding: 0.5rem 0 !important;
        background: none !important;
        color: #333 !important;
        border-radius: 0 !important;
        width: auto !important;
        max-width: none !important;
        font-weight: 500 !important;
    }
    
    .nav-link:hover {
        background: none !important;
        color: #FF6B35 !important;
        padding-left: 0 !important;
    }
    
    .dropdown-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        border-radius: 10px !important;
        padding: 0.5rem 0 !important;
        min-width: 200px !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-10px) !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    .dropdown:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1.5rem !important;
        color: #333 !important;
        font-size: 1rem !important;
        text-align: left !important;
        border-left: 3px solid transparent !important;
        border-bottom: none !important;
        background: transparent !important;
    }
    
    .dropdown-menu a:hover {
        background: rgba(255, 107, 53, 0.1) !important;
        border-left-color: #FF6B35 !important;
        color: #FF6B35 !important;
        padding-left: 1.5rem !important;
    }
    
    .nav-actions {
        margin-top: 0 !important;
        padding: 0 !important;
        border-top: none !important;
        width: auto !important;
    }
    
    .nav-actions .btn {
        padding: 0.75rem 1.5rem !important;
        min-width: auto !important;
        border-radius: 25px !important;
    }
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    /* Mobile Navigation - Compact Style */
    .navbar {
        padding: 8px 0;
        min-height: 55px;
        position: relative;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    }
    
    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    
    .nav-brand {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 6px;
        flex: 1;
    }
    
    .nav-brand .logo {
        width: 26px;
        height: 26px;
        filter: drop-shadow(0 1px 3px rgba(255, 215, 0, 0.3));
    }
    
    .brand-text {
        font-size: 0.95rem;
        font-weight: 600;
        background: linear-gradient(45deg, #FFD700, #FF6B35);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: 0.3px;
    }
    
    /* Mobile Menu Toggle - Compact */
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: linear-gradient(45deg, #FFD700, #FF6B35);
        border: none;
        font-size: 1rem;
        color: #1a1a1a;
        cursor: pointer;
        padding: 8px;
        border-radius: 6px;
        z-index: 1001;
        transition: all 0.3s ease;
        box-shadow: 0 1px 6px rgba(255, 215, 0, 0.3);
        width: 36px;
        height: 36px;
    }
    
    .mobile-menu-toggle:hover {
        background: linear-gradient(45deg, #FF6B35, #FFD700);
        transform: scale(1.03);
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    }
    
    .mobile-menu-toggle:active {
        transform: scale(0.97);
    }
    
    /* Hide desktop menu on mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 260px;
        height: 100vh;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
        backdrop-filter: blur(20px);
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        padding: 65px 0 15px;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.08);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
        align-items: stretch;
        padding: 0;
        margin: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 12px 18px;
        border-radius: 0;
        background: transparent;
        backdrop-filter: none;
        justify-content: flex-start;
        width: 100%;
        max-width: none;
        color: #333;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(255, 107, 53, 0.08);
        color: #FF6B35;
        padding-left: 22px;
    }
    
    .nav-link i {
        font-size: 0.7rem;
        margin-left: auto;
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .nav-link i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        background: rgba(255, 107, 53, 0.04);
        margin: 0;
        border-radius: 0;
        min-width: auto;
        width: 100%;
        max-width: none;
        transition: all 0.3s ease;
        border-top: 1px solid rgba(255, 107, 53, 0.08);
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 240px;
    }
    
    .dropdown-menu a {
        padding: 10px 35px;
        font-size: 0.8rem;
        text-align: left;
        border-left: none;
        border-bottom: 1px solid rgba(255, 107, 53, 0.08);
        color: #555;
        background: transparent;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu a:hover {
        background: rgba(255, 107, 53, 0.08);
        color: #FF6B35;
        padding-left: 38px;
    }
    
    .nav-actions {
        padding: 15px 18px;
        width: 100%;
        justify-content: center;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        margin-top: 15px;
    }
    
    .nav-actions .btn {
        font-size: 0.85rem;
        padding: 10px 24px;
        min-width: 160px;
        border-radius: 20px;
        font-weight: 600;
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Close button in mobile menu */
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #333;
        cursor: pointer;
        padding: 8px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-close:hover {
        background: rgba(255, 107, 53, 0.1);
        color: #FF6B35;
    }
    
    /* Hero Section Mobile - Compact */
    .hero {
        padding: 70px 0 40px;
        min-height: 60vh;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 25px;
        opacity: 0.85;
    }
    
    .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 30px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-feature {
        font-size: 0.7rem;
        padding: 8px 10px;
        border-radius: 12px;
        background: rgba(255, 215, 0, 0.12);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 215, 0, 0.25);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 60px;
        line-height: 1.2;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .hero-cta .btn {
        font-size: 0.85rem;
        padding: 12px 28px;
        min-width: 200px;
        text-align: center;
    }
    
    /* Sections Mobile - Compact */
    .advantages,
    .providers,
    .testimonials,
    .cta {
        padding: 35px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        text-align: center;
        margin-bottom: 20px;
        line-height: 1.25;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        text-align: center;
        margin-bottom: 30px;
        line-height: 1.5;
        opacity: 0.8;
    }
    
    /* Grid Layouts Mobile - Horizontal */
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        overflow-x: auto;
        display: flex;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }
    
    /* Cards Mobile - Ultra Compact */
    .advantage-card,
    .provider-card {
        padding: 15px 12px;
        text-align: center;
        margin: 0 auto;
        max-width: 180px;
        min-height: 140px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .testimonial-card {
        padding: 15px 12px;
        text-align: center;
        margin: 0;
        min-width: 280px;
        max-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .advantage-card .icon,
    .provider-card .icon {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .advantage-card h3,
    .provider-card h3 {
        font-size: 0.9rem;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    .advantage-card p,
    .provider-card p {
        font-size: 0.7rem;
        line-height: 1.3;
        opacity: 0.9;
    }
    
    /* CTA Section Mobile - Compact */
    .cta-content {
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
        line-height: 1.25;
    }
    
    .cta-subtitle {
        font-size: 0.85rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .cta-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 25px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-feature {
        font-size: 0.7rem;
        padding: 10px 8px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(8px);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 60px;
        line-height: 1.2;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        font-size: 0.85rem;
        padding: 12px 28px;
        min-width: 200px;
        text-align: center;
    }
    
    /* Footer Mobile - Compact */
    .footer {
        padding: 35px 0 15px;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-brand h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .footer-brand p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 15px;
        text-align: center;
    }
    
    .footer-col {
        flex: 1;
        min-width: 120px;
        max-width: 150px;
    }
    
    .footer-col h4 {
        font-size: 0.85rem;
        margin-bottom: 8px;
        color: #FFD700;
        font-weight: 600;
    }
    
    .footer-col ul {
        padding: 0;
        margin: 0;
    }
    
    .footer-col ul li {
        margin-bottom: 5px;
        text-align: center;
    }
    
    .footer-col ul li a {
        font-size: 0.7rem;
        line-height: 1.3;
        display: block;
        padding: 2px 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .footer-bottom {
        padding-top: 15px;
        font-size: 0.7rem;
    }
    
    /* Floating WhatsApp Mobile - Compact */
    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn span {
        display: none;
    }
    
    .whatsapp-btn {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    
    .whatsapp-btn i {
        font-size: 18px;
    }
}

/* Mobile (480px and below) - Ultra Compact */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    /* Navigation Ultra Mobile */
    .navbar {
        padding: 6px 0;
        min-height: 50px;
    }
    
    .nav-brand .logo {
        width: 24px;
        height: 24px;
    }
    
    .brand-text {
        font-size: 0.85rem;
    }
    
    .mobile-menu-toggle {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        padding: 6px;
    }
    
    .nav-menu {
        width: 240px;
        padding: 55px 0 12px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 10px 15px;
    }
    
    .nav-actions .btn {
        font-size: 0.8rem;
        padding: 8px 20px;
        min-width: 140px;
    }
    
    /* Hero Ultra Mobile */
    .hero {
        padding: 60px 0 35px;
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    
    .hero-features {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        max-width: 350px;
    }
    
    .hero-feature {
        font-size: 0.65rem;
        padding: 6px 4px;
        border-radius: 10px;
        min-height: 50px;
    }
    
    .hero-cta .btn {
        font-size: 0.8rem;
        padding: 10px 24px;
        min-width: 170px;
    }
    
    /* Sections Ultra Mobile */
    .advantages,
    .providers,
    .testimonials,
    .cta {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }
    
    .section-subtitle {
        font-size: 0.75rem;
        margin-bottom: 25px;
    }
    
    /* Grid Ultra Mobile - 3 Columns for Advantages */
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    /* Cards Ultra Mobile */
    .advantage-card {
        padding: 12px 8px;
        max-width: 120px;
        min-height: 120px;
    }
    
    .provider-card {
        padding: 15px 12px;
        max-width: 160px;
        min-height: 130px;
    }
    
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
    }
    
    .testimonial-card {
        padding: 12px 10px;
        min-width: 240px;
        max-width: 240px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .advantage-card .icon {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .provider-card .icon {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .advantage-card h3 {
        font-size: 0.8rem;
        margin-bottom: 6px;
        line-height: 1.1;
    }
    
    .provider-card h3 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .advantage-card p {
        font-size: 0.65rem;
        line-height: 1.2;
    }
    
    .provider-card p {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    /* CTA Ultra Mobile */
    .cta-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .cta-subtitle {
        font-size: 0.75rem;
        margin-bottom: 20px;
    }
    
    .cta-features {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        max-width: 350px;
    }
    
    .cta-feature {
        font-size: 0.65rem;
        padding: 8px 4px;
        min-height: 50px;
    }
    
    .cta-buttons .btn {
        font-size: 0.8rem;
        padding: 10px 24px;
        min-width: 170px;
    }
    
    /* Footer Ultra Mobile */
    .footer {
        padding: 30px 0 12px;
    }
    
    .footer-brand h3 {
        font-size: 1rem;
    }
    
    .footer-brand p {
        font-size: 0.7rem;
    }
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 10px;
        text-align: center;
    }
    
    .footer-col {
        flex: 1;
        min-width: 100px;
        max-width: 130px;
    }
    
    .footer-col h4 {
        font-size: 0.8rem;
        margin-bottom: 6px;
        color: #FFD700;
        font-weight: 600;
    }
    
    .footer-col ul li {
        margin-bottom: 4px;
        text-align: center;
    }
    
    .footer-col ul li a {
        font-size: 0.65rem;
        line-height: 1.2;
        display: block;
        padding: 1px 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .footer-bottom {
        font-size: 0.65rem;
        padding-top: 12px;
    }
    
    /* Floating WhatsApp Ultra Mobile */
    .floating-whatsapp {
        bottom: 12px;
        right: 12px;
    }
    
    .whatsapp-btn {
        width: 42px;
        height: 42px;
    }
    
    .whatsapp-btn i {
        font-size: 16px;
    }
}

/* Extra Small Mobile (360px and below) - Maximum Compact */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .navbar {
        padding: 5px 0;
        min-height: 45px;
    }
    
    .nav-brand .logo {
        width: 22px;
        height: 22px;
    }
    
    .brand-text {
        font-size: 0.8rem;
    }
    
    .mobile-menu-toggle {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
        padding: 5px;
    }
    
    .nav-menu {
        width: 220px;
        padding: 50px 0 10px;
    }
    
    .hero {
        padding: 50px 0 30px;
        min-height: 45vh;
    }
    
    .hero-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
        margin-bottom: 18px;
    }
    
    .hero-features {
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
        max-width: 320px;
    }
    
    .hero-feature {
        font-size: 0.6rem;
        padding: 4px 2px;
        border-radius: 8px;
        min-height: 45px;
    }
    
    .section-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 0.7rem;
        margin-bottom: 20px;
    }
    
    .advantages,
    .providers,
    .testimonials,
    .cta {
        padding: 25px 0;
    }
    
    .nav-actions .btn,
    .hero-cta .btn,
    .cta-buttons .btn {
        min-width: 150px;
        font-size: 0.75rem;
        padding: 8px 20px;
    }
    
    /* Grid Extra Small - 3 Columns for Maximum Space */
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .advantage-card {
        padding: 10px 6px;
        max-width: 100px;
        min-height: 100px;
    }
    
    .provider-card {
        padding: 12px 10px;
        max-width: 140px;
        min-height: 110px;
    }
    
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        scroll-snap-type: x mandatory;
        padding-bottom: 6px;
    }
    
    .testimonial-card {
        padding: 10px 8px;
        min-width: 200px;
        max-width: 200px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .advantage-card .icon {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .provider-card .icon {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .advantage-card h3 {
        font-size: 0.7rem;
        margin-bottom: 5px;
        line-height: 1;
    }
    
    .provider-card h3 {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .advantage-card p {
        font-size: 0.6rem;
        line-height: 1.1;
    }
    
    .provider-card p {
        font-size: 0.65rem;
        line-height: 1.2;
    }
    
    .cta-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .cta-subtitle {
        font-size: 0.7rem;
        margin-bottom: 18px;
    }
    
    .cta-features {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        max-width: 320px;
    }
    
    .cta-feature {
        font-size: 0.6rem;
        padding: 6px 2px;
        min-height: 45px;
    }
    
    .footer {
        padding: 25px 0 10px;
    }
    
    .footer-brand h3 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .footer-brand p {
        font-size: 0.65rem;
    }
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        text-align: center;
    }
    
    .footer-col {
        flex: 1;
        min-width: 80px;
        max-width: 100px;
    }
    
    .footer-col h4 {
        font-size: 0.75rem;
        margin-bottom: 5px;
        color: #FFD700;
        font-weight: 600;
    }
    
    .footer-col ul li {
        margin-bottom: 3px;
        text-align: center;
    }
    
    .footer-col ul li a {
        font-size: 0.6rem;
        line-height: 1.1;
        display: block;
        padding: 1px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .footer-bottom {
        font-size: 0.6rem;
        padding-top: 10px;
    }
    
    .floating-whatsapp {
        bottom: 10px;
        right: 10px;
    }
    
    .whatsapp-btn {
        width: 38px;
        height: 38px;
    }
    
    .whatsapp-btn i {
        font-size: 14px;
    }
}

/* ========================================
   MOBILE-SPECIFIC OPTIMIZATIONS
======================================== */

/* Button Mobile Optimizations */
@media (max-width: 768px) {
    .btn {
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
        text-align: center;
        line-height: 1.4;
        letter-spacing: 0.5px;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, #FFD700, #FFA500);
        border: 2px solid transparent;
        color: #1a1a1a;
        font-weight: 700;
    }
    
    .btn-primary:hover {
        background: linear-gradient(135deg, #FFA500, #FFD700);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    }
    
    .btn-secondary {
        background: linear-gradient(135deg, #FF6B35, #FF8A65);
        border: 2px solid transparent;
        color: white;
        font-weight: 700;
    }
    
    .btn-secondary:hover {
        background: linear-gradient(135deg, #FF8A65, #FF6B35);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    }
}

/* Mobile Touch Optimization */
@media (max-width: 768px) {
    /* Increase touch targets for mobile */
    .nav-link,
    .dropdown-menu a,
    .btn,
    .footer-col ul li a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improve tap responsiveness */
    .nav-link,
    .btn,
    .advantage-card,
    .provider-card,
    .testimonial-card {
        -webkit-tap-highlight-color: rgba(255, 215, 0, 0.3);
        -tap-highlight-color: rgba(255, 215, 0, 0.3);
    }
    
    /* Prevent zoom on input focus */
    input, select, textarea {
        font-size: 16px !important;
    }
}

/* Mobile Animation Adjustments */
@media (max-width: 768px) {
    /* Reduce particle complexity on mobile */
    .hero-particles {
        opacity: 0.3;
    }
    
    /* Simplify animations for better performance */
    .floating-element {
        animation-duration: 3s;
    }
    
    /* Optimize scroll-triggered animations */
    .fade-in-up {
        transform: translateY(30px);
    }
    
    .fade-in-up.visible {
        transform: translateY(0);
        transition: all 0.8s ease;
    }
}

/* Mobile Typography Fine-tuning */
@media (max-width: 768px) {
    /* Improve readability */
    body {
        line-height: 1.6;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Optimize text spacing */
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3;
        margin-bottom: 0.8em;
    }
    
    p {
        margin-bottom: 1.2em;
        line-height: 1.6;
    }
    
    /* Better link styling for touch */
    a {
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    a:hover, a:focus {
        text-decoration: underline;
        text-decoration-thickness: 2px;
        text-underline-offset: 3px;
    }
}

/* Mobile Layout Utilities - Compact */
@media (max-width: 768px) {
    .mobile-center {
        text-align: center !important;
    }
    
    .mobile-full-width {
        width: 100% !important;
    }
    
    .mobile-hidden {
        display: none !important;
    }
    
    .mobile-visible {
        display: block !important;
    }
    
    .mobile-flex-column {
        flex-direction: column !important;
    }
    
    .mobile-no-margin {
        margin: 0 !important;
    }
    
    .mobile-padding-xs {
        padding: 8px !important;
    }
    
    .mobile-padding-sm {
        padding: 12px !important;
    }
    
    .mobile-padding-md {
        padding: 18px !important;
    }
    
    /* Uniform spacing for all elements */
    * {
        box-sizing: border-box;
    }
    
    /* Consistent margins for all sections */
    section {
        margin: 0;
    }
    
    /* Uniform gaps - Horizontal Layout */
    .advantages-grid {
        gap: 10px !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .providers-grid {
        gap: 12px !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .testimonials-grid {
        gap: 12px !important;
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        padding-bottom: 10px !important;
        grid-template-columns: none !important;
    }
    
    /* Consistent card sizes - Compact */
    .advantage-card {
        width: 100% !important;
        max-width: 170px !important;
        margin: 0 auto !important;
        min-height: 130px !important;
    }
    
    .provider-card {
        width: 100% !important;
        max-width: 170px !important;
        margin: 0 auto !important;
        min-height: 140px !important;
    }
    
    .testimonial-card {
        width: auto !important;
        min-width: 270px !important;
        max-width: 270px !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        scroll-snap-align: start !important;
    }
    
    /* Uniform button sizing */
    .btn {
        border-radius: 18px !important;
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
    }
    
    /* Consistent text sizing across all cards - Horizontal Layout */
    .testimonial-card {
        padding: 15px 12px !important;
        min-width: 260px !important;
        max-width: 260px !important;
        flex-shrink: 0 !important;
    }
    
    .testimonial-card .stars {
        font-size: 1.1rem !important;
        margin-bottom: 10px !important;
    }
    
    .testimonial-card .quote {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
        margin-bottom: 12px !important;
    }
    
    .testimonial-card .author {
        font-size: 0.8rem !important;
        font-weight: 600 !important;
    }
}

/* Mobile Safe Areas (iPhone X+) */
@media (max-width: 768px) {
    .navbar {
        padding-top: max(15px, env(safe-area-inset-top));
    }
    
    .floating-whatsapp {
        bottom: max(20px, env(safe-area-inset-bottom));
        right: max(20px, env(safe-area-inset-right));
    }
    
    .footer {
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }
}

/* Performance optimizations */
.hero-background,
.hero-particles {
    will-change: transform;
}

.btn,
.advantage-card,
.provider-card,
.testimonial-card {
    will-change: transform;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
a:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: #000;
        color: #fff;
    }
    
    .highlight {
        background: #FFD700;
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;
        background-clip: initial;
        color: #000;
    }
} 

/* AI Chatbot Styles */
.ai-chatbot-widget {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    max-width: calc(100vw - 40px);
    height: 500px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-chatbot-widget.show {
    display: flex;
    transform: scale(1) translateY(0);
    opacity: 1;
}

.chatbot-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 20px 20px 0 0;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.chatbot-info {
    flex: 1;
}

.chatbot-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.status {
    font-size: 12px;
    opacity: 0.9;
}

.status.online::before {
    content: "●";
    color: #4CAF50;
    margin-right: 5px;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #f8f9fa;
}

.message {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.message.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.bot-message .message-avatar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.user-message .message-avatar {
    background: #FFD700;
    color: #333;
}

.message-content {
    max-width: 80%;
    word-wrap: break-word;
}

.bot-message .message-content {
    background: white;
    padding: 12px 15px;
    border-radius: 15px 15px 15px 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.user-message .message-content {
    background: #FFD700;
    padding: 12px 15px;
    border-radius: 15px 15px 5px 15px;
    color: #333;
}

.message-content p {
    margin: 0;
    line-height: 1.4;
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.quick-replies button {
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-replies button:hover {
    background: #FFD700;
    border-color: #FFD700;
    color: #333;
}

.chatbot-input {
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    align-items: center;
}

.chatbot-input input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.chatbot-input input:focus {
    border-color: #667eea;
}

.chatbot-input button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.chatbot-input button:hover {
    transform: scale(1.1);
}

.chatbot-suggestions {
    padding: 10px 20px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    text-align: center;
}

.chatbot-suggestions small {
    color: #666;
    font-size: 11px;
}

.chatbot-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    z-index: 9999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 1s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.6), 0 0 0 10px rgba(102, 126, 234, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-1px);
    }
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ai-chatbot-widget {
        width: calc(100vw - 20px);
        height: 70vh;
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .chatbot-toggle {
        bottom: 10px;
        right: 10px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .floating-whatsapp {
        bottom: 70px;
        right: 10px;
    }
}

/* Hide chatbot when mobile menu is open */
.mobile-menu-open .ai-chatbot-widget,
.mobile-menu-open .chatbot-toggle {
    display: none !important;
} 