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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

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

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

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

/* Navigation */
.main-nav {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: 0.3s;
}

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

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

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background-color: var(--light-bg);
}

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

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #555;
}

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

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

/* CTA Buttons */
.cta-primary, .cta-secondary, .cta-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.cta-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.cta-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.cta-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.cta-submit {
    background-color: var(--accent-color);
    color: var(--white);
    width: 100%;
}

.cta-submit:hover {
    background-color: #c0392b;
}

/* Intro Alternate Section */
.intro-alternate {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

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

.intro-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

/* Services Showcase */
.services-showcase {
    background-color: var(--light-bg);
    padding: 6rem 2rem;
}

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

.section-header-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header-centered p {
    font-size: 1.2rem;
    color: #666;
}

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

.service-card {
    display: flex;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

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

.service-visual, .service-details {
    flex: 1;
}

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

.service-details {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-details p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.9rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #2980b9;
    transform: translateX(5px);
}

/* Why Us Split Section */
.why-us-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

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

.why-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.benefit-item p {
    line-height: 1.7;
}

.why-right img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* Testimonials Alternate */
.testimonials-alternate {
    background-color: var(--light-bg);
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-block {
    display: flex;
}

.testimonial-block.left {
    justify-content: flex-start;
}

.testimonial-block.right {
    justify-content: flex-end;
}

.testimonial-text {
    max-width: 700px;
    padding: 2.5rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--secondary-color);
}

.testimonial-text p {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Booking Form Section */
.booking-form-section {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.form-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro, .form-container {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.selected-service-display {
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
    display: none;
}

.selected-service-display.active {
    display: block;
}

.booking-form {
    background-color: var(--light-bg);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* Final CTA Split */
.final-cta-split {
    display: flex;
    min-height: 60vh;
    align-items: stretch;
}

.final-cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 3rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.final-cta-image {
    flex: 1;
}

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

/* Page Hero Split (for secondary pages) */
.page-hero-split {
    display: flex;
    min-height: 50vh;
    align-items: stretch;
}

.page-hero-split .hero-left h1 {
    font-size: 2.8rem;
}

/* Story Split */
.story-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

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

.story-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.story-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* Mission Alternate */
.mission-alternate {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
    background-color: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
}

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

.mission-text {
    padding: 3rem;
}

.mission-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mission-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

/* Values Split */
.values-split {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.values-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--light-bg);
    border-radius: 12px;
    border-left: 5px solid var(--secondary-color);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    line-height: 1.7;
}

/* Team Split */
.team-split {
    background-color: var(--light-bg);
    padding: 6rem 2rem;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.team-intro p {
    font-size: 1.1rem;
}

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

.team-member {
    display: flex;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    gap: 3rem;
    padding: 2rem;
    align-items: center;
}

.team-member.reverse {
    flex-direction: row-reverse;
}

.member-image {
    flex-shrink: 0;
}

.member-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.member-info p:first-of-type {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p {
    line-height: 1.7;
}

/* Equipment Split */
.equipment-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

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

.equipment-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.equipment-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.equipment-list {
    list-style: none;
}

.equipment-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.equipment-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.equipment-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* CTA Section Centered */
.cta-section-centered {
    padding: 6rem 2rem;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-section-centered .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-section-centered .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--white);
}

/* Services Detailed */
.services-detailed {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

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

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

.service-detail-image, .service-detail-content {
    flex: 1;
}

.service-detail-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-detail-content > p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-features h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-pricing .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Pricing Comparison */
.pricing-comparison {
    background-color: var(--light-bg);
    padding: 6rem 2rem;
}

.comparison-header {
    text-align: center;
    margin-bottom: 4rem;
}

.comparison-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.comparison-header p {
    font-size: 1.1rem;
    color: #666;
}

.comparison-table {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.comparison-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 380px;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.comparison-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    min-height: 3rem;
}

.comparison-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.comparison-features {
    list-style: none;
    text-align: left;
}

.comparison-features li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.6;
}

.comparison-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* Contact Info Split */
.contact-info-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.contact-details, .contact-map {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.contact-item p {
    line-height: 1.7;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.map-placeholder img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Working Areas */
.working-areas {
    background-color: var(--light-bg);
    padding: 6rem 2rem;
}

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

.areas-content h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.areas-content > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.area-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.area-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.area-card p {
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    line-height: 1.7;
}

/* Thanks Section */
.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-content {
    max-width: 900px;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.service-confirmation {
    margin: 2rem 0;
}

.service-selected {
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
    font-size: 1.1rem;
}

.next-steps {
    margin: 4rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: left;
}

.step-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.step-item p {
    line-height: 1.7;
}

.thanks-info {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.thanks-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.email-link {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Thanks Additional */
.thanks-additional {
    background-color: var(--light-bg);
    padding: 4rem 2rem;
}

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

.additional-content h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.additional-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.additional-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.additional-card p {
    line-height: 1.7;
}

/* Legal Content */
.legal-content {
    padding: 4rem 2rem;
    background-color: var(--white);
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.updated {
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-container p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.legal-container li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border: 1px solid var(--border-color);
}

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

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

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

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

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

.footer-column a {
    display: block;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s;
}

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

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

    .hero-right,
    .final-cta-image {
        min-height: 400px;
    }

    .intro-alternate,
    .why-us-split,
    .story-split,
    .mission-alternate,
    .equipment-split,
    .contact-info-split,
    .form-split {
        flex-direction: column;
    }

    .service-card,
    .service-card.reverse,
    .service-detail-block,
    .service-detail-block.reverse,
    .team-member,
    .team-member.reverse {
        flex-direction: column;
    }

    .values-grid,
    .faq-grid,
    .steps-grid,
    .areas-grid {
        flex-direction: column;
    }

    .value-card,
    .faq-item,
    .step-item,
    .area-card {
        flex: 1 1 100%;
    }

    .comparison-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 2rem;
        box-shadow: var(--shadow);
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .section-header-centered h2,
    .intro-text h2,
    .why-left h2,
    .story-text h2,
    .mission-text h2,
    .equipment-text h2 {
        font-size: 2rem;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .cookie-btn {
        width: 100%;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

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

    .legal-container h1 {
        font-size: 2rem;
    }
}
