/* CleanPro - Professional Cleaning Services CSS */

/* CSS Variables */
:root {
    --primary-color: #27ae60;
    --secondary-color: #16a085;
    --accent-color: #2ecc71;
    --dark-green: #1e7e34;
    --light-green: #d4edda;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #34495e;
    --border-color: #e0e6ed;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-light: linear-gradient(135deg, var(--light-green), var(--bg-white));
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --transition-standard: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --font-primary: 'Roboto', sans-serif;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5em;
    color: var(--text-dark);
}

h1 {
    font-size: 2.75rem;
    font-weight: 700;
}

h2 {
    font-size: 2.25rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

a:hover {
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-radius: var(--border-radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-standard);
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    color: var(--text-white);
}

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

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

.btn.large {
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0;
}

.logo .subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    display: block;
    margin-top: -4px;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-fast);
}

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

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

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

.cta-button {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-standard);
    box-shadow: var(--shadow-light);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--text-white);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 2px 0;
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.9), rgba(22, 160, 133, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23f0f8ff" width="1200" height="800"/><g fill-opacity="0.1"><circle fill="%2327ae60" cx="300" cy="200" r="80"/><circle fill="%2316a085" cx="900" cy="300" r="120"/><circle fill="%232ecc71" cx="600" cy="600" r="100"/></g></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.85), rgba(22, 160, 133, 0.85));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: var(--text-white);
    animation: heroFadeIn 1s ease-out;
}

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

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.hero h1 .accent {
    color: #a8e6cf;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

.feature-text span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

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

/* Services Overview */
.services-overview {
    padding: 6rem 0;
    background: var(--bg-light);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-intro h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition-standard);
    position: relative;
    border: 1px solid var(--border-color);
}

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

.service-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, var(--bg-white), var(--light-green));
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

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

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

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

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

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

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

.price-range {
    background: var(--light-green);
    color: var(--dark-green);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    text-align: center;
    font-weight: 600;
    border: 1px solid var(--primary-color);
}

/* Why Choose Us */
.why-choose-us {
    padding: 6rem 0;
    background: var(--bg-white);
}

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

.content-text h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.content-text > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reason {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.reason-number {
    background: var(--gradient-primary);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.reason-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.reason-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

.content-stats {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-light);
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--primary-color);
    transition: var(--transition-standard);
}

.stat-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-green), var(--bg-light));
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.testimonial {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition-standard);
}

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

.quote-mark {
    font-size: 4rem;
    color: var(--primary-color);
    line-height: 1;
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Service Areas */
.service-areas {
    padding: 6rem 0;
    background: var(--bg-white);
}

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

.areas-info h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.areas-info > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.service-zones {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.zone {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-color);
}

.zone h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.zone ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.zone li {
    color: var(--text-light);
    position: relative;
    padding-left: 1rem;
}

.zone li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.contact-info-card {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-heavy);
}

.contact-info-card h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.contact-info-card > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.contact-item .label {
    font-weight: 600;
    min-width: 80px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item a {
    color: var(--text-white);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-cta {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-align: center;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-standard);
}

.contact-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: var(--text-white);
}

/* Services Page Styles */
.services-hero {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 8rem 0 4rem;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.services-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.services-categories {
    padding: 6rem 0;
    background: var(--bg-light);
}

.service-category {
    margin-bottom: 6rem;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-intro {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.category-icon {
    font-size: 4rem;
    background: var(--gradient-primary);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.category-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

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

.service-package {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition-standard);
}

.service-package:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-heavy);
}

.service-package.premium {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, var(--bg-white), var(--light-green));
}

.premium-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 0 0 0 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-header {
    background: var(--bg-light);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.package-header h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.package-content {
    padding: 2.5rem;
}

.package-content > p {
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.package-features h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

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

.package-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.service-options {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.option {
    background: var(--light-green);
    color: var(--dark-green);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
}

.service-note,
.service-guarantee,
.certification-note,
.safety-note,
.service-schedule {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--primary-color);
    margin-top: 1.5rem;
}

.service-note strong,
.service-guarantee strong,
.certification-note strong,
.safety-note strong,
.service-schedule strong {
    color: var(--text-dark);
}

/* Service Benefits */
.service-benefits {
    padding: 6rem 0;
    background: var(--bg-white);
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-header h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefits-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.benefit-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-standard);
    border: 2px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    background: var(--light-green);
}

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

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

.benefit-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Pricing CTA */
.pricing-cta {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: var(--text-white);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
    color: var(--text-white);
    font-size: 2.5rem;
}

.cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
    margin-bottom: 2.5rem;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-benefits span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-brand span {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-services h4,
.footer-contact h4 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

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

.footer-services a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-services a:hover {
    color: var(--primary-color);
}

.footer-contact-info p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-info a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-certifications {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-certifications span {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu,
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-medium);
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .areas-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .category-intro {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .zone ul {
        grid-template-columns: 1fr;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .services-cards {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .services-hero h1 {
        font-size: 2.25rem;
    }
    
    .testimonial {
        padding: 2rem;
    }
    
    .service-package {
        min-width: unset;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

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

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Focus styles */
.btn:focus,
.nav-link:focus,
.cta-button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.3);
        --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.4);
        --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.5);
    }
}