/* 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-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;
}

/* Container Styles */
.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: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    animation: slideUp 0.5s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.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;
    font-size: 14px;
}

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

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

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

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

/* Navigation */
.main-nav {
    background: #ffffff;
    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;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    color: #2c3e50;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #e74c3c;
    border-bottom-color: #e74c3c;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 40px 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

/* Buttons */
.btn-primary,
.btn-primary-large,
.btn-secondary,
.btn-submit,
.btn-select-service,
.btn-sticky {
    display: inline-block;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary,
.btn-primary-large,
.btn-submit,
.btn-sticky {
    background: #e74c3c;
    color: #ffffff;
}

.btn-primary:hover,
.btn-primary-large:hover,
.btn-submit:hover,
.btn-sticky:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.btn-primary-large {
    font-size: 18px;
    padding: 18px 45px;
}

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

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

.btn-select-service {
    background: #3498db;
    color: #ffffff;
    width: 100%;
    margin-top: 15px;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Story and Content Sections */
.story-intro,
.problem-section,
.insight-section,
.trust-section,
.testimonials-section,
.benefits-reveal,
.services-preview,
.cta-section,
.form-section,
.urgency-section,
.final-cta,
.about-story,
.values-section,
.mission-section,
.process-section,
.commitment-section,
.cta-about,
.services-detailed,
.contact-section,
.faq-section,
.visit-section,
.thanks-section,
.testimonials-mini {
    padding: 80px 0;
}

.story-intro {
    background: #f8f9fa;
}

.lead-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.inline-image {
    margin: 40px 0;
}

.inline-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Split Layout */
.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.problem-list {
    list-style: none;
    margin-top: 30px;
}

.problem-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 18px;
}

.problem-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 24px;
}

.split-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Insight Section */
.insight-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.insight-box {
    text-align: center;
    padding: 40px;
}

.insight-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.insight-highlight {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6;
}

/* Trust Section */
.trust-section h2,
.benefits-reveal h2,
.services-preview h2,
.values-section h2,
.process-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Testimonials */
.testimonials-section {
    background: #f8f9fa;
}

.testimonial {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #34495e;
}

.testimonial-author {
    font-weight: 600;
    color: #7f8c8d;
}

/* Benefits Flow */
.benefits-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.benefit-number {
    font-size: 48px;
    font-weight: 800;
    color: #e74c3c;
    opacity: 0.3;
    min-width: 80px;
}

.benefit-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Services Grid */
.section-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #7f8c8d;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 20px 15px;
    color: #7f8c8d;
}

.service-price {
    padding: 0 20px 20px;
    font-size: 20px;
    color: #e74c3c;
}

.service-price strong {
    font-size: 24px;
}

/* Form Section */
.form-section {
    background: #f8f9fa;
}

.form-container {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    margin-top: 10px;
    padding: 18px;
    font-size: 18px;
}

/* Urgency Section */
.urgency-section {
    background: #fff3cd;
}

.urgency-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #f39c12;
    text-align: center;
}

.urgency-box h3 {
    color: #e67e22;
    font-size: 26px;
    margin-bottom: 15px;
}

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

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 35px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(231, 76, 60, 0.98);
    padding: 15px 20px;
    z-index: 999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

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

.sticky-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
}

.btn-sticky {
    padding: 12px 30px;
    background: #ffffff;
    color: #e74c3c;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.header-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

/* About Page */
.story-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.inline-image-about {
    margin: 50px 0;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: #f8f9fa;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.mission-section {
    background: #f8f9fa;
}

.mission-box {
    text-align: center;
    padding: 40px;
}

.mission-box h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.mission-text {
    font-size: 22px;
    line-height: 1.7;
    color: #34495e;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.process-step {
    flex: 1;
    min-width: 250px;
    background: #f8f9fa;
    padding: 35px 25px;
    border-radius: 15px;
}

.step-number {
    font-size: 36px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.commitment-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.commitment-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #e74c3c;
}

.commitment-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.cta-about {
    background: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-about p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Services Page */
.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-intro {
    font-size: 18px;
    margin-bottom: 25px;
    color: #7f8c8d;
}

.service-detail-content h3 {
    font-size: 24px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-list {
    list-style: none;
    margin-bottom: 20px;
}

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
}

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

.price-info {
    font-size: 20px;
    margin: 30px 0 20px;
    color: #e74c3c;
}

.price-info strong {
    font-size: 26px;
}

.service-detail-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Contact Page */
.contact-grid {
    display: flex;
    gap: 60px;
}

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

.contact-info h2,
.contact-map h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #34495e;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #7f8c8d;
}

.contact-note {
    background: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.map-placeholder {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(231, 76, 60, 0.95);
    color: #ffffff;
    padding: 20px;
    text-align: center;
    font-weight: 600;
}

.faq-section {
    background: #f8f9fa;
}

.faq-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.visit-note {
    background: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

/* Thanks Page */
.thanks-section {
    background: #f8f9fa;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 30px;
    color: #7f8c8d;
}

.thanks-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.thanks-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.step {
    flex: 1;
    min-width: 250px;
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.thanks-note {
    background: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.thanks-extra {
    background: #e8f5e9;
    padding: 30px;
    border-radius: 15px;
}

.thanks-extra h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #27ae60;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

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

/* Footer */
.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 30px 20px;
        gap: 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .split-layout,
    .service-detail,
    .contact-grid {
        flex-direction: column;
        gap: 30px;
    }

    .benefit-item {
        flex-direction: column;
    }

    .benefit-number {
        font-size: 36px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .sticky-content {
        flex-direction: column;
        gap: 15px;
    }

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

    .page-header h1 {
        font-size: 36px;
    }

    .story-content h2,
    .service-detail-content h2 {
        font-size: 28px;
    }

    .cookie-content {
        font-size: 13px;
    }
}

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

    .service-card {
        min-width: 100%;
    }

    .btn-primary,
    .btn-secondary,
    .btn-submit {
        padding: 12px 25px;
        font-size: 15px;
    }
}