/* Global Reset and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-dark: #1a252f;
    --border-color: #ddd;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

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

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

ul {
    list-style-position: inside;
}

/* Navigation */
.main-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.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: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

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

.ad-disclosure {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    background: var(--bg-light);
    border-radius: 4px;
}

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

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

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

.hero-content {
    flex: 1;
    padding: var(--spacing-xl) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    background: var(--bg-dark);
    overflow: hidden;
}

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

/* Intro Split Section */
.intro-split {
    display: flex;
    min-height: 500px;
}

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

.intro-image {
    flex: 1;
    background: var(--bg-light);
}

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

.intro-content {
    flex: 1;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

/* Buttons */
.cta-primary {
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

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

.cta-secondary {
    background: transparent;
    color: var(--secondary-color);
    padding: 1rem 2.5rem;
    border: 2px solid var(--secondary-color);
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

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

/* Services Section */
.services-preview {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg) auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    cursor: pointer;
}

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

.service-image {
    height: 200px;
    background: var(--bg-light);
    overflow: hidden;
}

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

.service-info {
    padding: 1.5rem;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.service-info p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: var(--spacing-sm);
}

/* Form Section */
.form-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: white;
}

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

.form-content {
    flex: 1;
}

.form-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.form-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    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);
}

.form-visual {
    flex: 1;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

/* Trust Section */
.trust-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--primary-color);
    color: white;
}

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

.trust-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

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

.trust-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 250px;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.trust-item p {
    opacity: 0.9;
    line-height: 1.7;
}

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: white;
    padding: var(--spacing-lg) var(--spacing-md);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: var(--spacing-md);
}

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

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.footer-column p,
.footer-column a {
    color: rgba(255,255,255,0.8);
    line-height: 2;
    display: block;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--spacing-sm);
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 900px;
    margin: var(--spacing-sm) auto 0 auto;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 37, 47, 0.98);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.cookie-accept {
    background: #27ae60;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-accept:hover {
    background: #229954;
}

.cookie-reject {
    background: transparent;
    color: white;
    padding: 0.8rem 2rem;
    border: 2px solid white;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-reject:hover {
    background: white;
    color: var(--text-color);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: var(--spacing-xl) var(--spacing-md);
    color: white;
    text-align: center;
}

.page-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.page-hero .hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* About Page Splits */
.about-split {
    display: flex;
    min-height: 500px;
}

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

.about-image {
    flex: 1;
    background: var(--bg-light);
}

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

.about-content {
    flex: 1;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

/* Values Section */
.values-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: white;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.value-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Team Split */
.team-split {
    display: flex;
    background: var(--bg-light);
}

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

.team-content {
    flex: 1;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.team-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.team-image {
    flex: 1;
    background: white;
}

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

/* Mission Section */
.mission-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--primary-color);
    color: white;
}

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

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: var(--spacing-sm);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
}

/* Services Detail Page */
.services-detail {
    padding: var(--spacing-lg) var(--spacing-md);
}

.service-detail-card {
    margin-bottom: var(--spacing-lg);
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.service-detail-content {
    flex: 1;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.service-detail-content ul {
    margin-bottom: var(--spacing-md);
}

.service-detail-content li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.service-detail-image {
    flex: 1;
    background: var(--bg-light);
}

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

/* Contact Page */
.contact-section {
    padding: var(--spacing-xl) var(--spacing-md);
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.contact-block {
    margin-bottom: var(--spacing-md);
}

.contact-block h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

/* Map Section */
.map-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--bg-light);
    text-align: center;
}

.map-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.map-placeholder {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.map-placeholder p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

/* Additional Info */
.additional-info {
    padding: var(--spacing-xl) var(--spacing-md);
}

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

.info-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.info-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

/* Thanks Page */
.thanks-section {
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
}

.thanks-icon {
    font-size: 5rem;
    color: #27ae60;
    margin-bottom: var(--spacing-md);
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.thanks-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

#serviceConfirmation {
    font-weight: 600;
    color: var(--secondary-color);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: var(--spacing-md);
}

/* Next Steps */
.next-steps {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--bg-light);
}

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

.next-steps-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

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

.step-item {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm) auto;
}

.step-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.step-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Legal Content */
.legal-content {
    padding: var(--spacing-lg) var(--spacing-md);
    background: white;
}

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

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

.legal-container h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: var(--spacing-sm);
    margin-bottom: 0.5rem;
}

.legal-container p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.legal-container ul {
    margin-bottom: var(--spacing-sm);
}

.legal-container li {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

.legal-date {
    margin-top: var(--spacing-md);
    font-style: italic;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .form-split,
    .about-split,
    .team-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .team-split.reverse,
    .service-detail-card.reverse .service-detail-split {
        flex-direction: column;
    }

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

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

    .trust-item,
    .value-item {
        flex: 1 1 100%;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .hero-content h1,
    .page-hero .hero-content h1 {
        font-size: 1.8rem;
    }

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

    .services-grid {
        gap: 1rem;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }

    .hero-content,
    .intro-content,
    .about-content,
    .team-content,
    .service-detail-content {
        padding: var(--spacing-md);
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}