/* ============================================================================
   ULTRA PURE WATER TENERIFE - OPTIMIZED CSS
   Performance-first, mobile-first, accessible design
   NO EXTERNAL FONTS for 90+ PageSpeed score
   ============================================================================ */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables */
:root {
    /* Colors */
    --primary-blue: #1e40af;
    --secondary-blue: #3b82f6;
    --accent-blue: #60a5fa;
    --light-blue: #dbeafe;
    --accent-yellow: #FBC102;
    --success-green: #10b981;
    --danger-red: #ef4444;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --border-light: #e5e7eb;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    --gradient-accent: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Typography - System fonts only for performance */
    --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Container */
    --container-max: 1200px;
    --container-padding: 1.25rem;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-system);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.0625rem;
    line-height: 1.7;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--primary-blue);
}

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

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-blue);
    color: white;
    padding: 0.5rem 1rem;
    z-index: 9999;
    transition: top var(--transition-base);
}

.skip-link:focus {
    top: 0;
}

/* ============================================================================
   HEADER - STICKY
   ============================================================================ */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(30, 64, 175, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(30, 64, 175, 0.98);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-lg);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform var(--transition-base);
}

.logo:hover {
    transform: translateY(-2px);
    color: white;
}

.logo .water-icon {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

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

.logo .text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo .main {
    color: white;
    font-size: 1.125rem;
}

.logo .accent {
    color: var(--light-blue);
    font-size: 0.625rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Navigation */
#main-nav ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0;
    margin: 0;
}

#main-nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color var(--transition-base);
    position: relative;
    white-space: nowrap;
    display: block;
}

#main-nav a:hover {
    color: var(--accent-yellow);
}

#main-nav a:not(.contact-btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-yellow);
    transition: width var(--transition-base);
}

#main-nav a:not(.contact-btn):hover::after {
    width: 100%;
}

.contact-btn {
    background-color: var(--accent-yellow) !important;
    color: var(--text-dark) !important;
    padding: 0.625rem 1.5rem !important;
    border-radius: var(--radius-full);
    transition: all var(--transition-base) !important;
    font-weight: 600;
}

.contact-btn:hover {
    background-color: white !important;
    color: var(--primary-blue) !important;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    cursor: pointer;
    padding: 0.5rem;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: white;
    transition: all var(--transition-base);
    border-radius: 2px;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-100%);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */
.hero-section {
    display: flex;
    align-items: stretch;
    min-height: 100vh;
    background-color: #0f1419;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-visual {
    flex: 1 1 60%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    animation: ken-burns-gentle 25s ease-in-out infinite alternate;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(15, 20, 25, 0.2) 100%);
    pointer-events: none;
}

@keyframes ken-burns-gentle {
    0% {
        transform: scale(1.0);
        filter: brightness(0.95);
    }
    100% {
        transform: scale(1.08) translateX(-1%) translateY(-1%);
        filter: brightness(1.05);
    }
}

.hero-content {
    flex: 1 1 40%;
    background: linear-gradient(135deg, #0f1419 0%, #1e293b 100%);
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.sub-heading {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #cbd5e1;
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: white;
    font-size: 1rem;
}

.benefit-icon {
    color: var(--success-green);
    font-size: 1.25rem;
}

.service-area-heading {
    font-size: 1.25rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.location-tag {
    background: rgba(96, 165, 250, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(96, 165, 250, 0.3);
    color: #60a5fa;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.location-tag:hover {
    background: rgba(96, 165, 250, 0.25);
    border-color: rgba(96, 165, 250, 0.5);
    transform: translateY(-2px);
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: #60a5fa;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
    font-weight: 500;
    line-height: 1.3;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(30, 64, 175, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.5);
    color: white;
}

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

.btn-secondary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* ============================================================================
   SECTIONS
   ============================================================================ */
.section {
    padding: var(--spacing-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

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

/* ============================================================================
   FOOTER
   ============================================================================ */
.site-footer {
    background: linear-gradient(180deg, #0E3A8A 0%, #0b1f52 100%);
    color: white;
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

/* Tablet: Start showing 4 columns earlier */
@media (min-width: 900px) {
    .site-footer .container {
        max-width: 95vw;
    }
    
    .footer-content {
        grid-template-columns: 1.3fr 1fr 0.9fr 1.1fr;
        gap: 1.5rem;
    }
}

/* Desktop: Better spacing */
@media (min-width: 1200px) {
    .site-footer .container {
        max-width: 90vw;
    }
    
    .footer-content {
        gap: 2rem;
    }
}

/* Large Desktop: Even more space */
@media (min-width: 1600px) {
    .site-footer .container {
        max-width: 85vw;
    }
    
    .footer-content {
        gap: 3rem;
    }
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-base);
    font-size: 0.9375rem;
}

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

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    width: 20px;
    color: var(--accent-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.8125rem !important;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--accent-yellow);
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: all var(--transition-base);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #1ebd5a;
    transform: scale(1.1);
    color: white;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

/* ============================================================================
   RESPONSIVE - MOBILE FIRST
   ============================================================================ */

/* Tablet and up */
@media (min-width: 768px) {
    :root {
        --container-padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: row;
    }
    
    .hero-content {
        padding: 6rem 3rem;
    }
}

/* Desktop and up */
@media (min-width: 1024px) {
    .section {
        padding: 5rem 0;
    }
}

/* Mobile menu */
@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    #main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(30, 64, 175, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem;
        box-shadow: var(--shadow-xl);
    }
    
    #main-nav.active {
        display: block;
    }
    
    #main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    #main-nav a {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-section {
        flex-direction: column;
    }
    
    .hero-visual {
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 3rem 1.5rem;
    }
    
    .logo .main {
        font-size: 0.9rem;
    }
    
    .logo .accent {
        font-size: 0.5rem;
    }
}

/* Print styles */
@media print {
    .site-header,
    .whatsapp-float,
    .cta-buttons,
    .site-footer {
        display: none;
    }
}

/* ============================================================================
   AREAS WE COVER PAGE
   ============================================================================ */

/* Hero */
.areas-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 4rem 0;
}

.hero-eyebrow {
    color: rgba(255,255,255,0.9);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero-lead {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    max-width: 700px;
    margin-bottom: 2rem;
}

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

.btn-yellow {
    background: var(--accent-yellow);
    color: var(--text-dark);
}

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

/* Area Grid */
.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.area-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    padding: 1.75rem;
    border: 2px solid rgba(30,64,175,0.1);
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    border-color: var(--accent-blue);
}

.area-card h3 {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    color: var(--primary-blue);
    font-weight: 800;
}

.area-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.area-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(30,64,175,0.05);
    border: 1px solid rgba(30,64,175,0.1);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.area-list li:hover {
    background: rgba(30,64,175,0.1);
    transform: translateX(4px);
}

.area-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-yellow);
    box-shadow: 0 0 0 3px rgba(251,193,2,0.25);
    flex: 0 0 auto;
}

.area-note {
    margin-top: 1rem;
    opacity: 0.85;
    font-size: 0.9375rem;
    color: var(--text-light);
}

/* CTA Box */
.areas-cta {
    margin-top: 3rem;
    border-radius: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(30,64,175,0.1), rgba(251,193,2,0.1));
    border: 2px solid rgba(30,64,175,0.15);
}

.areas-cta h3 {
    margin: 0 0 1rem 0;
    color: var(--primary-blue);
    font-weight: 900;
}

.areas-cta p {
    margin: 0 0 1.5rem 0;
    max-width: 700px;
}

/* Trust Box */
.trust-box {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--background-light);
    border-radius: 1rem;
}

.trust-title {
    text-align: center;
    margin-bottom: 2rem;
}

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

.trust-item {
    text-align: center;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* ============================================================================
   FAQ ACCORDION STYLES - Beautiful & Engaging
   ============================================================================ */

/* Tab Navigation for FAQ */
.services-tab-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-link {
    background: white;
    border: 2px solid var(--border-light);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.tab-link i {
    font-size: 1.25rem;
    color: var(--accent-blue);
    transition: all var(--transition-base);
}

.tab-link:hover {
    border-color: var(--accent-blue);
    background: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.tab-link.active {
    background: var(--gradient-primary);
    border-color: var(--primary-blue);
    color: white;
    box-shadow: var(--shadow-lg);
}

.tab-link.active i {
    color: var(--accent-yellow);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

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

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

/* FAQ Container */
.faq-category-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* FAQ Item - Beautiful Accordion */
.faq-item {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-item[open] {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.15);
}

/* FAQ Summary (Question/Header) */
.faq-item summary {
    padding: 1.5rem 1.75rem;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-blue);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: all var(--transition-base);
    position: relative;
    user-select: none;
}

/* Remove default arrow on all browsers */
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::marker {
    display: none;
}

/* Custom arrow indicator */
.faq-item summary::after {
    content: '▼';
    font-size: 0.875rem;
    color: var(--accent-blue);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--light-blue);
    border-radius: 50%;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
    background: var(--primary-blue);
    color: var(--accent-yellow);
}

.faq-item summary:hover {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.03), rgba(96, 165, 250, 0.05));
}

.faq-item[open] summary {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.08), rgba(96, 165, 250, 0.12));
    border-bottom: 2px solid var(--light-blue);
}

/* FAQ Content (Answer) */
.faq-content {
    padding: 1.75rem;
    padding-top: 1.25rem;
    color: var(--text-dark);
    line-height: 1.8;
    animation: slideDown 0.3s ease-out;
}

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

.faq-content p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-content p:last-child {
    margin-bottom: 0;
}

.faq-content strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.faq-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-content li {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.faq-content li strong {
    color: var(--primary-blue);
}

.faq-content a {
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: all var(--transition-fast);
}

.faq-content a:hover {
    color: var(--primary-blue);
    text-decoration-color: var(--accent-yellow);
}

/* CTA Section Styling */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-section .btn {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-section .btn:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Mobile Responsiveness for FAQ */
@media (max-width: 768px) {
    .services-tab-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-link {
        width: 100%;
        justify-content: center;
    }
    
    .faq-item summary {
        padding: 1.25rem 1.25rem;
        font-size: 1rem;
    }
    
    .faq-item summary::after {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .faq-content {
        padding: 1.25rem;
        font-size: 0.9375rem;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
}

/* Focus styles for accessibility */
.faq-item summary:focus {
    outline: 3px solid var(--accent-yellow);
    outline-offset: 2px;
}

.tab-link:focus {
    outline: 3px solid var(--accent-yellow);
    outline-offset: 2px;
}

/* ============================================================================
   ACTIVE PAGE NAVIGATION STYLING
   ============================================================================ */

/* Active page indicator - Yellow text for current page */
#main-nav a[aria-current="page"],
#main-nav a.active,
body.page-faq #main-nav a[href*="faq"],
body.page-pricing #main-nav a[href*="pricing"],
body.page-services #main-nav a[href*="services"],
body.page-about #main-nav a[href*="about"],
body.page-contact #main-nav a[href*="contact"],
body.page-home #main-nav a[href="/"],
body.page-home #main-nav a[href*="index"] {
    color: var(--accent-yellow) !important;
}

/* Active state for Contact button when ON contact page */
body.page-contact #main-nav a.contact-btn {
    background: white !important;
    color: var(--primary-blue) !important;
    border: 2px solid var(--accent-yellow) !important;
}

/* Remove underline animation for active page */
#main-nav a[aria-current="page"]::after,
#main-nav a.active::after,
body.page-faq #main-nav a[href*="faq"]::after,
body.page-pricing #main-nav a[href*="pricing"]::after,
body.page-services #main-nav a[href*="services"]::after,
body.page-about #main-nav a[href*="about"]::after,
body.page-contact #main-nav a[href*="contact"]::after,
body.page-home #main-nav a[href="/"]::after,
body.page-home #main-nav a[href*="index"]::after {
    display: none;
}

/* ============================================================================
   HOMEPAGE SPECIFIC STYLES - STUNNING DESIGN MATCHING LIVE SITE
   ============================================================================ */

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    background: var(--background-white);
}

.hero-visual {
    background: url('/images/water-pouring.jpg') center/cover;
    min-height: 550px;
    border-radius: var(--radius-xl);
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.quality-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quality-badge-1 {
    top: 20px;
    left: 20px;
}

.quality-badge-2 {
    top: 80px;
    right: 30px;
    animation-delay: 1s;
}

.quality-badge-3 {
    bottom: 30px;
    left: 30px;
    animation-delay: 2s;
}

.quality-badge i {
    color: var(--accent-yellow);
    font-size: 1rem;
}

.purity-indicator {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 85px;
    height: 85px;
    background: rgba(96, 165, 250, 0.95);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.purity-number {
    font-size: 1.2rem;
    line-height: 1;
}

.purity-label {
    font-size: 0.7rem;
    line-height: 1;
    margin-top: 0.25rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(96, 165, 250, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 6px 30px rgba(96, 165, 250, 0.7); }
}

.hero-content {
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--text-dark);
}

.sub-heading {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
    color: var(--text-dark);
}

.benefit-icon {
    color: var(--success-green);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-area-heading {
    font-size: 1.125rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

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

.location-tag {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.625rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all var(--transition-base);
}

.location-tag:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: var(--radius-lg);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0.5rem 0 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* Section Light Background */
.section-light-bg {
    background: var(--background-light);
}

/* Problems Grid */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.problem-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

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

.problem-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Solution Callout */
.solution-callout {
    background: linear-gradient(135deg, var(--light-blue), rgba(96, 165, 250, 0.15));
    padding: 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
    margin-top: 3rem;
    border: 2px solid var(--accent-blue);
}

.solution-callout h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.solution-callout p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Grid */
.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(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
    position: relative;
    border: 2px solid var(--border-light);
}

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

.service-card-featured {
    border: 3px solid var(--primary-blue);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(30, 64, 175, 0.2);
}

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

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3,
.service-card h4 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 1rem 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

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

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

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-base);
}

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

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.trust-card h3,
.trust-card h4 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.trust-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Review Carousel */
.review-carousel-wrapper {
    overflow: hidden;
    margin-top: 3rem;
    padding: 2rem 0;
}

.review-carousel {
    display: flex;
    gap: 2rem;
    animation: scroll-reviews 40s linear infinite;
}

@keyframes scroll-reviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-carousel:hover {
    animation-play-state: paused;
}

/* Benefits CTA Grid */
.benefits-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-cta-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.benefit-cta-card i {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    display: block;
}

.benefit-cta-card h3,
.benefit-cta-card h4 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.benefit-cta-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

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

.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.contact-info h3,
.contact-info h4 {
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.contact-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.contact-details-list i {
    color: var(--accent-blue);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

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

.btn-whatsapp {
    background: #25d366;
    color: white;
    flex: 1;
}

.btn-whatsapp:hover {
    background: #1DAE50;
    color: white;
}

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

.contact-form-wrapper h3,
.contact-form-wrapper h4 {
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: all var(--transition-base);
    font-family: var(--font-system);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.form-security {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.form-security i {
    margin-right: 0.5rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    display: none;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
}

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

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
}

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

/* Mobile Responsive */
@media (max-width: 900px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-visual {
        min-height: 400px;
        order: -1;
    }
    
    .stats-bar {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card-featured {
        transform: scale(1);
    }
}

/* ============================================================================
   2026 MODERN HERO DESIGN - Full Width Glass-Morphism
   ============================================================================ */

.hero-section-modern {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.85), rgba(96, 165, 250, 0.75)), 
                url('/images/water-pouring.jpg') center/cover;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(251, 193, 2, 0.15), transparent 50%);
}

.hero-content-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 4rem 0;
}

.hero-text-content {
    max-width: 800px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    color: white !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.1 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    color: white;
}

.hero-benefits i {
    color: var(--accent-yellow);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hero-stats-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

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

.stat-badge .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-yellow);
    line-height: 1;
}

.stat-badge .stat-label {
    display: block;
    font-size: 0.85rem;
    color: white;
    margin-top: 0.5rem;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 25px rgba(251, 193, 2, 0.4);
    transition: all var(--transition-base);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 193, 2, 0.5);
    background: #FFD700;
}

.btn-hero-whatsapp {
    background: #25d366;
    color: white;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-hero-whatsapp:hover {
    background: #1DAE50;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.hero-locations {
    margin-top: 2.5rem;
}

.locations-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.locations-pills {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.locations-pills span {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.floating-badges {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.quality-badge-modern {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--primary-blue);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    animation: float 4s ease-in-out infinite;
}

.quality-badge-modern i {
    font-size: 1.5rem;
    color: var(--accent-yellow);
}

.quality-badge-1 {
    top: 10%;
    right: 10%;
}

.quality-badge-2 {
    bottom: 15%;
    left: 8%;
    animation-delay: 2s;
}

/* ============================================================================
   SEXY GRADIENT SERVICE CARDS - 2026 DESIGN
   ============================================================================ */

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

.service-card-sexy {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.service-card-sexy:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-blue);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.card-glow-blue {
    --glow-color: rgba(96, 165, 250, 0.15);
}

.card-glow-yellow {
    --glow-color: rgba(251, 193, 2, 0.2);
}

.service-card-sexy:hover .card-glow {
    opacity: 1;
}

.service-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.25rem;
    color: white;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
    transition: all var(--transition-base);
}

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

.service-icon-featured {
    background: linear-gradient(135deg, var(--accent-yellow), #FFD700);
    box-shadow: 0 8px 25px rgba(251, 193, 2, 0.4);
}

.service-card-featured-modern {
    background: linear-gradient(145deg, #fff8e1, #ffffff);
    border: 3px solid var(--accent-yellow);
    transform: scale(1.05);
    z-index: 2;
}

.service-card-featured-modern:hover {
    transform: scale(1.05) translateY(-12px);
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 0.5rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.service-card-sexy h4 {
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.price-modern .currency {
    font-size: 1.5rem;
    color: var(--accent-blue);
    font-weight: 700;
}

.price-modern .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.price-modern .period,
.price-modern .from {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.price-featured .amount {
    color: var(--accent-yellow);
}

.service-description {
    text-align: center;
    margin: 1.5rem 0;
    color: var(--text-dark);
    line-height: 1.7;
}

.feature-list-modern {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list-modern li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.feature-list-modern i {
    color: var(--success-green);
    font-size: 1.125rem;
    flex-shrink: 0;
    background: rgba(16, 185, 129, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn-card {
    width: 100%;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius-full);
    font-weight: 700;
    text-align: center;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}

.btn-card:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.btn-card i {
    transition: transform var(--transition-base);
}

.btn-card:hover i {
    transform: translateX(5px);
}

.btn-card-featured {
    background: linear-gradient(135deg, var(--accent-yellow), #FFD700);
    border: none;
    color: var(--primary-blue);
}

.btn-card-featured:hover {
    background: linear-gradient(135deg, #FFD700, var(--accent-yellow));
    color: var(--primary-blue);
}

/* ============================================================================
   SEXY FLOATING BENEFIT CARDS
   ============================================================================ */

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

.benefit-card-sexy {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.benefit-card-sexy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.benefit-card-sexy:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.benefit-icon-float {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-blue), rgba(96, 165, 250, 0.3));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-base);
}

.benefit-card-sexy:hover .benefit-icon-float {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
}

.benefit-icon-float i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.benefit-card-sexy h4 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.benefit-card-sexy p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Mobile Responsive for Modern Design */
@media (max-width: 900px) {
    .hero-text-content {
        padding: 2.5rem 2rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem) !important;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stats-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .hero-cta-buttons a {
        width: 100%;
        justify-content: center;
    }
    
    .quality-badge-modern {
        display: none;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .service-card-featured-modern {
        transform: scale(1);
    }
    
    .featured-ribbon {
        top: 15px;
        right: -40px;
        padding: 0.4rem 2.5rem;
        font-size: 0.7rem;
    }
}

/* ============================================================================
   FIXES FOR FLOATING BADGES AND BENEFIT CARDS
   ============================================================================ */

/* Override previous badge styling to ensure visibility */
.quality-badge-modern {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-full);
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-blue);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    animation: float 4s ease-in-out infinite;
    z-index: 10;
    pointer-events: all;
}

.quality-badge-modern i {
    font-size: 1.5rem !important;
    color: var(--accent-yellow);
    display: block !important;
}

.quality-badge-modern span {
    white-space: nowrap;
    display: block !important;
}

.quality-badge-1 {
    top: 10% !important;
    right: 10% !important;
}

.quality-badge-2 {
    bottom: 15% !important;
    left: 8% !important;
    animation-delay: 2s !important;
}

/* Enhanced float animation */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-15px);
    }
}

/* Make sure floating badges container doesn't block */
.floating-badges {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

/* Benefit card icons - make them visible and colorful */
.benefit-icon-float i {
    font-size: 2.25rem !important;
    color: var(--primary-blue);
    display: block;
}

/* Add gradient backgrounds to benefit icons for more pizzazz */
.benefit-card-sexy:nth-child(1) .benefit-icon-float {
    background: linear-gradient(135deg, #dbeafe, #93c5fd);
}

.benefit-card-sexy:nth-child(1):hover .benefit-icon-float {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.benefit-card-sexy:nth-child(1):hover .benefit-icon-float i {
    color: white;
}

.benefit-card-sexy:nth-child(2) .benefit-icon-float {
    background: linear-gradient(135deg, #fef3c7, #fcd34d);
}

.benefit-card-sexy:nth-child(2):hover .benefit-icon-float {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.benefit-card-sexy:nth-child(2):hover .benefit-icon-float i {
    color: white;
}

.benefit-card-sexy:nth-child(3) .benefit-icon-float {
    background: linear-gradient(135deg, #d1fae5, #6ee7b7);
}

.benefit-card-sexy:nth-child(3):hover .benefit-icon-float {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.benefit-card-sexy:nth-child(3):hover .benefit-icon-float i {
    color: white;
}

/* Mobile fixes for badges */
@media (max-width: 900px) {
    .quality-badge-modern {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .quality-badge-modern i {
        font-size: 1.25rem !important;
    }
    
    .quality-badge-1 {
        top: 5% !important;
        right: 5% !important;
    }
    
    .quality-badge-2 {
        bottom: 10% !important;
        left: 5% !important;
    }
}

/* ============================================================================
   FINAL FIXES - Sexy Compact Badges & Visible Icons
   ============================================================================ */

/* Make floating badges compact and sexy again */
.quality-badge-modern {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.625rem 1rem !important;
    border-radius: var(--radius-full);
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem !important;
    font-weight: 600;
    font-size: 0.75rem !important;
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    animation: float 4s ease-in-out infinite;
    z-index: 10;
    white-space: nowrap;
    width: auto !important;
}

.quality-badge-modern i {
    font-size: 1rem !important;
    color: var(--accent-yellow);
}

.quality-badge-modern span {
    font-size: 0.75rem !important;
    line-height: 1;
}

/* Specific positioning for compact badges */
.quality-badge-1 {
    top: 8% !important;
    right: 8% !important;
}

.quality-badge-2 {
    bottom: 12% !important;
    left: 6% !important;
}

/* Service card icons - make them ACTUALLY show the icon */
.service-icon-modern i {
    display: block !important;
    font-size: 2.25rem !important;
}

/* Benefit card icons - FORCE them to be visible */
.benefit-icon-float {
    width: 70px !important;
    height: 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 20px !important;
    margin: 0 auto 1.5rem !important;
}

.benefit-icon-float i {
    font-size: 2rem !important;
    display: block !important;
    line-height: 1 !important;
}

/* Ensure Font Awesome icons load properly */
.fas, .fa, .fab {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
}

.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

/* Mobile fixes */
@media (max-width: 900px) {
    .quality-badge-modern {
        padding: 0.5rem 0.875rem !important;
        font-size: 0.7rem !important;
        gap: 0.4rem !important;
    }
    
    .quality-badge-modern i {
        font-size: 0.875rem !important;
    }
    
    .quality-badge-1 {
        top: 5% !important;
        right: 3% !important;
    }
    
    .quality-badge-2 {
        bottom: 8% !important;
        left: 3% !important;
    }
}

/* ============================================================================
   PERFECT COMPACT BADGES - Final Fix to Match Screenshot 2
   ============================================================================ */

/* Make badges super compact like screenshot 2 */
.quality-badge-modern {
    position: absolute !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    padding: 0.5rem 0.875rem !important;
    border-radius: 25px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    font-weight: 600 !important;
    font-size: 0.8125rem !important;
    color: var(--primary-blue) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
    animation: float 4s ease-in-out infinite !important;
    z-index: 10 !important;
    white-space: nowrap !important;
    width: auto !important;
    max-width: fit-content !important;
}

.quality-badge-modern i {
    font-size: 1rem !important;
    color: var(--accent-yellow) !important;
    margin: 0 !important;
    padding: 0 !important;
}

.quality-badge-modern span {
    font-size: 0.8125rem !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Perfect positioning like screenshot 2 */
.quality-badge-1 {
    top: 12% !important;
    left: 12% !important;
    right: auto !important;
}

.quality-badge-2 {
    bottom: 40% !important;
    left: 8% !important;
    right: auto !important;
}

/* Add a third badge for variety (if you want it) */
.quality-badge-3 {
    top: 35% !important;
    right: 10% !important;
    left: auto !important;
    animation-delay: 1s !important;
}

/* Mobile - hide on small screens to avoid clutter */
@media (max-width: 768px) {
    .quality-badge-modern {
        display: none !important;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .quality-badge-1 {
        top: 10% !important;
        left: 8% !important;
    }
    
    .quality-badge-2 {
        bottom: 35% !important;
        left: 6% !important;
    }
}

/* ============================================================================
   HERO SPLIT LAYOUT - Image LEFT, Content RIGHT (2026 Modern)
   ============================================================================ */

.hero-section-split {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.hero-container-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-image-side {
    position: relative;
}

.hero-visual-split {
    width: 100%;
    height: 100%;
}

.hero-content-side {
    display: flex;
    align-items: center;
}

.hero-glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-title-split {
    font-size: clamp(2.25rem, 4vw, 3.25rem) !important;
    color: var(--primary-blue) !important;
    margin-bottom: 1rem !important;
    line-height: 1.1 !important;
}

.hero-subtitle-split {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-benefits-split {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.hero-benefits-split li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.hero-benefits-split i {
    color: var(--success-green);
    font-size: 1.25rem;
    flex-shrink: 0;
}

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

.stat-badge-split {
    background: linear-gradient(135deg, var(--light-blue), rgba(96, 165, 250, 0.2));
    padding: 1.25rem 1rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.stat-number-split {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-label-split {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.hero-cta-buttons-split {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-locations-split {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(96, 165, 250, 0.2);
}

.locations-label-split {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.locations-pills-split {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.locations-pills-split span {
    background: rgba(96, 165, 250, 0.15);
    color: var(--primary-blue);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    border: 1px solid rgba(96, 165, 250, 0.3);
    font-weight: 600;
    transition: all var(--transition-base);
}

.locations-pills-split span:hover {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
    transform: translateY(-2px);
}

/* Mobile Responsive for Split Layout */
@media (max-width: 900px) {
    .hero-container-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image-side {
        order: -1;
    }
    
    .hero-visual-split {
        min-height: 400px !important;
    }
    
    .hero-glass-panel {
        padding: 2rem;
    }
    
    .hero-stats-split {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .hero-cta-buttons-split {
        flex-direction: column;
    }
    
    .hero-cta-buttons-split a {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 901px) and (max-width: 1200px) {
    .hero-glass-panel {
        padding: 2.5rem;
    }
    
    .hero-title-split {
        font-size: 2.5rem !important;
    }
}

/* ============================================================================
   HERO SPLIT LAYOUT FIXES - Equal Heights & Better Buttons
   ============================================================================ */

/* Make both sides equal height */
.hero-container-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch; /* Changed from center to stretch */
    min-height: 650px;
}

.hero-image-side,
.hero-content-side {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hero-visual-split {
    flex: 1;
    min-height: 100% !important;
}

.hero-glass-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Reduce CTA button sizes by 50% */
.hero-cta-buttons-split a {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
}

.hero-cta-buttons-split i {
    font-size: 1rem !important;
}

/* Override hero button styles specifically */
.btn-hero-primary,
.btn-hero-whatsapp {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9375rem !important;
}

/* ============================================================================
   CRITICAL FIXES - Force Icons Visible & Remove Float Animations
   ============================================================================ */

/* FORCE all Font Awesome icons to be visible */
.service-icon-modern i,
.benefit-icon-float i,
.fas,
.fa,
.far,
.fab {
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure service card icons show */
.service-icon-modern {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue)) !important;
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 2rem !important;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3) !important;
}

.service-icon-modern i {
    font-size: 2.25rem !important;
    color: white !important;
    line-height: 1 !important;
}

.service-icon-featured {
    background: linear-gradient(135deg, var(--accent-yellow), #FFD700) !important;
}

/* Ensure benefit card icons show */
.benefit-icon-float {
    width: 70px !important;
    height: 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 20px !important;
    margin: 0 auto 1.5rem !important;
}

.benefit-icon-float i {
    font-size: 2rem !important;
    display: block !important;
    line-height: 1 !important;
}

/* DISABLE all float animations globally - make everything static */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) !important;
    }
}

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

/* Remove animations from scroll-triggered elements */
.scroll-animate {
    animation: none !important;
}

/* Keep fade-in but remove movement */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.3s ease-in !important;
}

/* MOBILE: Disable ALL animations completely */
@media (max-width: 768px) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    .scroll-animate {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================================================
   REVIEW CAROUSEL - Mobile Swipe & Faster Speed
   ============================================================================ */

.review-carousel-wrapper {
    overflow-x: auto !important;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory;
    cursor: grab;
    user-select: none;
}

.review-carousel-wrapper:active {
    cursor: grabbing;
}

.review-carousel {
    display: flex !important;
    gap: 2rem;
    animation: scroll-reviews 20s linear infinite !important; /* Changed from 40s to 20s - 2x faster */
}

/* Pause animation on hover for desktop */
.review-carousel:hover {
    animation-play-state: paused !important;
}

/* Mobile: disable auto-scroll, enable manual swipe */
@media (max-width: 768px) {
    .review-carousel {
        animation: none !important;
        scroll-snap-type: x mandatory;
    }
    
    .review-carousel > * {
        scroll-snap-align: start;
        flex-shrink: 0;
        width: 85vw;
    }
}

/* Faster scroll animation for desktop */
@keyframes scroll-reviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================================
   NUCLEAR OPTION - Force Benefit Icons to Show No Matter What
   ============================================================================ */

/* Override EVERYTHING for benefit card icons */
.benefit-icon-float,
.benefit-card-sexy .benefit-icon-float,
.benefits-cta-grid-modern .benefit-icon-float {
    width: 70px !important;
    height: 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 20px !important;
    margin: 0 auto 1.5rem !important;
    position: relative !important;
    overflow: visible !important;
}

/* Force icons to show with content attribute as fallback */
.benefit-icon-float i,
.benefit-card-sexy .benefit-icon-float i,
.benefits-cta-grid-modern .benefit-icon-float i {
    font-size: 2rem !important;
    display: block !important;
    line-height: 1 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "FontAwesome" !important;
    font-weight: 900 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Specific icon content as fallback if Font Awesome fails */
.benefit-icon-float i.fa-vial::before {
    content: "\f492" !important;
}

.benefit-icon-float i.fa-calculator::before {
    content: "\f1ec" !important;
}

.benefit-icon-float i.fa-handshake::before {
    content: "\f2b5" !important;
}

/* Add text fallback if icons still don't show */
.benefit-card-sexy:nth-child(1) .benefit-icon-float::after {
    content: "🧪";
    position: absolute;
    font-size: 2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.benefit-card-sexy:nth-child(2) .benefit-icon-float::after {
    content: "🧮";
    position: absolute;
    font-size: 2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.benefit-card-sexy:nth-child(3) .benefit-icon-float::after {
    content: "🤝";
    position: absolute;
    font-size: 2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* If Font Awesome loads, hide emoji fallback */
.benefit-icon-float i:not(:empty) ~ .benefit-icon-float::after {
    display: none !important;
}

/* ============================================================================
   MOBILE HERO FIXES - Proper Stacking & Spacing
   ============================================================================ */

@media (max-width: 900px) {
    /* Fix hero split layout on mobile */
    .hero-section-split {
        padding: 2rem 0 1rem;
    }
    
    .hero-container-split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        min-height: auto;
    }
    
    /* Image side on mobile */
    .hero-image-side {
        order: 1;
    }
    
    .hero-visual-split {
        min-height: 350px !important;
        border-radius: 1rem !important;
    }
    
    /* Content side on mobile */
    .hero-content-side {
        order: 2;
    }
    
    .hero-glass-panel {
        padding: 2rem 1.5rem !important;
        margin-bottom: 1rem;
    }
    
    /* Typography adjustments */
    .hero-title-split {
        font-size: 2rem !important;
        line-height: 1.1 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-subtitle-split {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Benefits list - more compact */
    .hero-benefits-split {
        margin: 1.5rem 0 !important;
    }
    
    .hero-benefits-split li {
        font-size: 0.9rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .hero-benefits-split i {
        font-size: 1.125rem !important;
    }
    
    /* Stats - stack vertically */
    .hero-stats-split {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        margin: 1.5rem 0 !important;
    }
    
    .stat-badge-split {
        padding: 1rem !important;
    }
    
    /* Buttons - full width and properly spaced */
    .hero-cta-buttons-split {
        flex-direction: column !important;
        gap: 0.75rem !important;
        margin: 1.5rem 0 !important;
    }
    
    .hero-cta-buttons-split a {
        width: 100% !important;
        justify-content: center !important;
        padding: 1rem 1.5rem !important;
    }
    
    /* Locations - more compact */
    .hero-locations-split {
        margin-top: 1.5rem !important;
        padding-top: 1.5rem !important;
    }
    
    .locations-label-split {
        font-size: 0.85rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .locations-pills-split {
        gap: 0.4rem !important;
    }
    
    .locations-pills-split span {
        font-size: 0.75rem !important;
        padding: 0.35rem 0.75rem !important;
    }
    
    /* Fix WhatsApp floating button overlap */
    .hero-glass-panel {
        margin-bottom: 80px !important;
    }
}

/* Extra small phones */
@media (max-width: 375px) {
    .hero-glass-panel {
        padding: 1.5rem 1rem !important;
    }
    
    .hero-title-split {
        font-size: 1.75rem !important;
    }
    
    .hero-subtitle-split {
        font-size: 0.9rem !important;
    }
    
    .locations-pills-split span {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.65rem !important;
    }
}

/* ============================================================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================================================ */

/* About intro text */
.about-intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.team-photo-placeholder {
    width: 150px;
    height: 150px;
    background: var(--light-blue);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 0.875rem;
}

.team-photo-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-blue);
}

.team-member h3 {
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 0.9375rem;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Journey Container */
.journey-container {
    max-width: 900px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.journey-step {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
}

.journey-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.journey-icon i {
    font-size: 2.5rem;
    color: white;
}

.journey-step h3 {
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.journey-step p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.journey-step a {
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: underline;
}

/* Quote Boxes */
.about-highlight-quote {
    background: linear-gradient(135deg, var(--light-blue), rgba(96, 165, 250, 0.1));
    border-left: 4px solid var(--primary-blue);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: var(--radius-lg);
}

.mini-quote p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mini-quote span {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

/* Values Grid */
.values-grid {
    display: grid;
    gap: 2.5rem;
    margin-top: 3rem;
}

.values-grid.three-cols {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.value-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

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

.value-card i {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.value-card a {
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: underline;
}

/* Mobile Responsive for About Page */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .journey-step {
        padding: 2rem 1.5rem;
    }
    
    .journey-icon {
        width: 60px;
        height: 60px;
    }
    
    .journey-icon i {
        font-size: 2rem;
    }
    
    .about-highlight-quote {
        padding: 1.5rem;
    }
    
    .values-grid.three-cols {
        grid-template-columns: 1fr;
    }
}

/* ============================================================================
   ABOUT PAGE - PROPER CARD GRID LAYOUTS (MATCHING LIVE SITE)
   ============================================================================ */

/* Journey Grid - 2 Columns Side by Side */
.journey-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.journey-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
}

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

.journey-emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.journey-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.journey-card p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: left;
}

.journey-quote {
    background: var(--light-blue);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
    text-align: left;
}

.journey-quote p {
    font-style: italic;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.journey-quote span {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: normal;
}

/* Mobile - Stack cards vertically */
@media (max-width: 900px) {
    .journey-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================================
   ABOUT PAGE - VALUE CARD EMOJIS & LINK STYLING
   ============================================================================ */

/* Replace icon with emoji styling */
.value-emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

/* Remove the old icon styling since we're using emojis now */
.value-card i {
    display: none;
}

/* Link styling - blue but no underline */
.about-intro-text a,
.journey-card a,
.value-card a {
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    border-bottom: 2px solid transparent;
}

.about-intro-text a:hover,
.journey-card a:hover,
.value-card a:hover {
    color: var(--primary-blue);
    border-bottom: 2px solid var(--primary-blue);
}

/* ============================================================================
   SERVICES PAGE - RESIDENTIAL FOCUS STYLING
   ============================================================================ */

/* Services Grid (already exists but adding specifics) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

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

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

/* Comparison Table */
.comparison-table-container {
    overflow-x: auto;
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 700px;
}

.comparison-table thead {
    background: var(--gradient-primary);
}

.comparison-table thead th {
    color: white;
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.0625rem;
}

.comparison-table thead th:first-child {
    text-align: left;
    border-radius: var(--radius-lg) 0 0 0;
}

.comparison-table thead th:last-child {
    border-radius: 0 var(--radius-lg) 0 0;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: var(--light-blue);
}

.comparison-table td {
    padding: 1.25rem 1rem;
    text-align: center;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-table td i {
    margin-right: 0.5rem;
    color: var(--accent-blue);
}

.check-yes {
    color: var(--success-green);
    font-weight: 600;
}

.check-best {
    color: var(--accent-yellow);
    font-weight: 700;
}

.check-no {
    color: var(--text-light);
}

.check-yes i,
.check-best i,
.check-no i {
    margin-right: 0.5rem;
}

/* Process Steps */
.process-steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    text-align: center;
}

.process-step {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.process-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.process-step h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.process-steps-container > .btn {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .comparison-table-container {
        border-radius: var(--radius-md);
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .comparison-table thead th,
    .comparison-table td {
        padding: 1rem 0.75rem;
    }
    
    .process-steps-container {
        grid-template-columns: 1fr;
    }
}

/* ============================================================================
   SERVICES PAGE - BEAUTIFUL COMPARISON TABLE & PROCESS (MATCHING SCREENSHOT)
   ============================================================================ */

/* Large CTA Button */
.btn-cta-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.4);
    transition: all var(--transition-base);
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(96, 165, 250, 0.5);
}

/* Improved Comparison Table - Clean & Modern */
.comparison-table-container {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    background: white;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    min-width: 800px;
}

.comparison-table thead {
    background: linear-gradient(135deg, #f8fafc, #e0e7ff);
}

.comparison-table thead th {
    color: var(--text-dark);
    padding: 2rem 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.125rem;
    border-bottom: 2px solid var(--border-light);
}

.comparison-table thead th:first-child {
    text-align: left;
    color: var(--primary-blue);
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-light);
    transition: background var(--transition-base);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(96, 165, 250, 0.03);
}

.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    vertical-align: middle;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-table td:first-child i {
    margin-right: 0.75rem;
    color: var(--accent-blue);
    font-size: 1.125rem;
}

.check-yes {
    color: var(--success-green);
    font-weight: 600;
    font-size: 1rem;
}

.check-best {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1rem;
}

.check-no {
    color: #ef4444;
    font-weight: 600;
    font-size: 1rem;
}

.check-yes i {
    margin-right: 0.5rem;
    font-size: 1.125rem;
}

.check-best i {
    margin-right: 0.5rem;
    font-size: 1.125rem;
    color: var(--accent-yellow);
}

.check-no i {
    margin-right: 0.5rem;
    font-size: 1.125rem;
}

/* Last row (Best For) styling */
.comparison-table tbody tr:last-child {
    background: var(--light-blue);
    font-weight: 600;
}

.comparison-table tbody tr:last-child td {
    padding: 1.75rem 1.5rem;
}

/* Process Icon Circles - Matching Screenshot */
.process-icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e0e7ff, #f8fafc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all var(--transition-base);
}

.process-step:hover .process-icon-circle {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--light-blue), var(--accent-blue));
}

.process-emoji {
    font-size: 3rem;
}

/* Process step number styling */
.process-step h3 {
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-step p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0;
}

.process-step p a {
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-base);
}

.process-step p a:hover {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

/* Remove old process-icon styling since we're using circles now */
.process-icon {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .comparison-table {
        font-size: 0.875rem;
        min-width: 700px;
    }
    
    .comparison-table thead th,
    .comparison-table td {
        padding: 1.25rem 1rem;
    }
    
    .process-icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .process-emoji {
        font-size: 2.5rem;
    }
    
    .btn-cta-large {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .comparison-table {
        min-width: 600px;
        font-size: 0.8125rem;
    }
    
    .comparison-table thead th,
    .comparison-table td {
        padding: 1rem 0.75rem;
    }
}

/* ============================================================================
   PRICING PAGE - BEAUTIFUL CARDS & CALCULATOR
   ============================================================================ */

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-blue);
}

.pricing-card-featured {
    border: 3px solid var(--primary-blue);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(30, 64, 175, 0.2);
}

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

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.pricing-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.pricing-icon-featured {
    font-size: 4.5rem;
}

.pricing-card h3 {
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.pricing-features i {
    color: var(--success-green);
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-highlight {
    background: linear-gradient(135deg, var(--light-blue), rgba(96, 165, 250, 0.2));
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-blue);
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9375rem;
}

.pricing-highlight i {
    margin-right: 0.5rem;
}

.pricing-notice {
    background: #fef3c7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
    border-left: 4px solid #f59e0b;
    color: #92400e;
    font-size: 0.875rem;
    text-align: left;
}

.pricing-notice i {
    margin-right: 0.5rem;
}

.pricing-price {
    margin: 2rem 0 1.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

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

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.pricing-card-featured .price-amount {
    color: var(--accent-yellow);
}

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

.btn-pricing-cta {
    background: linear-gradient(135deg, var(--accent-yellow), #FFD700);
    color: var(--primary-blue);
    border: none;
    font-weight: 700;
    padding: 1.25rem 2rem;
    margin-top: 1rem;
}

.btn-pricing-cta:hover {
    background: linear-gradient(135deg, #FFD700, var(--accent-yellow));
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Savings Calculator - SEXY CLEAN VERSION */
.savings-calculator {
    max-width: 900px;
    margin: 3rem auto 0;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3.5rem 4rem;
    background: white;
}

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

.calculator-input-group label {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.calculator-input-group input {
    padding: 1.25rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-md);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    transition: all var(--transition-base);
    background: white;
}

.calculator-input-group input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.1);
}

.calculator-results {
    padding: 4rem;
    text-align: center;
    background: white;
    border-top: 1px solid #f3f4f6;
}

.calculator-results h4 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.savings-amount {
    font-size: 5.5rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
    margin: 1rem 0 2rem;
}

.payback-text {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 400;
    margin-top: 1.5rem;
}

.payback-text strong {
    font-weight: 700;
    color: var(--text-dark);
}

/* What's Included Grid - 4 per row desktop, 2 tablet, 1 mobile */
.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .included-grid {
        grid-template-columns: 1fr;
    }
}

.included-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
}

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

.included-emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.included-card h4 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.included-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.included-card a {
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-base);
}

.included-card a:hover {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

/* Pricing FAQ Accordion - SEXY VERSION */
.faq-accordion {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-blue);
}

.faq-item summary {
    padding: 1.75rem 2.5rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    transition: all var(--transition-base);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--accent-blue);
}

.faq-item summary i {
    color: var(--accent-blue);
    font-size: 1rem;
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.faq-item[open] {
    border-color: var(--accent-blue);
}

.faq-answer {
    padding: 0 2.5rem 2rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1rem;
}

.faq-answer p {
    margin: 0 0 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-base);
}

.faq-answer a:hover {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

/* FAQ Link Button */
.faq-link-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 20px rgba(96, 165, 250, 0.3);
    transition: all var(--transition-base);
}

.faq-link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(96, 165, 250, 0.4);
}

.faq-link-button i {
    transition: transform var(--transition-base);
}

.faq-link-button:hover i {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-featured {
        transform: scale(1);
    }
    
    .calculator-inputs {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .calculator-results {
        padding: 2rem;
    }
    
    .savings-amount {
        font-size: 3.5rem;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item summary {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 1.25rem 1.5rem 1.75rem;
    }
}

/* ============================================================================
   PRICING PAGE - ACTUAL SERVER CLASSES
   ============================================================================ */

/* Calculator - Matching Server Classes */
.calculator-container {
    max-width: 900px;
    margin: 3rem auto 0;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.calculator-container .calculator-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3.5rem 4rem;
    background: white;
}

.calculator-container .calculator-inputs > div {
    display: flex;
    flex-direction: column;
}

.calculator-container .calculator-inputs label {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.calculator-container .calculator-inputs input {
    padding: 1.25rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-md);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    transition: all var(--transition-base);
    background: white;
}

.calculator-container .calculator-inputs input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.1);
}

.calculator-container .calculator-results {
    padding: 4rem;
    text-align: center;
    background: white;
    border-top: 1px solid #f3f4f6;
}

.calculator-container .calculator-results h3 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.calculator-container .savings-figure {
    font-size: 5.5rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
    margin: 1rem 0 2rem;
}

.calculator-container .payback-text {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 400;
    margin-top: 1.5rem;
}

.calculator-container .payback-text strong {
    font-weight: 700;
    color: var(--text-dark);
}

/* FAQ - Matching Server Classes */
.faq-accordion-preview .faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.faq-accordion-preview .faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-blue);
}

.faq-accordion-preview .faq-item summary {
    padding: 1.75rem 2.5rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    transition: all var(--transition-base);
}

.faq-accordion-preview .faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-accordion-preview .faq-item summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent-blue);
    font-size: 1rem;
    transition: transform var(--transition-base);
    margin-left: 1rem;
}

.faq-accordion-preview .faq-item summary:hover {
    color: var(--accent-blue);
}

.faq-accordion-preview .faq-item[open] summary::after {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.faq-accordion-preview .faq-item[open] {
    border-color: var(--accent-blue);
}

.faq-accordion-preview .faq-content {
    padding: 0 2.5rem 2rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1rem;
}

.faq-accordion-preview .faq-content p {
    margin: 0 0 1rem;
}

.faq-accordion-preview .faq-content p:last-child {
    margin-bottom: 0;
}

.faq-accordion-preview .faq-content a {
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-base);
}

.faq-accordion-preview .faq-content a:hover {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

/* Mobile Responsive - Server Classes */
@media (max-width: 900px) {
    .calculator-container .calculator-inputs {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .calculator-container .calculator-results {
        padding: 2rem;
    }
    
    .calculator-container .savings-figure {
        font-size: 3.5rem;
    }
    
    .faq-accordion-preview .faq-item summary {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-accordion-preview .faq-content {
        padding: 0 1.5rem 1.75rem;
    }
}

/* ============================================================================
   CONTACT PAGE - EMOJI ENHANCEMENTS
   ============================================================================ */

/* Contact Emojis */
.contact-emoji {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    display: inline-block;
}

.why-contact-label .contact-emoji {
    font-size: 1.25rem;
}

.map-emoji {
    font-size: 5rem;
    display: block;
    margin-bottom: 1rem;
}

.location-emoji {
    font-size: 1rem;
    margin-right: 0.5rem;
}

/* Contact Info Column */
.contact-info-column h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.why-contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.why-contact-list li {
    margin-bottom: 1.5rem;
}

.why-contact-label {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.why-contact-list p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-left: 2.25rem;
}

.why-contact-list a {
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-base);
}

.why-contact-list a:hover {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

.contact-details-list {
    list-style: none;
    padding: 0;
}

.contact-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.contact-details-list li:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-details-list h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-details-list a {
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
}

.contact-details-list a:hover {
    color: var(--primary-blue);
}

/* Service Area List */
.area-list h4 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.area-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.area-list li {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    font-weight: 500;
}

.area-list p {
    color: var(--text-light);
    line-height: 1.7;
}

.area-list a {
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-base);
}

.area-list a:hover {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

/* Map Placeholder */
.area-map-placeholder {
    background: linear-gradient(135deg, var(--light-blue), rgba(96, 165, 250, 0.1));
    border-radius: var(--radius-lg);
    padding: 4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-weight: 600;
    min-height: 300px;
}

/* Contact Form Enhancements */
.contact-form-wrapper h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .area-list ul {
        grid-template-columns: 1fr;
    }
    
    .contact-emoji {
        font-size: 1.25rem;
    }
    
    .map-emoji {
        font-size: 3rem;
    }
}

/* ============================================================================
   CONTACT PAGE - SIDE BY SIDE LAYOUT
   ============================================================================ */

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

.contact-info-column {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

/* Contact Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-base);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    margin-top: 0.5rem;
}

.form-message {
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

/* Service Area Map Container */
.service-area-map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

/* Mobile Responsive - Stack Vertically */
@media (max-width: 900px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-column,
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .service-area-map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================================================
   HOMEPAGE HERO - VIBRANT BLUE WITH GLASS-MORPHISM PANEL
   Original vibrant design restored - bright blue gradient with white glass panel
   ============================================================================ */

/* HERO SECTION - Full Width Split Layout */
.hero-home {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Equal 50/50 split */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.hero-image-panel {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.floating-badge.badge-1 {
    top: 60px;
    left: 40px;
}

.floating-badge.badge-2 {
    top: 140px;
    right: 40px;
    animation-delay: 1s;
}

.floating-badge.badge-3 {
    bottom: 140px;
    left: 40px;
    animation-delay: 2s;
}

.purity-circle {
    position: absolute;
    bottom: 60px;
    right: 40px;
    width: 100px;
    height: 100px;
    background: rgba(96, 165, 250, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(96, 165, 250, 0.4);
    animation: pulse 2s ease-in-out infinite;
    z-index: 10;
}

.purity-circle .purity-number {
    font-size: 1.75rem;
    line-height: 1;
}

.purity-circle .purity-label {
    font-size: 0.75rem;
    line-height: 1;
    margin-top: 0.25rem;
    letter-spacing: 1px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 40px rgba(96, 165, 250, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 15px 50px rgba(96, 165, 250, 0.6); }
}

/* RIGHT SIDE: BRIGHT VIBRANT BLUE GRADIENT */
.hero-content-panel {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.hero-content-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* GLASS-MORPHISM WHITE PANEL (Original vibrant design) */
.hero-inner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-title-home {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary-blue);
    margin-bottom: 1.25rem;
}

.hero-subtitle-home {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-benefits-home {
    list-style: none;
    margin: 0 0 2.5rem 0;
    padding: 0;
}

.hero-benefits-home li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
    color: var(--text-dark);
    font-weight: 500;
}

.hero-benefits-home li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--success-green), #34d399);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.hero-stats-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(30, 64, 175, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.stat-item-home {
    text-align: center;
}

.stat-number-home {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-home {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.3;
}

.hero-buttons-home {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-buttons-home .btn {
    flex: 1;
    min-width: 200px;
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent-yellow), #fbbf24);
    color: var(--text-dark);
    box-shadow: 0 8px 25px rgba(251, 193, 2, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(251, 193, 2, 0.4);
}

.btn-hero-whatsapp {
    background: rgba(37, 211, 102, 0.15);
    backdrop-filter: blur(10px);
    color: #25d366;
    border: 2px solid #25d366;
}

.btn-hero-whatsapp:hover {
    background: #25d366;
    color: white;
    transform: translateY(-2px);
}

.hero-locations-home {
    padding-top: 2rem;
    border-top: 1px solid rgba(30, 64, 175, 0.1);
}

.locations-label-home {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
}

.locations-pills-home {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.locations-pills-home span,
.locations-pills-home a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(30, 64, 175, 0.08);
    border: 1px solid rgba(30, 64, 175, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary-blue);
    font-weight: 500;
    transition: all var(--transition-base);
    text-decoration: none;
}

.locations-pills-home span:hover,
.locations-pills-home a:hover {
    background: rgba(30, 64, 175, 0.15);
    border-color: rgba(30, 64, 175, 0.3);
    transform: translateY(-2px);
    color: var(--primary-blue);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .hero-home {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-image-panel {
        min-height: 60vh;
        order: 1;
    }
    
    .hero-content-panel {
        order: 2;
        padding: 3rem 1.5rem;
    }
    
    .hero-inner {
        padding: 2rem;
    }
    
    .hero-stats-home {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .hero-buttons-home {
        flex-direction: column;
    }
    
    .hero-buttons-home .btn {
        width: 100%;
        min-width: auto;
    }
    
    .floating-badge {
        padding: 0.625rem 1rem;
        font-size: 0.75rem;
    }
    
    .floating-badge.badge-1 {
        top: 30px;
        left: 20px;
    }
    
    .floating-badge.badge-2 {
        top: 80px;
        right: 20px;
    }
    
    .floating-badge.badge-3 {
        bottom: 80px;
        left: 20px;
    }
    
    .purity-circle {
        width: 80px;
        height: 80px;
        bottom: 30px;
        right: 20px;
    }
    
    .purity-circle .purity-number {
        font-size: 1.5rem;
    }
}

/* Tablet/Desktop - 3 column grid for benefits */
@media (min-width: 901px) {
    section [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 900px) {
    section [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

@media (min-width: 600px) and (max-width: 900px) {
    section [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ============================================================================
   VIBRANT SAVINGS CALCULATOR - Colorful gradient design
   ============================================================================ */

.savings-calculator-vibrant {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(30, 64, 175, 0.15);
    border: 2px solid rgba(30, 64, 175, 0.1);
}

.calculator-inputs-vibrant {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.calculator-input-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08);
    border: 2px solid rgba(30, 64, 175, 0.1);
    transition: all var(--transition-base);
}

.calculator-input-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.15);
    border-color: rgba(30, 64, 175, 0.2);
}

.calculator-input-card label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.vibrant-input {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    border: 3px solid var(--accent-blue);
    border-radius: 1rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    color: var(--primary-blue);
    transition: all var(--transition-base);
}

.vibrant-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
    transform: scale(1.02);
}

.calculator-results-vibrant {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(30, 64, 175, 0.3);
    position: relative;
    overflow: hidden;
}

.calculator-results-vibrant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.calculator-results-vibrant h4 {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.savings-amount-vibrant {
    font-size: clamp(3.5rem, 8vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #FBC102 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.1;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(251, 193, 2, 0.3);
    filter: drop-shadow(0 2px 10px rgba(251, 193, 2, 0.3));
}

.payback-text-vibrant {
    font-size: 1.125rem;
    color: white;
    margin: 0;
    position: relative;
    z-index: 1;
}

.payback-text-vibrant strong {
    color: var(--accent-yellow);
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .savings-calculator-vibrant {
        padding: 2rem 1.5rem;
    }
    
    .calculator-inputs-vibrant {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .calculator-input-card {
        padding: 1.5rem;
    }
    
    .vibrant-input {
        font-size: 1.75rem;
        padding: 0.875rem 1.25rem;
    }
    
    .calculator-results-vibrant {
        padding: 2.5rem 1.5rem;
    }
    
    .savings-amount-vibrant {
        font-size: 3rem;
    }
}
/* Makes the map image fit nicely in the blue box */
.service-map-img {
    width: 100%;            /* Fills the width of the box */
    max-width: 450px;       /* Prevents it from getting too huge on desktops */
    height: auto;           /* Keeps the map from looking squashed */
    border-radius: 8px;     /* Gives it nice rounded corners to match your UI */
    margin-bottom: 15px;    /* Puts space between the map and the text below it */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Optional: adds a soft shadow to make it pop */
}

/* Centers everything in the blue box */
.area-map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
    <!-- Hero Section Styling -->
        /* 50/50 Split Hero - Full Browser Height */
.hero-section-split {
    display: grid !important;
    grid-template-columns: 50vw 50vw !important;
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%) !important;
    gap: 0 !important;
}

.hero-container-split {
    display: contents !important;
    gap: 0 !important;
    padding: 0 !important;
}

.hero-image-side {
    position: relative !important;
    height: 100vh !important;
    padding: 0 !important;
    margin: 0 !important;
}

.hero-visual-split {
    width: 100% !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

.hero-content-side {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 3rem !important;
    position: relative !important;
    height: 100vh !important;
}

.hero-glass-panel {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-radius: 2rem !important;
    padding: 2rem !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2) !important;
    max-width: 600px !important;
    width: 100% !important;
    max-height: 85vh !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.hero-title-split {
    color: var(--primary-blue) !important;
    font-size: 2rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.2 !important;
}

.hero-subtitle-split {
    color: var(--text-light) !important;
    font-size: 1rem !important;
    margin-bottom: 1.25rem !important;
}

/* VIDEO SECTION STYLES */
.video-problem-container {
    display: grid !important;
    grid-template-columns: 1fr 380px !important;
    gap: 4rem !important;
    align-items: stretch !important;
    max-width: 1100px !important;
    margin: 5rem auto !important;
    text-align: left !important;
}

.problem-stack {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 10px 0 !important;
}

.problem-card-horizontal {
    display: flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
    background: white !important;
    padding: 1.8rem !important;
    border-radius: 1.5rem !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08) !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
    transition: transform 0.3s ease !important;
}

.problem-card-horizontal:hover {
    transform: translateX(10px) scale(1.02) !important;
    border-color: #1e40af !important;
}

.icon-box-sexy {
    font-size: 2.5rem !important;
    background: #eff6ff !important;
    width: 75px !important;
    height: 75px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 1.2rem !important;
    flex-shrink: 0 !important;
}

.video-frame-portrait {
    position: relative !important;
    width: 380px !important;
    height: 675px !important;
    background: #1e293b !important;
    border-radius: 2.5rem !important;
    overflow: hidden !important;
    border: 8px solid #1e293b !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3) !important;
}

.video-frame-portrait iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
}

/* Mobile */
@media (max-width: 900px) {
    .hero-section-split {
        grid-template-columns: 1fr !important;
        height: auto !important;
    }

    .hero-image-side {
        height: 60vh !important;
    }

    .video-problem-container { 
        grid-template-columns: 1fr !important; 
        gap: 2rem !important;
        margin: 2rem auto !important;
    }

    .problem-stack {
        gap: 1.5rem !important;
    }

    .video-frame-portrait { 
        margin: 0 auto !important; 
        max-width: 320px !important;
        height: 568px !important;
        order: -1 !important; 
    }
}

/* Sound Toggle */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.sound-toggle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.sound-toggle:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}
/* ── Language switcher — add to bottom of style.css ─────────
   Fixes EN/ES flags stacking caused by #main-nav a { display:block }
   ──────────────────────────────────────────────────────────── */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255,255,255,0.12);
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    white-space: nowrap;
}

/* Override the global #main-nav a { display:block } for lang links */
.lang-switcher .lang-link,
#main-nav .lang-switcher a {
    display: inline !important;
    padding: 0 !important;
    font-size: 0.8125rem !important;
    font-weight: 600;
    color: rgba(255,255,255,0.75) !important;
    text-decoration: none;
    border-bottom: none !important;
    white-space: nowrap;
}

.lang-switcher .lang-link--active,
.lang-switcher .lang-link:hover {
    color: var(--accent-yellow) !important;
}

.lang-switcher .lang-link--active::after {
    display: none !important;
}

.lang-sep {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
    line-height: 1;
}

/* Mobile — lang switcher sits inline in the dropdown */
@media (max-width: 900px) {
    .lang-switcher {
        justify-content: center;
        margin: 0.5rem auto;
        display: inline-flex;
    }
    #main-nav li:has(.lang-switcher) {
        display: flex;
        justify-content: center;
    }
}