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

:root {
    --primary-color: #2d5a8c;
    --secondary-color: #1a3a5c;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #27ae60;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-accept:hover {
    background: #d35400;
}

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

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

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

.nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none;
}

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

.nav-menu li {
    margin: 10px 0;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 0;
    display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* Hero Section - Split Screen */
.hero-split {
    padding: 60px 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Buttons and CTAs */
.cta-primary,
.cta-secondary,
.btn-submit,
.btn-select {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.cta-primary,
.btn-submit {
    background: var(--primary-color);
    color: white;
}

.cta-primary:hover,
.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 140, 0.3);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

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

.btn-select:hover {
    background: #d35400;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.intro-section {
    background: var(--bg-light);
}

.intro-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Split Visual Section */
.split-visual {
    background: var(--bg-white);
}

.split-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.split-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.split-text p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.benefit-list {
    list-style: none;
    margin: 20px 0;
}

.benefit-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-light);
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

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

/* Trust Section */
.trust-section {
    background: var(--bg-light);
}

.trust-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.trust-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.trust-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.trust-card p {
    color: var(--text-light);
}

/* Testimonial */
.testimonial-section {
    background: var(--primary-color);
    color: white;
}

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

.testimonial p {
    margin-bottom: 20px;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    margin-top: 20px;
}

/* Services Section */
.services-preview {
    background: var(--bg-white);
}

.services-preview h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 35px;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.service-card.featured h3,
.service-card.featured .price {
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card.featured p {
    color: rgba(255,255,255,0.9);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

/* Form Section */
.form-section {
    background: var(--bg-light);
}

.form-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.form-section > div > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    font-size: 1.1rem;
}

/* Sticky CTA Bar */
.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: white;
    padding: 15px 20px;
    z-index: 999;
    display: none;
}

.cta-sticky.show {
    display: block;
}

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

.btn-sticky {
    background: var(--accent-color);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-sticky:hover {
    background: #d35400;
}

/* Final CTA Section */
.final-cta {
    background: var(--bg-light);
    text-align: center;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.final-cta p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Services Detail Page */
.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.service-detail-card.reverse {
    flex-direction: column;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    margin: 25px 0;
}

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-light);
}

.feature-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-price {
    margin: 30px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-weight: 600;
    color: var(--text-dark);
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.featured-service {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 40px;
    border-radius: 8px;
}

.featured-service h2,
.featured-service p,
.featured-service li {
    color: white;
}

.featured-service li::before {
    color: var(--accent-color);
}

.featured-service .service-price {
    background: rgba(255,255,255,0.1);
}

.featured-service .price-label,
.featured-service .price-value {
    color: white;
}

/* About Page */
.about-intro {
    padding: 80px 0;
}

.mission-section {
    background: var(--bg-light);
}

.mission-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.mission-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.mission-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.mission-card p {
    color: var(--text-light);
}

/* Approach Section */
.approach-section {
    background: white;
}

.approach-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.approach-section > div > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    position: relative;
    padding-left: 80px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.step p {
    color: var(--text-light);
}

/* Values Section */
.values-section {
    background: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-color);
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 6px;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

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

/* Quick Contact */
.quick-contact {
    background: var(--bg-light);
    text-align: center;
}

.quick-contact h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.quick-contact p {
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--success-color);
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.service-confirmation strong {
    color: var(--primary-color);
}

.next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
    text-align: center;
}

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

.steps-list li {
    counter-increment: steps;
    padding: 20px 20px 20px 60px;
    position: relative;
    margin-bottom: 15px;
    background: var(--bg-light);
    border-radius: 6px;
}

.steps-list li::before {
    content: counter(steps);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 50px;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Legal Content */
.legal-content {
    padding: 80px 0;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--secondary-color);
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.legal-content h4 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: var(--text-dark);
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    list-style: disc;
    margin: 15px 0 15px 30px;
}

.legal-content ul li {
    color: var(--text-light);
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--secondary-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

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

.cookie-table td {
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.footer-col a:hover {
    color: white;
}

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        display: flex !important;
        gap: 30px;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        padding: 0;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
    }

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

    .split-container {
        flex-direction: row;
        align-items: center;
    }

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

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

    .trust-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-card {
        flex: 1 1 calc(50% - 15px);
    }

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

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

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

    .mission-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .mission-card {
        flex: 1 1 calc(50% - 15px);
    }

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

    .value-card {
        flex: 1 1 calc(50% - 15px);
    }

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

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

    .map-placeholder {
        height: 100%;
        min-height: 400px;
    }

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

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

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

    .footer-col {
        flex: 1;
    }

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

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }

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

    .service-card {
        flex: 1 1 auto;
    }

    .service-card.featured {
        flex: 1 1 auto;
    }

    .trust-cards {
        flex-wrap: nowrap;
    }

    .trust-card {
        flex: 1;
    }

    .mission-cards {
        flex-wrap: nowrap;
    }

    .mission-card {
        flex: 1;
    }

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

    .value-card {
        flex: 1;
    }
}