/* Desktop CSS - Ottimizzato per PC e schermi grandi */

/* 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);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Raggi di curvatura */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

/* 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;
    transition: color 0.3s ease, background-color 0.3s ease;
}

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

/* Header Desktop */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

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



.directions-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px 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 24px rgba(59, 130, 246, 0.4);
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px 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 24px rgba(34, 197, 94, 0.4);
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px 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 24px rgba(34, 197, 94, 0.4);
}

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

.header.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-lg);
}

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

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    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: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
}

.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%;
}

.mobile-menu-toggle {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

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

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

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

/* Desktop Navigation */
.mobile-menu-toggle {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: static;
    background: none;
    border: none;
    padding: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
}

.nav-links a {
    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-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-links a:hover::before {
    width: 80%;
}

.nav-cta {
    margin-left: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

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

/* Hero Section Desktop */
.hero {
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(38, 35, 114, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

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

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@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: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    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.75rem;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

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

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.hero-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

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

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

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* 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: 12px; height: 12px; left: 20%; animation-delay: 0s; }
.bubble:nth-child(2) { width: 18px; height: 18px; left: 40%; animation-delay: 1s; }
.bubble:nth-child(3) { width: 10px; height: 10px; left: 60%; animation-delay: 2s; }
.bubble:nth-child(4) { width: 15px; height: 15px; 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: 2rem;
    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 Desktop */
.about {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
}

.google-map {
    margin-top: 1.5rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.navigate-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    font-size: 1rem;
    margin-top: 1.5rem;
    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);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    max-width: 600px;
}

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

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    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(-4px);
    box-shadow: var(--shadow-lg);
}

.feature i {
    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;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

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

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.ireland-map:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

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

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

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

/* Services Section Desktop */
.services {
    padding: 8rem 0;
    background: var(--bg-primary);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.services .section-description {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.7;
    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.5rem 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.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%; }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.service-card::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;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

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

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

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

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

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

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

.service-hover {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.service-card:hover .service-hover {
    opacity: 1;
    transform: translateY(0);
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(4px);
}

/* Pricing Section Desktop */
.pricing {
    padding: 8rem 0;
    background: var(--bg-primary);
    position: relative;
}

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

@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.75rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
}

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

.toggle-option.active {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.toggle-option i {
    font-size: 1.25rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card.premium {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
}

.pricing-card.premium .pricing-header h3,
.pricing-card.premium .pricing-features li,
.pricing-card.premium .amount,
.pricing-card.premium .currency {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-card.premium .pricing-features i {
    color: var(--accent-light);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

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

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

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

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

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

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

.directors-choice,
.best-service,
.ultimate-service {
    font-size: 0.875rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-features {
    margin-bottom: 2.5rem;
}

.pricing-features ul {
    list-style: none;
}

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

.pricing-features i {
    color: var(--accent-color);
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

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

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

.btn-pricing.featured {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
}

.btn-pricing.premium {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-pricing.premium:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.pricing-notes-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.pricing-note {
    text-align: center;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-2xl);
    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: 2rem;
    color: var(--accent-color);
}

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

.note-content p {
    color: var(--text-secondary);
    margin: 0;
}

/* Contact Section Desktop */
.contact {
    padding: 3rem 0 6rem 0;
    background: rgba(248, 250, 252, 0.8);
    position: relative;
    backdrop-filter: blur(10px);
    margin-top: 0;
}

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

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

.contact-main {
    display: grid;
    gap: 3rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-2xl);
    padding: 3rem 2rem;
    min-height: 280px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.5);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    text-align: center;
    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(-8px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

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

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

.phone-number a,
.whatsapp-number a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
}

.phone-number a:hover,
.whatsapp-number a:hover {
    color: var(--primary-dark);
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.location-link:hover {
    color: var(--accent-dark);
    transform: translateX(4px);
}

.contact-cta {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.5);
    backdrop-filter: blur(15px);
    text-align: center;
}

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

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

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

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 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-2xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(15px);
}

@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-header {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

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

.social-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.95);
    border-radius: var(--radius-xl);
    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(-4px);
    background: rgba(30, 41, 59, 1);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.social-card.instagram .social-icon {
    background: linear-gradient(135deg, #E4405F, #C13584);
}

.social-card.tiktok .social-icon {
    background: linear-gradient(135deg, #000000, #FF0050);
}

.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 Desktop */
.footer {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    color: var(--text-secondary);
    padding: 4rem 0 2rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

@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::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(38, 35, 114, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

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

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

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

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

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

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

.footer-section i {
    width: 16px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(71, 85, 105, 0.3);
    padding-top: 2rem;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-thanks {
    font-style: italic;
    color: var(--accent-color);
}

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

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

/* Scroll Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* 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.5rem; }
.shamrock:nth-child(2) { left: 20%; animation-delay: 2s; font-size: 1rem; }
.shamrock:nth-child(3) { left: 30%; animation-delay: 4s; font-size: 2rem; }
.shamrock:nth-child(4) { left: 40%; animation-delay: 6s; font-size: 1.2rem; }
.shamrock:nth-child(5) { left: 50%; animation-delay: 8s; font-size: 1.8rem; }
.shamrock:nth-child(6) { left: 60%; animation-delay: 1s; font-size: 1.3rem; }
.shamrock:nth-child(7) { left: 70%; animation-delay: 3s; font-size: 1.6rem; }
.shamrock:nth-child(8) { left: 80%; animation-delay: 5s; font-size: 1.1rem; }
.shamrock:nth-child(9) { left: 90%; animation-delay: 7s; font-size: 1.4rem; }

@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; 
    }
}

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

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Reviews Section - Desktop */
.reviews {
    padding: 8rem 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.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    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: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

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

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

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    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.25rem;
    flex-shrink: 0;
}

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

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

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

.review-content {
    position: relative;
}

.review-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Gallery Preview Section - Desktop */
.gallery-preview {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.gallery-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(38, 35, 114, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(22, 155, 98, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.preview-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    height: auto;
}

.preview-image:hover {
    transform: translateY(-5px);
    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-link {
    cursor: pointer;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.gallery-link:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-link:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i:first-child {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--irish-green);
}

.overlay-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.overlay-content i:last-child {
    font-size: 1.2rem;
    color: var(--irish-green);
}

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

/* Desktop specific enhancements */
@media (min-width: 769px) {
    .gallery-preview {
        padding: 6rem 0;
    }
    
    .gallery-preview-grid {
        gap: 2rem;
        margin-top: 4rem;
    }
    
    .preview-image:hover {
        transform: translateY(-8px);
    }
    
    .overlay-content {
        transform: translateY(30px);
    }
    
    .overlay-content i:first-child {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .overlay-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .overlay-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .overlay-content i:last-child {
        font-size: 1.4rem;
    }
}

@media (min-width: 1200px) {
    .gallery-preview-grid {
        gap: 2.5rem;
        max-width: 1000px;
    }
}

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

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

.text-right {
    text-align: right;
}

.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; }
.mb-12 { margin-bottom: 3rem; }

.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; }
.mt-12 { margin-top: 3rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

/* Responsive Adjustments for Large Screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        padding: 0 3rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-header h2 {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1600px) {
    .hero-container {
        gap: 6rem;
    }
    
    .contact-content {
        gap: 6rem;
    }
    
    .footer-main {
        gap: 6rem;
    }
}

/* Call Popup Styles */
.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);
}

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

.call-popup {
    background: white;
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    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: 1.5rem;
    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.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    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: 2rem;
}

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

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

.popup-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-popup-primary,
.btn-popup-secondary {
    flex: 1;
    min-width: 150px;
    padding: 0.75rem 1.5rem;
    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;
}

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

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

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

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

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

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

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

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

.confetti-triangle {
    width: 0;
    height: 0;
    background: transparent;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 8px solid var(--irish-green);
    border-radius: 0;
}

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

.confetti-triangle:nth-child(3n) {
    border-bottom-color: var(--accent-orange);
}

.confetti-triangle:nth-child(4n) {
    border-bottom-color: var(--accent-gold);
}

/* Enhanced confetti animation with physics */
@keyframes confetti-burst {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 1;
    }
    25% {
        transform: translate(var(--vx, 0), var(--vy, -100px)) rotate(calc(var(--rotation, 180deg) * 0.25)) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translate(calc(var(--vx, 0) * 0.8), calc(var(--vy, -100px) * 0.5 + 200px)) rotate(calc(var(--rotation, 180deg) * 0.5)) scale(1);
        opacity: 0.8;
    }
    75% {
        transform: translate(calc(var(--vx, 0) * 0.6), calc(var(--vy, -100px) * 0.2 + 400px)) 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, -100px) * 0.1 + 600px)) rotate(var(--rotation, 180deg)) scale(0.3);
        opacity: 0;
    }
}

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

/* Glitter effect for some confetti */
.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.5) saturate(1.5); }
}

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