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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5276;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    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;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: 0.3s;
}

.nav-menu {
    list-style: none;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem;
}

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

.nav-menu li {
    margin: 0.5rem 0;
}

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 1rem;
    display: block;
    transition: background 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #ecf0f1;
    border-radius: 4px;
}

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

.btn-primary {
    background: #2980b9;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1a5276;
    color: #ffffff;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: #ffffff;
    color: #34495e;
}

.btn-hero {
    background: #27ae60;
    color: #ffffff;
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

.btn-hero:hover {
    background: #1e8449;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.btn-large {
    background: #e74c3c;
    color: #ffffff;
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
}

.btn-large:hover {
    background: #c0392b;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-submit {
    background: #2980b9;
    color: #ffffff;
    width: 100%;
}

.btn-submit:hover {
    background: #1a5276;
}

.btn-service {
    background: #3498db;
    color: #ffffff;
}

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

.btn-sticky {
    background: #e67e22;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
}

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

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

.container-split {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 3rem 1.5rem;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
}

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

/* Hero Section - Split Screen */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.hero-left {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    min-height: 300px;
}

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

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

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

.hero-lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #34495e;
}

section p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    color: #34495e;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
}

/* Problem Section */
.problem-section {
    background: #ecf0f1;
}

/* Insight Section */
.insight-section {
    background: #ffffff;
}

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

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.insight-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.insight-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.insight-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
}

.insight-card p {
    padding: 0 1.5rem 1.5rem;
    color: #555;
}

/* Services Preview */
.services-preview {
    background: #f8f9fa;
}

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

.service-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Testimonials */
.testimonial-section {
    background: #34495e;
    color: #ffffff;
}

.testimonial-section h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background: #2c3e50;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

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

.testimonial-author {
    font-weight: 600;
    color: #3498db;
}

/* Selection Guide */
.selection-guide {
    background: #ffffff;
}

.guide-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.guide-point h4 {
    color: #2980b9;
    margin-bottom: 0.5rem;
}

.guide-point p {
    color: #555;
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    color: #2c3e50;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

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

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input {
    margin-top: 0.25rem;
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.875rem;
}

/* Trust Section */
.trust-section {
    background: #f8f9fa;
}

.trust-content {
    text-align: center;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.trust-item h3 {
    color: #27ae60;
    margin-bottom: 1rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-column h3,
.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

.footer-column a {
    color: #bdc3c7;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #95a5a6;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

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

/* About Page */
.about-story {
    background: #ffffff;
}

.values-section {
    background: #ecf0f1;
}

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

.value-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-card h3 {
    color: #2980b9;
    margin-bottom: 1rem;
}

.team-section {
    background: #ffffff;
}

.team-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: #555;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.member-role {
    color: #2980b9;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.certifications-section {
    background: #f8f9fa;
}

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

.cert-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.cert-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.numbers-section {
    background: #2c3e50;
    color: #ffffff;
}

.numbers-section h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

.numbers-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.number-item {
    text-align: center;
}

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

.cta-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

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

.cta-box h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Services Page */
.services-intro {
    background: #f8f9fa;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1rem;
}

.services-list {
    background: #ffffff;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 1.5rem;
    border-bottom: 1px solid #ecf0f1;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #27ae60;
}

.service-description {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-includes h4 {
    color: #2980b9;
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: none;
    margin-left: 0;
}

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.additional-info {
    background: #ecf0f1;
}

.info-boxes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.info-box h3 {
    color: #2980b9;
    margin-bottom: 1rem;
}

.faq-section {
    background: #ffffff;
}

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

.faq-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #555;
}

/* Contact Page */
.contact-section {
    background: #ffffff;
}

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

.contact-info {
    flex: 1;
}

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

.contact-item h4 {
    color: #2980b9;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper {
    flex: 1;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.map-section {
    background: #ecf0f1;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 2rem;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #ffffff;
    padding: 1rem;
    text-align: center;
}

.contact-cta {
    background: #f8f9fa;
}

.contact-cta .cta-content {
    text-align: center;
}

/* Thanks Page */
.thanks-section {
    background: #f8f9fa;
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-message {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

.service-info {
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.thanks-next {
    text-align: left;
    margin: 2rem auto;
    max-width: 500px;
}

.next-steps {
    list-style: none;
    margin-top: 1rem;
}

.next-steps li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2980b9;
    font-weight: bold;
}

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

.info-section {
    background: #ffffff;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.info-card h3 {
    color: #2980b9;
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-page {
    background: #f8f9fa;
    padding: 4rem 0;
}

.legal-intro {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #e3f2fd;
    border-left: 4px solid #2980b9;
    border-radius: 4px;
}

.legal-content {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.legal-content h2 {
    color: #2c3e50;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ecf0f1;
}

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

.legal-content h3 {
    color: #34495e;
    margin-top: 1.5rem;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-date {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid #ecf0f1;
    font-style: italic;
    color: #95a5a6;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
    }

    .nav-menu li {
        margin: 0 0.5rem;
    }

    .hamburger {
        display: none;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .container-split {
        flex-direction: row;
        padding: 4rem 1.5rem;
    }

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

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

    .insight-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .testimonial-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .trust-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .form-row {
        flex-direction: row;
    }

    .form-row .form-group {
        flex: 1;
    }

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

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

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

    .team-member {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .number-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .info-boxes {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-box {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

    .info-card {
        flex: 1;
    }

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

    .footer-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

    .service-content {
        flex: 1.2;
    }

    .service-image {
        flex: 0.8;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-split {
        flex-direction: row;
        min-height: 600px;
    }

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

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

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

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

    .insight-card {
        flex: 1;
    }

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

    .testimonial-card {
        flex: 1;
    }

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

    .trust-item {
        flex: 1;
    }

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

    .value-card {
        flex: 1;
    }

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

    .team-member {
        flex: 1;
    }

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

    .number-item {
        flex: 1;
    }

    .info-boxes {
        flex-wrap: nowrap;
    }

    .info-box {
        flex: 1;
    }

    .footer-column {
        flex: 1;
    }

    .sticky-cta {
        display: block;
    }

    section {
        padding: 5rem 0;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .sticky-cta,
    .btn-primary,
    .btn-secondary,
    .btn-hero,
    .btn-large,
    .btn-submit,
    .btn-service,
    .btn-sticky {
        display: none;
    }
}