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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Navigation */
.main-nav {
    background-color: #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;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb;
}

.nav-cta {
    background-color: #2563eb;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.nav-cta:hover {
    background-color: #1d4ed8;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary {
    background-color: #2563eb;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #2563eb;
    padding: 1rem 2rem;
    border: 2px solid #2563eb;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: #fff;
}

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

.badge-item {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.badge-label {
    font-size: 0.9rem;
    color: #64748b;
}

.hero-image {
    flex: 1;
    min-height: 400px;
}

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

/* Value Proposition Split */
.value-proposition {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

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

.vp-image {
    min-height: 400px;
}

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

.vp-content {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
    margin: 0 auto;
}

.vp-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.intro-text {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.2rem;
}

.benefits-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #1e293b;
}

.benefits-list p {
    color: #64748b;
}

/* Services Preview */
.services-preview {
    padding: 5rem 2rem;
    background-color: #f8fafc;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
}

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

.service-card {
    flex: 1 1 300px;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.service-select {
    width: 100%;
    background-color: #2563eb;
    color: #fff;
    padding: 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-select:hover {
    background-color: #1d4ed8;
}

/* Testimonials Split */
.testimonials-split {
    display: flex;
    flex-direction: column;
}

.testimonials-content {
    flex: 1;
    padding: 4rem 2rem;
    background-color: #1e293b;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonials-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

.testimonial-item {
    max-width: 600px;
    margin-bottom: 2.5rem;
}

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

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #94a3b8;
}

.testimonials-image {
    flex: 1;
    min-height: 500px;
}

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

/* How It Works */
.how-it-works {
    padding: 5rem 2rem;
    background-color: #fff;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 4rem;
}

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

.step-item {
    flex: 1 1 250px;
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.step-item p {
    color: #64748b;
}

/* CTA Form Section */
.cta-form-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}

.cta-form-split {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
    gap: 3rem;
}

.cta-content {
    flex: 1;
    color: #fff;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-benefits {
    list-style: none;
}

.cta-benefits li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.form-container {
    flex: 1;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.quote-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e293b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    margin-bottom: 0;
}

.btn-submit {
    width: 100%;
    background-color: #2563eb;
    color: #fff;
    padding: 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

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

/* Final CTA */
.final-cta {
    padding: 5rem 2rem;
    background-color: #f8fafc;
    text-align: center;
}

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

.final-cta-content p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.btn-large {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.btn-large:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Footer */
.main-footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

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

.footer-col h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col a:hover {
    color: #2563eb;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    background-color: #2563eb;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background-color: #1d4ed8;
    transform: scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #10b981;
    color: #fff;
}

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

.cookie-btn.reject {
    background-color: #6b7280;
    color: #fff;
}

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

.cookie-link {
    color: #60a5fa;
    text-decoration: underline;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-overlay p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* About Page Split */
.about-intro-split {
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem;
}

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

.about-content {
    max-width: 650px;
    margin: 0 auto 3rem;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.lead-text {
    font-size: 1.3rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: #64748b;
    font-size: 1.1rem;
}

.about-image {
    min-height: 400px;
}

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

/* Mission Vision */
.mission-vision {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 4rem 2rem;
    background-color: #f8fafc;
}

.mission-card,
.vision-card {
    flex: 1;
    background-color: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 0 auto;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 1rem;
    color: #64748b;
}

.values-list strong {
    color: #1e293b;
}

/* Team Section */
.team-section {
    padding: 5rem 2rem;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

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

.team-member {
    flex: 1 1 250px;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.member-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #64748b;
}

/* Stats Section */
.stats-section {
    padding: 5rem 2rem;
    background-color: #1e293b;
    color: #fff;
    text-align: center;
}

.stats-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.stat-item {
    flex: 1 1 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Why Trust Us */
.why-trust-us {
    padding: 5rem 2rem;
}

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

.trust-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.reason-item {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 12px;
}

.reason-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.reason-item p {
    color: #64748b;
}

/* Certifications */
.certifications {
    padding: 4rem 2rem;
    background-color: #f8fafc;
    text-align: center;
}

.certifications h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.cert-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.cert-item {
    flex: 1 1 200px;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 12px;
}

.cert-badge {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 1rem;
}

/* CTA About */
.cta-about {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #fff;
    text-align: center;
}

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

.cta-about-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Service Detail Split */
.service-detail-split {
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem;
}

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

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

.service-detail-content {
    max-width: 650px;
    margin: 0 auto 3rem;
}

.service-badge {
    display: inline-block;
    background-color: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.service-description {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #64748b;
}

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

.pricing-box {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.price-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.85rem;
    color: #64748b;
}

.btn-service {
    background-color: #2563eb;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #1d4ed8;
}

.service-detail-image {
    min-height: 500px;
}

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

/* Additional Services */
.additional-services {
    padding: 5rem 2rem;
    background-color: #f8fafc;
    text-align: center;
}

.additional-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

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

.additional-item {
    flex: 1 1 250px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.additional-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.additional-item p {
    color: #64748b;
    margin-bottom: 1rem;
}

.add-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2563eb;
}

/* Pricing Info */
.pricing-info {
    padding: 5rem 2rem;
}

.pricing-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.explain-item {
    flex: 1 1 250px;
    text-align: center;
    padding: 2rem;
}

.explain-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.explain-item p {
    color: #64748b;
}

/* CTA Services */
.cta-services {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    text-align: center;
    color: #fff;
}

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

.cta-services-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Split */
.contact-split {
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem;
    gap: 3rem;
}

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

.contact-info {
    max-width: 650px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.contact-intro {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    font-size: 2rem;
}

.contact-data h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.contact-data p {
    color: #64748b;
}

.contact-data a {
    color: #2563eb;
}

.contact-data a:hover {
    text-decoration: underline;
}

.email-note,
.hours-note {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 0.5rem;
}

.response-time,
.visit-us {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.response-time h3,
.visit-us h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.response-time p,
.visit-us p {
    color: #64748b;
}

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

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.9);
    color: #fff;
    padding: 1.5rem;
    font-size: 1.1rem;
}

.location-benefits {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 12px;
}

.location-benefits h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.location-benefits ul {
    list-style: none;
}

.location-benefits li {
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
    color: #64748b;
}

.location-benefits li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

/* Contact CTA */
.contact-cta {
    padding: 4rem 2rem;
    background-color: #f8fafc;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-cta p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.faq-item {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 12px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.faq-item p {
    color: #64748b;
}

/* Service Areas */
.service-areas {
    padding: 4rem 2rem;
    background-color: #f8fafc;
    text-align: center;
}

.service-areas h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

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

.area-item {
    flex: 1 1 250px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
}

.area-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.area-item p {
    color: #64748b;
}

/* Thanks Section */
.thanks-section {
    padding: 5rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 900px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.thanks-message {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.service-selected {
    background-color: #dbeafe;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.next-steps {
    margin-bottom: 4rem;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
}

.timeline-number {
    width: 40px;
    height: 40px;
    background-color: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.timeline-content p {
    color: #64748b;
}

.thanks-contact {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.thanks-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.thanks-contact p {
    color: #64748b;
}

.contact-hours {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 0.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.thanks-tips {
    margin-bottom: 4rem;
}

.thanks-tips h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.tips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: left;
}

.tip-item {
    flex: 1 1 200px;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 12px;
}

.tip-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.tip-item p {
    font-size: 0.95rem;
    color: #64748b;
}

.social-proof h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.mini-testimonials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.mini-testimonial {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
}

.mini-testimonial p {
    color: #64748b;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.mini-testimonial strong {
    color: #1e293b;
}

/* Legal Page */
.legal-page {
    padding: 5rem 2rem;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.legal-intro {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1e293b;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #64748b;
    line-height: 1.8;
}

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

.legal-content li {
    margin-bottom: 0.7rem;
    color: #64748b;
}

.legal-content a {
    color: #2563eb;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookie-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #1e293b;
}

.cookie-table td {
    color: #64748b;
}

.legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Intro */
.services-intro {
    padding: 3rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .hero-split {
        flex-direction: row;
    }

    .value-proposition {
        flex-direction: row;
    }

    .testimonials-split {
        flex-direction: row;
    }

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

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

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

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

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

    .mission-vision {
        flex-direction: row;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cookie-content p {
        text-align: left;
    }
}

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

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

    .vp-content h2,
    .about-content h2,
    .service-detail-content h2 {
        font-size: 2rem;
    }

    .section-header h2,
    .how-it-works h2,
    .stats-section h2 {
        font-size: 2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
