/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Brand Color */
    --primary-color: #262372;
    --primary-light: #3d3a9e;
    --primary-dark: #1a1a4f;
    
    /* Irish Accent Colors */
    --irish-green: #169B62;
    --irish-orange: #FF883E;
    
    /* Typography */
    --font-primary: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 1.5rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

/* Light Mode (Default) */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --bg-primary: #0f172a;
        --bg-secondary: #1e293b;
        --bg-tertiary: #334155;
        --text-primary: #f8fafc;
        --text-secondary: #cbd5e1;
        --text-muted: #94a3b8;
        --border-color: #334155;
        --border-light: #475569;
        --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
        --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.3);
        --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5), 0 4px 6px -4px rgb(0 0 0 / 0.4);
        --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.6), 0 8px 10px -6px rgb(0 0 0 / 0.5);
    }
}

[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #334155;
    --border-light: #475569;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5), 0 4px 6px -4px rgb(0 0 0 / 0.4);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.6), 0 8px 10px -6px rgb(0 0 0 / 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    min-height: 100vh;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Loading Screen - Optimized */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--irish-green);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.shamrock-loader {
    width: 60px;
    height: 60px;
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    user-select: none;
}

.loading-text {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Irish Pattern - Simplified */
.irish-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 155, 98, 0.05);
    pointer-events: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--irish-pattern);
    opacity: 0.1;
    pointer-events: none;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
}

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

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text .brand-name {
    color: var(--primary-color);
}

.logo-text .brand-country {
    color: var(--irish-orange);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

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

.contact-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
}

.call-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
}

/* Mobile menu styles are handled in styles-mobile.css */

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.irish-hills {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--irish-green) 0%, var(--emerald-500) 50%, transparent 100%);
    opacity: 0.1;
    clip-path: polygon(0 100%, 100% 100%, 100% 60%, 80% 40%, 60% 50%, 40% 30%, 20% 45%, 0 35%);
}

.floating-shamrocks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: none; /* Disabled for performance */
}

.shamrock {
    position: absolute;
    color: var(--irish-green);
    opacity: 0.1;
}

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

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

@media (min-width: 1025px) {
    .hero-container {
        padding: 0 3rem;
        gap: 6rem;
    }
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.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.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(38, 35, 114, 0.2);
}

@media (prefers-color-scheme: dark) {
    .hero-badge {
        background: rgba(15, 23, 42, 0.9);
        color: white;
        border: 2px solid white;
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 1025px) {
    .hero-title {
        font-size: clamp(3rem, 6vw, 5rem);
    }
}

.hero-title .highlight {
    color: var(--irish-green);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--irish-green), var(--irish-orange));
    border-radius: 2px;
}

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

@media (min-width: 1025px) {
    .hero-description {
        font-size: 1.375rem;
        max-width: 600px;
    }
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    min-width: 80px;
}

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

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

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

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

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

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

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.car-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 450px;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(38, 35, 114, 0.2);
    filter: drop-shadow(0 10px 30px rgba(38, 35, 114, 0.3));
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
}

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

@media (min-width: 1025px) {
    .hero-image {
        max-width: 500px;
    }
}

/* Removed carBounce animation for performance */

.wash-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none; /* Disabled for performance */
}

.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}

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

.sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none; /* Disabled for performance */
}

.sparkle {
    position: absolute;
    color: var(--irish-orange);
}

.sparkle:nth-child(1) { top: 20%; left: 30%; }
.sparkle:nth-child(2) { top: 40%; left: 70%; }
.sparkle:nth-child(3) { top: 60%; left: 20%; }
.sparkle:nth-child(4) { top: 80%; left: 80%; }

@keyframes slideInLeft {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

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

/* Section Styles */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    max-width: 800px;
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--emerald-50), var(--emerald-100));
    color: var(--irish-green);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid var(--emerald-200);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

/* About Section */
.about {
    background: var(--slate-50);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--irish-pattern);
    opacity: 0.05;
}

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

.about-text {
    position: relative;
    z-index: 2;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--irish-green), var(--emerald-600));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--irish-white);
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.feature-content h4 {
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--slate-600);
    font-size: 0.875rem;
    line-height: 1.5;
}

.about-visual {
    position: relative;
}

.ireland-map {
    background: linear-gradient(135deg, var(--emerald-50), var(--emerald-100));
    border-radius: var(--radius-2xl);
    padding: 3rem;
    text-align: center;
    border: 2px solid var(--emerald-200);
    box-shadow: var(--shadow-lg);
}

.map-icon {
    font-size: 6rem;
    color: var(--irish-green);
    margin-bottom: 1rem;
    animation: mapPulse 3s ease-in-out infinite;
}

@keyframes mapPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.map-location {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 0.5rem;
}

.map-details {
    color: var(--slate-600);
    font-size: 1rem;
}

/* Services Section */
.services {
    background: var(--irish-white);
    position: relative;
}

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

.service-card {
    background: var(--irish-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--slate-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--irish-green), var(--irish-orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--emerald-50), var(--emerald-100));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid var(--emerald-200);
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--irish-green);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--irish-green);
}

.director-choice {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--irish-orange), var(--orange-600));
    color: var(--irish-white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 15px 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 4px 15px rgba(255, 215, 0, 0.4);
    }
    to {
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    }
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, var(--slate-50) 0%, var(--emerald-50) 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--irish-pattern-overlay);
    pointer-events: none;
}

.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: 300px;
    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 1rem;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

.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);
    transform: translateY(-1px);
}

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

.toggle-container {
    background: var(--irish-white);
    border-radius: var(--radius-xl);
    padding: 0.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--slate-200);
}

.toggle-btn {
    padding: 0.75rem 2rem;
    border: none;
    background: transparent;
    color: var(--slate-600);
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--irish-green), var(--emerald-600));
    color: var(--irish-white);
    box-shadow: var(--shadow-sm);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: var(--irish-white);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--irish-green), var(--irish-orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.popular {
    border: 2px solid var(--irish-green);
    transform: scale(1.05);
}

.pricing-card.popular::before {
    transform: scaleX(1);
    background: var(--irish-green);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--irish-green), var(--emerald-600));
    color: var(--irish-white);
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

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

.pricing-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--emerald-50), var(--emerald-100));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid var(--emerald-200);
}

.pricing-icon i {
    font-size: 1.75rem;
    color: var(--irish-green);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 0.5rem;
}

.service-subtitle {
    color: var(--slate-500);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

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

.price-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--irish-green);
}

.price-period {
    font-size: 1rem;
    color: var(--slate-500);
    font-weight: 500;
}

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

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

.pricing-features li i {
    color: var(--irish-green);
    font-size: 1rem;
    width: 16px;
    flex-shrink: 0;
}

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

.book-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--irish-green), var(--emerald-600));
    color: var(--irish-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.book-btn:hover {
    background: linear-gradient(135deg, var(--emerald-600), var(--emerald-700));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.pricing-note {
    text-align: center;
    padding: 1.5rem;
    background: var(--irish-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--emerald-200);
    box-shadow: var(--shadow-sm);
}

.pricing-note p {
    color: var(--slate-600);
    font-size: 0.95rem;
    margin: 0;
}

.pricing-note .highlight {
    color: var(--irish-green);
    font-weight: 600;
}


    
    .popup-content {
        padding: 1.5rem;
    }
    
    .popup-actions {
        flex-direction: column;
    }
    
    .btn-popup-primary,
    .btn-popup-secondary {
        min-width: auto;
    }

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--slate-50) 0%, var(--emerald-50) 100%);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

@media (prefers-color-scheme: dark) {
    .contact {
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(5, 46, 22, 0.8) 100%);
    }
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.contact-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

@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::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--irish-green), var(--irish-orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.contact-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--emerald-50), var(--emerald-100));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid var(--emerald-200);
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--irish-green);
}

.card-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 1.5rem;
}

.location-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 0.5rem;
}

.location-details {
    color: var(--slate-500);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

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

.phone-number a,
.whatsapp-number a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--irish-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.phone-note,
.whatsapp-note {
    color: var(--slate-500);
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.5;
    padding-bottom: 0.5rem;
}

.contact-cta {
    background: linear-gradient(135deg, var(--irish-green), var(--emerald-600));
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    color: var(--irish-white);
    box-shadow: var(--shadow-lg);
}

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

.cta-content p {
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: var(--irish-white);
    color: var(--irish-green);
    border: 2px solid transparent;
}

.cta-buttons .btn:hover {
    background: var(--emerald-50);
    border-color: var(--irish-white);
}

.social-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.5);
    backdrop-filter: blur(10px);
}

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

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

.social-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 0.5rem;
}

.social-header p {
    color: var(--slate-600);
    font-size: 0.95rem;
}

.social-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    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);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

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

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

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

.social-icon i {
    color: var(--irish-white);
    font-size: 1.25rem;
}

.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 */
.footer {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    color: var(--slate-300);
    position: relative;
    overflow: hidden;
    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-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--irish-pattern);
    opacity: 0.05;
    pointer-events: none;
}

.footer-main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding: 4rem 0 2rem;
    border-bottom: 1px solid var(--slate-700);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.footer-logo .logo-image {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.1;
}

.footer-logo .brand-name {
    color: var(--irish-white);
}

.footer-logo .brand-country {
    color: var(--irish-orange);
}

.footer-logo .brand-location {
    color: var(--irish-green);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-tagline {
    color: var(--slate-400);
    font-size: 1rem;
    line-height: 1.5;
    max-width: 280px;
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    background: var(--slate-700);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--slate-600);
}

.footer-social a:hover {
    background: var(--irish-green);
    color: var(--irish-white);
    border-color: var(--irish-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.footer-section h4 {
    color: var(--irish-white);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-400);
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-section li i {
    color: var(--irish-green);
    font-size: 0.875rem;
    width: 16px;
    flex-shrink: 0;
}

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

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

.footer-bottom {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

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

.footer-bottom p {
    color: var(--slate-400);
    font-size: 0.875rem;
    margin: 0;
}

.footer-thanks {
    color: var(--irish-green);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 2rem;
    }
    
    .hero-stats {
        justify-content: center;
        order: -1;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-info {
        grid-column: 1 / -1;
        text-align: center;
    }
}

/* Desktop improvements */
@media (min-width: 1025px) {
    .nav-container {
        padding: 0 3rem;
    }
    
    .hero {
        padding-top: 100px;
        min-height: 100vh;
    }
    
    .hero-container {
        grid-template-columns: 1.2fr 1fr;
        gap: 6rem;
        align-items: center;
        max-width: 1400px;
    }
    
    .hero-visual {
        transform: scale(1.05);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .btn {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .hero-content {
        padding-right: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--irish-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        border-top: 1px solid var(--slate-200);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        padding: 1rem;
        border-radius: var(--radius-lg);
        text-align: center;
    }
    
    .call-btn {
        margin-top: 1rem;
        justify-content: center;
    }
    
    .hero {
        padding-top: 120px;
        min-height: 100vh;
        padding-bottom: 4rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-notes-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .contact-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .car-showcase {
        padding: 2rem;
    }
    
    .car-icon {
        font-size: 6rem;
    }
    
    .pricing-toggle {
        margin-bottom: 2rem;
    }
    
    .toggle-btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .social-grid {
        gap: 0.75rem;
    }
    
    .social-card {
        padding: 1rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-card,
    .contact-card,
    .pricing-card {
        padding: 1.25rem;
    }
}

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

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.3s ease;
}

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

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}

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

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--irish-green), var(--primary-color));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.back-to-top:active {
    transform: translateY(0);
}

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

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

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

.hidden {
    display: none;
}

.visible {
    display: block;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}