/* 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.7;
    color: #1a1a1a;
    background: #ffffff;
    font-size: 17px;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

/* Ad Disclosure */
.ad-disclosure {
    background: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #fde68a;
}

/* Navigation */
.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: #4b5563;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.hero-content {
    padding: 80px 30px 40px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    max-width: 720px;
    color: #ffffff;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 36px;
    opacity: 0.95;
}

.hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #1e40af;
}

.hero-image img {
    width: 100%;
    height: 100%;
    opacity: 0.9;
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #1e3a8a;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    color: #1e3a8a;
}

/* Section Wrappers */
.section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
}

.section-wrapper-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 30px;
}

.section-wrapper-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 30px;
}

/* Intro Section */
.intro-section {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.intro-section h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 700;
    color: #111827;
}

.intro-section p {
    font-size: 19px;
    line-height: 1.7;
    color: #374151;
}

/* Services Section */
.services-highlight {
    background: #ffffff;
    padding: 100px 0;
}

.service-intro {
    text-align: center;
    margin-bottom: 60px;
}

.service-intro h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

.service-intro p {
    font-size: 18px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #f3f4f6;
}

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

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    padding: 24px 24px 12px;
    color: #111827;
}

.service-card p {
    padding: 0 24px 20px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
    flex: 1;
}

.price-tag {
    padding: 0 24px 16px;
    font-size: 28px;
    font-weight: 800;
    color: #2563eb;
}

.select-service {
    margin: 0 24px 24px;
    padding: 14px 28px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.select-service:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.select-service:active {
    transform: translateY(0);
}

/* Process Section */
.process-section {
    background: #eff6ff;
    padding: 100px 0;
}

.process-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #111827;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.step {
    width: calc(50% - 20px);
    min-width: 300px;
    background: #ffffff;
    padding: 36px;
    border-radius: 12px;
    border: 1px solid #dbeafe;
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    color: #3b82f6;
    margin-bottom: 16px;
    opacity: 0.3;
}

.step h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
}

/* Testimonials Section */
.testimonials-section {
    background: #1f2937;
    color: #ffffff;
    padding: 100px 0;
}

.testimonials-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-item {
    margin-bottom: 48px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.testimonial-item:last-child {
    margin-bottom: 0;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
    opacity: 0.95;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #93c5fd;
}

/* Form Section */
.form-section {
    background: #ffffff;
    padding: 100px 0;
    border-top: 1px solid #e5e7eb;
}

.form-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #111827;
}

.form-intro {
    text-align: center;
    color: #6b7280;
    font-size: 17px;
    margin-bottom: 48px;
}

.contact-form {
    background: #f9fafb;
    padding: 48px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input[readonly] {
    background: #e5e7eb;
    cursor: not-allowed;
}

.form-note {
    font-size: 14px;
    color: #6b7280;
    margin-top: 8px;
    font-style: italic;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Trust Section */
.trust-section {
    background: #fefce8;
    padding: 80px 0;
    border-top: 1px solid #fef08a;
    border-bottom: 1px solid #fef08a;
}

.trust-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #854d0e;
}

.trust-section p {
    font-size: 17px;
    line-height: 1.7;
    color: #713f12;
}

/* Disclaimer Section */
.disclaimer-section {
    background: #f3f4f6;
    padding: 60px 0;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
    font-style: italic;
    text-align: center;
}

/* Footer */
.site-footer {
    background: #111827;
    color: #d1d5db;
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 240px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #9ca3af;
}

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

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

.footer-column ul li a {
    color: #9ca3af;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 30px 0;
    border-top: 1px solid #374151;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #93c5fd;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-accept {
    background: #3b82f6;
    color: #ffffff;
}

.btn-accept:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.btn-reject {
    background: #4b5563;
    color: #ffffff;
}

.btn-reject:hover {
    background: #374151;
    transform: translateY(-2px);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.header-intro {
    font-size: 19px;
    opacity: 0.95;
}

/* About Content */
.about-content {
    background: #ffffff;
}

.about-block {
    margin-bottom: 80px;
}

.about-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.about-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
}

.about-image-section {
    margin: 80px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-image-section img {
    width: 100%;
    height: 500px;
}

.values-section {
    padding: 80px 0;
    background: #f9fafb;
    margin: 80px -30px;
    padding-left: 30px;
    padding-right: 30px;
}

.values-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #111827;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2563eb;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

/* CTA Section */
.cta-section {
    background: #2563eb;
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.cta-section .cta-primary {
    background: #ffffff;
    color: #2563eb;
}

.cta-section .cta-primary:hover {
    color: #2563eb;
}

/* Services Detailed */
.services-detailed {
    background: #ffffff;
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: #2563eb;
    margin: 32px 0 24px;
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #f3f4f6;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
}

/* Warranty Section */
.warranty-section {
    background: #fef3c7;
    padding: 80px 0;
    border-top: 1px solid #fde68a;
    border-bottom: 1px solid #fde68a;
}

.warranty-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #92400e;
}

.warranty-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #78350f;
    margin-bottom: 20px;
}

/* Contact Info */
.contact-info-section {
    background: #ffffff;
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
}

.contact-block {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 32px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.contact-block h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}

.email-display {
    color: #2563eb;
    font-weight: 600;
}

.contact-note {
    font-size: 14px;
    color: #6b7280;
    margin-top: 12px;
    font-style: italic;
}

/* Contact Map Section */
.contact-map-section {
    background: #f9fafb;
    padding: 80px 0;
}

.contact-map-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.contact-map-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

/* Contact CTA */
.contact-cta-section {
    background: #2563eb;
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

/* Thanks Page */
.thanks-section {
    background: #ffffff;
    padding: 120px 0;
    text-align: center;
}

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

.thanks-section h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

.thanks-message {
    font-size: 19px;
    color: #6b7280;
    margin-bottom: 48px;
}

.thanks-details {
    background: #f9fafb;
    padding: 36px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 48px;
    text-align: left;
}

.thanks-details p {
    font-size: 17px;
    color: #374151;
    margin-bottom: 16px;
}

.thanks-details ul {
    list-style: none;
    padding-left: 0;
}

.thanks-details li {
    font-size: 16px;
    color: #4b5563;
    padding: 8px 0 8px 28px;
    position: relative;
}

.thanks-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.thanks-next-steps {
    background: #eff6ff;
    padding: 36px;
    border-radius: 12px;
    border: 1px solid #dbeafe;
    margin-bottom: 48px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e3a8a;
}

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

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: #ffffff;
    color: #2563eb;
    border: 2px solid #2563eb;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background: #eff6ff;
    transform: translateY(-2px);
    color: #2563eb;
}

/* Legal Pages */
.legal-page {
    background: #ffffff;
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.legal-intro {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 48px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 48px 0 20px;
    color: #111827;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: #374151;
}

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

.legal-page ul {
    margin: 20px 0 20px 24px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 12px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 15px;
}

.cookie-table th {
    background: #f3f4f6;
    padding: 12px;
    text-align: left;
    font-weight: 700;
    color: #111827;
    border: 1px solid #e5e7eb;
}

.cookie-table td {
    padding: 12px;
    border: 1px solid #e5e7eb;
    color: #4b5563;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
        margin-top: 16px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 17px;
    }

    .service-card {
        width: 100%;
    }

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

    .step {
        width: 100%;
    }

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

    .contact-form {
        padding: 32px 24px;
    }

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

    .section-wrapper,
    .section-wrapper-wide,
    .section-wrapper-narrow {
        padding: 60px 20px;
    }
}