/* Base Styles & Refinements */
:root {
    --primary-white: #ffffff;
    --light-gray: #f7fafc;
    --dark-text: #1a202c;
    --light-text: #4a5568;
    --accent-blue: #008080; /* Teal */
    --accent-blue-dark: #006666; /* Darker Teal */
    --hero-overlay: rgba(0, 0, 0, 0.6); /* Less dark overlay */
    --success-green: #28a745;
    --success-green-dark: #218838;
    --soft-shadow: 0 10px 30px rgba(0, 0, 0, 0.07); /* Softer shadow */
    --card-border-radius: 12px;
    --input-border-color: #e2e8f0;
    --focus-ring-color: rgba(0, 128, 128, 0.25); /* Teal focus ring */
    --topbar-bg: #f7fafc;
    --topbar-text: var(--dark-text);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6; /* Improved readability */
    color: var(--dark-text);
    background-color: var(--primary-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    max-width: 1200px; /* Slightly wider container */
    margin: 0 auto;
    padding: 0 20px; /* Increased padding */
}

h1, h2, h3 {
    color: var(--dark-text);
    margin-bottom: 30px; /* Increased spacing */
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

h1 {
    font-size: 2.8em; /* Larger h1 */
}

h2 {
    font-size: 2.2em; /* Larger h2 */
}

h3 {
    font-size: 1.6em; /* Larger h3 */
}

p {
    margin-bottom: 20px; /* Increased spacing */
    color: var(--light-text);
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-blue-dark);
}

/* Animation Elements (AOS handles this now) */
/* CTA Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--accent-blue);
    color: var(--primary-white);
    padding: 16px 40px; /* Increased padding */
    border-radius: 50px; /* Pill-shaped buttons */
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.05em; /* Slightly adjusted font size */
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.25); /* More prominent shadow */
}

.cta-button:hover {
    background-color: var(--accent-blue-dark);
    text-decoration: none;
    transform: translateY(-4px); /* More pronounced lift */
    box-shadow: 0 10px 30px rgba(0, 128, 128, 0.4);
}

.cta-button i {
    margin-right: 10px;
}

/* Topbar */
.topbar {
    background-color: var(--topbar-bg);
    color: var(--topbar-text);
    padding: 10px 0;
    font-size: 0.9em;
    border-bottom: 1px solid #e9ecef;
    position: sticky; /* Make topbar sticky */
    top: 0;
    z-index: 1001; /* Above main header */
}

.topbar-content {
    display: flex;
    justify-content: center; /* Center content by default */
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: 10px;
}

.topbar-content p {
    margin: 0;
    color: inherit;
    display: flex;
    align-items: center;
    white-space: nowrap; /* Prevent phone number from breaking */
}

.topbar-content p a {
    color: var(--accent-blue);
    font-weight: 600;
    margin-left: 5px;
}

.topbar-content p a i {
    margin-right: 5px;
    color: var(--accent-blue);
}

.topbar-close {
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.1em;
    cursor: pointer;
    margin-left: 15px; /* Space from content */
    transition: color 0.3s ease;
}

.topbar-close:hover {
    color: var(--dark-text);
}

/* Header */
.main-header {
    background-color: var(--primary-white);
    padding: 15px 0; /* Increased padding */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* More prominent shadow */
    position: sticky;
    top: 48px; /* Offset for topbar; set to 0 when topbar dismissed via JS */
    z-index: 1000;
}

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

.main-header .logo img {
    max-height: 55px; /* Slightly larger logo */
    transition: transform 0.3s ease;
}
.main-header .logo a:hover img {
    transform: scale(1.05);
}

.text-logo {
    font-size: 1.35em; /* Reduced logo size */
    font-weight: 700;
    color: var(--dark-text);
    text-decoration: none;
    letter-spacing: -0.5px; /* Tighter letter spacing */
}

.logo-extension {
    color: var(--accent-blue);
    font-weight: 800; /* Bolder extension */
}

.text-logo:hover {
    text-decoration: none;
    color: var(--dark-text);
}

/* Main Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    margin-left: 35px; /* Increased spacing */
}

.main-nav ul li a {
    color: var(--dark-text);
    font-weight: 600;
    font-size: 1em;
    padding: 8px 0; /* Adjusted padding */
    position: relative;
    transition: color 0.3s ease;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px; /* Position below the text */
    left: 0;
    background-color: var(--accent-blue);
    transition: width 0.3s ease-out;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.main-nav ul li a:hover {
    color: var(--accent-blue);
}

.main-nav ul li a.nav-cta {
    background-color: var(--accent-blue);
    color: var(--primary-white);
    padding: 8px 16px; /* Reduced padding */
    border-radius: 50px; /* Pill shape */
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    font-size: 0.95em;
}

.main-nav ul li a.nav-cta:hover {
    background-color: var(--accent-blue-dark);
    transform: translateY(-2px);
    color: var(--primary-white);
}

.call-now-button {
    font-size: 0.9em; /* Slightly smaller */
    padding: 10px 16px; /* Reduced padding */
    background-color: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
    box-shadow: none;
    border-radius: 50px;
}

.call-now-button:hover {
    background-color: var(--accent-blue);
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: none;
}

/* Hamburger Menu for Mobile */
.hamburger-menu {
    display: none; /* Hidden by default, shown on mobile */
    background: none;
    border: none;
    font-size: 1.8em;
    color: var(--dark-text);
    cursor: pointer;
    z-index: 1001; /* Above header content */
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('hero.png') center center / cover no-repeat;
    color: var(--primary-white);
    padding: 120px 0; /* More vertical padding */
    display: flex;
    align-items: center;
    min-height: 80vh; /* Taller hero section */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.5)); /* Stronger overlay */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    color: var(--primary-white);
    margin-bottom: 25px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5); /* Stronger shadow */
}

.hero-content .subtitle {
    font-size: 1.2em; /* Larger subtitle */
    margin-bottom: 45px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-content .primary-cta {
    margin-bottom: 35px;
}

.hero-content .trust-signals {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    font-size: 1.05em;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}
.trust-signals i {
    color: var(--success-green);
    margin-right: 10px;
}

/* Sections General */
section {
    padding: 100px 0; /* More vertical padding for sections */
}

section:nth-of-type(even) {
    background-color: var(--light-gray);
}

/* Section Intro */
.section-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 35px;
    font-size: 1.1em;
}

/* Trust Bar */
.trust-bar {
    background-color: #111827;
    color: #e5e7eb;
    padding: 18px 0;
}

.trust-bar-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    font-weight: 600;
    font-size: 0.95em;
}

.trust-bar-metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
}

.trust-logo {
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    font-size: 0.85em;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

/* Stats */
.stats-section {
    padding: 70px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
}

.stat-card {
    padding: 25px;
    border-radius: var(--card-border-radius);
    background-color: var(--primary-white);
    box-shadow: var(--soft-shadow);
}

.stat-card h3 {
    font-size: 2em;
    margin-bottom: 10px;
}

/* Services Section */
.service-icon {
    color: var(--accent-blue);
    margin-bottom: 25px; /* Increased spacing */
}

.service-search-container {
    margin-bottom: 50px; /* More spacing */
    max-width: 600px; /* Wider search bar */
    margin-left: auto;
    margin-right: auto;
}

.service-search-container .form-control {
    width: 100%;
    padding: 16px 22px; /* Increased padding */
    border: 1px solid var(--input-border-color);
    border-radius: var(--card-border-radius); /* Consistent border radius */
    font-size: 1.1em;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); /* Softer shadow */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-search-container .form-control:focus {
    border-color: var(--accent-blue);
    outline: none;
    box-shadow: 0 0 0 4px var(--focus-ring-color); /* More prominent focus ring */
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px; /* Increased gap */
}

.service-item {
    text-align: center;
    padding: 35px 25px; /* Increased padding */
    background-color: var(--primary-white);
    border-radius: var(--card-border-radius); /* Consistent border radius */
    box-shadow: var(--soft-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer; /* Indicate interactivity */
}

.service-item:hover {
    transform: translateY(-10px); /* More pronounced lift */
    box-shadow: 0 18px 45px rgba(0,0,0,0.15); /* Stronger shadow on hover */
}

.service-item h3 {
    margin-bottom: 15px;
    color: var(--dark-text);
}

.service-category {
    display: inline-block;
    margin-top: 15px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85em;
    background-color: var(--light-gray);
    color: var(--dark-text);
    font-weight: 600;
}

.no-results {
    text-align: center;
    font-weight: 600;
}

/* Categories */
.category-section {
    padding-top: 90px;
}

.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.category-card {
    padding: 30px;
    border-radius: var(--card-border-radius);
    background-color: var(--primary-white);
    box-shadow: var(--soft-shadow);
    text-align: center;
}

.category-card i {
    font-size: 2.4em;
    color: var(--accent-blue);
    margin-bottom: 15px;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.step-item {
    background-color: var(--primary-white);
    padding: 30px;
    border-radius: var(--card-border-radius);
    box-shadow: var(--soft-shadow);
    text-align: center;
}

.process-steps .step-number {
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--accent-blue);
    color: var(--primary-white);
    font-weight: 700;
    margin-bottom: 15px;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 35px;
}

.benefit-card {
    background-color: var(--primary-white);
    padding: 30px;
    border-radius: var(--card-border-radius);
    box-shadow: var(--soft-shadow);
    text-align: center;
}

.benefit-card i {
    font-size: 2.2em;
    color: var(--accent-blue);
    margin-bottom: 15px;
}

/* Reviews */
.reviews-grid {
    /* display: grid; Removed as it's now a carousel */
    /* grid-template-columns: 1fr; Removed as it's now a carousel */
    gap: 25px;
    margin-top: 35px;
}

.review-card {
    background-color: var(--primary-white);
    padding: 30px;
    border-radius: var(--card-border-radius);
    box-shadow: var(--soft-shadow);
    font-style: italic;
}

.review-card span {
    display: block;
    margin-top: 15px;
    font-weight: 700;
    color: var(--dark-text);
    font-style: normal;
}

/* Cases */
.cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 35px;
}

.case-card {
    background-color: var(--primary-white);
    padding: 30px;
    border-radius: var(--card-border-radius);
    box-shadow: var(--soft-shadow);
}

.case-meta {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.9em;
    font-weight: 600;
    color: var(--light-text);
}

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--input-border-color);
    padding: 15px 0;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1em;
    font-weight: 700;
    color: var(--dark-text);
    cursor: pointer;
    padding: 10px 0;
}

.faq-answer {
    padding: 0 0 15px;
}

/* Areas */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 25px;
}

.areas-grid span {
    background-color: var(--primary-white);
    padding: 10px 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    box-shadow: var(--soft-shadow);
}

/* Pro CTA */
.pro-cta-section {
    background-color: #0f172a;
    color: #e2e8f0;
    padding: 90px 0;
    text-align: center;
}

.pro-cta-section h2 {
    color: #ffffff;
}

.pro-cta-section p {
    color: #cbd5f5;
    margin-bottom: 30px;
}


/* Mid-page CTA Section */
.mid-cta-section {
    background: var(--accent-blue) linear-gradient(45deg, var(--accent-blue), var(--accent-blue-dark));
    color: var(--primary-white);
    text-align: center;
    padding: 100px 0; /* Consistent padding */
}

.mid-cta-section h2 {
    color: var(--primary-white);
    margin-bottom: 25px;
}

.mid-cta-section p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.mid-cta-section .cta-button {
    background-color: var(--primary-white);
    color: var(--accent-blue);
    transform: scale(1.05); /* Slightly larger */
}

.mid-cta-section .cta-button:hover {
    background-color: var(--light-gray);
    color: var(--accent-blue-dark);
    transform: scale(1.08) translateY(-4px);
}


/* Lead Form Section */
/* Multi-step form container */
.multi-step-form-container {
    max-width: 700px; /* Wider form container */
    margin: 0 auto;
    background-color: var(--primary-white);
    padding: 50px; /* Increased padding */
    border-radius: var(--card-border-radius); /* Consistent border radius */
    box-shadow: var(--soft-shadow);
    position: relative;
    overflow: hidden; /* For transitions */
}

/* Step Indicators */
.form-steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px; /* Increased spacing */
    position: relative;
    padding: 0 15px;
}

.form-steps-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px; /* Thicker line */
    background-color: var(--input-border-color);
    transform: translateY(-50%);
    z-index: 0;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
    color: var(--light-text);
    transition: color 0.3s ease;
}

.step-indicator .step-number {
    width: 45px; /* Larger step number circle */
    height: 45px;
    border-radius: 50%;
    background-color: var(--input-border-color);
    color: var(--primary-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 10px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid var(--primary-white); /* Thicker border */
    box-shadow: 0 0 0 3px var(--input-border-color);
}

.step-indicator.active .step-number {
    background-color: var(--accent-blue);
    box-shadow: 0 0 0 3px var(--accent-blue);
}
.step-indicator.active .step-text {
    color: var(--dark-text);
    font-weight: 700; /* Bolder text */
}

.step-text {
    font-size: 0.95em; /* Slightly larger text */
    text-align: center;
    margin-top: 5px;
}

/* Form Steps */
.multi-step-form {
    /* Existing form styles are largely fine, focus on consistency */
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease-out; /* Smooth transition between steps */
}

.form-step.active {
    display: block;
}

/* Keyframe for fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); } /* More pronounced slide */
    to { opacity: 1; transform: translateY(0); }
}

.form-step h3 {
    margin-bottom: 35px; /* Increased spacing */
    color: var(--dark-text); /* Use dark text for better contrast within form */
}

.service-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Slightly larger buttons */
    gap: 25px; /* Increased gap */
}

.service-option-button {
    width: 100%;
    padding: 30px 20px; /* More padding */
    border: 2px solid var(--input-border-color);
    background-color: var(--primary-white);
    color: var(--dark-text);
    border-radius: var(--card-border-radius); /* Consistent border radius */
    font-size: 1.05em; /* Slightly larger font */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column; /* Stack icon and text */
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05); /* Softer shadow */
}

.service-option-button i {
    font-size: 2.8em; /* Larger icons */
    margin-bottom: 12px;
    color: var(--light-text);
    transition: color 0.3s ease;
}

.service-option-button:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    transform: translateY(-5px); /* More pronounced lift */
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.service-option-button:hover i {
    color: var(--accent-blue);
}

.service-option-button.selected {
    background-color: var(--accent-blue);
    color: var(--primary-white);
    border-color: var(--accent-blue);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3); /* Stronger shadow */
}
.service-option-button.selected i {
    color: var(--primary-white);
}

.form-group {
    margin-bottom: 25px; /* Increased spacing */
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1em; /* Slightly larger label */
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--input-border-color);
    border-radius: var(--card-border-radius); /* Consistent border radius */
    font-size: 1em;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-blue);
    outline: none;
    box-shadow: 0 0 0 4px var(--focus-ring-color);
}

textarea {
    resize: vertical;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px; /* Increased gap */
}
.form-navigation .cta-button {
    flex: 1;
    padding: 15px 30px; /* Adjusted padding */
    font-size: 1.0em;
}

.next-step-button {
    margin-top: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/* Footer */
.main-footer {
    background-color: var(--dark-text);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 0; /* Adjusted padding */
    font-size: 0.95em; /* Slightly larger font */
}

.main-footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.main-footer a:hover {
    color: var(--primary-white);
    text-decoration: underline;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px; /* Increased gap */
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-about .footer-logo {
    font-size: 1.5em;
    margin-bottom: 20px;
    display: block;
    color: var(--primary-white);
}

.footer-about p {
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 18px; /* Increased gap */
    margin-top: 25px;
}

.footer-social a {
    color: var(--primary-white);
    font-size: 1.6em; /* Slightly larger icons */
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-blue);
    transform: translateY(-3px);
}

.main-footer h3 {
    color: var(--primary-white);
    font-size: 1.3em;
    margin-bottom: 30px;
    text-align: left;
}

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

.main-footer ul li a .fas,
.main-footer ul li a .fab {
    margin-right: 12px;
    font-size: 1.1em;
    color: var(--accent-blue);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.footer-contact p .fas {
    margin-right: 12px;
    font-size: 1.1em;
    color: var(--accent-blue);
    flex-shrink: 0;
    margin-top: 4px;
}

/* Specific styling for trust items in footer */
.footer-trust ul li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.footer-trust ul li .fa-check {
    margin-right: 12px;
    color: var(--success-green);
}

.footer-bottom {
    background-color: #1a1a1a; /* Even darker for strong contrast */
    padding: 25px 0; /* Increased padding */
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 50px; /* Increased space */
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin-bottom: 0;
    color: inherit;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom a:hover {
    color: var(--primary-white);
    text-decoration: underline;
}

/* Media Queries for Desktop */
@media (min-width: 768px) {
    h1 {
        font-size: 4em; /* Even larger h1 on desktop */
    }

    h2 {
        font-size: 3.2em; /* Even larger h2 on desktop */
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-content .trust-signals,
    .hero-content h1,
    .hero-content .subtitle,
    .hero-content .primary-cta {
        justify-content: flex-start;
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }


    .call-now-button {
        font-size: 1.1em;
        padding: 12px 25px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .areas-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-steps {
        margin-top: 50px;
    }

    .mid-cta-section h2 {
        font-size: 3em; /* Consistent with h2 */
    }

    .service-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .topbar-content {
        justify-content: space-between; /* Content on left, close button on right */
    }
    .topbar-content p {
        margin-right: auto; /* Push text to left */
    }

    .trust-bar-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .trust-logos {
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-bottom .container {
        flex-direction: row;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Media Queries for Header Navigation */
@media (min-width: 768px) {
    .main-nav {
        display: block; /* Show nav on desktop */
    }

    .main-nav ul {
        display: flex;
        align-items: center;
    }

    .hamburger-menu {
        display: none; /* Hide hamburger on desktop */
    }
}

@media (max-width: 767px) {
    .header-content {
        /* Adjust layout for mobile header if needed */
        justify-content: space-between;
    }

    .main-nav {
        display: none; /* Hidden by default, JavaScript will toggle */
        position: fixed; /* Use fixed for full screen overlay */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.98); /* Semi-transparent white overlay */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        z-index: 999; /* Below sticky header, but above content */
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
        display: flex; /* Display as flex when active */
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        padding: 0;
    }

    .main-nav ul li {
        margin: 20px 0;
    }

    .main-nav ul li a {
        font-size: 1.4em; /* Reduced for readability */
        color: var(--dark-text);
        font-weight: 700;
    }
    
    .main-nav ul li a:hover {
        color: var(--accent-blue);
    }

    .main-nav ul li a.nav-cta {
        padding: 12px 22px;
        font-size: 1.2em;
        margin-top: 10px;
    }
    
    .call-now-button {
        display: block; /* Show call button on mobile */
    }

    .header-content.menu-open .call-now-button {
        display: none; /* Hide call button when menu is open */
    }

    .hamburger-menu {
        display: block; /* Show hamburger on mobile */
        position: relative; /* To be above the menu overlay */
        z-index: 1001;
    }
}

/* Reviews Carousel Custom Styling (Cloud Effect) */
#reviews-carousel .splide__slide {
    display: flex; /* To center content in slide */
    justify-content: center;
    align-items: center;
    padding: 10px; /* Add some padding around cards in carousel */
}

#reviews-carousel .review-card {
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
    width: 100%; /* Ensure card takes full width of slide */
    max-width: 400px; /* Limit max width of card */
    margin: 0 auto; /* Center card if max-width is applied */
    transform: scale(0.95); /* Slightly scale down non-active slides */
    opacity: 0.7; /* Make non-active slides slightly transparent */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); /* Softer shadow for non-active */
}

#reviews-carousel .splide__slide.is-active .review-card {
    transform: scale(1); /* Active slide is full size */
    opacity: 1; /* Active slide is fully opaque */
    box-shadow: var(--soft-shadow); /* Use standard soft shadow for active card */
}

/* Customizing Splide Arrows and Dots */
.reviews-section .splide__arrow {
    background: var(--accent-blue);
    opacity: 0.8;
    width: 40px;
    height: 40px;
    transition: background 0.3s ease, opacity 0.3s ease;
}

.reviews-section .splide__arrow svg {
    fill: var(--primary-white);
}

.reviews-section .splide__arrow:hover {
    background: var(--accent-blue-dark);
    opacity: 1;
}

.reviews-section .splide__pagination {
    bottom: -30px; /* Adjust position */
}

.reviews-section .splide__pagination__page {
    background: var(--light-text);
    opacity: 0.5;
    transition: background 0.3s ease, opacity 0.3s ease;
}

.reviews-section .splide__pagination__page.is-active {
    background: var(--accent-blue);
    opacity: 1;
    transform: scale(1.2); /* Make active dot slightly larger */
}


/* Custom Notification Styling */
.notification-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--success-green);
    color: var(--primary-white);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

/* Go to Top */
.go-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background-color: var(--accent-blue);
    color: var(--primary-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
    z-index: 1002;
}

.go-top:hover {
    background-color: var(--accent-blue-dark);
    transform: translateY(0);
}

.go-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
