/* CSS optimized for performance */

:root {
    --primary-purple: #B88FDB;
    --primary-purple-dark: #9B6CC4;
    --primary-purple-light: #D4B5F0;
    --primary-blue: #5B8BC9;
    --primary-blue-dark: #4A73A8;
    --text-dark: #2C3E50;
    --text-light: #6C7A89;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-lighter: #FAFBFC;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 48px rgba(184, 143, 219, 0.3);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-backdrop: blur(8px);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, rgba(250, 251, 252, 0.95) 0%, rgba(240, 230, 250, 0.95) 100%);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;  /* Establish stacking context */
}

/* Glass effect utility class with fallbacks */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
}

/* Fallback for browsers without backdrop-filter support */
@supports not (backdrop-filter: blur(1px)) {
    .glass-effect {
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
}

/* Animated Bubbles Background - Only in Hero Section */
.bubbles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;  /* Behind hero content but visible */
}

.bubble {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.7) 8%,
        rgba(184, 143, 219, 0.4) 25%,
        rgba(184, 143, 219, 0.25) 40%,
        rgba(184, 143, 219, 0.15) 60%,
        rgba(184, 143, 219, 0.05) 80%,
        transparent 100%
    );
    box-shadow:
        0 15px 25px rgba(184, 143, 219, 0.2),
        0 10px 10px rgba(184, 143, 219, 0.15),
        inset -10px -10px 20px rgba(184, 143, 219, 0.2),
        inset 10px 10px 20px rgba(255, 255, 255, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    opacity: 0.8;
    animation: floatRealistic 15s infinite ease-in-out;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    will-change: transform;
}

/* Primary highlight - main light reflection */
.bubble::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 0.9) 20%,
        rgba(255, 255, 255, 0.5) 40%,
        transparent 70%
    );
    border-radius: 50%;
    transform: rotate(-25deg) skewX(-10deg);
    filter: blur(0.5px);
}

/* Shimmer effect - simplified for better compatibility */
.bubble::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(186, 85, 211, 0.08), rgba(147, 51, 234, 0.06), transparent);
    opacity: 0.6;
    animation: shimmer 6s infinite linear;
}

.bubble:nth-child(1) { left: 10%; width: 80px; height: 80px; animation: floatRealistic 20s infinite ease-in-out; animation-delay: 0s; }
.bubble:nth-child(2) { left: 20%; width: 60px; height: 60px; animation: floatRealistic 25s infinite ease-in-out; animation-delay: 2s; }
.bubble:nth-child(3) { left: 35%; width: 100px; height: 100px; animation: floatRealistic 18s infinite ease-in-out; animation-delay: 4s; }
.bubble:nth-child(4) { left: 50%; width: 70px; height: 70px; animation: floatRealistic 22s infinite ease-in-out; animation-delay: 0s; }
.bubble:nth-child(5) { left: 65%; width: 90px; height: 90px; animation: floatRealistic 15s infinite ease-in-out; animation-delay: 3s; }
.bubble:nth-child(6) { left: 75%; width: 50px; height: 50px; animation: floatRealistic 20s infinite ease-in-out; animation-delay: 5s; }
.bubble:nth-child(7) { left: 85%; width: 110px; height: 110px; animation: floatRealistic 25s infinite ease-in-out; animation-delay: 2s; }
.bubble:nth-child(8) { left: 95%; width: 65px; height: 65px; animation: floatRealistic 19s infinite ease-in-out; animation-delay: 1s; }
.bubble:nth-child(9) { left: 5%; width: 75px; height: 75px; animation: floatRealistic 23s infinite ease-in-out; animation-delay: 6s; }
.bubble:nth-child(10) { left: 42%; width: 85px; height: 85px; animation: floatRealistic 21s infinite ease-in-out; animation-delay: 7s; }
.bubble:nth-child(11) { left: 78%; width: 95px; height: 95px; animation: floatRealistic 26s infinite ease-in-out; animation-delay: 8s; }
.bubble:nth-child(12) { left: 90%; width: 55px; height: 55px; animation: floatRealistic 24s infinite ease-in-out; animation-delay: 9s; }

@keyframes floatRealistic {
    0% {
        transform: translateY(120vh) translateX(0) rotate(0deg) scale(0.4);
        opacity: 0;
    }
    3% {
        transform: translateY(110vh) translateX(5px) rotate(20deg) scale(0.6);
        opacity: 0.2;
    }
    10% {
        transform: translateY(90vh) translateX(-10px) rotate(45deg) scale(0.8);
        opacity: 0.6;
    }
    20% {
        transform: translateY(70vh) translateX(15px) rotate(75deg) scale(1);
        opacity: 0.8;
    }
    30% {
        transform: translateY(50vh) translateX(-20px) rotate(110deg) scale(1.05);
        opacity: 0.85;
    }
    40% {
        transform: translateY(30vh) translateX(12px) rotate(150deg) scale(1.1);
        opacity: 0.85;
    }
    50% {
        transform: translateY(10vh) translateX(-18px) rotate(190deg) scale(1.08);
        opacity: 0.8;
    }
    60% {
        transform: translateY(-10vh) translateX(15px) rotate(230deg) scale(1.05);
        opacity: 0.75;
    }
    70% {
        transform: translateY(-30vh) translateX(-10px) rotate(270deg) scale(1);
        opacity: 0.6;
    }
    80% {
        transform: translateY(-50vh) translateX(8px) rotate(310deg) scale(0.9);
        opacity: 0.4;
    }
    90% {
        transform: translateY(-70vh) translateX(-5px) rotate(340deg) scale(0.8);
        opacity: 0.2;
    }
    100% {
        transform: translateY(-90vh) translateX(0) rotate(360deg) scale(0.6);
        opacity: 0;
    }
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        transform: translateY(90vh) scale(1);
        opacity: 0.8;
    }
    90% {
        transform: translateY(10vh) scale(1);
        opacity: 0.6;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

/* Fallback for navbar */
@supports not (backdrop-filter: blur(1px)) {
    .navbar {
        background: rgba(255, 255, 255, 0.98);
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    flex-shrink: 0;
    margin-right: 2rem;
}

.nav-logo-text {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
    text-shadow: 0 2px 8px rgba(184, 143, 219, 0.3);
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo-text:hover {
    transform: scale(1.08);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-purple);
}

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

.cta-button {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.cta-button:after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 2rem;
    position: relative;
    z-index: 2;
    overflow: hidden;  /* Contain bubbles within hero section */
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

/* Hero Logo Styles */


.hero-owner {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--primary-purple);
    margin: 1rem 0;
    opacity: 0.9;
    animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.subtitle {
    color: var(--primary-blue);
    font-size: 0.6em;
    font-weight: 400;
    display: block;
    margin-top: 0.5rem;
}

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

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(184, 143, 219, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(184, 143, 219, 0.5);
}

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

.btn-secondary:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

.phone-icon {
    animation: ring 2s infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

.hero-image {
    position: relative;
    animation: slideInRight 0.8s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 30px;
    filter: drop-shadow(0 20px 40px rgba(184, 143, 219, 0.3));
}

.mascot-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 30px;
    filter: drop-shadow(0 20px 40px rgba(184, 143, 219, 0.3));
}

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

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

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: sparkle 2s linear infinite;
}

.sparkle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.sparkle-2 { top: 60%; right: 20%; animation-delay: 0.5s; }
.sparkle-3 { bottom: 30%; left: 30%; animation-delay: 1s; }

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 10px white, 0 0 20px white;
    }
}

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

section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

/* Services Section */
.services {
    background: rgba(255, 255, 255, 0.85);  /* More transparent to show bubbles */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    z-index: 2;
}

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

.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.service-card:nth-child(1) .service-icon { animation-delay: 0s; }
.service-card:nth-child(2) .service-icon { animation-delay: 0.2s; }
.service-card:nth-child(3) .service-icon { animation-delay: 0.4s; }
.service-card:nth-child(4) .service-icon { animation-delay: 0.6s; }
.service-card:nth-child(5) .service-icon { animation-delay: 0.8s; }
.service-card:nth-child(6) .service-icon { animation-delay: 1s; }
.service-card:nth-child(7) .service-icon { animation-delay: 1.2s; }
.service-card:nth-child(8) .service-icon { animation-delay: 1.4s; }

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

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.85) 0%, rgba(232, 216, 245, 0.85) 100%);  /* More transparent */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: relative;
    z-index: 2;
}

/* Pricing Calculator - Modern Style */
.pricing-calculator {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 20px 60px rgba(184, 143, 219, 0.15);
    border: 1px solid rgba(184, 143, 219, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-calculator::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 143, 219, 0.05) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.calculator-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(184, 143, 219, 0.08);
    padding: 0.5rem;
    border-radius: 16px;
}

.tab-btn {
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn:hover {
    transform: translateY(-2px);
    color: var(--primary-purple);
}

.tab-btn.active {
    background: white;
    color: var(--primary-purple);
    box-shadow: 0 4px 12px rgba(184, 143, 219, 0.2);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--primary-purple);
    border-radius: 3px;
}

.calculator-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.calculator-content.active {
    display: block;
}

.calculator-content h3 {
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.calculator-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
    border-radius: 2px;
}

.calculator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.calc-input-group {
    display: flex;
    flex-direction: column;
}

.calc-input-group.full-width {
    grid-column: 1 / -1;
}

.calc-input-group label {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Modern Range Slider Styles */
input[type="range"] {
    width: 100%;
    height: 12px;
    background: linear-gradient(to right, var(--primary-purple) 0%, var(--primary-purple) 25%, #e0e0e0 25%, #e0e0e0 100%);
    border-radius: 10px;
    outline: none;
    margin: 1.5rem 0;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
    cursor: grab;
    box-shadow: 0 4px 20px rgba(184, 143, 219, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid white;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(184, 143, 219, 0.6);
    cursor: grabbing;
}

input[type="range"]::-webkit-slider-thumb:active {
    transform: scale(1.1);
    cursor: grabbing;
}

input[type="range"]::-moz-range-thumb {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
    cursor: grab;
    border: 3px solid white;
    box-shadow: 0 4px 20px rgba(184, 143, 219, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(184, 143, 219, 0.6);
    cursor: grabbing;
}

input[type="range"]::-moz-range-thumb:active {
    transform: scale(1.1);
    cursor: grabbing;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: -0.5rem;
}

/* Radio Button Styles */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    justify-content: space-between;
}

.radio-group.vertical {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

/* Horizontal layout for frequency options */
.radio-group:not(.vertical) .radio-label {
    flex: 1 1 auto;
    min-width: 100px;
}

/* Windows Calculator Grid for Mobile */
.windows-grid {
    display: grid;
    gap: 1rem;
}

.window-type {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.window-type label {
    font-weight: 500;
    color: var(--text-dark);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-control button {
    width: 36px;
    height: 36px;
    border: 2px solid var(--primary-purple);
    background: white;
    color: var(--primary-purple);
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
    position: relative;
    z-index: 1;
}

.quantity-control button:hover {
    background: var(--primary-purple);
    color: white;
}

.quantity-control button:active {
    transform: scale(0.95);
}

.quantity-control input {
    width: 50px;
    height: 36px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    background: #f8f9fa;
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
    .radio-group.vertical {
        grid-template-columns: repeat(2, 1fr);
    }

    /* For 4 options in office frequency */
    .radio-group:not(.vertical) {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .radio-group.vertical {
        grid-template-columns: 1fr;
    }

    .radio-group:not(.vertical) {
        display: grid;
        grid-template-columns: 1fr;
    }

    .radio-group:not(.vertical) .radio-label {
        width: 100%;
    }

    /* Calculator tabs - make them scrollable on mobile */
    .calculator-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }

    .tab-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
        white-space: nowrap;
    }

    /* Calculator content adjustments */
    .pricing-calculator {
        padding: 1.5rem;
    }

    .calculator-content h3 {
        font-size: 1.25rem;
    }

    /* Window calculator mobile optimization */
    .window-type {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .window-type label {
        margin-bottom: 0.5rem;
    }

    .quantity-control {
        justify-content: center;
    }

    .quantity-control button {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        touch-action: manipulation;
        position: relative;
        z-index: 1;
    }

    .quantity-control input {
        width: 60px;
        height: 44px;
        font-size: 1.125rem;
    }
}

.radio-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    min-height: 60px;
    position: relative;
    text-align: center;
}

.radio-group.vertical .radio-label {
    padding: 1.25rem 1rem;
    min-height: 80px;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

.radio-label:hover {
    border-color: var(--primary-purple-light);
    background: var(--gray-lighter);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

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

.radio-label span {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.radio-group.vertical .radio-label span {
    padding-left: 28px;
}

.radio-group:not(.vertical) .radio-label span {
    padding-left: 0;
    align-items: center;
}

/* Only show radio circles for vertical layout */
.radio-group.vertical .radio-label span::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid #d0d0d0;
    border-radius: 50%;
    background: white;
    transition: all 0.3s ease;
    left: 0;
    top: 2px;
}

/* Horizontal buttons don't need radio circles */
.radio-group:not(.vertical) .radio-label span::before {
    display: none;
}

.radio-label input[type="radio"]:checked ~ span::before {
    border-color: var(--primary-purple);
    background: var(--primary-purple);
}

.radio-label input[type="radio"]:checked ~ span::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
}

.radio-group.vertical .radio-label input[type="radio"]:checked ~ span::after {
    left: 6px;
    top: 8px;
}

.radio-group:not(.vertical) .radio-label input[type="radio"]:checked ~ span::after {
    display: none;
}

.radio-label input[type="radio"]:checked ~ span {
    color: var(--primary-purple);
}

.radio-label input[type="radio"]:checked ~ span strong {
    color: var(--primary-purple);
}

.radio-label:has(input[type="radio"]:checked) {
    border-color: var(--primary-purple);
    background: linear-gradient(135deg, rgba(212, 181, 240, 0.2), white);
    box-shadow: 0 0 0 3px rgba(184, 143, 219, 0.1);
}

.radio-label strong {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    display: block;
}

.radio-label small {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.3;
}

.calc-input-group select {
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
    cursor: pointer;
}

.calc-input-group select:hover,
.calc-input-group select:focus {
    outline: none;
    border-color: var(--primary-purple);
}

/* Enhanced select styling for contact form */
.form-group select {
    background-color: white;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
    display: block;
}

/* Ensure option text is styled properly */
.form-group select option {
    color: var(--text-dark);
    padding: 0.5rem;
}

/* iOS Safari specific fixes for select elements */
@supports (-webkit-touch-callout: none) {

    /* Fix for input placeholder centering on iOS Safari */
    .form-group input,
    .form-group textarea {
        -webkit-appearance: none;
        text-align: left;
        -webkit-text-align: left;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        text-align: left;
        -webkit-text-align: left;
    }
}

.price-result {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(184, 143, 219, 0.1) 100%);
    border-radius: 20px;
    margin-top: 2rem;
    border: 2px solid rgba(184, 143, 219, 0.2);
    position: relative;
    overflow: hidden;
}

.price-result::before {
    content: '💰';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 4rem;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.price-result p {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
}

.calculated-price {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 1rem;
    animation: pulse 2s infinite;
}

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

/* Windows Calculator */
.windows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.window-type {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.window-type:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.window-type label {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-control button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--primary-purple);
    background: white;
    color: var(--primary-purple);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-control button:hover {
    background: var(--primary-purple);
    color: white;
}

.quantity-control input {
    width: 60px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

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

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

.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.3s ease;
}

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

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

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

.badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

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

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

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

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

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

.price .currency {
    font-size: 1.25rem;
    color: var(--text-light);
}

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

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

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-light);
}

.btn-outline {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-outline:hover {
    background: var(--primary-purple);
    color: white;
}

.btn-full {
    width: 100%;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-primary:disabled {
    background: linear-gradient(135deg, #ccc, #999);
    box-shadow: none;
}

/* Areas Section */
.areas {
    background: rgba(255, 255, 255, 0.85);  /* More transparent to show bubbles */
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 2;
}

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

.area-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.area-card.main-area {
    background: linear-gradient(135deg, var(--primary-purple-light), white);
    border: 2px solid var(--primary-purple);
}

.area-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

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

.area-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.area-name {
    font-size: 1.25rem;
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.areas-cta {
    text-align: center;
    padding: 2rem;
    background: var(--gray-light);
    border-radius: var(--border-radius);
}

.areas-cta p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.125rem;
}

/* Testimonials Section */
.testimonials {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 5rem 0;
}

.testimonials-slider {
    max-width: 900px;
    margin: 3rem auto;
    position: relative;
}

.testimonials-container {
    display: flex;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-card {
    min-width: 100%;
    padding: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(184, 143, 219, 0.05) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease;
    position: relative;
    border: 2px solid rgba(184, 143, 219, 0.1);
}

.testimonial-card.active {
    display: block;
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--primary-purple);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-emoji {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(184, 143, 219, 0.1), rgba(184, 143, 219, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border: 3px solid var(--primary-purple);
    box-shadow: 0 6px 20px rgba(184, 143, 219, 0.2);
    transition: transform 0.3s ease;
}

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

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.testimonial-author-info strong {
    font-size: 1.125rem;
    color: var(--primary-purple);
    font-weight: 700;
}

.testimonial-author-info span {
    font-size: 0.95rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-author-info span::before {
    content: '📍';
    font-size: 0.875rem;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-nav-btn {
    background: var(--primary-purple);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav-btn:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary-purple);
    width: 30px;
    border-radius: 5px;
}

.testimonial-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--gray-light);
    border-radius: var(--border-radius);
}

.testimonial-cta p {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.85) 0%, rgba(232, 216, 245, 0.85) 100%);  /* More transparent */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

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

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card.clickable:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Social Media Icons - Safari Compatibility Fix */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.05);
}

.social-link svg {
    width: 1.8rem;
    height: 1.8rem;
    transition: all 0.3s ease;
}

.social-link.instagram {
    color: #E4405F;
}

.social-link.instagram:hover {
    background: rgba(228, 64, 95, 0.15);
    transform: scale(1.1);
}

.social-link.facebook {
    color: #1877F2;
}

.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.15);
    transform: scale(1.1);
}

.contact-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-card p {
    color: var(--primary-purple);
    font-weight: 600;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
    overflow: visible; /* Ensure labels are not clipped */
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--primary-purple-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(184, 143, 219, 0.1);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 0.5rem;
    font-weight: 500;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    font-size: 0.875rem;
    color: var(--primary-purple);
}

.form-group select + label,
.form-group select:focus + label {
    top: -0.5rem;
    font-size: 0.875rem;
    color: var(--primary-purple);
}

/* Ensure select has proper height and padding */
.form-group select {
    min-height: 48px;
    line-height: 1.5;
}

/* GDPR Notice */
.gdpr-notice {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.gdpr-notice p {
    font-size: 0.813rem;
    color: var(--text-light);
    line-height: 1.4;
    text-align: center;
    margin: 0;
}

.gdpr-notice a {
    color: var(--primary-purple);
    text-decoration: underline;
}

.gdpr-notice a:hover {
    color: var(--primary-purple-dark);
}

/* Mobile Contact Form Styles */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        order: 2; /* Show form first on mobile */
    }

    .contact-form-wrapper {
        order: 1;
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1.25rem 1rem;
        font-size: 1rem;
        min-height: 48px; /* Ensure touch targets are at least 44px */
    }

    .form-group textarea {
        min-height: 120px;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .btn-full {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        min-height: 48px;
    }

    .form-group {
        margin-bottom: 2rem;
    }

    .gdpr-notice p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.cookie-consent.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content h3 {
    margin: 0 0 0.5rem;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.cookie-content p {
    margin: 0;
    color: var(--text-light);
    flex: 1;
}

.cookie-content a {
    color: var(--primary-purple);
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons button {
        flex: 1;
    }
}

/* Privacy Policy Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-content h2 {
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.modal-content h3 {
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-content p,
.modal-content li {
    color: var(--text-light);
    line-height: 1.6;
}

.modal-content ul {
    margin: 0.5rem 0 1rem 1.5rem;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, rgba(44, 62, 80, 0.95), rgba(44, 62, 80, 1));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}


.footer-brand p {
    color: #b0b0b0;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    color: var(--primary-purple-light);
}

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

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

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary-purple-light);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #888;
}

/* 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);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        transition: 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-logo-text {
        font-size: 2.5rem;
    }
    
    .logo-wrapper {
        margin-right: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-logo {
        max-width: 300px;
    }

    .hero-owner {
        font-size: 1.5rem;
    }

    .mascot-image {
        max-width: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-quote {
        font-size: 3rem;
    }

    /* Social media icons mobile fix */
    .contact-card p[style*="font-size: 1.8rem"] {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .contact-card a[aria-label="Instagram"],
    .contact-card a[aria-label="Facebook"] {
        width: 3rem;
        height: 3rem;
        line-height: 3rem;
        font-size: 1.5rem;
    }
}