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

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 {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style-position: inside;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Header and Navigation */
.header-main {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
    letter-spacing: -0.5px;
}

.nav-main {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 4px 12px;
    border-radius: 12px;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #34495e;
    transition: all 0.3s ease;
}

/* Hero Section - Split Screen */
.hero-split {
    display: flex;
    min-height: 600px;
    position: relative;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #34495e;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(231,76,60,0.4) 0%, rgba(52,73,94,0.6) 100%);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #555;
}

/* Split Content Layouts */
.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
    margin: 80px 0;
}

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

.content-block {
    flex: 1;
    padding: 20px 0;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.3;
}

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

.content-block h4 {
    font-size: 18px;
    margin: 20px 0 12px;
    color: #2c3e50;
    font-weight: 600;
}

.content-block p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.content-block ul {
    margin: 15px 0 15px 20px;
    line-height: 1.8;
}

.image-block {
    flex: 1;
}

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

/* Buttons and CTAs */
.cta-primary,
.btn-primary,
.btn-submit,
.btn-service,
.btn-select {
    display: inline-block;
    padding: 14px 32px;
    background-color: #e74c3c;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover,
.btn-primary:hover,
.btn-submit:hover,
.btn-service:hover,
.btn-select:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231,76,60,0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.btn-featured {
    background: linear-gradient(135deg, #e74c3c 0%, #d35400 100%);
}

/* Services Grid */
.services-grid {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 18px;
    color: #7f8c8d;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    max-width: 380px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.service-card.featured {
    border: 3px solid #e74c3c;
}

.card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #ecf0f1;
}

.card-content {
    padding: 25px;
}

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

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #666;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
    margin: 20px 0;
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #e74c3c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-text p {
    color: #666;
    font-size: 16px;
}

/* Booking Form Section */
.booking-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
}

.form-wrapper {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.form-wrapper h2 {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 15px;
}

.form-intro {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 15px;
    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: #e74c3c;
}

.btn-submit {
    margin-top: 10px;
    width: 100%;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background-color: #34495e;
    color: #ffffff;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.trust-item {
    flex: 1 1 300px;
    text-align: center;
    max-width: 350px;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}

.trust-item p {
    color: #bdc3c7;
    font-size: 15px;
    line-height: 1.6;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 40px 0;
    background-color: #ecf0f1;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.7;
    color: #7f8c8d;
    text-align: center;
}

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

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

.footer-col {
    flex: 1 1 220px;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 200;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

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

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

/* Page Hero */
.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    text-align: center;
}

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

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

/* Services Detailed */
.services-detailed {
    padding: 60px 0;
}

.service-detail-item {
    padding: 60px 0;
    border-bottom: 1px solid #ecf0f1;
}

.service-detail-item:last-child {
    border-bottom: none;
}

.service-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 15px 0;
}

.service-features li {
    padding: 8px 0 8px 30px;
    position: relative;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.pricing-block {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
    border-left: 4px solid #e74c3c;
}

.pricing-block h4 {
    margin-top: 0;
}

.pricing-block p {
    margin: 8px 0;
}

.price-note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.service-highlight {
    background-color: #fff3cd;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #d35400;
    margin: 20px 0;
    font-weight: 600;
    color: #856404;
}

.featured-service {
    background-color: #fef5f1;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #e74c3c;
}

/* Additional Info */
.additional-info {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.info-card {
    flex: 1 1 300px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.info-card h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 20px;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

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

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.value-item {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #e74c3c;
}

.value-item p {
    color: #555;
    line-height: 1.7;
}

.how-we-earn {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.how-we-earn h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.how-we-earn p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.about-service {
    padding: 80px 0;
}

.coverage-area {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.coverage-area h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-bottom: 30px;
}

.area-column {
    flex: 1 1 280px;
    max-width: 350px;
}

.area-column h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #e74c3c;
}

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

.area-column ul li {
    padding: 6px 0;
    color: #555;
}

.area-note {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 30px;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background-color: #ffffff;
    color: #e74c3c;
}

.cta-section .btn-primary:hover {
    background-color: #ecf0f1;
}

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

.contact-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-block,
.contact-form-block {
    flex: 1 1 450px;
}

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

.contact-item h4 {
    font-size: 18px;
    color: #e74c3c;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-note {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.5;
}

.faq-quick {
    margin-top: 40px;
}

.faq-quick h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ecf0f1;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.map-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.map-placeholder {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-placeholder img {
    width: 100%;
}

/* Thanks Page */
.thanks-page {
    padding: 80px 0;
    min-height: 60vh;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #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;
    color: #2c3e50;
    margin-bottom: 15px;
}

.lead-text {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
}

.confirmation-details {
    text-align: left;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    border-left: 4px solid #27ae60;
}

.confirmation-details p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #555;
}

.confirmation-details ul {
    list-style: none;
    margin-left: 20px;
}

.confirmation-details ul li {
    padding: 6px 0;
    position: relative;
    padding-left: 25px;
}

.confirmation-details ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 20px;
}

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

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.next-steps p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
}

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

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

.legal-page h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.last-updated {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 28px;
    color: #2c3e50;
    margin: 40px 0 20px;
}

.legal-page h3 {
    font-size: 22px;
    color: #34495e;
    margin: 30px 0 15px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-page ul,
.legal-page ol {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.legal-page li {
    margin-bottom: 8px;
    color: #555;
}

.legal-page a {
    color: #e74c3c;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #c0392b;
}

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

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

.cookie-table th {
    background-color: #34495e;
    color: #ffffff;
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image {
        min-height: 300px;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
        gap: 40px;
    }

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

    .contact-layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-main {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        padding-top: 20px;
    }

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

    .hero-content h1,
    .page-hero h1 {
        font-size: 36px;
    }

    .content-block h2 {
        font-size: 28px;
    }

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

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

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

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 40px 25px;
    }

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

    .hero-content p {
        font-size: 16px;
    }

    .section-header-center h2 {
        font-size: 32px;
    }

    .page-hero h1 {
        font-size: 30px;
    }
}