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

a:hover {
    color: #2980b9;
}

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

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #229954;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

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

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

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: #3498db;
}

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

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

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

/* Hero Split Screen */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #546e7a;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    min-height: 500px;
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.link-cta {
    color: #3498db;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.05rem;
}

/* Sections */
.intro-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.intro-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #546e7a;
    text-align: center;
}

/* Services Grid */
.services-grid {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a252f;
}

.services-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.service-card {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.select-service {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #2980b9;
}

/* Split Layout */
.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 5rem 2rem;
}

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

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

.content-left h2,
.content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.content-left p,
.content-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 1.2rem;
}

.content-left img,
.content-right img {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Why Choose Section */
.why-choose {
    background-color: #f8f9fa;
}

/* Form Section */
.cta-form-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.cta-form-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.25);
}

.form-group select {
    cursor: pointer;
}

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

.submit-btn:hover {
    background-color: #229954;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

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

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

.testimonial {
    flex: 1 1 300px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial cite {
    color: #7f8c8d;
    font-size: 0.95rem;
    font-style: normal;
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

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

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #95a5a6;
}

/* Page Hero */
.page-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

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

.service-detail-card {
    margin-bottom: 5rem;
}

.service-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.service-image-large {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.service-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

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

.service-content ul li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
    color: #546e7a;
}

/* Process Steps */
.process-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.process-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
}

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.step p {
    color: #546e7a;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background-color: #3498db;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-section .cta-button {
    background-color: #ffffff;
    color: #3498db;
}

.cta-section .cta-button:hover {
    background-color: #ecf0f1;
}

/* Story Section */
.story-section {
    padding: 5rem 0;
}

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

.values-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
}

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

.value-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 250px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-card p {
    color: #546e7a;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

.team-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #546e7a;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

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

.team-member {
    flex: 1 1 calc(25% - 2rem);
    min-width: 220px;
    text-align: center;
}

.member-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.role {
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Approach Section */
.approach-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.approach-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.approach-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

/* Contact Info */
.contact-info-section {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-icon {
    color: #3498db;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-card p {
    color: #546e7a;
    line-height: 1.7;
}

.contact-card a {
    color: #3498db;
}

/* Contact Details */
.contact-details-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.contact-details-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-details-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 1.2rem;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
}

.map-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(52, 152, 219, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
}

.map-overlay p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Contact CTA */
.contact-cta {
    padding: 5rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

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

.contact-cta p {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

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

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

.success-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

.service-confirmation p {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.steps-list {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    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-item p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Additional Info */
.additional-info {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.additional-info h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.info-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

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

.info-card p {
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Legal Content */
.legal-content {
    padding: 4rem 0;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 1.2rem;
}

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

.legal-content ul li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
    color: #546e7a;
}

.legal-content strong {
    color: #2c3e50;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #546e7a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 2.5rem;
    }

    .service-split,
    .service-split.reverse {
        flex-direction: column;
    }

    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .cookie-content {
        gap: 1.5rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .section-title,
    .page-hero h1 {
        font-size: 2.2rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .value-card,
    .team-member {
        flex: 1 1 100%;
    }

    .process-steps {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

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

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}
