/* 9 Cleaning & Services - Modern iOS-Inspired Design */
/* Premium Design with Black, Gold, and White */

/* CSS Variables */
:root {
    /* Primary Colors */
    --black: #000000;
    --gold: #d4af37;
    --white: #ffffff;
    
    /* Gold Variations - Refined */
    --gold-light: #e6d074;
    --gold-dark: #b8941f;
    --gold-subtle: rgba(212, 175, 55, 0.08);
    --gold-ultralight: rgba(212, 175, 55, 0.03);
    
    /* Black Variations - iOS Style */
    --black-90: rgba(0, 0, 0, 0.9);
    --black-80: rgba(0, 0, 0, 0.8);
    --black-60: rgba(0, 0, 0, 0.6);
    --black-50: rgba(0, 0, 0, 0.5);
    --black-20: rgba(0, 0, 0, 0.2);
    --black-10: rgba(0, 0, 0, 0.1);
    --black-05: rgba(0, 0, 0, 0.05);
    --black-03: rgba(0, 0, 0, 0.03);
    
    /* White Variations */
    --white-90: rgba(255, 255, 255, 0.9);
    --white-80: rgba(255, 255, 255, 0.8);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-10: rgba(255, 255, 255, 0.1);
    
    /* Glass Morphism - iOS Style */
    --glass-white: rgba(255, 255, 255, 0.72);
    --glass-white-heavy: rgba(255, 255, 255, 0.85);
    --glass-black: rgba(0, 0, 0, 0.72);
    --glass-blur: saturate(180%) blur(20px);
    --glass-blur-heavy: saturate(180%) blur(30px);
    --glass-blur-light: saturate(180%) blur(10px);
    
    /* Shadows - Subtle iOS Style */
    --shadow-xs: 0 0.5px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.15);
    
    /* Typography - SF Pro inspired */
    --font-primary: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    --font-secondary: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    
    /* Font Weights */
    --font-thin: 100;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-heavy: 800;
    
    /* Spacing - iOS Grid */
    --space-xs: 0.25rem;   /* 4px */
    --space-sm: 0.5rem;    /* 8px */
    --space-md: 1rem;      /* 16px */
    --space-lg: 1.5rem;    /* 24px */
    --space-xl: 2rem;      /* 32px */
    --space-2xl: 3rem;     /* 48px */
    --space-3xl: 4rem;     /* 64px */
    --space-4xl: 6rem;     /* 96px */
    
    /* Border Radius - iOS Style */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions - Smooth iOS Style */
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-spring: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-secondary);
    font-weight: var(--font-regular);
    line-height: 1.6;
    color: var(--black);
    background-color: #fafafa;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Background Gradient - Subtle */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, var(--gold-ultralight), transparent 40%),
        radial-gradient(ellipse at bottom right, var(--black-03), transparent 40%);
    pointer-events: none;
    z-index: -1;
}

/* Typography - iOS Style */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: var(--font-semibold);
    line-height: 1.2;
    color: var(--black);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 4rem); 
    font-weight: var(--font-bold);
    letter-spacing: -0.03em;
}
h2 { 
    font-size: clamp(2rem, 4vw, 3rem); 
    font-weight: var(--font-semibold);
}
h3 { 
    font-size: clamp(1.5rem, 3vw, 2rem); 
    font-weight: var(--font-medium);
}
h4 { 
    font-size: clamp(1.25rem, 2vw, 1.5rem); 
}
h5 { 
    font-size: 1.125rem; 
}
h6 { 
    font-size: 1rem; 
}

p {
    margin-bottom: var(--space-md);
    color: var(--black-80);
    font-weight: var(--font-regular);
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-dark);
}

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

/* Section */
.section {
    padding: var(--space-4xl) 0;
    position: relative;
}

/* Navigation - Glass Morphism */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(30px);
    -webkit-backdrop-filter: saturate(180%) blur(30px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    height: 60px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

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

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: var(--space-2xl);
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    color: var(--black-80);
    position: relative;
    transition: var(--transition);
    padding: var(--space-sm) 0;
    letter-spacing: 0.02em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

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

.nav-link.active {
    color: var(--gold);
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

/* Language Button - iOS Style */
.lang-btn {
    background: var(--black-05);
    border: none;
    color: var(--black-80);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-weight: var(--font-medium);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--black-10);
    color: var(--black);
    transform: translateY(-1px);
}

/* Buttons - Modern iOS Style */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-weight: var(--font-medium);
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--black-90);
    transform: scale(1.02);
    box-shadow: none;
}

.nav-actions .btn-primary {
    font-size: 0.875rem;
    padding: var(--space-sm) var(--space-lg);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-secondary {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--black-10);
    box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
    background: var(--black-05);
    border-color: var(--black-20);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Gold Accent Button */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.25);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--black);
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--space-sm);
}

/* Mobile Menu - iOS Style */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 375px;
    height: 100vh;
    background: var(--glass-white-heavy);
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    transition: right 0.3s ease;
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.show {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--black-10);
}

.mobile-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.close-btn {
    background: var(--black-05);
    border: none;
    color: var(--black);
    width: 32px;
    height: 32px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.close-btn:hover {
    background: var(--black-10);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    padding: var(--space-lg);
}

.mobile-menu-links a {
    padding: var(--space-md) var(--space-lg);
    color: var(--black);
    font-weight: var(--font-medium);
    border-radius: var(--radius-md);
    transition: var(--transition);
    margin-bottom: var(--space-xs);
}

.mobile-menu-links a:hover {
    background: var(--black-05);
    color: var(--gold);
    transform: translateX(4px);
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    padding: var(--space-md) var(--space-xl);
    font-weight: var(--font-medium);
    border-radius: var(--radius-full);
    z-index: 10000;
    transition: var(--transition);
}

.skip-link:focus {
    top: var(--space-md);
}

/* Hero Section - Clean Modern */
.hero-section {
    background: var(--white);
    padding-top: calc(80px + var(--space-3xl));
    padding-bottom: var(--space-3xl);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, var(--gold-ultralight) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--black-03) 0%, transparent 50%);
    opacity: 0.5;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-weight: var(--font-bold);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content h1 .text-highlight {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    color: var(--black-60);
    margin-bottom: var(--space-2xl);
    font-weight: var(--font-light);
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.hero-img:hover {
    transform: scale(1.02);
}

/* Trust Badges - Modern Cards */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.trust-badge {
    background: var(--glass-white);
    backdrop-filter: var(--glass-blur-light);
    -webkit-backdrop-filter: var(--glass-blur-light);
    border: 1px solid var(--black-05);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--black-80);
    transition: var(--transition);
}

.trust-badge:hover {
    background: var(--white);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.trust-badge i {
    color: var(--gold);
    font-size: 1.25rem;
}

/* Section Headers - Clean Typography */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-lg);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: var(--radius-full);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--black-60);
    max-width: 600px;
    margin: 0 auto;
    font-weight: var(--font-light);
}

/* Background Variations - Subtle */
.bg-light {
    background: #fafafa;
    position: relative;
}

.bg-gray-subtle {
    background: linear-gradient(180deg, var(--white) 0%, #fafafa 100%);
    position: relative;
}

.bg-black {
    background: var(--black);
    color: var(--white);
}

.bg-black h2,
.bg-black h3,
.bg-black h4,
.bg-black p {
    color: var(--white);
}

/* Services - Modern Cards */
.services-section {
    overflow: visible !important;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 0;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--black-05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-icon {
    width: 60px;
    height: 60px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--white);
    z-index: 2;
}

.service-icon i {
    font-size: 2rem;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card:hover .service-icon {
    background: var(--gold);
    transform: scale(1.1);
}

.service-card:hover .service-icon i {
    color: var(--black);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    font-weight: var(--font-medium);
    padding: 0 var(--space-xl);
}

.service-card p {
    color: var(--black-60);
    font-weight: var(--font-light);
    padding: 0 var(--space-xl) var(--space-xl);
}

/* Pricing - Premium Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--black-05);
}

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

.pricing-card.featured {
    background: var(--black);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    border: none;
}

.pricing-card.featured h3,
.pricing-card.featured p {
    color: var(--white);
}

.pricing-card.featured .pricing-features li {
    color: var(--white-80);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--gold);
    color: var(--black);
    padding: var(--space-xs) var(--space-lg);
    font-weight: var(--font-semibold);
    font-size: 0.75rem;
    border-radius: var(--radius-full);
}

.package-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-lg);
    background: var(--black-05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
}

.pricing-card.featured .package-icon {
    background: var(--white-10);
}

.package-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
    font-weight: var(--font-medium);
}

.pricing-features {
    list-style: none;
    padding: var(--space-xl) 0;
    margin: 0;
    text-align: left;
}

.pricing-features li {
    padding: var(--space-sm) 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--black-60);
}

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

.pricing-cta {
    border-top: 1px solid var(--black-05);
    padding-top: var(--space-xl);
}

.pricing-card.featured .pricing-cta {
    border-top-color: var(--white-10);
}

.pricing-note {
    font-style: italic;
    color: var(--black-50);
    margin-bottom: var(--space-md);
    font-weight: var(--font-light);
}

.pricing-card.featured .pricing-note {
    color: var(--white-50);
}

/* Quote CTA Section - Modern Dark */
.quote-cta-section {
    background: var(--black);
    color: var(--white);
    padding: var(--space-3xl);
    border-radius: var(--radius-2xl);
    margin-top: var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.quote-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--gold-subtle) 0%, transparent 70%);
    opacity: 0.5;
}

.quote-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.quote-cta-content h3 {
    color: var(--white);
    margin-bottom: var(--space-2xl);
    font-size: 2rem;
}

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

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

.benefit-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.benefit-item h4 {
    color: var(--white);
    margin-bottom: var(--space-sm);
    font-weight: var(--font-medium);
}

.benefit-item p {
    color: var(--white-60);
    font-weight: var(--font-light);
}

.cta-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* Gallery - Masonry Style */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    border: 1px solid var(--black-10);
    color: var(--black-60);
    padding: var(--space-sm) var(--space-lg);
    font-weight: var(--font-medium);
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--black-05);
    border-radius: var(--radius-xl);
    height: 350px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--black-80) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    color: var(--white);
    padding: var(--space-xl);
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay h4 {
    color: var(--white);
    margin-bottom: var(--space-xs);
    font-size: 1.25rem;
    font-weight: var(--font-medium);
}

.gallery-overlay p {
    color: var(--white-80);
    font-size: 0.875rem;
    font-weight: var(--font-light);
}

/* Testimonials - Clean Cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--black-05);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    font-size: 3rem;
    color: var(--gold);
    font-family: Georgia, serif;
    line-height: 1;
}

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

.stars {
    color: var(--gold);
    margin-bottom: var(--space-md);
    padding-left: var(--space-2xl);
}

.testimonial-text {
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    color: var(--black-60);
    font-weight: var(--font-light);
    padding-left: var(--space-2xl);
}

.testimonial-author {
    padding-left: var(--space-2xl);
}

.testimonial-author strong {
    display: block;
    color: var(--black);
    font-weight: var(--font-medium);
}

.testimonial-author span {
    color: var(--black-50);
    font-size: 0.875rem;
}

/* Success Metrics - Elegant Display */
.success-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    background: linear-gradient(135deg, var(--black), var(--black-90));
    padding: var(--space-3xl);
    border-radius: var(--radius-2xl);
    margin-top: var(--space-2xl);
    box-shadow: var(--shadow-lg);
}

.metric {
    text-align: center;
    color: var(--white);
}

.metric-number {
    font-size: 3rem;
    font-weight: var(--font-bold);
    color: var(--gold);
    margin-bottom: var(--space-sm);
    font-family: var(--font-primary);
    letter-spacing: -0.02em;
}

.metric-label {
    font-size: 0.875rem;
    font-weight: var(--font-medium);
    color: var(--white-60);
}

/* Google Reviews Section - Premium Black Design (Optimized) */
.google-reviews-section-premium {
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 50%, var(--black) 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding: var(--space-3xl) 0; /* Reduced padding */
}

.google-reviews-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(66, 133, 244, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.google-reviews-container {
    max-width: 1200px; /* Reduced from 1400px */
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Dark Section Header (Optimized) */
.section-header-dark {
    text-align: center;
    margin-bottom: var(--space-2xl); /* Reduced from 3xl */
    position: relative;
    z-index: 1;
}

.section-header-dark h2 {
    color: var(--white);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-md); /* Reduced spacing */
    position: relative;
    display: inline-block;
    font-size: 2.25rem; /* Slightly reduced */
}

.section-header-dark h2::after {
    content: '';
    position: absolute;
    bottom: -8px; /* Reduced from -12px */
    left: 50%;
    transform: translateX(-50%);
    width: 50px; /* Reduced from 60px */
    height: 3px; /* Reduced from 4px */
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-full);
}

.section-header-dark p {
    font-size: 1rem; /* Reduced from 1.125rem */
    color: var(--white-80);
    max-width: 500px; /* Reduced from 600px */
    margin: 0 auto;
    font-weight: var(--font-light);
}

/* Premium Google Header Card - Dark (Compact) */
.google-header-dark {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl); /* Reduced from 2xl */
    padding: var(--space-2xl); /* Reduced from 3xl */
    margin-bottom: var(--space-2xl); /* Reduced from 4xl */
    position: relative;
    overflow: hidden;
}

.google-header-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px; /* Reduced from 4px */
    background: linear-gradient(90deg, #4285f4 0%, #ea4335 25%, #fbbc04 50%, #34a853 75%, #4285f4 100%);
}

.google-brand-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg); /* Reduced from 2xl */
}

.google-logo-premium {
    display: flex;
    align-items: center;
    gap: var(--space-md); /* Reduced from lg */
}

.google-logo-premium i {
    font-size: 2rem; /* Reduced from 2.5rem */
    background: linear-gradient(45deg, #4285f4, #ea4335, #fbbc04, #34a853);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: googleColorShift 6s ease-in-out infinite;
}

.google-text {
    font-size: 1.5rem; /* Reduced from 1.75rem */
    font-weight: var(--font-semibold);
    color: var(--white);
    letter-spacing: -0.02em;
}

.google-verified-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs); /* Reduced */
    background: rgba(52, 168, 83, 0.15);
    color: #34a853;
    padding: var(--space-xs) var(--space-md); /* Reduced */
    border-radius: var(--radius-full);
    font-weight: var(--font-medium);
    font-size: 0.8rem; /* Reduced */
    border: 1px solid rgba(52, 168, 83, 0.3);
}

.google-verified-badge i {
    font-size: 0.875rem; /* Reduced */
}

/* Rating Showcase (Compact) */
.google-rating-showcase {
    text-align: center;
}

.overall-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl); /* Reduced from 2xl */
}

.rating-number {
    font-size: 3.5rem; /* Reduced from 5rem */
    font-weight: var(--font-bold);
    color: var(--gold);
    font-family: var(--font-primary);
    letter-spacing: -0.03em;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.25); /* Reduced glow */
}

.rating-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs); /* Reduced */
}

.rating-stars-large {
    display: flex;
    gap: var(--space-xs);
    color: #fbbc04;
    font-size: 1.25rem; /* Reduced from 1.75rem */
    filter: drop-shadow(0 0 6px rgba(251, 188, 4, 0.25)); /* Reduced glow */
}

.rating-count {
    font-size: 0.95rem; /* Reduced from 1.125rem */
    color: var(--white-80);
    font-weight: var(--font-medium);
}

/* Premium Reviews Slider (Compact) */
.reviews-slider-container {
    margin-bottom: var(--space-2xl); /* Reduced from 4xl */
    position: relative;
}

.reviews-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-md); /* Reduced from lg */
}

.reviews-slider {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-xl); /* Reduced from 2xl */
    position: relative;
}

.reviews-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: var(--space-lg); /* Reduced from xl */
    padding: var(--space-sm); /* Reduced from md */
}

/* Slider Navigation (Compact) */
.slider-nav {
    width: 50px; /* Reduced from 60px */
    height: 50px; /* Reduced from 60px */
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px); /* Reduced blur */
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.1rem; /* Reduced from 1.25rem */
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-nav:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.05); /* Reduced from 1.1 */
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3); /* Reduced shadow */
}

.slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/* Premium Review Cards for Slider (Compact) */
.google-review-card-slider {
    flex: 0 0 340px; /* Reduced from 400px */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px); /* Reduced blur */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl); /* Reduced from 2xl */
    padding: var(--space-lg); /* Reduced from 2xl */
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    height: 260px; /* Reduced from 320px */
    display: flex;
    flex-direction: column;
}

.google-review-card-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4285f4, #ea4335, #fbbc04, #34a853);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.google-review-card-slider:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.google-review-card-slider:hover::before {
    transform: scaleX(1);
}

.google-review-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.google-reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-weight: var(--font-bold);
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.google-reviewer-info h4 {
    font-size: 1.125rem;
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-xs);
    color: var(--white);
}

.google-review-date {
    font-size: 0.875rem;
    color: var(--white-60);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.google-review-date::before {
    content: '•';
    color: var(--white-30);
}

.google-review-stars {
    color: #fbbc04;
    margin-bottom: var(--space-lg);
    font-size: 1.125rem;
    display: flex;
    gap: var(--space-xs);
    filter: drop-shadow(0 0 5px rgba(251, 188, 4, 0.3));
}

.google-review-text {
    color: var(--white-90);
    line-height: 1.6;
    font-weight: var(--font-light);
    font-size: 0.95rem;
    position: relative;
    flex: 1;
    overflow: hidden;
}

.google-review-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -15px;
    font-size: 2rem;
    color: var(--gold);
    font-family: Georgia, serif;
    opacity: 0.7;
}

/* Slider Loading Animation */
.review-loading-slider {
    flex: 0 0 100%;
    text-align: center;
    padding: var(--space-4xl);
    color: var(--white-60);
}

.loading-animation {
    margin-bottom: var(--space-lg);
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: loadingPulse 1.5s ease-in-out infinite;
}

.google-blue { background: #4285f4; animation-delay: 0s; }
.google-red { background: #ea4335; animation-delay: 0.2s; }
.google-yellow { background: #fbbc04; animation-delay: 0.4s; }
.google-green { background: #34a853; animation-delay: 0.6s; }

/* Slider Indicators */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--gold);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--gold);
    opacity: 0.8;
}

/* Premium CTA Section - Dark (Compact) */
.google-reviews-cta-dark {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px); /* Reduced blur */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl); /* Reduced from 2xl */
    padding: var(--space-2xl); /* Reduced from 4xl */
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.google-reviews-cta-dark::before {
    content: '';
    position: absolute;
    top: -30%; /* Reduced */
    right: -30%; /* Reduced */
    width: 60%; /* Reduced */
    height: 60%; /* Reduced */
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    opacity: 0.4; /* Reduced */
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: var(--space-lg); /* Reduced from 2xl */
}

.cta-text h3 {
    font-size: 1.75rem; /* Reduced from 2.5rem */
    color: var(--white);
    margin-bottom: var(--space-md); /* Reduced from lg */
    font-weight: var(--font-semibold);
}

.cta-text p {
    font-size: 1rem; /* Reduced from 1.125rem */
    color: var(--white-80);
    margin-bottom: var(--space-lg); /* Reduced from 2xl */
    max-width: 500px; /* Reduced from 600px */
    margin-left: auto;
    margin-right: auto;
    font-weight: var(--font-light);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md); /* Reduced from lg */
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-lg); /* Reduced from 2xl */
}

/* Premium Button Styles (Compact) */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    border: none;
    padding: var(--space-md) var(--space-xl); /* Reduced padding */
    font-size: 1rem; /* Reduced from 1.125rem */
    font-weight: var(--font-semibold);
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.25); /* Reduced shadow */
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent); /* Reduced opacity */
    transition: left 0.6s;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-2px); /* Reduced from -3px */
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4); /* Reduced shadow */
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: var(--space-md) var(--space-xl); /* Reduced padding */
    font-size: 1rem; /* Reduced from 1.125rem */
    font-weight: var(--font-medium);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px); /* Reduced from -3px */
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35); /* Reduced shadow */
}

/* Trust Indicators (Compact) */
.trust-indicators {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg); /* Reduced from xl */
    position: relative;
    z-index: 2;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs); /* Reduced from sm */
    color: var(--white-80);
    text-align: center;
}

.trust-item i {
    font-size: 1.25rem; /* Reduced from 1.5rem */
    color: var(--gold);
    margin-bottom: var(--space-xs);
}

.trust-item span {
    font-size: 0.8rem; /* Reduced from 0.875rem */
    font-weight: var(--font-medium);
}

/* Animations */
@keyframes googleColorShift {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 50% 100%; }
    75% { background-position: 0% 50%; }
}

@keyframes loadingPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.7;
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* About Section - Story Telling */
.company-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    margin-bottom: var(--space-3xl);
}

.story-content h3 {
    margin-bottom: var(--space-lg);
    font-size: 2rem;
}

.story-content p {
    color: var(--black-60);
    line-height: 1.8;
    font-weight: var(--font-light);
}

.story-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* Values - Icon Cards */
.values-section {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.values-title {
    margin-bottom: var(--space-2xl);
    font-size: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--black-05);
}

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

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--black);
}

.value-card h4 {
    font-weight: var(--font-medium);
    margin-bottom: var(--space-sm);
}

.value-card p {
    color: var(--black-60);
    font-weight: var(--font-light);
}

/* About Grid - Feature List */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.about-card {
    text-align: center;
    padding: var(--space-xl);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
}

.about-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.about-card h3 {
    font-weight: var(--font-medium);
    margin-bottom: var(--space-sm);
}

.about-card p {
    color: var(--black-60);
    font-weight: var(--font-light);
}

/* Contact Section - Modern Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    color: var(--white);
}

.contact-item {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--gold);
    width: 24px;
}

.contact-item h4 {
    color: var(--white);
    margin-bottom: var(--space-xs);
    font-weight: var(--font-medium);
}

.contact-item p,
.contact-item a {
    color: var(--white-60);
    font-weight: var(--font-light);
}

.contact-item a:hover {
    color: var(--gold);
}

/* Contact Form - iOS Style */
.contact-form {
    background: var(--white);
    padding: var(--space-3xl);
    color: var(--black);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    margin-bottom: var(--space-sm);
    color: var(--black);
    font-size: 1.75rem;
}

.form-subtitle {
    color: var(--black-50);
    margin-bottom: var(--space-xl);
    font-weight: var(--font-light);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: var(--font-medium);
    color: var(--black);
    font-size: 0.875rem;
}

.form-control {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    border: 1px solid var(--black-10);
    background: var(--black-03);
    border-radius: var(--radius-md);
    color: var(--black);
    font-family: var(--font-secondary);
    transition: var(--transition);
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    color: var(--black-60);
    font-weight: var(--font-regular);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--gold);
}

.form-note {
    text-align: center;
    margin-top: var(--space-lg);
    color: var(--black-50);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

/* Footer - Minimal Modern */
footer {
    background: var(--black);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-lg);
}

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

.footer-column h3,
.footer-column h4 {
    color: var(--white);
    margin-bottom: var(--space-lg);
    font-size: 1rem;
    font-weight: var(--font-medium);
}

.footer-logo {
    margin-bottom: var(--space-lg);
}

.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.footer-column p {
    color: var(--white-60);
    margin-bottom: var(--space-lg);
    font-weight: var(--font-light);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--white-10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: var(--white-60);
    transition: var(--transition);
    font-weight: var(--font-light);
}

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

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.newsletter-form .form-control {
    flex: 1;
    background: var(--white-10);
    border: 1px solid var(--white-20);
    color: var(--white);
}

.newsletter-form .form-control::placeholder {
    color: var(--white-50);
}

.newsletter-form .btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: var(--space-md);
}

.newsletter-form .btn-primary:hover {
    background: var(--gold-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--white-10);
    color: var(--white-50);
    font-weight: var(--font-light);
}

/* WhatsApp Float - Modern */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-float:hover {
    background: var(--black);
    color: var(--gold);
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Utility Classes */
.w-full {
    width: 100%;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .company-story {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    /* Navigation */
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .nav-actions .btn-primary span {
        display: none;
    }
    
    .nav-actions .btn-primary {
        padding: var(--space-sm) var(--space-md);
    }
    
    .logo-img {
        height: 40px;
    }
    
    /* Hero */
    .hero-section {
        padding-top: calc(70px + var(--space-2xl));
        min-height: auto;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gallery */
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    /* Success Metrics */
    .success-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Google Reviews Mobile */
    .google-brand-section {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .overall-rating {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .rating-details {
        align-items: center;
    }
    
    .reviews-slider-wrapper {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .google-review-card-slider {
        flex: 0 0 300px;
        height: 240px;
        padding: var(--space-md);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
    
    .trust-indicators {
        flex-wrap: wrap;
        gap: var(--space-lg);
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Ultra small devices */
    .container {
        padding: 0 var(--space-md);
    }
    
    .section {
        padding: var(--space-3xl) 0;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .trust-badges {
        gap: var(--space-sm);
    }
    
    .trust-badge {
        font-size: 0.75rem;
        padding: var(--space-sm);
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }
    
    /* Google Reviews Ultra Small */
    .google-header-dark {
        padding: var(--space-lg);
    }
    
    .rating-number {
        font-size: 3.5rem;
    }
    
    .cta-text h3 {
        font-size: 1.75rem;
    }
    
    .google-reviews-cta-dark {
        padding: var(--space-2xl);
    }
    
    .google-review-card-slider {
        flex: 0 0 260px;
        height: 220px;
        padding: var(--space-sm);
    }
    
    .reviews-slider-wrapper {
        gap: var(--space-sm);
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 0.875rem;
    }
    
    .slider-indicators {
        margin-top: var(--space-lg);
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-actions,
    .gallery-filters,
    .social-links,
    .newsletter-form,
    .whatsapp-float,
    .mobile-menu,
    .skip-link {
        display: none !important;
    }
}

/* Focus Styles for Accessibility */
*:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

/* Form Validation Styles */
.field-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: var(--space-xs);
}

.form-control.error {
    border-color: #dc3545;
}

.form-success-message,
.form-error-message {
    padding: var(--space-md);
    margin: var(--space-md) 0;
    text-align: center;
    font-weight: var(--font-medium);
    border-radius: var(--radius-md);
}

.form-success-message {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.form-error-message {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Form Validation Styles */
.form-control.error {
    border-color: #dc3545 !important;
    background: rgba(220, 53, 69, 0.05);
    animation: shake 0.3s ease;
}

.form-control.error:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
    border-color: #dc3545 !important;
}

.form-control.success {
    border-color: #28a745 !important;
    background: rgba(40, 167, 69, 0.05);
}

.field-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: var(--space-xs);
    font-weight: var(--font-medium);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    animation: fadeIn 0.3s ease;
}

.field-error::before {
    content: '⚠';
    font-size: 1rem;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-3px); }
    20%, 40%, 60%, 80% { transform: translateX(3px); }
}

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

/* Animation Classes for Intersection Observer */
.animate-fade-in,
.animate-slide-in-left,
.animate-slide-in-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-in {
    transform: translateY(30px);
}

.animate-slide-in-left {
    transform: translateX(-30px);
}

.animate-slide-in-right {
    transform: translateX(30px);
}

.animate-fade-in.animated,
.animate-slide-in-left.animated,
.animate-slide-in-right.animated {
    opacity: 1;
    transform: translate(0, 0);
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Ripple Animation for Reviews */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-10);
    border: 1px solid var(--white-20);
    border-radius: var(--radius-full);
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* Footer Contact Info */
.footer-contact p {
    color: var(--white-80);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

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

/* Footer Service Areas - Make them non-clickable */
.footer-links span {
    display: block;
    padding: var(--space-xs) 0;
    color: var(--white-80);
    cursor: default;
}

/* Performance Optimization - Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .animate-float {
        animation: none;
    }

    .footer-social a:hover {
        transform: none;
    }
}