/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.section {
    padding: 2rem 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    line-height: 1.2;
}

.btn-primary {
    background-color: #38b44a;
    color: white;
    border-color: #38b44a;
}

.btn-primary:hover {
    background-color: #059669;
    border-color: #059669;
}

.btn-secondary {
    background-color: transparent;
    color: #38b44a;
    border-color: #38b44a;
}

.btn-secondary:hover {
    background-color: #38b44a;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #4b5563;
    border-color: #d1d5db;
}

.btn-outline:hover {
    background-color: #d3d3d33d;
    border-color: #9ca3af;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}


/* Hero Section */
.hero {
    background: linear-gradient(135deg, #d3d3d33d 0%, #e2e8f0 100%);
    padding: 5rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    font-weight: 500;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    opacity: 0.8;
}

.trust-item {
 font-size: .90rem;
  color: #000;
  font-weight: 500;
}

/* Page Header */
.page-header {
  background-color: #f7f9fb;
  padding: 3rem 0;
  text-align: center;
  border-bottom: 1px solid #38b44a;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

/* Cards */
.card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #d1fae5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Process Steps */
.process-step {
    text-align: center;
}

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

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.process-step p {
    color: #6b7280;
}

/* Services Detail */
.service-item {
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #d1fae5;
}

.service-item h2 {
    color: #1f2937;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.service-item h3 {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    color: #4b5563;
    border-bottom: 1px solid #f3f4f6;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features strong {
    color: #1f2937;
}

.service-note {
    background-color: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.service-note p {
    color: #92400e;
    margin: 0;
}

/* Process Timeline */
.process-timeline {
    display: grid;
    gap: 2rem;
}

.process-timeline .process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
}

.process-timeline .step-number {
    margin: 0;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #6b7280;
}

/* FAQ */
.faq-grid {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #d1fae5;
}

.faq-item h3 {
    color: #1f2937;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #6b7280;
    margin: 0;
}

/* Badges */
.badge {
    display: inline-block;
    background-color: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0.25rem;
}

.badge-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* Contact Form */
.contact-form {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #d1fae5;
}

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

.form-group label {
    display: block;
    color: #374151;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    min-height: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #38b44a;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Contact Information */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method h3 {
    color: #1f2937;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #38b44a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-note {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.service-highlights {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #d1fae5;
}

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

.highlight-list li {
    color: #4b5563;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.highlight-list li::before {
    content: "✓";
    color: #38b44a;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Coverage Areas */
.coverage-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 2rem;
}

.coverage-city {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #d1fae5;
}

.coverage-city h3 {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.coverage-city p {
    color: #6b7280;
}

.area-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

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

.area-list li {
    padding: 0.5rem 0;
    color: #4b5563;
    border-bottom: 1px solid #f3f4f6;
}

.area-list li:last-child {
    border-bottom: none;
}

.coverage-note {
    background-color: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.coverage-note p {
    color: #0c4a6e;
    margin: 0;
    font-weight: 500;
}

.coverage-note a {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 600;
}

.coverage-note a:hover {
    text-decoration: underline;
}

/* Service Map */
.map-placeholder {
    background-color: #d3d3d33d;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    margin: 2rem 0;
}

.map-content h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.map-content p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.map-features {
    display: grid;
    gap: 1rem;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.map-feature {
    background-color: #fff;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #d1fae5;
    color: #4b5563;
}

.map-feature strong {
    color: #1f2937;
}

/* Service Areas Contact */
.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.area-item {
    background-color: #d3d3d33d;
    padding: 1rem;
    text-align: center;
    border-radius: 6px;
    color: #4b5563;
    font-weight: 500;
}

.area-note {
    text-align: center;
    color: #6b7280;
    margin: 2rem 0;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.testimonial {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #d1fae5;
    position: relative;
}

.testimonial p {
    color: #4b5563;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    color: #6b7280;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #38b44a 0%, #059669 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

.cta-section .btn-secondary {
    background-color: white;
    color: #000;
    border-color: white;
}

.cta-section .btn-secondary:hover {
    background-color: #d3d3d33d;
}

/* Footer */
footer {
    background-color: #000000;
    color: #d1fae5;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #a7f3d0;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #6ee7b7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #a7f3d0;
    text-decoration: underline;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-bottom p {
    color: #a7f3d0;
    font-size: 0.875rem;
}

/* Mobile Call Bar */
.mobile-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0f1720;
    padding: 1rem;
    z-index: 1000;
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1f2937;
    margin: 3px 0;
    transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-brand .logo {
        height: 50px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-container .container {
        justify-content: space-between;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-menu li {
        text-align: center;
        padding: 0.5rem 0;
    }

    .nav-menu .nav-cta {
        margin: 0.5rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .trust-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .process-timeline .process-step {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .mobile-call-bar {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }

    .contact-methods {
        gap: 1.5rem;
    }

    .area-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 3rem 0;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .card,
    .service-item,
    .contact-form {
        padding: 1.5rem;
    }

    .btn {
        padding: 14px 20px;
    }

    .btn-large {
        padding: 16px 24px;
    }
}

/* Business Credentials */
.business-credentials {
    margin-bottom: 1.5rem;
}

.business-credentials p {
    color: #4b5563;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Coverage Areas */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.coverage-area {
    background-color: #d3d3d33d;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    color: #4b5563;
    font-weight: 500;
    border: 1px solid #d1fae5;
}

.coverage-note {
    text-align: center;
    color: #6b7280;
    margin-top: 1.5rem;
}

.coverage-note a {
    color: #38b44a;
    text-decoration: none;
    font-weight: 600;
}

.coverage-note a:hover {
    text-decoration: underline;
}

/* Process Row */
.process-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-arrow {
    font-size: 2rem;
    color: #38b44a;
    font-weight: bold;
}

.process-row .process-step {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.process-row .step-number {
    width: 50px;
    height: 50px;
    background-color: #38b44a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-row .process-step h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.process-row .process-step p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Customer Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #d1fae5;
    text-align: center;
}

.review p {
    color: #4b5563;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.review cite {
    color: #6b7280;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 500;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #d3d3d33d;
}

.form-content h2 {
    color: #1f2937;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-content p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.cta-content h3 {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cta-phone {
    margin-bottom: 2rem;
}

.phone-cta {
    font-size: 1.5rem;
    padding: 1rem 2rem;
}

.cta-benefits ul {
    list-style: none;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.cta-benefits li {
    color: #4b5563;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.cta-benefits li::before {
    content: "✓";
    color: #38b44a;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .process-row {
        flex-direction: column;
        gap: 1rem;
    }

    .process-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .business-credentials {
        margin-bottom: 1rem;
    }

    .business-credentials p {
        font-size: 0.75rem;
    }

    .coverage-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
    }

    .coverage-area {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
}

/* Print Styles */
@media print {

    .mobile-call-bar,
    .nav-cta,
    .cta-section {
        display: none;
    }

    .hero {
        background: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .section {
        padding: 1rem 0;
    }
}


/*
 * ========================================
 * Hero Section Styling
 * ========================================
 */
.hero-section {
    background-color: #f7f9fb;
  padding: 3rem 0;
  text-align: center;
  border-bottom: 1px solid #38b44a;
}

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

.hero-section h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.hero-section p {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 2rem;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

/* Base button styles */
.btn {
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: #38b44a;
    color: #fff;
    border: 2px solid #38b44a;
}

.btn-primary:hover {
    background-color: #2e9c3e;
    border-color: #2e9c3e;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary-cta {
    background-color: #000;
    color: #fff;
    border: 2px solid #35ad47;
}

.btn-primary-cta:hover {
    background-color: #000;
    color: #fff;
    border: 2px solid #ffffff;
}

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

.btn-secondary:hover {
    background-color: #eaf8eb;
    color: #2e9c3e;
}

/* Large button size for hero section */
.btn-large {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* Business credentials and trust row */
.business-credentials {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.5rem;
}

.trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
}

.trust-item {
    display: flex;
    align-items: center;
}

.trust-item svg {
    margin-right: 0.25rem;
}

/*
 * ========================================
 * Contact Section Styling
 * ========================================
 */
.contact-preview {
    background-color: #f7f9fb;
    padding: 4rem 0;
}

.contact-preview .container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-preview .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .contact-preview .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-info p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info .contact-details {
    margin-bottom: 1.5rem;
}

.contact-info .contact-details p {
    margin: 0.5rem 0;
}

/* Service Areas Styling */
.service-areas {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
}

.service-areas h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-areas .area-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-areas .area-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.service-areas .area-list li:last-child {
    border-bottom: none;
}

.service-areas p small {
    display: block;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #999;
}

/*
 * ========================================
 * Section Styling and Spacing
 * ========================================
 */
.section {
    padding: 2rem 0;
    /* Consistent padding for all sections */
}

/* Section Title Spacing */
.section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    /* Consistent bottom margin for titles */
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 1.5rem;
    /* Consistent gap for all grids */
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Card and Service Item Base Styles */
.card,
.service-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card:hover,
.service-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.card h3,
.service-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card p,
.service-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Specific Service Item Button Styling */
.service-item .btn-outline {
    text-decoration: none;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border: 1px solid #ccc;
    border-radius: 50px;
    color: #555;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: inline-block;
}

.service-item .btn-outline:hover {
    background-color: #f0f0f0;
    color: #333;
}

/*
 * ========================================
 * CTA Section Styling
 * ========================================
 */
.cta-section {
    background-image: linear-gradient(to right, #38b44a, #2e9c3e);
    color: #fff;
    text-align: center;
    padding: 6rem 0;
}

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

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/*
 * ========================================
 * Footer Styling
 * ========================================
 */
footer {
    background-color: #222;
    /* A consistent dark color */
    color: #fff;
    /* White text for contrast */
    padding: 3rem 0;
}

footer .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    /* White title text */
}

.footer-section p,
.footer-section li {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ddd;
    /* A lighter color for paragraph text */
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #38b44a;
    /* The vibrant green for all links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #55d46a;
    /* A lighter green on hover */
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-bottom p {
    font-size: 0.8rem;
    color: #aaa;
}

/*
 * ========================================
 * About Page Styling
 * ========================================
 */

/* Hero Section */
.hero.about-hero {
    text-align: center;
    padding: 6rem 0;
}

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

.hero.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.hero.about-hero .hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero.about-hero .business-credentials {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 2.5rem;
}

/* Company Info Section */
.company-info .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .company-info .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.company-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.company-info p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.company-info .credentials-box {
    background-color: #f7f9fb;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
}

.company-info .credentials-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.company-info .credentials-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.company-info .credentials-box li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.company-info .credentials-box li:last-child {
    border-bottom: none;
}

/* Main Content Section */
.section.content {
    padding: 3rem 0;
}

.section.content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section.content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.section.content p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.section.content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 1rem;
}

.section.content li {
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* ===== Header (single source of truth) ===== */
:root {
    --headerH: 64px;
}

@media (min-width: 901px) {
    :root {
        --headerH: 76px;
    }
}

header.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0f1720;
    /* dark bar */
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
    backdrop-filter: saturate(180%) blur(8px);
}

header.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
}

/* Logo sizing + make white on dark */
.site-logo img {
    height: 50px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

@media (min-width: 480px) {
    .site-logo img {
        height: 50px;
    }
}

@media (min-width: 901px) {
    .site-logo img {
        height: 50px;
    }
}

header.site-header.is-scrolled .container {
    padding: 8px 14px;
}

/* Desktop nav */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
}

.nav-link {
    color: #eaf0f6;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 8px 4px;
    position: relative;
    transition: color 0.15s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #a7f3d0;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: linear-gradient(90deg, #38b44a, #2e9c3e);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.18s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* CTA button in header */
.nav-cta {
    background: #38b44a;
    color: #fff !important;
    border: 2px solid #38b44a;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(56, 180, 74, 0.22);
    transition: transform 0.08s ease, box-shadow 0.2s ease, background 0.15s ease;
}

.nav-cta:hover {
    background: #2e9c3e;
    transform: translateY(-1px);
}

/* Hamburger */
.header-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 40px;
    height: 40px;
    padding: 0;
}

.header-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-toggle span+span {
    margin-top: 5px;
}

@media (min-width: 901px) {

    /* Hamburger */
    .header-toggle {
        display: none !important;

    }
}

/* Mobile layout */
@media (max-width: 900px) {
    .header-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        display: none;
    }

    /* Slide-down panel pinned under header height */
    header.site-header.nav-open .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: fixed;
        left: 0;
        right: 0;
        top: var(--headerH);
        height: calc(100dvh - var(--headerH));
        padding: 16px;
        background: #121821;
        /* dark panel matches bar */
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 18px 28px rgba(0, 0, 0, 0.35);
        overflow: auto;
        z-index: 1100;
    }

    header.site-header.nav-open .nav-menu a {
        color: #eaf0f6;
    }

    header.site-header.nav-open .nav-menu a:hover {
        color: #a6c8ff;
    }

    /* hamburger -> X */
    header.site-header.nav-open .header-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(90deg);
    }

    header.site-header.nav-open .header-toggle span:nth-child(2) {
        opacity: 0;
    }

    header.site-header.nav-open .header-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* Lock scroll when mobile menu open */
body.nav-locked {
    overflow: hidden;
}

.header-toggle {
    flex-basis: 0;
    flex-grow: 0;
}

/* Hamburger Icon Container */
.header-toggle {
    display: none;
    /* Hide by default on desktop */
    border: 0;
    background: transparent;
    width: 44px;
    height: 44px;
    padding: 0;
    cursor: pointer;
    /* This ensures vertical alignment with the logo */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The single line of the hamburger icon */
.header-toggle span {
    display: block;
    position: relative;
    width: 24px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    transition: background 0.2s ease;
}

/* The top and bottom lines using pseudo-elements */
.header-toggle span::before,
.header-toggle span::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.2s ease;
}

.header-toggle span::before {
    transform: translateY(-8px);
}

.header-toggle span::after {
    transform: translateY(8px);
}

/* Hamburger to 'X' animation on menu open */
header.site-header.nav-open .header-toggle span {
    background: transparent;
    /* Hide the middle line */
}

header.site-header.nav-open .header-toggle span::before {
    transform: translateY(0) rotate(45deg);
    /* Rotate top line */
}

header.site-header.nav-open .header-toggle span::after {
    transform: translateY(0) rotate(-45deg);
    /* Rotate bottom line */
}


/* ---- WIDTH: keep site container; limit reading column only ---- */
.section > .container .content-item,
.section > .container .e-content { max-width: 760px; margin: 0 auto; }
@media (min-width: 1400px){
  .section > .container .content-item,
  .section > .container .e-content { max-width: 820px; }
}

/* ---- Type & headings ---- */
.section { padding: 28px 0; }
body { font-size: 18px; line-height: 1.7; color: #0f1720; }
h1 { font-size: 2.2rem; line-height: 1.25; margin: 8px 0 6px; letter-spacing: -.01em; }
h2 { font-size: 1.55rem; line-height: 1.35; margin: 34px 0 12px; font-weight: 800; }
h3 { font-size: 1.2rem; margin: 20px 0 10px; font-weight: 700; }
p  { margin: .7rem 0; color: #1b2430; }
.page-header p,.content-title h3 { color:#5a6778; margin-top:6px; }

/* ---- Lists with checkmarks ---- */
.e-content ul { list-style:none; padding-left:0; margin:.5rem 0; }
.e-content ul > li { position:relative; padding-left:28px; margin:.45rem 0; }
.e-content ul > li::before{
  content:"";
  position:absolute; left:0; top:.15rem;
  width:18px; height:18px; background-color:#0ea35a;
  -webkit-mask-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.285 5.707a1 1 0 0 1 0 1.414l-10.5 10.5a1 1 0 0 1-1.414 0l-4.5-4.5a1 1 0 1 1 1.414-1.414l3.793 3.793 9.793-9.793a1 1 0 0 1 1.414 0z"/></svg>');
  -webkit-mask-repeat:no-repeat; -webkit-mask-position:center; -webkit-mask-size:contain;
          mask-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.285 5.707a1 1 0 0 1 0 1.414l-10.5 10.5a1 1 0 0 1-1.414 0l-4.5-4.5a1 1 0 1 1 1.414-1.414l3.793 3.793 9.793-9.793a1 1 0 0 1 1.414 0z"/></svg>');
          mask-repeat:no-repeat; mask-position:center; mask-size:contain;
}

/* ---- Tables: horizontal scroll on small screens (no block-stacking) ---- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #e6edf5;
  border-radius: 8px;
}
.e-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: .96rem;
  min-width: 520px; /* force scroll instead of squishing */
}
.e-content th, .e-content td {
  padding: 12px 14px;
  border-bottom: 1px solid #eef3f8;
  vertical-align: top;
  text-align: left;
  white-space: nowrap;
}
.e-content thead th { background:#f8fbff; font-weight:800; }
.e-content tbody tr:nth-child(odd){ background:#fbfdff; }

/* kill any legacy block-stacking overrides */
@media (max-width: 640px){
  .e-content table,
  .e-content thead,
  .e-content tbody,
  .e-content th,
  .e-content td,
  .e-content tr { display: table; width: auto; }
  .e-content td::before { content: none !important; }
}

/* ---- FAQ, TOC, misc ---- */
.e-content details { border:1px solid #e8eef4; border-radius:8px; padding:10px 12px; margin:.6rem 0; background:#fff; }
.e-content summary { cursor:pointer; font-weight:800; outline:none; }
.e-content details[open]{ box-shadow:none; }

.page-toc-wrapper { text-align:center; margin:10px 0 14px; }
.toc-toggle-link { display:inline-block; font-weight:800; color:#0a3e97; text-decoration:underline; }
.page-toc-content { max-width:720px; margin:12px auto 0; padding:12px 16px; background:#f7fafc; border:1px solid #e3ebf3; border-radius:10px; text-align:left; }
.page-toc-content ul { list-style:none; padding-left:0; }
.page-toc-content li { margin:.35rem 0; }

.e-content hr { border:0; border-top:1px solid #e8eef4; margin:26px 0; }
.e-content img { border-radius:8px; height:auto; max-width:100%; margin:8px 0; border:1px solid #eef3f7; }

/* ---- Links ---- */
a { color:#36af47; text-decoration:none; }


/* ---- Small screens ---- */
@media (max-width:780px){
  .section > .container { padding-left:18px; padding-right:18px; }
  h1 { font-size:1.9rem; }
  h2 { font-size:1.35rem; }
}
