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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
}

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

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

.btn-cookie-accept {
    background: #48bb78;
    color: white;
}

.btn-cookie-accept:hover {
    background: #38a169;
}

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Navigation */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2b6cb0;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: #2b6cb0;
}

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

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

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

.btn-primary {
    background: #2b6cb0;
    color: white;
}

.btn-primary:hover {
    background: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43,108,176,0.3);
}

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

.btn-secondary:hover {
    background: #2b6cb0;
    color: white;
}

.btn-full {
    width: 100%;
}

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

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-text-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

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

/* Split Sections */
.split-section {
    display: flex;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

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

.split-image {
    position: relative;
    overflow: hidden;
    background: #e2e8f0;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    line-height: 1.2;
}

.split-content p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #4a5568;
    line-height: 1.8;
}

.split-content .btn-primary,
.split-content .btn-secondary {
    margin-top: 1.5rem;
    align-self: flex-start;
}

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

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

/* Info Cards */
.info-cards {
    padding: 6rem 0;
    background: #f7fafc;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    color: #2b6cb0;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.info-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: #1a202c;
    color: white;
}

.testimonials .section-title {
    color: white;
}

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.testimonial-author {
    font-weight: 600;
    color: #90cdf4;
}

/* Services Preview */
.services-preview {
    padding: 6rem 0;
}

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

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.services-intro {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.services-list-split {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #2b6cb0;
    gap: 2rem;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.service-info p {
    color: #4a5568;
    line-height: 1.7;
}

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

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2b6cb0;
}

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

/* Form Section */
.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    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: #2b6cb0;
}

.checklist {
    list-style: none;
    margin: 1.5rem 0;
}

.checklist li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 1.25rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 0;
}

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

.category-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a202c;
    border-bottom: 3px solid #2b6cb0;
    padding-bottom: 0.5rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.service-card-header h3 {
    font-size: 1.5rem;
    color: #1a202c;
    flex: 1;
}

.service-card-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2b6cb0;
    flex-shrink: 0;
}

.service-description {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-includes {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-includes li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.service-includes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: bold;
}

.service-duration {
    font-size: 0.875rem;
    color: #718096;
    font-style: italic;
    margin-top: auto;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: #f7fafc;
}

.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem;
    border-radius: 16px;
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-box .btn-primary {
    background: white;
    color: #667eea;
}

.cta-box .btn-primary:hover {
    background: #f7fafc;
}

/* Contact Split */
.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-info-side,
.contact-map-side {
    flex: 1;
}

.contact-info-side {
    background: #1a202c;
    color: white;
    padding: 4rem;
}

.contact-info-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #90cdf4;
}

.contact-block p {
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-block a {
    color: #90cdf4;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.hours-table {
    width: 100%;
}

.hours-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.hours-table td:last-child {
    text-align: right;
}

.contact-map-side {
    background: #e2e8f0;
    display: flex;
    flex-direction: column;
}

.map-placeholder {
    flex: 1;
    background: #cbd5e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-additional {
    padding: 2rem;
    background: white;
}

.contact-additional h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.contact-additional p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.value-item p {
    color: #4a5568;
    line-height: 1.8;
}

/* Equipment Section */
.equipment-section {
    padding: 6rem 0;
    background: #f7fafc;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: #4a5568;
}

.equipment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.equipment-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.equipment-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.equipment-item p {
    color: #4a5568;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-section {
    padding: 6rem 0;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: #48bb78;
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

.thanks-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.thanks-message {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.service-info-box {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 4px solid #2b6cb0;
}

.service-info-box h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.service-name {
    font-size: 1.25rem;
    color: #2b6cb0;
    font-weight: 600;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding-left: 3rem;
    position: relative;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #4a5568;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 2rem;
    height: 2rem;
    background: #2b6cb0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.thanks-tips {
    background: #fff5f5;
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
    margin-bottom: 3rem;
}

.thanks-tips h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.thanks-tips ul {
    list-style: none;
}

.thanks-tips li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-tips li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Page */
.legal-page {
    padding: 4rem 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #4a5568;
}

.legal-page ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #4a5568;
}

.legal-page a {
    color: #2b6cb0;
    text-decoration: underline;
}

.legal-intro {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-left: 4px solid #2b6cb0;
    border-radius: 4px;
}

.legal-date {
    margin-top: 3rem;
    font-style: italic;
    color: #718096;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1 1 250px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #90cdf4;
}

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

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #90cdf4;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        min-height: 400px;
    }

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

    .split-section {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 3rem 2rem;
    }

    .contact-split {
        flex-direction: column;
    }

    .info-card,
    .testimonial-card,
    .service-card,
    .faq-item,
    .value-item,
    .equipment-item {
        flex: 1 1 100%;
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .thanks-section h1 {
        font-size: 2rem;
    }

    .cta-box {
        padding: 3rem 2rem;
    }

    .cta-box h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

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

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

    .nav-container {
        padding: 0 1rem;
    }
}