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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    color: #6b4423;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #8b5a3c;
}

ul {
    list-style-position: inside;
}

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

/* Header */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6b4423;
    letter-spacing: -0.5px;
}

.logo:hover {
    color: #8b5a3c;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: #6b4423;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Navigation */
.main-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.main-nav.active {
    display: flex;
    transform: translateX(0);
}

.main-nav a {
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #f0f0f0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f0eb 0%, #e8ddd3 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Hero */
.page-hero {
    background-color: #f5f0eb;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.page-hero .lead {
    font-size: 1.1rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #6b4423;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #8b5a3c;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #6b4423;
    border: 2px solid #6b4423;
}

.btn-secondary:hover {
    background-color: #6b4423;
    color: #ffffff;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

section h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

section h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

/* Philosophy Section */
.philosophy {
    background-color: #f9f9f9;
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-item {
    text-align: center;
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.philosophy-icon img {
    width: 100%;
    height: 100%;
}

/* Featured Services */
.featured-services {
    background-color: #ffffff;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-highlight {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-visual {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.service-visual img {
    width: 100%;
}

.service-details h3 {
    margin-bottom: 1rem;
}

.price-indicator {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #f5f0eb;
    color: #6b4423;
    font-weight: 600;
    border-radius: 4px;
}

/* Company Story */
.company-story {
    background-color: #f5f0eb;
}

.story-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-text p {
    margin-bottom: 1.25rem;
}

.story-visual {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Statistics */
.statistics {
    background-color: #6b4423;
    color: #ffffff;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e8ddd3;
    line-height: 1;
}

/* Testimonials */
.testimonials {
    background-color: #f9f9f9;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    margin-bottom: 1.5rem;
}

.testimonial-text p {
    font-style: italic;
    color: #5a6c7d;
    font-size: 1.05rem;
}

.testimonial-author strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #8b5a3c;
    font-size: 0.9rem;
}

/* Benefits */
.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-block {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-left: 4px solid #6b4423;
}

.benefit-block h3 {
    margin-bottom: 0.75rem;
}

/* FAQ */
.faq {
    background-color: #ffffff;
}

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

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
}

.faq-icon {
    font-size: 1.5rem;
    color: #6b4423;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: #5a6c7d;
}

/* CTA Sections */
.cta-final,
.cta-section,
.cta-services {
    background-color: #f5f0eb;
    text-align: center;
}

.cta-content,
.cta-box {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2,
.cta-box h2 {
    margin-bottom: 1rem;
}

.cta-content p,
.cta-box p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    color: #b8c5d0;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #3d5267;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #b8c5d0;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cookie-option label {
    display: flex;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #5a6c7d;
    margin-left: 1.75rem;
}

.cookie-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Service Cards */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.service-icon {
    width: 80px;
    height: 80px;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

.service-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-features {
    margin: 1.5rem 0;
    padding-left: 1.25rem;
}

.service-features li {
    margin-bottom: 0.5rem;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 1rem;
}

.price-label {
    font-size: 0.9rem;
    color: #5a6c7d;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6b4423;
}

/* Service Benefits */
.service-benefits {
    background-color: #f5f0eb;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.benefit-item h3 {
    margin-bottom: 0.75rem;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.process-block {
    display: flex;
    gap: 1.5rem;
}

.process-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #6b4423;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
}

.process-text h3 {
    margin-bottom: 0.5rem;
}

/* Comparison Table */
.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.comparison-row {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-header {
    background-color: #6b4423;
    color: #ffffff;
}

.comparison-cell {
    padding: 1rem;
    flex: 1;
}

.comparison-cell.highlight {
    font-weight: 600;
    color: #6b4423;
}

.comparison-header .comparison-cell {
    font-weight: 700;
}

/* Contact */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block h2,
.contact-block h3 {
    margin-bottom: 1rem;
}

.info-group {
    margin-bottom: 2rem;
}

.info-group h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #6b4423;
}

.note {
    font-size: 0.9rem;
    color: #5a6c7d;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Visit Options */
.visit-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visit-option {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.visit-option h3 {
    margin-bottom: 1rem;
}

/* About Page */
.content-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-main {
    flex: 1;
}

.content-main p {
    margin-bottom: 1.25rem;
}

.info-box {
    padding: 1.5rem;
    background-color: #f5f0eb;
    border-radius: 8px;
}

.info-box h3 {
    margin-bottom: 1rem;
}

.info-box ul {
    padding-left: 1.25rem;
}

.info-box li {
    margin-bottom: 0.5rem;
}

/* Team */
.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.team-member {
    text-align: center;
}

.member-visual {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-role {
    color: #6b4423;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    padding-bottom: 2rem;
    border-left: 2px solid #e0e0e0;
    padding-left: 2rem;
    position: relative;
}

.timeline-item:last-child {
    border-left-color: transparent;
}

.timeline-year {
    position: absolute;
    left: -60px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #6b4423;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

/* Philosophy Deep */
.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.philosophy-block {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.philosophy-block h3 {
    margin-bottom: 1rem;
}

.philosophy-block p {
    margin-bottom: 1rem;
}

.philosophy-block p:last-child {
    margin-bottom: 0;
}

/* Industries */
.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.industry-item {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-left: 4px solid #6b4423;
}

.industry-item h3 {
    margin-bottom: 0.75rem;
}

/* Trust Indicators */
.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.trust-icon img {
    width: 100%;
    height: 100%;
}

/* Thank You Page */
.thank-you-content {
    padding: 4rem 0;
}

.thank-you-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.thank-you-icon img {
    width: 100%;
    height: 100%;
}

.thank-you-box h1 {
    margin-bottom: 1.5rem;
}

.thank-you-box .lead {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.thank-you-box p {
    margin-bottom: 2rem;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Next Steps */
.next-steps {
    background-color: #f9f9f9;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-box {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.step-box .step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #6b4423;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-box h3 {
    margin-bottom: 0.75rem;
}

/* Content Suggestions */
.content-suggestions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.suggestion-card {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.suggestion-card h3 {
    margin-bottom: 1rem;
}

.suggestion-card p {
    margin-bottom: 1rem;
}

.suggestion-card a {
    font-weight: 600;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.last-updated {
    color: #5a6c7d;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

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

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

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

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

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table thead {
    background-color: #f5f0eb;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    font-weight: 600;
}

/* Company Info Box */
.company-info-box {
    background-color: #f9f9f9;
}

.company-details {
    max-width: 600px;
    margin: 0 auto;
}

.company-details p {
    line-height: 1.8;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    section h2 {
        font-size: 2.25rem;
    }

    .philosophy-grid,
    .services-showcase,
    .testimonials-grid,
    .benefits-layout,
    .benefits-grid,
    .team-grid,
    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-item,
    .benefit-block,
    .benefit-item,
    .team-member,
    .trust-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .testimonial {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .service-visual {
        flex-shrink: 0;
    }

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

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

    .stat-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .footer-section {
        flex: 1;
    }

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

    .cookie-actions {
        flex-shrink: 0;
    }

    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }

    .steps-grid,
    .content-suggestions,
    .visit-grid,
    .industries-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-box,
    .suggestion-card,
    .visit-option,
    .industry-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-block {
        flex: 1;
    }

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

    .content-sidebar {
        flex: 0 0 280px;
    }

    .comparison-row {
        flex-direction: row;
    }

    .comparison-cell:first-child {
        flex: 0 0 200px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }

    .main-nav {
        display: flex;
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        transform: none;
        background-color: transparent;
    }

    .main-nav a {
        padding: 0 1.5rem;
        border-bottom: none;
        font-size: 1rem;
    }

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

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

    section h2 {
        font-size: 2.5rem;
    }

    .philosophy-item {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .stat-item {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .testimonial {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .benefit-item {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .team-member {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .trust-item {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .timeline-year {
        left: -80px;
    }
}

/* Utility Classes */
.lead {
    font-size: 1.1rem;
    line-height: 1.7;
}

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

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

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

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

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