* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    font-display: swap;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.navbar.hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo {
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    height: 50px;
    flex-shrink: 0;
}

.logo-img {
    height: 200px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    object-fit: contain;
    display: block;
    max-width: 500px;
    background: transparent;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(10, 116, 218, 0.3));
}

.logo:hover {
    transform: translateY(-1px);
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    }
    to {
        filter: drop-shadow(0 4px 15px rgba(10, 116, 218, 0.4));
    }
}

.logo-img {
    animation: logoGlow 3s ease-in-out infinite alternate;
}

.logo-fallback {
    font-size: 6rem;
    font-weight: 800;
    background: linear-gradient(45deg, #0a74da, #ff6b35, #28a745);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: logoGradient 3s ease-in-out infinite alternate, logoGlow 2s ease-in-out infinite alternate;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #0a74da;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #0a74da;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #0a74da;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.cart-button {
    background: none;
    border: none;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-button:hover {
    background: #f8f9fa;
    color: #0a74da;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(25%, -25%);
}

.hamburger.active:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active:nth-child(2) {
    opacity: 0;
}

.hamburger.active:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 140px !important;
        width: auto !important;
        max-width: 280px !important;
        min-width: 140px !important;
    }
    
    .logo-fallback {
        display: none !important;
    }
    
    .navbar {
        padding: 5px 0;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 10px 20px;
    }
}

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

.header {
    background: linear-gradient(135deg, #0a74da 0%, #0056b3 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.header::before {
    content: '';
    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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

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

.header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideInUp 1s ease-out;
}

.header p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    animation: slideInUp 1s ease-out 0.3s both;
}

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

.cta-button {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    animation: slideInUp 1s ease-out 0.6s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.benefits {
    padding: 100px 0;
    background: #f5f5f5;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #0a74da;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 116, 218, 0.1), rgba(255, 107, 53, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 3rem;
    color: #0a74da;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.2) rotate(5deg);
    color: #ff6b35;
}

.benefit-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    z-index: 2;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.about-us {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 1;
}

.about-description {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a74da;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-features li:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.about-features i {
    color: #28a745;
    margin-right: 15px;
    margin-top: 3px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-features strong {
    color: #333;
    font-weight: 600;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #0a74da;
    box-shadow: 0 10px 30px rgba(10, 116, 218, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a74da;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.about-cta {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    border: 2px solid #e9ecef;
}

.about-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


.pricing {
    padding: 100px 0;
    background: #f5f5f5;
    position: relative;
    z-index: 1;
}

.pricing-description {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: #0a74da;
}

.pricing-card.featured {
    border-color: #ff6b35;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.07);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.3);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 10px 50px;
    font-size: 0.85rem;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 15;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.pricing-card.featured:hover .popular-badge {
    background: linear-gradient(135deg, #ff7b45, #ff9a52);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transform: rotate(45deg) scale(1.02);
}


.pricing-header {
    padding: 40px 30px 30px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
}

.pricing-card.featured .pricing-header {
    background: linear-gradient(135deg, #fff5f0, #ffe6d9);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.plan-price {
    margin-bottom: 15px;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    outline: none !important;
}

.currency {
    font-size: 1.5rem;
    color: #0a74da;
    font-weight: 600;
    vertical-align: top;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0a74da;
    line-height: 1;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.pricing-card.featured .currency,
.pricing-card.featured .amount {
    color: #ff6b35;
}

.period {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.plan-description {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.pricing-features {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #28a745;
    margin-right: 15px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.pricing-footer {
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
    margin-top: auto;
}

.pricing-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #0a74da;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    width: 100%;
    border: none;
    cursor: pointer;
}

.pricing-btn.buy-now {
    background: #0a74da;
    box-shadow: 0 8px 25px rgba(10, 116, 218, 0.3);
}

.pricing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.pricing-btn:hover::before {
    left: 100%;
}

.pricing-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 116, 218, 0.3);
}

.featured-btn {
    background: #ff6b35 !important;
}

.featured-btn:hover {
    background: #e55a2b !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Asegurar que botones normales sean azules */
.pricing-btn.buy-now {
    background: #0a74da !important;
    box-shadow: 0 8px 25px rgba(10, 116, 218, 0.3) !important;
}

.pricing-btn.buy-now:hover {
    background: #0056b3 !important;
    box-shadow: 0 8px 25px rgba(10, 116, 218, 0.3) !important;
}

/* FORZAR botón del Plan Premium a ser AZUL */
button[data-plan="premium"] {
    background: #0a74da !important;
    box-shadow: 0 8px 25px rgba(10, 116, 218, 0.3) !important;
}

button[data-plan="premium"]:hover {
    background: #0056b3 !important;
    box-shadow: 0 8px 25px rgba(10, 116, 218, 0.3) !important;
}

/* FORZAR botón del Plan Básico a ser azul */
button[data-plan="basico"] {
    background: #0a74da !important;
    box-shadow: 0 8px 25px rgba(10, 116, 218, 0.3) !important;
}

button[data-plan="basico"]:hover {
    background: #0056b3 !important;
    box-shadow: 0 8px 25px rgba(10, 116, 218, 0.3) !important;
}

/* FORZAR botón del Plan Profesional a ser naranja (featured) */
button[data-plan="profesional"] {
    background: #ff6b35 !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3) !important;
}

button[data-plan="profesional"]:hover {
    background: #e55a2b !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3) !important;
}

/* FORZAR botón de Mantenimiento a ser azul */
button[data-plan="mantenimiento"] {
    background: #0a74da !important;
    box-shadow: 0 8px 25px rgba(10, 116, 218, 0.3) !important;
}

button[data-plan="mantenimiento"]:hover {
    background: #0056b3 !important;
    box-shadow: 0 8px 25px rgba(10, 116, 218, 0.3) !important;
}

/* MÁXIMA PRIORIDAD - PLAN PREMIUM AZUL */
.pricing-card button[data-plan="premium"] {
    background: #0a74da !important;
    background-color: #0a74da !important;
    box-shadow: 0 8px 25px rgba(10, 116, 218, 0.3) !important;
}

.pricing-card button[data-plan="premium"]:hover {
    background: #0056b3 !important;
    background-color: #0056b3 !important;
    box-shadow: 0 8px 25px rgba(10, 116, 218, 0.3) !important;
}

/* ULTRA ESPECÍFICO - PLAN PREMIUM AZUL */
div.pricing-card button.pricing-btn.buy-now[data-plan="premium"] {
    background: #0a74da !important;
    background-color: #0a74da !important;
    box-shadow: 0 8px 25px rgba(10, 116, 218, 0.3) !important;
}

div.pricing-card button.pricing-btn.buy-now[data-plan="premium"]:hover {
    background: #0056b3 !important;
    background-color: #0056b3 !important;
    box-shadow: 0 8px 25px rgba(10, 116, 218, 0.3) !important;
}

.maintenance-plan {
    margin-bottom: 60px;
    text-align: center;
}

.maintenance-content {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 50px 40px;
    border: 2px solid #e9ecef;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.maintenance-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: #28a745;
}

.maintenance-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0a74da, #ff6b35, #28a745);
}

.maintenance-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.maintenance-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.maintenance-details {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.maintenance-price {
    text-align: center;
}

.maintenance-price .currency {
    font-size: 1.5rem;
    color: #0a74da;
    font-weight: 600;
    vertical-align: top;
}

.maintenance-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0a74da;
    line-height: 1;
}

.maintenance-price .period {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.maintenance-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.maintenance-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #555;
    border-bottom: 1px solid #e9ecef;
}

.maintenance-features li:last-child {
    border-bottom: none;
}

.maintenance-features i {
    color: #28a745;
    margin-right: 15px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.maintenance-cta {
    text-align: center;
}

.maintenance-btn {
    display: inline-block;
    background: #0a74da;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.maintenance-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.maintenance-btn:hover::before {
    left: 100%;
}

.maintenance-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 116, 218, 0.3);
}

.pricing-guarantee {
    margin-top: 80px;
    text-align: center;
}

.guarantee-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
    border-left: 4px solid #28a745;
}

.guarantee-content i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 20px;
}

.guarantee-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.guarantee-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a74da 0%, #0056b3 100%);
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 50px 0 20px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.footer-brand p {
    color: #bdc3c7;
    font-size: 0.95rem;
    margin: 0;
    opacity: 1;
}

.footer-contact h4 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-contact p {
    margin: 8px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 1;
}

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

.footer-contact a:hover {
    color: #3498db;
    text-decoration: none;
}

.footer-legal {
    display: flex;
    justify-content: flex-end;
}

.legal-links h4 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.legal-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.legal-links-grid a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 4px 0;
}

.legal-links-grid a:hover {
    color: #3498db;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #95a5a6;
    opacity: 1;
}

.footer-compliance {
    font-size: 0.8rem !important;
    color: #7f8c8d !important;
}

.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-popup.active {
    opacity: 1;
    visibility: visible;
}

.success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.success-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7) translateY(50px);
    transition: all 0.3s ease;
}

.success-popup.active .success-content {
    transform: scale(1) translateY(0);
}

.success-icon {
    margin-bottom: 20px;
    animation: successBounce 0.6s ease;
}

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

.success-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.success-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.success-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.success-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

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

.success-btn span {
    position: relative;
    z-index: 1;
}

.success-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.success-btn:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .header {
        padding: 50px 0 30px;
        text-align: center;
    }
    
    .header h1 {
        font-size: 2.3rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .header p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
        display: block;
        margin: 0 auto;
        width: fit-content;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .benefits-grid,
    .about-content,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .about-cta {
        padding: 30px 20px;
    }
    
    .about-cta h3 {
        font-size: 1.6rem;
    }
    
    .maintenance-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .maintenance-content {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .maintenance-header h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .maintenance-price {
        font-size: 2.5rem;
        margin: 20px 0;
    }
    
    .maintenance-features {
        margin: 25px 0;
    }
    
    .maintenance-features li {
        font-size: 1rem;
        padding: 8px 0;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-15px) scale(1.02);
    }
    
    .popular-badge {
        top: 15px;
        right: -30px;
        padding: 8px 40px;
        font-size: 0.8rem;
        letter-spacing: 0.4px;
    }
    
    .final-cta h2 {
        font-size: 2.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 40px 0;
    }
    
    .header h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .header p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .logo-img {
        height: 130px !important;
        max-width: 260px !important;
        min-width: 130px !important;
    }
    
    .logo-fallback {
        display: none !important;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .benefits,
    .about-us,
    .pricing,
    .final-cta {
        padding: 60px 0;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .maintenance-content {
        padding: 25px 15px;
        margin: 0 5px;
    }
    
    .maintenance-header h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .maintenance-price {
        font-size: 2rem;
        margin: 15px 0;
    }
    
    .maintenance-features li {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    .maintenance-btn {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 250px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-features li {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .popular-badge {
        top: 12px;
        right: -25px;
        padding: 7px 35px;
        font-size: 0.75rem;
        letter-spacing: 0.3px;
    }
    
    .maintenance-content {
        padding: 30px 20px;
    }
    
    .maintenance-header h3 {
        font-size: 1.6rem;
    }
    
    .maintenance-price .amount {
        font-size: 2.8rem;
    }
    
    .pricing-grid {
        gap: 20px;
    }
    
    .pricing-card {
        margin: 0 10px;
    }
    
    .amount {
        font-size: 2.8rem;
    }
    
    .pricing-features {
        padding: 20px;
    }
    
    .pricing-footer {
        padding: 20px;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .page-navigation {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        max-height: 200px;
    }
    
    .page-preview {
        padding: 20px;
    }
    
    .preview-image {
        min-height: 200px;
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 30px 20px 15px;
    }
    
    .modal-header h2 {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 20px;
        margin: 0 10px;
    }
    
    .contact-modal-content {
        width: 95%;
        max-width: 400px;
        margin: 20px auto;
    }
    
    .contact-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: 15px;
        right: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-brand {
        align-items: center;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .legal-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .logo-img {
        height: 120px !important;
        width: auto !important;
        max-width: 240px !important;
        min-width: 120px !important;
        display: block !important;
        object-fit: contain !important;
    }
    
    .logo-fallback {
        display: none !important;
    }
    
    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    #lightboxImage {
        max-height: 70vh;
    }
    
    .lightbox-close {
        top: -40px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .lightbox-info h3 {
        font-size: 1.2rem;
    }
    
    .lightbox-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .logo-img {
        height: 110px !important;
        max-width: 220px !important;
        min-width: 110px !important;
    }
    
    .logo-fallback {
        display: none !important;
    }
}

@media (max-width: 400px) {
    .logo-img {
        height: 100px !important;
        max-width: 200px !important;
        min-width: 100px !important;
    }
    
    .logo-fallback {
        display: none !important;
    }
}


.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-modal.active {
    display: flex;
}

.contact-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease-out;
}

.contact-modal-header {
    padding: 40px 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px 20px 0 0;
}

.contact-modal-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.contact-modal-header p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff6b35;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.modal-close:hover {
    background: #e55a2b;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.modal-close:active {
    transform: scale(0.95);
}

.contact-form {
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0a74da;
    box-shadow: 0 0 0 3px rgba(10, 116, 218, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 20px;
    width: 20px;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.checkbox-label:hover input ~ .checkmark {
    border-color: #0a74da;
}

.checkbox-label input:checked ~ .checkmark {
    background-color: #0a74da;
    border-color: #0a74da;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #0a74da, #0056b3);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #0056b3, #003d82);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 116, 218, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: inline;
}

html {
    scroll-behavior: smooth;
}

.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
    }
    100% {
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    }
}

.cta-button {
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .success-content {
        padding: 30px 25px;
        margin: 20px;
    }
    
    .success-content h3 {
        font-size: 1.6rem;
    }
    
    .success-content p {
        font-size: 1rem;
    }
    
    .success-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .success-content {
        padding: 25px 20px;
        margin: 15px;
    }
    
    .success-content h3 {
        font-size: 1.4rem;
    }
    
    .success-content p {
        font-size: 0.95rem;
    }
    
    .success-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.reviews-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.google-rating {
    text-align: center;
    margin-bottom: 60px;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.rating-stars i {
    font-size: 2.5rem;
    color: #ffc107;
    text-shadow: 0 2px 4px rgba(255, 193, 7, 0.3);
}

.rating-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.rating-text {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
    width: 100%;
}

.reviews-track {
    display: flex;
    animation: scroll-reviews 20s linear infinite;
    gap: 30px;
    width: fit-content;
    will-change: transform;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 350px;
    max-width: 350px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #3498db;
    font-family: serif;
    line-height: 1;
    opacity: 0.3;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

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

.review-stars i {
    color: #ffc107;
    font-size: 1rem;
}

.google-logo {
    background: #4285f4;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.review-text {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 15px;
    font-style: italic;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
}

.review-cta {
    text-align: center;
}

.review-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.review-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
    color: white;
    text-decoration: none;
}

.review-button i {
    font-size: 1.3rem;
}

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

.reviews-carousel .reviews-track {
    animation: scroll-reviews 20s linear infinite;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.reviews-carousel.single-review .reviews-track {
    justify-content: center;
    animation: none;
}

.reviews-carousel.single-review .review-card {
    animation: subtle-float 6s ease-in-out infinite;
}

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

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .rating-stars i {
        font-size: 2rem;
    }
    
    .rating-number {
        font-size: 2rem;
    }
    
    .rating-text {
        font-size: 1.1rem;
    }
    
    .review-card {
        min-width: 300px;
        max-width: 300px;
        padding: 25px;
    }
    
    .reviews-track {
        gap: 20px;
    }
    
    .review-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 50px 0;
    }
    
    .reviews-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .rating-stars i {
        font-size: 1.8rem;
    }
    
    .rating-number {
        font-size: 1.8rem;
    }
    
    .rating-text {
        font-size: 1rem;
    }
    
    .review-card {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
    }
    
    .reviewer-name {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .review-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .legal-links-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .footer-contact p {
        font-size: 0.9rem;
    }
}

/* Shopping Cart Styles */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cart-modal.active {
    display: flex;
}

.cart-modal-content {
    position: relative;
    background: white;
    border-radius: 25px;
    max-width: 550px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(20px);
}

.cart-modal-header {
    padding: 35px 35px 25px;
    border-bottom: 2px solid #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 25px 25px 0 0;
}

.cart-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-modal-header h2 i {
    color: #0a74da;
}

.empty-cart {
    text-align: center;
    padding: 60px 30px;
}

.empty-cart i {
    font-size: 4rem;
    color: #e9ecef;
    margin-bottom: 20px;
}

.empty-cart p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.cart-items {
    padding: 20px 30px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
    margin: 10px 0;
    border-radius: 15px;
    padding: 20px 25px;
    transition: all 0.3s ease;
}

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

.cart-item-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.cart-item-info p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.cart-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a74da;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background: #f8d7da;
    transform: scale(1.1);
}

.cart-footer {
    padding: 25px 35px 35px;
    border-top: 2px solid #f8f9fa;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 0 0 25px 25px;
}

.cart-total {
    margin-bottom: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
}

.total-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    border-top: 2px solid #e9ecef;
    padding-top: 10px;
    margin-top: 10px;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #0a74da, #0056b3);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(10, 116, 218, 0.3);
    position: relative;
    overflow: hidden;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #0056b3, #003d82);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 116, 218, 0.3);
}

/* Checkout Modal Styles */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-modal.active {
    display: flex;
}

.checkout-modal-content {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 30px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    height: 90vh;
    overflow-y: auto;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
}

.checkout-header {
    padding: 40px 40px 30px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #0a74da 0%, #0056b3 100%);
    color: white;
    border-radius: 30px 30px 0 0;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.checkout-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.checkout-header h2 i {
    color: #ff6b35;
}

.checkout-body {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    padding: 30px;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.checkout-summary {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    height: fit-content;
}

.checkout-summary h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.checkout-item-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.checkout-item-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.checkout-item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a74da;
}

.checkout-total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.payment-methods {
    margin-top: 30px;
}

.payment-methods h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.payment-option {
    margin-bottom: 15px;
}

.payment-btn {
    width: 100%;
    background: white;
    border: 2px solid #e9ecef;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-btn:hover {
    border-color: #0a74da;
    background: #f8f9fa;
}

.payment-btn.apple-pay {
    background: #000;
    color: white;
    border-color: #000;
}

.payment-btn.apple-pay:hover {
    background: #333;
    border-color: #333;
}

.payment-btn.google-pay {
    background: #4285f4;
    color: white;
    border-color: #4285f4;
}

.payment-btn.google-pay:hover {
    background: #3367d6;
    border-color: #3367d6;
}

.payment-btn.paypal {
    background: #0070ba;
    color: white;
    border-color: #0070ba;
}

.payment-btn.paypal:hover {
    background: #005ea6;
    border-color: #005ea6;
}

.payment-btn.card {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.payment-btn.card:hover {
    background: #218838;
    border-color: #218838;
}

.card-form {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.submit-payment-btn {
    width: 100%;
    background: #0a74da;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.submit-payment-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 116, 218, 0.3);
}

/* Responsive Design for Cart and Checkout */
@media (max-width: 768px) {
    .cart-modal-content {
        max-width: 95%;
        margin: 10px;
    }
    
    .checkout-modal-content {
        max-width: 95%;
        margin: 10px;
        max-height: 90vh;
        border-radius: 20px;
        height: 90vh;
    }
    
    .checkout-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .checkout-header {
        padding: 25px 20px 20px;
        border-radius: 20px 20px 0 0;
    }
    
    .checkout-header h2 {
        font-size: 1.5rem;
    }
    
    .checkout-summary {
        padding: 20px;
    }
    
    .cart-modal-header,
    .checkout-header {
        padding: 20px;
    }
    
    .cart-items,
    .cart-footer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .cart-modal,
    .checkout-modal {
        padding: 10px;
    }
    
    .cart-modal-content,
    .checkout-modal-content {
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        max-height: 100vh;
    }
    
    .checkout-body {
        padding: 15px;
    }
    
    .checkout-summary {
        padding: 15px;
    }
}

/* Success Popup Styles */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-popup.active {
    opacity: 1;
    visibility: visible;
}

.success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.success-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transform: scale(0.7) translateY(50px);
    transition: all 0.3s ease;
}

.success-popup.active .success-content {
    transform: scale(1) translateY(0);
}

.success-icon {
    margin-bottom: 20px;
}

.success-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.success-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.success-btn {
    background: linear-gradient(135deg, #0a74da, #0056b3);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.success-btn:hover {
    background: linear-gradient(135deg, #0056b3, #003d82);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 116, 218, 0.3);
}

/* Discount Popup Styles */
.discount-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.discount-popup.active {
    display: flex;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.discount-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    animation: popupSlideIn 0.5s ease-out;
    border: 3px solid #ff6b35;
}

.discount-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f8f9fa;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.discount-close:hover {
    background: #e9ecef;
    transform: rotate(90deg);
}

.discount-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: bounce 2s infinite;
}

.discount-icon i {
    font-size: 2.5rem;
    color: white;
}

.discount-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.discount-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.discount-form {
    margin-bottom: 25px;
}

.discount-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.discount-input-group input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.discount-input-group input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.discount-btn {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.discount-btn:hover {
    background: linear-gradient(135deg, #e55a2b, #d1491f);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.discount-terms {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

.discount-countdown {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.countdown-text {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.countdown-timer {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    font-family: 'Courier New', monospace;
}

@keyframes popupSlideIn {
    from {
        transform: scale(0.5) translateY(-50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .discount-content {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .discount-input-group {
        flex-direction: column;
    }
    
    .discount-btn {
        width: 100%;
        justify-content: center;
    }
    
    .discount-content h3 {
        font-size: 1.6rem;
    }
}

/* Price Note Styles */
.price-note {
    font-size: 0.85rem;
    color: #28a745;
    font-weight: 600;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 5px 0 0 0 !important;
}

/* Stripe Elements Styles */
#stripe-payment-element {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    margin: 15px 0;
}

.StripeElement {
    background-color: white;
    height: 40px;
    padding: 10px 12px;
    border-radius: 4px;
    border: 1px solid #e9ecef;
    box-shadow: 0 1px 3px 0 #e6ebf1;
    transition: box-shadow 150ms ease;
}

.StripeElement--focus {
    box-shadow: 0 1px 3px 0 #cfd7df;
    border-color: #0a74da;
}

.StripeElement--invalid {
    border-color: #fa755a;
}

.StripeElement--webkit-autofill {
    background-color: #fefde5 !important;
}

/* Discount Section Styles */
.discount-section {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border: 2px solid #ffc107;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
}

.discount-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #856404;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.discount-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.discount-input-group input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #ffc107;
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.discount-input-group input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.apply-discount-btn {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.apply-discount-btn:hover {
    background: linear-gradient(135deg, #e55a2b, #d1491f);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.discount-message {
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.discount-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.discount-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Payment Confirmation Modal Styles */
.confirmation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.confirmation-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
}

.confirmation-modal-content {
    background: white;
    border-radius: 25px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    animation: slideInUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.confirmation-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 30px;
    border-radius: 25px 25px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.confirmation-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.confirmation-header h2 i {
    color: #ffc107;
    font-size: 2rem;
}

.confirmation-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

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

.confirmation-body {
    padding: 40px;
    text-align: center;
}

.confirmation-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
    animation: bounceIn 1s ease-out;
}

.confirmation-body h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.confirmation-body p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.confirmation-form {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.confirmation-form .form-group {
    margin-bottom: 20px;
}

.confirmation-form label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 1rem;
}

.confirmation-form input,
.confirmation-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.confirmation-form input:focus,
.confirmation-form textarea:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.confirmation-form textarea {
    resize: vertical;
    min-height: 100px;
}

.confirmation-actions {
    text-align: center;
    margin-top: 30px;
}

.confirmation-btn {
    background: #0a74da;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(10, 116, 218, 0.3);
}

.confirmation-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 116, 218, 0.4);
}

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

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

/* Checkout Form Scroll Improvements */
.checkout-form {
    max-height: 100%;
    overflow-y: auto;
    padding-right: 10px;
    -webkit-overflow-scrolling: touch;
}

.checkout-form::-webkit-scrollbar {
    width: 6px;
}

.checkout-form::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.checkout-form::-webkit-scrollbar-thumb {
    background: #0a74da;
    border-radius: 10px;
}

.checkout-form::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* Ensure payment methods section is visible */
.payment-methods {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

/* Payment Methods Grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.payment-method-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.payment-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.payment-method-card:hover::before {
    left: 100%;
}

.payment-method-card:hover {
    border-color: #0a74da;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 116, 218, 0.15);
}

.payment-method-card.active {
    border-color: #0a74da;
    background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
    box-shadow: 0 5px 20px rgba(10, 116, 218, 0.2);
}

.payment-method-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.payment-method-card[data-method="apple-pay"] .payment-method-icon {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
}

.payment-method-card[data-method="google-pay"] .payment-method-icon {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: white;
}

.payment-method-card[data-method="paypal"] .payment-method-icon {
    background: linear-gradient(135deg, #0070ba 0%, #003087 100%);
    color: white;
}

.payment-method-card[data-method="stripe"] .payment-method-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.payment-method-card[data-method="bizum"] .payment-method-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.payment-method-card[data-method="transfer"] .payment-method-icon {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.payment-method-info {
    flex: 1;
}

.payment-method-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.payment-method-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.payment-method-select {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    color: #666;
    transition: all 0.3s ease;
}

.payment-method-card.active .payment-method-select {
    background: #0a74da;
    color: white;
}

.payment-method-card:hover .payment-method-select {
    background: #0a74da;
    color: white;
    transform: scale(1.1);
}

/* Stripe Payment Styles */
.stripe-payment {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    border: 2px solid #667eea;
}

.stripe-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.stripe-branding i {
    font-size: 2rem;
    color: #ffffff;
}

.stripe-description {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.5;
}

.stripe-logos {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.stripe-logos i {
    font-size: 2rem;
    color: #ffffff;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.stripe-logos i:hover {
    opacity: 1;
}

.stripe-payment-section {
    margin-top: 25px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.stripe-payment-section h4 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stripe-payment-section h4 i {
    color: #667eea;
}

/* Demo Payment Form Styles */
.demo-payment-form {
    text-align: center;
}

.demo-payment-form h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.demo-payment-form h4 i {
    color: #667eea;
}

.demo-payment-form p {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.9rem;
    background: #fff3cd;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
}

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

.demo-form .form-group {
    margin-bottom: 20px;
}

.demo-form label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.demo-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    background: #f8f9fa;
    color: #666;
}

.demo-form small {
    display: block;
    color: #666;
    margin-top: 5px;
    font-size: 0.8rem;
}

.demo-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.demo-pay-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.demo-pay-btn:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Payment Method Forms */
.apple-pay-info,
.google-pay-info,
.paypal-info,
.bizum-info,
.transfer-info {
    text-align: center;
    padding: 20px;
}

.apple-pay-info h4,
.google-pay-info h4,
.paypal-info h4,
.bizum-info h4,
.transfer-info h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.apple-pay-info p,
.google-pay-info p,
.paypal-info p,
.bizum-info p,
.transfer-info p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.apple-pay-button,
.google-pay-button,
.paypal-button,
.bizum-button {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3);
}

.google-pay-button {
    background: linear-gradient(135deg, #4285f4, #34a853);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.paypal-button {
    background: linear-gradient(135deg, #0070ba, #003087);
    box-shadow: 0 5px 15px rgba(0, 112, 186, 0.3);
}

.bizum-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.apple-pay-button:hover,
.google-pay-button:hover,
.paypal-button:hover,
.bizum-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4);
}

.google-pay-button:hover {
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

.paypal-button:hover {
    box-shadow: 0 8px 25px rgba(0, 112, 186, 0.4);
}

.bizum-button:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.payment-unavailable {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.payment-unavailable h4 {
    color: #666;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-unavailable p {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.unavailable-note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.bizum-form {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.bizum-form .form-group {
    margin-bottom: 20px;
}

.bizum-form label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.bizum-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.bizum-form input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.transfer-details {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.transfer-item {
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.transfer-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.transfer-item strong {
    color: #333;
    font-weight: 600;
}

.transfer-note {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #1565c0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Mobile scroll improvements */
@media (max-width: 768px) {
    .checkout-body {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
    
    .checkout-form {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
    
    .payment-methods-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .payment-method-card {
        padding: 15px;
        gap: 12px;
    }
    
    .payment-method-icon {
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
    }
    
    .payment-method-info h4 {
        font-size: 1rem;
    }
    
    .payment-method-info p {
        font-size: 0.85rem;
    }
}
