/* Mobile CSS - Ottimizzato per dispositivi mobili */

/* Reset e Variabili */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colori principali */
    --primary-color: #262372;
    --primary-light: #3b35a3;
    --primary-dark: #1a1850;
    --accent-color: #10b981;
    --accent-light: #34d399;
    --accent-dark: #059669;
    
    /* Colori di sfondo */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    
    /* Colori del testo */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    
    /* Colori dei bordi */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    
    /* Ombre */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    /* Raggi di curvatura */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #0f172a;
        --bg-secondary: #1e293b;
        --bg-tertiary: #334155;
        --text-primary: #f8fafc;
        --text-secondary: #cbd5e1;
        --text-muted: #94a3b8;
        --border-color: #475569;
        --border-light: #334155;
    }
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Mobile - Completely Redesigned */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
}

.header-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.03) 0%, rgba(59, 130, 246, 0.03) 100%);
    pointer-events: none;
}

.header-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}



.directions-btn {
    display: none;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.call-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

@media (min-width: 480px) {
    .directions-btn {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.25rem;
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        color: white;
        text-decoration: none;
        border-radius: var(--radius-xl);
        font-size: 0.875rem;
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .directions-btn:hover {
        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    }
}

@media (prefers-color-scheme: dark) {
    .header {
        background: rgba(15, 23, 42, 0.95);
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    position: relative;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: relative;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.logo-container:hover {
    background: rgba(34, 197, 94, 0.05);
    transform: translateY(-1px);
}

.nav-center {
    display: block;
}

@media (min-width: 769px) {
    .nav-center {
        display: flex;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-links {
        display: flex;
        gap: 2rem;
        margin: 0;
        padding: 0;
        list-style: none;
        position: static;
        background: none;
        border: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
    }
    
    .nav-link {
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
        transition: all 0.3s ease;
        position: relative;
        display: inline-block;
        border-bottom: none;
    }
    
    .nav-link:hover {
        color: var(--accent-color);
        background: rgba(34, 197, 94, 0.08);
        transform: translateY(-1px);
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--accent-color);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
    
    .nav-link:hover::after {
        width: 80%;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-image {
    width: 32px;
    height: 32px;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.brand-country {
    font-size: 0.75rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
    transform: translateY(-1px);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    margin: 2px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.mobile-menu-toggle:hover .hamburger-line {
    background: var(--accent-color);
}

.mobile-menu-toggle.active {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.mobile-menu-toggle.active .hamburger-line {
    background: var(--accent-color);
}



.nav-links {
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 2rem 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    list-style: none;
    backdrop-filter: blur(20px);
}

.nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav-links li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    display: block;
    padding: 1rem 0;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--border-light);
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Hide mobile menu toggle on desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav-links {
        position: static;
        display: flex;
        flex-direction: row;
        background: transparent;
        border: none;
        padding: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        gap: 2rem;
        top: auto;
        left: auto;
        right: auto;
    }
    
    .nav-links li {
        margin: 0;
    }
    
    .nav-links a {
        padding: 0.5rem 0;
        border-bottom: none;
        font-size: 1rem;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
}

.nav-cta {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-align: center;
    display: block;
}

/* Hero Section Mobile */
.hero {
    padding: 6rem 1.5rem 4rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.hero-content {
    order: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(38, 35, 114, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

@media (prefers-color-scheme: dark) {
    .hero-badge {
        background: rgba(15, 23, 42, 0.9);
        color: var(--accent-color);
        border: 1px solid rgba(16, 185, 129, 0.3);
    }
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

@media (prefers-color-scheme: dark) {
    .hero-stat {
        background: rgba(30, 41, 59, 0.8);
    }
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.hero-visual {
    display: none;
}

.hero-image {
    display: none;
}

/* Wash Effects */
.wash-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: bubbleFloat 3s infinite ease-in-out;
}

.bubble:nth-child(1) { width: 10px; height: 10px; left: 20%; animation-delay: 0s; }
.bubble:nth-child(2) { width: 15px; height: 15px; left: 40%; animation-delay: 1s; }
.bubble:nth-child(3) { width: 8px; height: 8px; left: 60%; animation-delay: 2s; }
.bubble:nth-child(4) { width: 12px; height: 12px; left: 80%; animation-delay: 3s; }

@keyframes bubbleFloat {
    0% { transform: translateY(100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-100%); opacity: 0; }
}

.sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: sparkleShine 2s infinite ease-in-out;
    pointer-events: none;
}

.sparkle:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 60%; left: 70%; animation-delay: 1s; }
.sparkle:nth-child(3) { top: 80%; left: 20%; animation-delay: 2s; }

@keyframes sparkleShine {
    0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

/* About Section Mobile */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text {
    order: 1;
}

.about-visual {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.feature i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature div h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature div p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.ireland-map {
    position: relative;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
    max-width: 350px;
    width: 100%;
    transition: all 0.3s ease;
}

.ireland-map:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.location-pin {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

.location-info span {
    font-size: 1.25rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.75rem;
}

.location-info p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0 0 1rem 0;
}

/* Services Section Mobile */
.services {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.section-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services .section-description {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(59, 130, 246, 0.05));
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.services .section-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

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

.service-badge {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 3px 12px rgba(255, 215, 0, 0.4);
    border: 2px solid #FFD700;
    z-index: 10;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 3px 12px rgba(255, 215, 0, 0.4);
    }
    to {
        box-shadow: 0 5px 18px rgba(255, 215, 0, 0.6);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.price-from {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Note Content Mobile */
.note-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    padding: 1rem;
}

.note-content i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.note-content h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.note-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Pricing Section Mobile */
.pricing {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    margin: 2rem 0 3rem 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

@media (prefers-color-scheme: dark) {
    .pricing-toggle {
        background: rgba(30, 41, 59, 0.3);
        border: 1px solid rgba(71, 85, 105, 0.3);
    }
}

.toggle-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0.5rem;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
}

.toggle-option:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

.toggle-option.active {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.pricing-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    text-align: center;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header .service-icon {
    margin: 0 auto 1rem;
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 600;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.pricing-features i {
    color: var(--accent-color);
    font-size: 0.875rem;
}

.btn-pricing {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-pricing:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Google Map Styles */
.google-map {
    margin-top: 1rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.google-map iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: var(--radius-xl);
}

.navigate-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    font-size: 0.875rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.navigate-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Contact Section Mobile */
.contact {
    padding: 3rem 0 4rem;
    background: rgba(248, 250, 252, 0.8);
    position: relative;
    margin-top: 0;
}

@media (prefers-color-scheme: dark) {
    .contact {
        background: rgba(15, 23, 42, 0.8);
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    padding: 2.5rem 1.5rem;
    min-height: 220px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (prefers-color-scheme: dark) {
    .contact-card {
        background: rgba(30, 41, 59, 0.95);
        border: 1px solid rgba(71, 85, 105, 0.5);
    }
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.location-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.location-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-directions {
    background: var(--accent-color);
    color: white;
}

.btn-directions:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-call {
    background: var(--primary-color);
    color: white;
}

.btn-call:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

@media (min-width: 480px) {
    .location-actions {
        flex-direction: row;
    }
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon i {
    font-size: 1.25rem;
    color: white;
}

.card-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.social-section {
    background: linear-gradient(135deg, rgba(38, 35, 114, 0.95) 0%, rgba(16, 185, 129, 0.95) 100%);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(10px);
}

.social-header h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.social-header p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

@media (prefers-color-scheme: dark) {
    .social-section {
        background: linear-gradient(135deg, rgba(38, 35, 114, 0.98) 0%, rgba(16, 185, 129, 0.98) 100%);
        border: 1px solid rgba(16, 185, 129, 0.4);
    }
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(30, 41, 59, 0.95);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(71, 85, 105, 0.5);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.social-card:hover {
    transform: translateY(-2px);
    background: rgba(30, 41, 59, 1);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.social-content h4 {
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.social-content p {
    color: rgba(226, 232, 240, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.social-cta {
    color: rgba(148, 163, 184, 0.9);
    font-size: 0.8rem;
}

/* Footer Mobile */
.footer {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    color: var(--text-secondary);
    padding: 3rem 0 1rem;
    backdrop-filter: blur(15px);
}

@media (prefers-color-scheme: dark) {
    .footer {
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(2, 6, 23, 0.98) 100%);
    }
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(71, 85, 105, 0.5);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.footer-section h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(71, 85, 105, 0.3);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Floating Shamrocks */
.floating-shamrocks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.shamrock {
    position: absolute;
    color: var(--accent-color);
    animation: floatShamrock 12s linear infinite;
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
}

.shamrock:nth-child(1) { left: 10%; animation-delay: 0s; font-size: 1.2rem; }
.shamrock:nth-child(2) { left: 20%; animation-delay: 2s; font-size: 0.8rem; }
.shamrock:nth-child(3) { left: 30%; animation-delay: 4s; font-size: 1.5rem; }
.shamrock:nth-child(4) { left: 40%; animation-delay: 6s; font-size: 1rem; }
.shamrock:nth-child(5) { left: 50%; animation-delay: 8s; font-size: 1.3rem; }
.shamrock:nth-child(6) { left: 60%; animation-delay: 1s; font-size: 1.1rem; }
.shamrock:nth-child(7) { left: 70%; animation-delay: 3s; font-size: 1.4rem; }
.shamrock:nth-child(8) { left: 80%; animation-delay: 5s; font-size: 0.9rem; }
.shamrock:nth-child(9) { left: 90%; animation-delay: 7s; font-size: 1.2rem; }

@keyframes floatShamrock {
    0% { 
        transform: translateY(100vh) rotate(0deg); 
        opacity: 0; 
    }
    5% { 
        opacity: 0.7; 
    }
    95% { 
        opacity: 0.7; 
    }
    100% { 
        transform: translateY(-10vh) rotate(360deg); 
        opacity: 0; 
    }
}

/* Animazioni */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

/* Responsive Adjustments */
@media (min-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-info {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
    
    .footer-brand {
        text-align: left;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Reviews Section - Mobile */
@media (max-width: 768px) {
    .reviews {
        padding: 4rem 0;
        background: var(--bg-secondary);
        position: relative;
        overflow: hidden;
    }

    .reviews::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 30% 20%, rgba(38, 35, 114, 0.03) 0%, transparent 50%);
        pointer-events: none;
    }

    .reviews-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .review-card {
        background: var(--bg-primary);
        border-radius: var(--radius-lg);
        padding: 1.5rem;
        box-shadow: var(--shadow-md);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid var(--border-color);
        position: relative;
        overflow: hidden;
    }

    .review-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    }

    .review-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .review-header {
        margin-bottom: 1rem;
    }

    .reviewer-info {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .reviewer-avatar {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.125rem;
        flex-shrink: 0;
    }
    
    .reviewer-details h4 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.25rem;
    }

    .review-stars {
        display: flex;
        gap: 0.2rem;
    }

    .review-stars i {
        color: #fbbf24;
        font-size: 0.9rem;
    }

    .review-content {
        position: relative;
    }

    .review-content::before {
        content: '"';
        position: absolute;
        top: -8px;
        left: -8px;
        font-size: 2.5rem;
        color: var(--accent-color);
        opacity: 0.3;
        font-family: Georgia, serif;
        line-height: 1;
    }
    
    .review-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        color: var(--text-secondary);
        font-style: italic;
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 480px) {
    .reviews {
        padding: 3rem 0;
    }

    .review-card {
        padding: 1.25rem;
    }
    
    .reviewer-info {
        gap: 0.5rem;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .review-content::before {
        font-size: 2rem;
        top: -6px;
        left: -6px;
    }

    .review-content p {
        font-size: 0.9rem;
    }

    /* Back to Top Button - Mobile */
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Gallery Preview Styles - Mobile */
.gallery-preview {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(241, 245, 249, 0.9));
    position: relative;
    overflow: hidden;
}

@media (prefers-color-scheme: dark) {
    .gallery-preview {
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.9));
    }
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.preview-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.preview-image:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

.preview-image:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(147, 51, 234, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.preview-image:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.preview-image:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.overlay-content p {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.gallery-full-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

@media (max-width: 768px) {
    .gallery-preview {
        padding: 3rem 0;
    }
    
    .gallery-preview-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .preview-image {
        aspect-ratio: 16/10;
    }
    
    .overlay-content i {
        font-size: 2rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
    }
    
    /* Mostra sempre l'overlay sull'ultima immagine su tablet */
    .gallery-link .gallery-overlay {
        opacity: 1;
    }
    
    .gallery-link .overlay-content {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .gallery-preview {
        padding: 2.5rem 0;
    }
    
    .gallery-preview-grid {
        gap: 0.75rem;
    }
    
    .preview-image {
        aspect-ratio: 3/2;
    }
    
    .overlay-content i {
        font-size: 1.75rem;
    }
    
    .overlay-content p {
        font-size: 0.85rem;
    }
    
    /* Mostra sempre l'overlay sull'ultima immagine su mobile */
    .gallery-link .gallery-overlay {
        opacity: 1;
    }
    
    .gallery-link .overlay-content {
        transform: translateY(0);
    }
}

/* Call Popup Styles - Mobile */
.call-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    padding: 1rem;
}

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

.call-popup {
    background: white;
    border-radius: var(--radius-xl);
    max-width: 400px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: scale(0.8) translateY(50px);
    transition: transform 0.3s ease;
}

.call-popup-overlay.active .call-popup {
    transform: scale(1) translateY(0);
}

.popup-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f59e0b, #eab308);
    color: white;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.popup-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background-color 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.popup-content {
    padding: 1.5rem;
}

.popup-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.popup-content p:last-of-type {
    margin-bottom: 1.5rem;
}

.popup-actions {
    display: flex;
    gap: 0.75rem;
    flex-direction: column;
}

.btn-popup-primary,
.btn-popup-secondary {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.btn-popup-primary {
    background: #dc2626;
    color: white;
}

.btn-popup-primary:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

.btn-popup-secondary {
    background: #16a34a;
    color: white;
    border: 2px solid #16a34a;
}

.btn-popup-secondary:hover {
    background: #15803d;
    color: white;
    border-color: #15803d;
    transform: translateY(-1px);
}

/* Confetti Animation - Mobile */
#confettiContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    animation: confetti-burst 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    border-radius: 2px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

/* Different confetti shapes - Mobile */
.confetti-circle {
    border-radius: 50%;
}

.confetti-square {
    border-radius: 0;
    transform: rotate(45deg);
}

.confetti-triangle {
    width: 0;
    height: 0;
    background: transparent;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-bottom: 6px solid var(--accent-color);
    border-radius: 0;
}

.confetti-triangle:nth-child(2n) {
    border-bottom-color: var(--primary-color);
}

.confetti-triangle:nth-child(3n) {
    border-bottom-color: #f59e0b;
}

.confetti-triangle:nth-child(4n) {
    border-bottom-color: #eab308;
}

/* Enhanced confetti animation with physics - Mobile */
@keyframes confetti-burst {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 1;
    }
    25% {
        transform: translate(var(--vx, 0), var(--vy, -80px)) rotate(calc(var(--rotation, 180deg) * 0.25)) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translate(calc(var(--vx, 0) * 0.8), calc(var(--vy, -80px) * 0.5 + 150px)) rotate(calc(var(--rotation, 180deg) * 0.5)) scale(1);
        opacity: 0.8;
    }
    75% {
        transform: translate(calc(var(--vx, 0) * 0.6), calc(var(--vy, -80px) * 0.2 + 300px)) rotate(calc(var(--rotation, 180deg) * 0.75)) scale(0.8);
        opacity: 0.4;
    }
    100% {
        transform: translate(calc(var(--vx, 0) * 0.3), calc(var(--vy, -80px) * 0.1 + 450px)) rotate(var(--rotation, 180deg)) scale(0.3);
        opacity: 0;
    }
}

/* Screen shake animation - Mobile */
@keyframes confetti-shake {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-1px) rotate(0.3deg); }
    20% { transform: translateX(1px) rotate(-0.3deg); }
    30% { transform: translateX(-1px) rotate(0.3deg); }
    40% { transform: translateX(1px) rotate(-0.3deg); }
    50% { transform: translateX(-0.5px) rotate(0.1deg); }
    60% { transform: translateX(0.5px) rotate(-0.1deg); }
    70% { transform: translateX(-0.5px) rotate(0.1deg); }
    80% { transform: translateX(0.5px) rotate(-0.1deg); }
    90% { transform: translateX(0) rotate(0deg); }
}

/* Glitter effect for some confetti - Mobile */
.confetti:nth-child(7n) {
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    animation: confetti-burst 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, glitter 0.5s infinite alternate;
}

@keyframes glitter {
    0% { filter: brightness(1) saturate(1); }
    100% { filter: brightness(1.3) saturate(1.3); }
}

/* Pricing Notes Container - Mobile */
.pricing-notes-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.pricing-note {
    text-align: center;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.note-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.note-content i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.note-content h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.note-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Dark Theme for Call Popup - Mobile */
@media (prefers-color-scheme: dark) {
    .call-popup {
        background: var(--bg-secondary);
        border: 1px solid var(--border-color);
    }
    
    .popup-content p {
        color: var(--text-primary);
    }
}

@media (min-width: 480px) {
    .popup-actions {
        flex-direction: row;
    }
    
    .btn-popup-primary,
    .btn-popup-secondary {
        flex: 1;
        min-width: 120px;
    }
    
    .pricing-notes-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .confetti {
        width: 8px;
        height: 8px;
    }
    
    .confetti-triangle {
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 8px solid var(--accent-color);
    }
}