@import url('https://fonts.googleapis.com/css2?family=Uncial+Antiqua&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

/* === RESET E BASE OTTIMIZZATA === */
html, body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

main {
    overflow-x: hidden;
}

/* === HEADER MIGLIORATO === */
header {
    background: linear-gradient(135deg, #5d0e41 0%, #8B0000 50%, #3a0628 100%);
    color: #FFD700;
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Uncial Antiqua', cursive;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    border-bottom: 3px solid #FFD700;
}

.header-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
    margin-top: 10px;
    font-family: 'Roboto', sans-serif;
    opacity: 0.9;
}

/* === NAVIGATION CONVERSION-FOCUSED === */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 5%;
    background: linear-gradient(90deg, #3a0628, #5d0e41);
    border-bottom: 2px solid #FFD700;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

nav ul li a {
    text-decoration: none;
    color: #FFD700;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 5px;
}

nav ul li a:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

/* === HERO SECTION OTTIMIZZATA === */
.section1 {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    background: 
        linear-gradient(rgba(93, 14, 65, 0.8), rgba(139, 0, 0, 0.8)),
        url('/images/CartomanteAdelaide.webp') no-repeat center center/cover; aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    color: white;
    text-align: center;
}

.text-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.trust-badge {
    background: rgba(255,255,255,0.15);
    padding: 12px 25px;
    border-radius: 25px;
    border: 1px solid #FFD700;
    font-size: 16px;
    font-weight: 600;
}

.trust-badge i {
    margin-right: 8px;
    color: #FFD700;
}

/* === CALL-TO-ACTION PRINCIPALI MIGLIORATI === */
.phone-number {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(93,14,65,0.9) 100%);
    padding: 20px 40px;
    border-radius: 15px;
    border: 3px solid #FFD700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.phone-number:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255,215,0,0.3);
}

.phone-number a {
    color: #FFD700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.offer {
    background: linear-gradient(135deg, #8B0000, #ff0000);
    padding: 25px 35px;
    border-radius: 15px;
    border: 3px solid #FFD700;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    animation: gentle-pulse 2s infinite;
    box-shadow: 0 8px 25px rgba(139,0,0,0.4);
    max-width: 400px;
}

.offer a {
    color: #FFD700;
    text-decoration: none;
    display: block;
}

.offer-main {
    display: block;
    font-size: 1.2em;
}

.offer-duration {
    display: block;
    font-size: 0.9em;
    margin: 5px 0;
}

.offer-price {
    display: block;
    font-size: 1.1em;
    background: rgba(0,0,0,0.3);
    padding: 5px;
    border-radius: 8px;
}

@keyframes gentle-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(139,0,0,0.4); }
    50% { transform: scale(1.03); box-shadow: 0 12px 35px rgba(139,0,0,0.6); }
}

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

.cta-primary, .cta-secondary {
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-primary {
    background: #FFD700;
    color: #5d0e41;
    border: 2px solid #FFD700;
}

.cta-secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.cta-primary:hover, .cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,215,0,0.4);
}

/* === SEZIONI TRUST E SERVIZI === */
.trust-section {
    background: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.trust-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.trust-item i {
    font-size: 3rem;
    color: #5d0e41;
    margin-bottom: 15px;
}

.services-section {
    padding: 60px 20px;
    background: white;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.service-card {
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border: 2px solid #5d0e41;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(93,14,65,0.2);
}

.service-card i {
    font-size: 3rem;
    color: #5d0e41;
    margin-bottom: 20px;
}

/* === SEZIONI ESISTENTI AGGIORNATE === */
.section2 {
    background: linear-gradient(135deg, #0077b6, #0096c7);
    text-align: center;
    padding: 60px 20px;
    color: white;
}

.section2 h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 30px;
}

.call-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #FFD700, #ffed4e);
    color: #5d0e41;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 800;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid #fff;
    box-shadow: 0 6px 20px rgba(255,215,0,0.4);
    transition: all 0.3s ease;
}

.call-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,215,0,0.6);
}

.section3 {
    background: linear-gradient(135deg, #004080, #0056b3);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.pricing-highlight {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    margin: 30px auto;
    max-width: 400px;
    border: 2px solid #FFD700;
}

.offer-badge {
    background: #FFD700;
    color: #5d0e41;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
}

.highlight-offer .price {
    font-size: 3rem;
    font-weight: 900;
    color: #FFD700;
    margin: 10px 0;
}

.standard-pricing {
    margin: 30px 0;
}

.price-standard {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    margin: 10px 0;
}

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

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    font-size: 2.5rem;
}

.call-actions {
    margin-top: 40px;
}

.call-button-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #FFD700;
    color: #5d0e41;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.call-note {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.9;
}

/* === SEZIONE 6 AGGIORNATA === */
.section6 {
    background: linear-gradient(135deg, #6c757d, #495057);
    text-align: center;
    padding: 60px 20px;
    color: white;
}

.number-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 40px auto;
}

.number-option {
    background: rgba(255,255,255,0.1);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid #dee2e6;
}

.alt-phone-number {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    text-decoration: none;
    display: block;
    margin: 15px 0;
}

.tariff-info p {
    margin: 5px 0;
    font-size: 14px;
}

/* === SEZIONE 4 AGGIORNATA === */
.section4 {
    background: linear-gradient(135deg, #f4e1d2, #e8d5c4);
    text-align: center;
    padding: 60px 20px;
}

.whatsapp-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    background: rgba(37, 211, 102, 0.1);
    padding: 20px 30px;
    border-radius: 15px;
    border: 2px solid #25D366;
}

.whatsapp-icon {
    font-size: 3rem;
    color: #25D366;
}

.whatsapp-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #25D366;
}

.whatsapp-benefits {
    text-align: left;
    max-width: 400px;
}

.whatsapp-benefits p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-benefits i {
    color: #25D366;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background: #1da851;
    transform: translateY(-2px);
}

/* === SEZIONE 5 AGGIORNATA === */
.section5 {
    background: linear-gradient(135deg, #002147, #003366);
    text-align: center;
    padding: 60px 20px;
    color: white;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.benefits-list {
    max-width: 400px;
    margin: 0 auto 30px;
    text-align: left;
}

.benefits-list p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    font-size: 1.1rem;
}

.benefits-list i {
    color: #FFD700;
}

.call-buttons5 {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #FFD700;
    color: #002147;
    font-size: 1.3rem;
    font-weight: 800;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.tariff-note {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

/* === SEZIONI NUOVE === */
.online-section {
    background: white;
    padding: 60px 20px;
    text-align: center;
}

.iframe-container {
    max-width: 600px;
    margin: 30px auto;
    border: 3px solid #5d0e41;
    border-radius: 15px;
    overflow: hidden;
}

.section7 {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px;
}

.info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-column {
    text-align: left;
}

.info-content {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
}

.info-content a {
    color: #FFD700;
    text-decoration: none;
}

/* === FOOTER AGGIORNATO === */
.footer {
    background: #222;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section a {
    color: #FFD700;
    text-decoration: none;
    margin: 0 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.legal-note {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 20px;
}


/* === SEZIONE RICARICA WEB === */
.web-recharge-section {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    margin: 30px auto;
    max-width: 600px;
    border: 2px solid #FFD700;
}

.recharge-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.recharge-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.recharge-link:hover {
    background: rgba(255,255,255,0.25);
    border-color: #FFD700;
    transform: translateY(-3px);
}

.recharge-link i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.recharge-link span {
    font-weight: 700;
    text-align: center;
}

.recharge-notice {
    background: rgba(255,215,0,0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
    margin-top: 20px;
}

.recharge-notice p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

/* Responsive per ricarica web */
@media (max-width: 768px) {
    .recharge-options {
        grid-template-columns: 1fr;
    }
    
    .recharge-link {
        flex-direction: row;
        justify-content: center;
    }
}

/* === COOKIE BANNER (mantenuto) === */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    max-width: 90%;
    flex-wrap: wrap;
}

.cookie-banner button {
    background: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 2000;
    max-width: 90%;
    width: 400px;
}

/* === MEDIA QUERIES === */
@media (max-width: 768px) {
    nav ul {
        gap: 15px;
    }
    
    nav ul li a {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .section1 {
        height: auto;
        min-height: 100vh;
        padding: 40px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .number-options {
        grid-template-columns: 1fr;
    }
    
    .info-container {
        grid-template-columns: 1fr;
    }
    
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-icons {
        font-size: 2rem;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem;
    }
    
    .phone-number {
        font-size: 1.8rem;
        padding: 15px 25px;
    }
    
    .offer {
        font-size: 1.3rem;
        padding: 20px 25px;
    }
    
    .call-button, .call-button-large, .call-buttons5 {
        font-size: 1.1rem;
        padding: 15px 25px;
    }
    
    .whatsapp-number {
        font-size: 1.4rem;
    }
}

/* ============================================================================
   CORREZIONI URGENTI MOBILE RESPONSIVE
   ============================================================================ */

/* Header mobile fix */
@media (max-width: 480px) {
    header h1 {
        font-size: clamp(20px, 6vw, 24px) !important;
        line-height: 1.3 !important;
        padding: 0 10px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .header-subtitle {
        font-size: clamp(12px, 3vw, 14px) !important;
        padding: 0 10px !important;
        line-height: 1.4 !important;
    }
}

/* Navigation mobile fix */
@media (max-width: 768px) {
    nav ul {
        gap: 10px !important;
        padding: 0 10px !important;
    }
    
    nav ul li a {
        font-size: 14px !important;
        padding: 6px 10px !important;
        white-space: nowrap !important;
    }
}

/* Hero section mobile fix */
@media (max-width: 480px) {
    .section1 {
        padding: 20px 10px !important;
        height: auto !important;
        min-height: 70vh !important;
    }
    
    .text-container {
        width: 100% !important;
        padding: 0 5px !important;
    }
    
    .phone-number {
        font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
        padding: 15px 20px !important;
        width: 95% !important;
        margin: 0 auto !important;
    }
    
    .offer {
        font-size: clamp(1.2rem, 5vw, 1.5rem) !important;
        padding: 20px 15px !important;
        width: 95% !important;
        margin: 10px auto !important;
        max-width: none !important;
    }
    
    .cta-buttons {
        width: 100% !important;
        padding: 0 5px !important;
    }
    
    .cta-primary, .cta-secondary {
        width: 100% !important;
        max-width: 300px !important;
        margin: 5px auto !important;
        font-size: 16px !important;
        padding: 12px 20px !important;
        text-align: center !important;
        display: block !important;
    }
}

/* Trust section mobile fix */
@media (max-width: 768px) {
    .trust-container {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 0 10px !important;
    }
    
    .trust-item {
        padding: 20px 15px !important;
    }
}

/* Services section mobile fix */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 0 10px !important;
    }
}

/* Section 2 mobile fix */
@media (max-width: 480px) {
    .section2 {
        padding: 30px 15px !important;
    }
    
    .section2 h2 {
        font-size: clamp(18px, 5vw, 22px) !important;
        padding: 0 10px !important;
    }
    
    .call-button {
        font-size: 16px !important;
        padding: 12px 20px !important;
        width: 90% !important;
        max-width: 300px !important;
    }
}

/* Section 3 mobile fix */
@media (max-width: 480px) {
    .section3 {
        padding: 30px 15px !important;
    }
    
    .pricing-highlight {
        padding: 20px 15px !important;
        margin: 20px 10px !important;
    }
    
    .call-button-large {
        font-size: 16px !important;
        padding: 12px 20px !important;
        width: 90% !important;
        max-width: 300px !important;
    }
}

/* WhatsApp section mobile fix */
@media (max-width: 480px) {
    .section4 {
        padding: 30px 15px !important;
    }
    
    .whatsapp-link {
        padding: 15px 20px !important;
        width: 90% !important;
        margin: 0 auto !important;
    }
    
    .whatsapp-number {
        font-size: 1.4rem !important;
    }
}

/* Section 6 mobile fix */
@media (max-width: 480px) {
    .section6 {
        padding: 30px 15px !important;
    }
    
    .number-options {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 10px !important;
    }
    
    .alt-phone-number {
        font-size: 1.5rem !important;
    }
}

/* Footer mobile fix */
@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        text-align: center !important;
        padding: 0 15px !important;
    }
}

/* General mobile improvements */
@media (max-width: 480px) {
    .container, .appointments-container, .privacy-container, .cookies-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    h1, h2, h3 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        padding: 0 10px !important;
    }
    
    p, li, span {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
}

/* Emergency overflow prevention */
* {
    box-sizing: border-box !important;
    max-width: 100% !important;
}

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative !important;
}

/* ============================================================================
   CORREZIONE NAVIGAZIONE MOBILE - MENU VISIBILE
   ============================================================================ */

@media (max-width: 768px) {
    /* Navigation mobile compact - SEMPRE VISIBILE */
    nav ul {
        gap: 8px !important;
        padding: 0 10px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        display: flex !important;
    }
    
    nav ul li a {
        font-size: 13px !important;
        padding: 6px 10px !important;
        white-space: nowrap !important;
        min-width: auto !important;
    }
}

@media (max-width: 480px) {
    /* Navigation mobile ultra-compact */
    nav ul {
        gap: 6px !important;
        padding: 0 8px !important;
    }
    
    nav ul li a {
        font-size: 12px !important;
        padding: 5px 8px !important;
        border-radius: 4px !important;
    }
}

@media (max-width: 380px) {
    /* Per schermi molto piccoli */
    nav ul {
        gap: 4px !important;
        padding: 0 5px !important;
    }
    
    nav ul li a {
        font-size: 11px !important;
        padding: 4px 6px !important;
    }
}

/* === PROMO BANNERS === */
.promo-banners {
    padding: 3rem 1rem !important;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef) !important;
}

.banner-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

.promo-banner {
    display: block !important;
    padding: 2.5rem 2rem !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    color: white !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
    position: relative !important;
    overflow: hidden !important;
    border: none !important;
}

.promo-banner::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0,0,0,0.1) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.promo-banner:hover::before {
    opacity: 1 !important;
}

.promo-banner:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25) !important;
}

.offer-banner {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24) !important;
}

.love-banner {
    background: linear-gradient(135deg, #ff9ff3, #f368e0) !important;
}

.banner-content h3 {
    margin: 0 0 1rem 0 !important;
    font-size: 1.5rem !important;
    font-weight: 900 !important;
    color: white !important;
}

.banner-content p {
    margin: 0 0 1.5rem 0 !important;
    font-size: 1.1rem !important;
    opacity: 0.9 !important;
    color: white !important;
}

.banner-cta {
    display: inline-block !important;
    padding: 10px 20px !important;
    background: rgba(255,255,255,0.2) !important;
    border-radius: 25px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    color: white !important;
}

/* Mobile responsive per banner */
@media (max-width: 768px) {
    .promo-banners {
        padding: 2rem 1rem !important;
    }
    
    .banner-container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .promo-banner {
        padding: 2rem 1.5rem !important;
    }
    
    .banner-content h3 {
        font-size: 1.3rem !important;
    }
}