/* DEPRECATED - All styles moved to main.css for better organization and performance */
/* Design System: Conversion-Optimized Multi-Location Website */

/* CSS Custom Properties (Design Tokens) */
:root {
    /* Brand Colors */
    --primary-blue: #1766bf;
    --primary-blue-dark: #0f4d8c;
    --primary-blue-light: #2980d9;
    --secondary-orange: #ff6b35;
    --success-green: #27ae60;
    --warning-yellow: #f39c12;
    --error-red: #e74c3c;
    
    /* Neutral Colors */
    --gray-900: #1a202c;
    --gray-800: #2d3748;
    --gray-700: #4a5568;
    --gray-600: #718096;
    --gray-500: #a0aec0;
    --gray-400: #cbd5e0;
    --gray-300: #e2e8f0;
    --gray-200: #edf2f7;
    --gray-100: #f7fafc;
    --white: #ffffff;
    
    /* Typography Scale */
    --font-family-primary: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-family-heading: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Font Sizes (Mobile-First) */
    --text-xs: 0.75rem;     /* 12px */
    --text-sm: 0.875rem;    /* 14px */
    --text-base: 1rem;      /* 16px */
    --text-lg: 1.125rem;    /* 18px */
    --text-xl: 1.25rem;     /* 20px */
    --text-2xl: 1.5rem;     /* 24px */
    --text-3xl: 1.875rem;   /* 30px */
    --text-4xl: 2.25rem;    /* 36px */
    --text-5xl: 3rem;       /* 48px */
    
    /* Spacing Scale (8px grid) */
    --space-1: 0.25rem;     /* 4px */
    --space-2: 0.5rem;      /* 8px */
    --space-3: 0.75rem;     /* 12px */
    --space-4: 1rem;        /* 16px */
    --space-5: 1.25rem;     /* 20px */
    --space-6: 1.5rem;      /* 24px */
    --space-8: 2rem;        /* 32px */
    --space-10: 2.5rem;     /* 40px */
    --space-12: 3rem;       /* 48px */
    --space-16: 4rem;       /* 64px */
    --space-20: 5rem;       /* 80px */
    
    /* Border Radius */
    --radius-sm: 0.25rem;   /* 4px */
    --radius-md: 0.5rem;    /* 8px */
    --radius-lg: 0.75rem;   /* 12px */
    --radius-xl: 1rem;      /* 16px */
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-tooltip: 1070;
}

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

*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-family-primary);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

.container-wide {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.container-full {
    width: 100%;
    padding: 0 var(--space-4);
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

h1 {
    font-size: var(--text-3xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-5);
}

h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

h5 {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

h6 {
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: var(--space-4);
}

.lead {
    font-size: var(--text-lg);
    font-weight: 400;
    color: var(--gray-700);
    line-height: 1.6;
}

.text-small {
    font-size: var(--text-sm);
    line-height: 1.5;
}

.text-large {
    font-size: var(--text-lg);
    line-height: 1.6;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
    cursor: pointer;
}

a:hover,
a:focus {
    color: var(--primary-blue-dark);
    text-decoration: underline;
}

a:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-primary { color: var(--primary-blue); }
.text-success { color: var(--success-green); }
.text-warning { color: var(--warning-yellow); }
.text-error { color: var(--error-red); }

/* Buttons and CTAs */
.cta-primary, .cta-large, .cta-call, .sidebar-cta, .pricing-cta, .form-submit-btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
}

.cta-primary, .sidebar-cta, .pricing-cta, .form-submit-btn {
    background-color: #e74c3c;
    color: white;
}

.cta-primary:hover, .sidebar-cta:hover, .pricing-cta:hover, .form-submit-btn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.cta-large {
    background-color: #27ae60;
    color: white;
    padding: 16px 32px;
    font-size: 1.2rem;
}

.cta-large:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.cta-call {
    background-color: #3498db;
    color: white;
    margin-left: 10px;
}

.cta-call:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Header Styles */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
}

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

.logo-section img {
    height: 40px;
    width: auto;
}

.trust-signals {
    display: none;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-number {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: block;
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 1001;
    width: 30px;
    height: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    padding: 5px 0;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-top: 70px;
    padding: 10px 0;
    background-color: #f8f9fa;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: #3498db;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    margin-top: 70px;
}

.hero-content h1 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    margin-bottom: 30px;
}

.featured-snippet {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #f39c12;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 25px;
}

.feature-icon {
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Service Hero Variants */
.service-hero {
    padding: 60px 0 40px;
}

.sarasota-hero {
    background: linear-gradient(135deg, #3498db, #e74c3c);
}

/* Location Selection */
.location-selection {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.location-selection h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.location-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.location-content {
    padding: 20px;
}

.location-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.location-address {
    color: #7f8c8d;
    font-weight: bold;
    margin-bottom: 15px;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 15px 0;
}

.location-features span {
    color: #27ae60;
    font-size: 0.9rem;
}

.location-cta {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 15px 0 10px;
    transition: background-color 0.3s ease;
}

.location-cta:hover {
    background-color: #2980b9;
}

.location-phone {
    margin: 10px 0;
}

.location-phone a {
    color: #e74c3c;
    font-weight: bold;
}

/* Services Overview/Grid */
.services-overview, .services-section {
    padding: 60px 0;
}

.services-overview h2, .services-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card h3 a {
    color: inherit;
    text-decoration: none;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 15px 0;
    text-align: left;
}

.service-features span {
    color: #27ae60;
    font-size: 0.9rem;
}

.service-cta {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #2980b9;
}

/* Service Areas */
.service-areas, .neighborhoods-served {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.areas-grid, .neighborhoods-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.area-card, .neighborhood-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.neighborhood-features {
    margin-top: 15px;
}

.neighborhood-features span {
    display: block;
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Why Choose Us */
.why-choose-us, .why-choose-sarasota {
    padding: 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Video Section */
.video-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.video-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 20px;
}

.video-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.video-description {
    text-align: center;
    color: #555;
}

/* Service Details */
.service-details {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.content-main h2, .content-main h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.content-main ul {
    margin: 15px 0;
    padding-left: 20px;
}

.content-main li {
    margin-bottom: 8px;
    color: #555;
}

/* Process Steps */
.process-steps {
    margin: 30px 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.step-number {
    background-color: #3498db;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Sidebar */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.quote-box, .trust-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #3498db;
}

.quote-highlights {
    margin: 15px 0;
}

.quote-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.quote-item:last-child {
    border-bottom: none;
}

.trust-box ul {
    list-style: none;
    padding: 0;
}

.trust-box li {
    padding: 5px 0;
    color: #27ae60;
}

/* Gallery */
.gallery-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.before-after-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.gallery-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.before-after-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.before-image, .after-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.project-details h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.project-date {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-grid, .pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.pricing-card {
    background: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card.featured {
    border-color: #e74c3c;
    transform: scale(1.05);
    background: linear-gradient(135deg, #fff, #ffe6e6);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

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

.pricing-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 10px;
}

.price-details {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note, .pricing-footer {
    text-align: center;
    margin-top: 30px;
    color: #555;
}

.pricing-footer {
    margin-top: 40px;
}

/* Reviews/Testimonials */
.reviews, .sarasota-testimonials, .testimonials-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.reviews-grid, .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.review-card, .testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #f39c12;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.reviewer {
    margin-top: 15px;
    font-style: italic;
    color: #7f8c8d;
}

.reviewer-name {
    font-weight: bold;
    color: #2c3e50;
}

.reviewer-location, .review-date {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 5px;
}

/* Map Section */
.map-section {
    padding: 60px 0;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.map-info h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.map-info address {
    font-style: normal;
    margin-bottom: 15px;
    color: #555;
}

.hours h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.map-embed {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-item h3 {
    background: #f8f9fa;
    padding: 20px;
    margin: 0;
    cursor: pointer;
    position: relative;
    color: #2c3e50;
}

.faq-item h3:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.faq-item div[itemprop="acceptedAnswer"] {
    padding: 20px;
    border-top: 1px solid #eee;
}

/* Final CTA */
.final-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.service-cta {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.sarasota-cta {
    background: linear-gradient(135deg, #3498db, #e74c3c);
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 15px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
}

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

.footer-section li {
    padding: 5px 0;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-section address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: rgba(255, 255, 255, 0.8);
}

.locations-link a {
    color: #3498db;
}

/* Mobile Sticky Footer */
.mobile-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-cta-call, .mobile-cta-quote, .mobile-cta-chat {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
    flex: 1;
    margin: 0 5px;
    text-align: center;
}

.mobile-cta-call {
    background-color: #27ae60;
}

.mobile-cta-quote {
    background-color: #e74c3c;
}

.mobile-cta-chat {
    background-color: #9b59b6;
}

.mobile-cta-call:hover, .mobile-cta-quote:hover, .mobile-cta-chat:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

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

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.hidden {
    display: none;
}

.show {
    display: block;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .trust-signals {
        display: flex;
        gap: 20px;
        font-size: 0.9rem;
    }
    
    .trust-signals span {
        color: #27ae60;
        background: rgba(39, 174, 96, 0.1);
        padding: 5px 10px;
        border-radius: 15px;
    }
    
    .hero-features {
        gap: 30px;
    }
    
    .hero-cta {
        flex-direction: row;
        gap: 20px;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .areas-grid, .neighborhoods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid {
        grid-template-columns: 2fr 1fr;
    }
    
    .before-after-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid, .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-content {
        grid-template-columns: 1fr 2fr;
        align-items: start;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mobile-sticky-footer {
        display: none;
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .areas-grid, .neighborhoods-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .before-after-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-grid, .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reviews-grid, .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        padding: 0 60px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Print Styles */
@media print {
    .sticky-header,
    .mobile-sticky-footer,
    .modal,
    .cta-large,
    .cta-primary,
    .sidebar-cta,
    .pricing-cta {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
    }
    
    .hero {
        background: none;
        color: #000;
    }
    
    .hero h1 {
        color: #000;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero {
        background: #000;
        color: #fff;
    }
    
    .final-cta {
        background: #000;
        color: #fff;
    }
    
    .cta-primary, .cta-large {
        background: #000;
        color: #fff;
        border: 2px solid #fff;
    }
}

/* Navigation Styles */
.navigation {
    background: var(--white);
    border-bottom: 1px solid var(--gray-300);
    position: relative;
    z-index: var(--z-sticky);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: block;
    padding: var(--space-4) var(--space-5);
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    border-radius: var(--radius-md);
}

.nav-item > a:hover,
.nav-item > a:focus {
    color: var(--primary-blue);
    background-color: var(--gray-100);
    text-decoration: none;
}

.nav-item > a.active {
    color: var(--primary-blue);
    font-weight: 600;
    background-color: var(--gray-100);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    cursor: pointer;
}

.dropdown-arrow {
    font-size: var(--text-xs);
    transition: transform var(--transition-fast);
    color: var(--gray-500);
}

.dropdown:hover .dropdown-arrow,
.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: var(--z-dropdown);
    padding: var(--space-3) 0;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: var(--space-2);
}

.dropdown-link {
    display: block;
    padding: var(--space-3) var(--space-4);
    color: var(--gray-700);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.dropdown-link:hover,
.dropdown-link:focus {
    color: var(--primary-blue);
    background-color: var(--gray-50);
    border-left-color: var(--primary-blue);
    text-decoration: none;
}

.dropdown-link.view-all {
    font-weight: 600;
    color: var(--primary-blue);
    background-color: var(--gray-50);
}

.dropdown-link.view-all:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.dropdown-divider {
    height: 1px;
    background-color: var(--gray-200);
    margin: var(--space-2) 0;
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .navigation {
        border-bottom: 1px solid var(--gray-200);
        background: var(--white);
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-item > a {
        padding: var(--space-4);
        border-radius: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .dropdown-arrow {
        margin-left: auto;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--gray-50);
        margin: 0;
        padding: 0;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        transition: all var(--transition-fast);
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: var(--space-2) 0;
    }
    
    .dropdown-header {
        padding: var(--space-2) var(--space-4);
        font-size: var(--text-xs);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--gray-600);
        border-bottom: 1px solid var(--gray-200);
        margin-bottom: var(--space-1);
    }
    
    .dropdown-link {
        padding: var(--space-2) var(--space-6);
        font-size: var(--text-sm);
        border-left: none;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .dropdown-link:last-child {
        border-bottom: none;
    }
    
    .dropdown-divider {
        margin: var(--space-1) 0;
        background-color: var(--gray-300);
    }
}

/* Tablet Navigation */
@media (min-width: 768px) and (max-width: 1023px) {
    .nav-menu {
        gap: var(--space-1);
    }
    
    .nav-item > a {
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-sm);
    }
    
    .dropdown-menu {
        min-width: 240px;
    }
}

/* Desktop Navigation Enhancements */
@media (min-width: 1024px) {
    .nav-menu {
        gap: var(--space-4);
    }
    
    .dropdown-menu {
        min-width: 300px;
    }
    
    /* Mega menu effect for larger screens */
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        animation: slideDown 0.3s ease-out;
    }
}

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

/* Focus Styles for Accessibility */
*:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid #3498db;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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