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

:root {
    --primary-color: #1a5490;
    --secondary-color: #2c7cc1;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #6c7a89;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #2ecc71;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

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

.main-nav {
    display: none;
}

.main-nav a {
    margin-left: 35px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

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

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    width: 30px;
    height: 24px;
    justify-content: space-between;
}

.nav-toggle span {
    display: block;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Split-Screen */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-right {
    flex: 1;
    min-height: 400px;
}

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

/* CTA Buttons */
.cta-primary,
.cta-large,
.cta-inline {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover,
.cta-large:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-inline {
    background-color: var(--accent-color);
    padding: 12px 28px;
    font-size: 0.95rem;
}

.cta-inline:hover {
    background-color: #d35400;
}

/* Split Layouts */
.split-layout,
.split-layout-reverse,
.split-reverse {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 80px 0;
}

.split-content,
.content-block {
    flex: 1;
}

.split-content h2,
.content-block h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.split-content p,
.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.split-visual,
.image-block {
    flex: 1;
}

.split-visual img,
.image-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

/* Stat Cards */
.stat-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

/* Sections */
.intro-section,
.problem-section,
.trust-section,
.approach-section,
.story-section,
.expertise-section,
.values-section,
.credentials-section,
.philosophy-section,
.visit-section,
.faq-contact,
.pricing-faq,
.next-steps,
.meanwhile-section {
    padding: 80px 0;
}

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

.problem-section {
    background-color: var(--bg-light);
}

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

.approach-section {
    background-color: var(--bg-light);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-header-center p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Challenge List */
.challenge-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.challenge-list li {
    padding-left: 0;
}

.challenge-list strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.challenge-list span {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Services */
.services-preview {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-icon img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.service-card p {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.price-tag {
    padding: 0 24px 16px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #d35400;
}

/* Testimonials */
.testimonial-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

blockquote {
    background-color: var(--bg-light);
    padding: 30px;
    border-left: 4px solid var(--accent-color);
    border-radius: 6px;
}

blockquote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 16px;
}

cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Process Steps */
.process-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cta-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.cta-left h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-left p {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

.cta-large {
    background-color: var(--accent-color);
    font-size: 1.1rem;
}

.cta-subtext {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Forms */
.form-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.form-header p {
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.btn-submit {
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

/* Footer */
.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-col a {
    display: block;
    opacity: 0.8;
    margin-bottom: 10px;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 16px 28px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background-color: #d35400;
    transform: scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-actions {
    display: flex;
    gap: 16px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--success-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    background-color: #27ae60;
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Page Hero */
.page-hero {
    padding: 100px 0 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-intro {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Detailed */
.services-detailed {
    padding: 60px 0;
}

.service-detail-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.service-detail-left {
    flex: 1;
}

.service-detail-left img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.service-detail-right {
    flex: 1;
}

.service-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-includes {
    margin-bottom: 30px;
}

.service-includes h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-includes ul {
    list-style: disc;
    padding-left: 24px;
}

.service-includes li {
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

.service-pricing {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.price-display {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.savings-note {
    color: var(--success-color);
    font-weight: 600;
    margin-top: 12px;
}

.featured-service .service-detail-right {
    border: 2px solid var(--accent-color);
    padding: 30px;
    border-radius: 8px;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

.contact-split {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-detail p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-detail a {
    color: var(--primary-color);
}

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

.contact-note {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin-top: 30px;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

/* Visit Section */
.visit-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.visit-info ul {
    list-style: disc;
    padding-left: 24px;
}

.visit-info li {
    margin-bottom: 12px;
    color: var(--text-light);
}

/* FAQ */
.faq-grid,
.faq-split {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Thanks Page */
.thanks-hero {
    padding: 100px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-confirmation {
    margin-top: 20px;
}

.selected-service {
    font-size: 1.1rem;
    color: var(--primary-color);
    background-color: var(--bg-white);
    padding: 16px;
    border-radius: 6px;
    display: inline-block;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.step-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-light);
}

.meanwhile-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.resource-list {
    list-style: disc;
    padding-left: 24px;
    margin-top: 20px;
}

.resource-list li {
    margin-bottom: 12px;
}

.resource-list a {
    color: var(--primary-color);
}

.resource-list a:hover {
    text-decoration: underline;
}

.contact-reminder {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.contact-reminder h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.contact-reminder p {
    margin-bottom: 12px;
    color: var(--text-light);
}

.business-hours-note {
    font-size: 0.9rem;
    font-style: italic;
}

/* Legal Pages */
.legal-page {
    padding: 60px 0 100px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-content ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-color);
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
}

/* About Page Specific */
.values-split {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.credentials-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.credential-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.credential-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.credential-item p {
    color: var(--text-light);
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.philosophy-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .main-nav {
        display: flex;
    }

    .hero-split {
        flex-direction: row;
        min-height: 600px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .split-layout,
    .split-reverse {
        flex-direction: row;
        align-items: center;
    }

    .split-layout-reverse {
        flex-direction: row-reverse;
        align-items: center;
    }

    .service-detail-split {
        flex-direction: row;
        align-items: center;
    }

    .service-detail-split.reverse {
        flex-direction: row-reverse;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 15px);
    }

    .process-split {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 0 0 calc(50% - 20px);
    }

    .cta-split {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        align-items: center;
    }

    .footer-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 0 0 calc(50% - 20px);
    }

    .contact-split {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-info {
        flex: 1;
    }

    .contact-image {
        flex: 1;
    }

    .visit-content {
        flex-direction: row;
    }

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 0 0 calc(50% - 15px);
    }

    .steps-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-card {
        flex: 0 0 calc(50% - 15px);
    }

    .meanwhile-split {
        flex-direction: row;
    }

    .values-split {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 0 0 calc(50% - 15px);
    }

    .credentials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .credential-item {
        flex: 0 0 calc(50% - 15px);
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .service-card {
        flex: 0 0 calc(33.333% - 20px);
    }

    .footer-col {
        flex: 0 0 calc(25% - 30px);
    }

    .faq-split {
        flex-direction: row;
    }

    .faq-item {
        flex: 1;
    }

    .process-split {
        flex-wrap: nowrap;
    }

    .process-step {
        flex: 1;
    }

    .steps-grid {
        flex-wrap: nowrap;
    }

    .step-card {
        flex: 1;
    }

    .values-split {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .sticky-cta,
    .cookie-banner,
    .cta-section,
    .form-section {
        display: none;
    }
}