/* 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: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

/* Navigation */
.main-nav {
    background-color: #1e293b;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-menu a {
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #60a5fa;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-visual {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Intro Block */
.intro-block {
    background-color: #f8fafc;
    padding: 4rem 1.5rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: #475569;
    text-align: center;
}

/* Values Section */
.values-section {
    background-color: #ffffff;
    padding: 5rem 1.5rem;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.value-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-card img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-size: 1.75rem;
    color: #1e293b;
    font-weight: 700;
}

.value-card p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

/* Services Preview */
.services-preview {
    background: linear-gradient(to bottom, #f1f5f9 0%, #e2e8f0 100%);
    padding: 5rem 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 1rem;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-info h3 {
    font-size: 1.5rem;
    color: #1e293b;
    font-weight: 700;
}

.service-info p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

.service-price {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
}

/* CTA Buttons */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background-color: #2563eb;
    color: #ffffff;
}

.cta-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.cta-secondary {
    background-color: #475569;
    color: #ffffff;
}

.cta-secondary:hover {
    background-color: #334155;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Story Section */
.story-section {
    background-color: #ffffff;
    padding: 6rem 1.5rem;
}

.story-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-text h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.story-text p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #2563eb;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.story-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 5rem 1.5rem;
    color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 4rem;
    font-weight: 800;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author strong {
    font-size: 1.1rem;
    color: #60a5fa;
}

.author span {
    font-size: 0.95rem;
    color: #cbd5e1;
}

/* Form Section */
.form-section {
    background-color: #f8fafc;
    padding: 5rem 1.5rem;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1rem;
    font-weight: 800;
}

.form-intro p {
    font-size: 1.1rem;
    color: #64748b;
}

.service-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

/* Location Section */
.location-section {
    background-color: #ffffff;
    padding: 5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.location-content h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1rem;
    font-weight: 800;
}

.location-content p {
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.location-visual {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Footer */
.main-footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 4rem 1.5rem 2rem;
}

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

.footer-col h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: #cbd5e1;
}

.footer-col a:hover {
    color: #60a5fa;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #60a5fa;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1d4ed8;
}

.btn-reject {
    background-color: #475569;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #334155;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 4rem 1.5rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-header p {
    font-size: 1.25rem;
    color: #cbd5e1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Services Detail Page */
.services-detail {
    background-color: #ffffff;
    padding: 5rem 1.5rem;
}

.services-intro {
    margin-bottom: 4rem;
}

.intro-text {
    font-size: 1.25rem;
    color: #475569;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.service-category h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #2563eb;
    font-weight: 800;
}

.service-detail-item {
    background-color: #f8fafc;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-left: 4px solid #2563eb;
}

.service-detail-info h3 {
    font-size: 1.5rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-detail-info p {
    color: #64748b;
    line-height: 1.7;
}

.service-detail-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
}

.cta-box {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 4rem;
    color: #ffffff;
}

.cta-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-box p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #dbeafe;
}

/* About Page */
.about-story {
    background-color: #ffffff;
    padding: 5rem 1.5rem;
}

.story-block {
    margin-bottom: 4rem;
}

.story-block h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.story-block p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image-block {
    margin-bottom: 4rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.values-block {
    background-color: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 4rem;
}

.values-block h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 800;
}

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

.value-item h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.value-item p {
    color: #64748b;
    line-height: 1.7;
}

.team-block,
.future-block {
    margin-bottom: 4rem;
}

.team-block h2,
.future-block h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.team-block p,
.future-block p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.image-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.image-grid img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Contact Page */
.contact-section {
    background-color: #ffffff;
    padding: 5rem 1.5rem;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block h2 {
    font-size: 1.75rem;
    color: #0f172a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-detail {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
}

.contact-detail a {
    color: #2563eb;
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 0.5rem;
    font-style: italic;
}

.hours-table {
    width: 100%;
    margin-top: 1rem;
}

.hours-table tr {
    border-bottom: 1px solid #e2e8f0;
}

.hours-table td {
    padding: 0.75rem 0;
    font-size: 1.05rem;
}

.hours-table td:first-child {
    color: #475569;
    font-weight: 600;
}

.hours-table td:last-child {
    color: #1e293b;
    font-weight: 700;
}

.directions-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.directions-list li {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
}

.contact-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-visual img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-cta {
    background-color: #f8fafc;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.contact-cta h3 {
    font-size: 1.75rem;
    color: #0f172a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-cta p {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-section {
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
    padding: 5rem 1.5rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.25rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-confirmation {
    background-color: #dbeafe;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.selected-service {
    font-size: 1.15rem;
    color: #1e40af;
    margin: 0;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.thanks-info h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.next-steps {
    text-align: left;
    margin: 0 auto;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.next-steps li {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
}

/* Legal Content */
.legal-content {
    background-color: #ffffff;
    padding: 5rem 1.5rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    color: #0f172a;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.35rem;
    color: #1e293b;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-content a {
    color: #2563eb;
    font-weight: 600;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table thead {
    background-color: #f1f5f9;
}

.cookies-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    color: #0f172a;
    border-bottom: 2px solid #e2e8f0;
}

.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .hero-section {
        flex-direction: row;
        align-items: center;
        padding: 6rem 2rem;
    }

    .hero-content {
        text-align: left;
        flex: 1;
    }

    .hero-visual {
        flex: 1;
    }

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

    .value-card {
        flex: 1;
        min-width: 300px;
    }

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

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

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

    .story-text,
    .story-image {
        flex: 1;
    }

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

    .testimonial {
        flex: 1;
        min-width: 300px;
    }

    .location-section {
        flex-direction: row;
        align-items: center;
    }

    .location-content,
    .location-visual {
        flex: 1;
    }

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

    .footer-col {
        flex: 1;
    }

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

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

    .image-grid img {
        flex: 1;
    }

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

    .contact-info,
    .contact-visual {
        flex: 1;
    }

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

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

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

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

/* Mobile Navigation */
@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1e293b;
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        display: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }
}
