/* ===================================
   The Washe - Main Stylesheet
   File: /css/style.css
   =================================== */

/* CSS Variables for consistent theming */
:root {
    --primary-color: #243665;
    --primary-dark: #8BD8BD;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 1.125rem;
    line-height: 1.75;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

/* Header and Navigation */
header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

/* header {
    opacity: 0;
    transition: opacity 0.2s ease-in;
}

header.loaded {
    opacity: 1;
}

#header-container {
    background: #fff;
} */


/* .sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
} */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: .75rem 0;
}

.logo:hover {
    color: var(--primary-dark);
}

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-white {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    color: white;
}

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

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

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

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

/* Fixed Secondary Button for Hero */
.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    /* Semi-transparent white background */
    color: white;
    border: 2px solid white;
    /* White border instead of primary color */
    backdrop-filter: blur(10px);
    /* Blur effect for modern look */
}

.btn-secondary:hover {
    background: white;
    /* Solid white on hover */
    color: var(--primary-color);
    /* Text becomes primary color */
    border-color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.hero {
    position: relative;
    color: white;
    padding: 8rem 0;
    overflow: hidden;

    /* No overlay - text readability handled by backdrop on .hero-content */
    background: url(../images/The-Washe-Hero-Wide.png) center center / cover no-repeat;
    background-attachment: scroll;
    /* Changed from 'fixed' - this was the problem! */
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    animation: float 20s linear infinite;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    background: rgba(0, 0, 0, 0.35);
    padding: 2.5rem 3rem;
    border-radius: 16px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Hero Intro Sections with Rounded Corner Images */
.hero-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0;
}

.hero-intro-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-intro-text p {
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.hero-intro-image {
    width: 100%;
}

.hero-intro-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

/* Rounded Corner Styles - Quarter Circle */
.rounded-top-right {
    border-radius: 0 150px 0 0;
}

.rounded-top-left {
    border-radius: 150px 0 0 0;
}

/* Intro Features List */
.intro-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.feature-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}


@keyframes float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7),
        0 4px 16px rgba(0, 0, 0, 0.5);
}

.hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7),
        0 3px 12px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
    justify-content: flex-start;
}

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

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

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

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

.section-header p {
    font-size: 1.25rem;
    color: var(--text-gray);
}

/* How It Works Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

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

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    font-weight: 700;
}

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

.step-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Tabs */
.tabs {
    margin-bottom: 3rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.875rem 2.5rem;
    background: var(--bg-light);
    color: var(--text-gray);
    border: 2px solid #243665;
    /* Added border */
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.tab-btn:hover {
    background: var(--primary-dark);
    color: white;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

.feature-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-gray);
}

/* Testimonials */
.testimonials {
    background: white;
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    color: var(--accent-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Google Review Stars */
.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.review-stars i {
    color: #FFA500;
    /* Gold/Orange stars */
}

/* Google Icon in Avatar */
.author-avatar i {
    font-size: 1.5rem;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 6rem 0;
}

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

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-section .btn:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-submit {
    width: 100%;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content h1 {
    margin-bottom: 1rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
}

.legal-content p,
.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Contact Info */
.contact-info {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

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

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

.contact-icon {
    font-size: 1.75rem;
    color: var(--primary-color);
}

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

.contact-item p {
    margin-bottom: 0;
    color: var(--text-gray);
}

/* Map Container */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 3rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    text-align: left;
}

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

.footer-section p,
.footer-section a {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

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

/* Footer Logo */
.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--text-light);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-social a {
    color: var(--text-light);
    font-size: 1.75rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: white;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

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

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.pricing-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.pricing-image {
    width: 100%;
}

.pricing-photo {
    /* width: 100%; */
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

.pricing-text p {
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

/* Pricing Highlights */
.pricing-highlight {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    align-items: flex-start;
}

.highlight-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.pricing-highlight h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.pricing-highlight p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Price Table */
.price-table {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin: 2rem 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row:hover {
    background: var(--bg-light);
}

.price-row.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.price-row.highlight h3,
.price-row.highlight p,
.price-row.highlight .price-amount,
.price-row.highlight .price-unit {
    color: white;
}

.price-service h3 {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.price-service p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.price-cost {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

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

.price-unit {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Pricing Note */
.pricing-note {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
}

.pricing-note p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.pricing-note p:last-child {
    margin-bottom: 0;
}

/* Location Section - Image and Map Grid */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.location-image {
    display: flex;
    flex-direction: column;
}

.office-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
}

.image-caption {
    text-align: center;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.image-caption strong {
    color: var(--text-dark);
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.5rem;
}

.location-map {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-map iframe {
    display: block;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
    opacity: 1 !important;
}

.slide-up {
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

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

/* Success Message */
.success-message {
    background: var(--success-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: none;
}

.success-message.show {
    display: block;
    animation: fadeIn 0.3s ease;
}



.accordion-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background: #f7f7f7;
    border: none;
    cursor: pointer;
    padding: 1em;
    font-size: 1rem;
    text-align: left;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

*/ .accordion-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--primary-color);
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-body {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.75;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

/* About Content Layout */
.about-content-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 0 0 400px;
}

.square-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

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

.stat-label {
    font-size: 1.125rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* Difference Items */
.difference-item {
    margin-bottom: 2.5rem;
}

.difference-item h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.difference-item p {
    font-size: 1.063rem;
    line-height: 1.75;
    margin-bottom: 0;
}

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

.team-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.team-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.375rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Logo Image */
.logo-img {
    height: 40px;
    width: auto;
}

.my-custom-color {
    fill: #243665;
}

/* Form Message Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.success-message,
.error-message {
    animation: slideDown 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero {
        background: url(../images/The-Washe-Hero-Wide.png) center center / cover no-repeat;
        background-attachment: scroll;
        padding: 5rem 0;
    }

    .hero .hero-content {
        margin: 0 auto;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.125rem;
    }

    .hero-intro-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem 0;
    }

    .hero-intro-text h2 {
        font-size: 1.875rem;
    }

    .hero-intro-text p {
        font-size: 1rem;
    }

    .hero-intro-image img {
        height: 300px;
    }

    .accordion-header {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .accordion-body {
        padding: 0 1.5rem 1.25rem 1.5rem;
        font-size: 0.95rem;
    }

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

    /* Smaller rounded corners on mobile */
    .rounded-top-right {
        border-radius: 0 80px 0 0;
    }

    .rounded-top-left {
        border-radius: 80px 0 0 0;
    }

    .intro-feature {
        font-size: 1rem;
    }

    .container,
    .container-wide {
        padding: 0 1.5rem;
    }

    section {
        padding: 3.5rem 0;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 1.5rem;
        align-items: flex-start;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: none;
    }

    .dropdown-menu li a {
        padding-left: 2rem;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

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

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

    .hero {
        padding: 5rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .steps-grid,
    .features-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tab-buttons {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-section {
        text-align: left;
    }

    .footer-logo {
        max-width: 150px;
    }

    .footer-social {
        justify-content: flex-start;
    }

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

    .office-photo,
    .location-map {
        height: 300px;
    }

    .pricing-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-photo {
        height: 300px;
    }

    .pricing-highlight {
        flex-direction: column;
        gap: 1rem;
    }

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

    /* Better Price Table Mobile Layout */
    .price-table {
        margin: 1.5rem 0;
    }

    .price-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }

    .price-service {
        flex: 1;
    }

    .price-service h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .price-service p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .price-cost {
        align-items: flex-end;
        flex-shrink: 0;
    }

    .price-amount {
        font-size: 1.25rem;
    }

    .price-unit {
        font-size: 0.75rem;
    }

    /* Better spacing for highlighted row on mobile */
    .price-row.highlight {
        padding: 1.5rem;
    }

    .price-row.highlight .price-service h3 {
        font-size: 1.125rem;
    }

    /* Pricing note mobile styling */
    .pricing-note {
        padding: 1.25rem;
        font-size: 0.9rem;
    }

    .pricing-note p {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .about-content-wrapper {
        flex-direction: column;
    }

    .about-text,
    .about-image {
        width: 100%;
        flex: 1;
    }

    .about-image {
        flex: 0 0 auto;
    }

    .square-image {
        height: 300px;
    }

    .stats-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

}

@media (max-width: 480px) {
    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.625rem;
    }

    .hero {
        background: url(../images/The-Washe-Hero-Wide.png) center center / cover no-repeat;
        background-attachment: scroll;
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-intro-image img {
        height: 250px;
    }

    /* Even smaller rounded corners on very small phones */
    .rounded-top-right {
        border-radius: 0 60px 0 0;
    }

    .rounded-top-left {
        border-radius: 60px 0 0 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .price-row {
        padding: 1rem 1rem;
    }

    .price-service h3 {
        font-size: 0.95rem;
    }

    .price-service p {
        font-size: 0.8rem;
    }

    .price-amount {
        font-size: 1.125rem;
    }

    .price-unit {
        font-size: 0.7rem;
    }

    footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.125rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    .footer-social a {
        font-size: 1.5rem;
    }
}