/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #DE608F;
    --secondary-color: #1f2937;
    --accent-color: #4f46e5;
    --background-color: #ffffff;
    --text-color: #333333;
    --border-radius: 8px;
    --transition-speed: 0.3s;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 80px; /* Account for fixed header */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #DE608F;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 1000;
    transition: top 0.3s;
}

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

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid #DE608F;
    outline-offset: 2px;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Sections */
.section-title-enhanced {
    font-size: 2.5rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2rem;
}

/* Testimonials Section */
.testimonials-section {
    background: #f8fafc;
    padding: 4rem 0;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-speed);
}

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

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-content cite {
    color: var(--secondary-color);
    font-style: normal;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: white;
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
}

.faq-item summary {
    padding: 1rem;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1rem;
    transition: transform var(--transition-speed);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 1rem;
    background: #f8fafc;
}

/* Contact Form */
.contact-enhanced {
    padding: 4rem 0;
    background: #f8fafc;
}

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

.contact-methods {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

.contact-details h3 {
    margin-bottom: 0.5rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

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

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    width: auto;
}

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

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

    .section-title-enhanced {
        font-size: 2rem;
    }
    
    .hero-content-enhanced {
        padding: 2rem 1rem;
    }
    
    .services-grid-enhanced {
        grid-template-columns: 1fr;
    }
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    position: relative;
    transition: var(--transition-speed);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition-speed);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-list {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--background-color);
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-list.show {
        display: block;
    }

    .nav-list li {
        margin: 15px 0;
    }

    .header-cta {
        margin-left: 0;
    }
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 80px;
}

.logo h1 {
    color: #DE608F;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
    color: #DE608F;
}

.nav a.active {
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    min-height: 44px; /* Accessibility: minimum touch target */
    border: 2px solid transparent;
}

.btn-primary {
    background: #DE608F;
    color: white;
    border-color: #DE608F;
}

.btn-primary:hover {
    background: #DE608F;
    border-color: #DE608F;
}

.btn-secondary {
    background: #DE608F;
    color: white;
    border-color: #DE608F;
}

.btn-secondary:hover {
    background: #DE608F;
    border-color: #DE608F;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(222, 96, 143, 0.8) 0%, rgba(222, 96, 143, 0.9) 100%), url('../images/hero-cleaning.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #fecaca;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

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

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: #fff;
}

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

.service-card {
    background: #fef2f2;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(222, 96, 143, 0.1);
}

.service-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
    height: 200px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #6b7280;
    line-height: 1.5;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: #f9fafb;
}

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

.about-text {
    text-align: left;
}

.about-text .section-title {
    text-align: left;
}

.about-text p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.experience-highlight {
    background: #DE608F;
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.experience-highlight h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.experience-highlight p {
    color: #fecaca;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: #fff;
    text-align: center;
}

.contact-info {
    margin-top: 2rem;
}

.contact-methods {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.contact-method {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #DE608F;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: background-color 0.3s;
    min-height: 44px;
}

.contact-method:hover {
    background: #DE608F;
}

.business-hours {
    color: #6b7280;
    font-size: 1rem;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 2rem 0;
}

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

.company-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.company-info p {
    color: #d1d5db;
    margin-bottom: 0.25rem;
}

.footer-links a {
    color: #fca5a5;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fecaca;
}

.copyright {
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
    border-top: 1px solid #374151;
    padding-top: 1rem;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .nav ul {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .services {
        padding: 2rem 0;
    }
    
    .about {
        padding: 2rem 0;
    }
    
    .contact {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
}

/* Enhanced Hero Section */
.hero-enhanced {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(222, 96, 143, 0.85) 0%, rgba(222, 96, 143, 0.9) 100%);
    z-index: -1;
}

.hero-content-enhanced {
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

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

.hero-title-enhanced {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle-enhanced {
    font-size: 1.375rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

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

.stat-label {
    font-size: 0.875rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons-enhanced {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary-enhanced,
.btn-secondary-enhanced {
    background: #DE608F;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 2px solid #DE608F;
    width: 320px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-primary-enhanced:hover,
.btn-secondary-enhanced:hover {
    background: #DE608F;
    border-color: #DE608F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-trust-note {
    font-size: 0.875rem;
    color: white;
    opacity: 0.9;
    text-align: center;
}

/* Enhanced Services Section */
.services-enhanced {
    padding: 6rem 0;
    background: #f9fafb;
}

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

.section-title-enhanced {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle-enhanced {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.service-card-enhanced {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(222, 96, 143, 0.15);
}

.service-image-enhanced {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.service-image-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(222, 96, 143, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card-enhanced:hover .service-overlay {
    opacity: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features span {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    display: inline-block;
    width: fit-content;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag {
    background: #fee2e2;
    color: #DE608F;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Enhanced About Section */
.about-enhanced {
    padding: 6rem 0;
    background: white;
}

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

.about-image-enhanced {
    position: relative;
}

.about-image-enhanced img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.about-image-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: #DE608F;
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(222, 96, 143, 0.3);
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.3;
}

.about-text-enhanced {
    padding-left: 2rem;
}

.about-intro {
    margin-bottom: 2rem;
}

.about-label {
    display: inline-block;
    background: #fee2e2;
    color: #DE608F;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.story-lead {
    font-size: 1.25rem;
    color: #4b5563;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.story-content p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.story-highlights {
    margin: 3rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
}

.highlight-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.highlight-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: #6b7280;
    margin: 0;
    font-size: 0.875rem;
}

.trust-indicators {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fef2f2;
    border-radius: 8px;
    border-left: 4px solid #DE608F;
}

.trust-icon {
    font-size: 1.5rem;
}

.trust-item strong {
    color: #DE608F;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.trust-item p {
    color: #6b7280;
    margin: 0;
    font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #f9fafb;
}

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

.testimonials-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-stars {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-card blockquote {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-card blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #fecaca;
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: serif;
}

.testimonial-card cite {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-card cite strong {
    color: #1f2937;
    font-weight: 700;
}

.testimonial-card cite span {
    color: #6b7280;
    font-size: 0.875rem;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.testimonials-stats .stat {
    text-align: center;
}

.testimonials-stats .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #DE608F;
    margin-bottom: 0.5rem;
}

.testimonials-stats .stat-label {
    color: #6b7280;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Enhanced Contact Section */
.contact-enhanced {
    padding: 6rem 0;
    background: white;
}

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

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.contact-card {
    background: #f9fafb;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-card:hover {
    border-color: #DE608F;
    background: white;
    box-shadow: 0 8px 30px rgba(222, 96, 143, 0.1);
}

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

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
    flex-grow: 1;
}

.contact-btn-primary,
.contact-btn-secondary {
    display: inline-block;
    background: #DE608F;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
    border: 2px solid #DE608F;
    width: 100%;
    box-sizing: border-box;
    min-height: 48px;
}

.contact-btn-primary:hover,
.contact-btn-secondary:hover {
    background: #DE608F;
    border-color: #DE608F;
}

.availability {
    display: block;
    color: #6b7280;
    font-size: 0.875rem;
}

.contact-promise {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #059669;
    font-weight: 600;
}

.promise-icon {
    font-size: 1.25rem;
}

.contact-footer {
    text-align: center;
}

.service-area {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* höyry Feature Section */
.höyry-feature {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

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

.höyry-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(222, 96, 143, 0.15);
}

.höyry-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.höyry-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, #DE608F 0%, #DE608F 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(222, 96, 143, 0.3);
    animation: pulse 2s infinite;
}

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

.badge-icon {
    font-size: 1.5rem;
}

.höyry-text {
    padding-right: 2rem;
}

.höyry-intro {
    margin-bottom: 2rem;
}

.feature-label {
    display: inline-block;
    background: #fee2e2;
    color: #DE608F;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.höyry-description .lead-text {
    font-size: 1.25rem;
    color: #4b5563;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.höyry-description p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.höyry-benefits {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 2px solid #fee2e2;
}

.höyry-benefits h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.benefits-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.benefit-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-column li {
    color: #4b5563;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.höyry-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #fef2f2;
    border-radius: 12px;
    border-left: 4px solid #DE608F;
}

.highlight-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.highlight-box h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.highlight-box p {
    color: #6b7280;
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.5;
}

.höyry-cta {
    background: linear-gradient(135deg, #DE608F 0%, #DE608F 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.höyry-cta .cta-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.6;
}

.btn-link {
    display: inline-block;
    background: white;
    color: #DE608F;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    border: 2px solid white;
}

.btn-link:hover {
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Business Services Section */
.business-services {
    padding: 0;
    background: #ffffff;
}

.business-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 4rem;
}

.business-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.business-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(222, 96, 143, 0.85) 0%, rgba(222, 96, 143, 0.9) 100%);
    z-index: 2;
}

.business-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.section-label-white {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-title-white {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle-white {
    font-size: 1.25rem;
    color: white;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

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

.section-label {
    display: inline-block;
    background: #fee2e2;
    color: #DE608F;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.business-services > .container {
    padding-top: 4rem;
    padding-bottom: 6rem;
}

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

.business-card {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.business-card:hover {
    border-color: #DE608F;
    background: white;
    box-shadow: 0 8px 30px rgba(222, 96, 143, 0.1);
    transform: translateY(-5px);
}

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

.business-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.business-card p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.business-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-features li {
    color: #4b5563;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.business-benefits {
    background: #f9fafb;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.business-benefits h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.benefit-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #6b7280;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.business-cta {
    background: linear-gradient(135deg, #DE608F 0%, #DE608F 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.business-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.business-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.business-cta .btn-primary-enhanced,
.business-cta .btn-secondary-enhanced {
    background: white;
    color: #DE608F;
    border-color: white;
}

.business-cta .btn-primary-enhanced:hover,
.business-cta .btn-secondary-enhanced:hover {
    background: #f9fafb;
    color: #DE608F;
    border-color: #f9fafb;
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .about-content-enhanced {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-text-enhanced {
        padding-left: 0;
    }
    
    .services-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .höyry-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .höyry-text {
        padding-right: 0;
    }
    
    .benefits-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title-enhanced {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-enhanced {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-buttons-enhanced {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title-enhanced {
        font-size: 2rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-stats {
        gap: 2rem;
    }
    
    .contact-promise {
        flex-direction: column;
        align-items: center;
    }
    
    .business-benefits h3 {
        font-size: 1.5rem;
    }
    
    .business-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .feature-title {
        font-size: 2rem;
    }
    
    .höyry-image img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-enhanced {
        min-height: 80vh;
    }
    
    .hero-content-enhanced {
        padding: 1rem;
    }
    
    .hero-title-enhanced {
        font-size: 2rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .services-enhanced {
        padding: 3rem 0;
    }
    
    .about-enhanced {
        padding: 3rem 0;
    }
    
    .testimonials {
        padding: 3rem 0;
    }
    
    .contact-enhanced {
        padding: 3rem 0;
    }
    
    .about-image-enhanced img {
        height: 400px;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .business-services > .container {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }
    
    .business-hero {
        min-height: 300px;
    }
    
    .business-hero-content {
        padding: 2rem 1rem;
    }
    
    .section-title-white {
        font-size: 1.75rem;
    }
    
    .section-subtitle-white {
        font-size: 1rem;
    }
    
    .business-benefits {
        padding: 2rem;
    }
    
    .business-cta {
        padding: 2rem;
    }
    
    .business-card {
        padding: 2rem;
    }
    
    .höyry-feature {
        padding: 3rem 0;
    }
    
    .höyry-image img {
        height: 300px;
    }
    
    .feature-title {
        font-size: 1.75rem;
    }
    
    .höyry-benefits {
        padding: 1.5rem;
    }
    
    .höyry-cta {
        padding: 1.5rem;
    }
}

/* Smooth scrolling and reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
