/* Reset and Base Styles */
:root {
    --primary-color: #0a4a7d; /* Professional Blue */
    --secondary-color: #6c757d; /* Neutral Gray */
    --accent-color: #f0ad4e; /* Subtle Accent - Use Sparingly */
    --success-color: #28a745; /* Green for success/pros */
    --light-bg: #f8f9fa;
    --white-color: #ffffff;
    --dark-text: #343a40;
    --medium-text: #5a6268;
    --light-text: #f8f9fa; /* Used mainly on dark backgrounds */
    --border-color: #dee2e6;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    --section-padding-y: 5rem;
    --section-padding: var(--section-padding-y) 0;
    --font-primary: 'Roboto', sans-serif;
    --font-heading: 'Poppins', sans-serif; /* Or another professional heading font */
}

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

html {
     scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--white-color);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 { font-size: clamp(2.5rem, 6vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 3rem; text-align: center;}
h3 { font-size: clamp(1.4rem, 4vw, 1.8rem); font-weight: 600; color: var(--primary-color); margin-bottom: 1.2rem;}
h4 { font-size: clamp(1.1rem, 3vw, 1.4rem); font-weight: 600; color: var(--dark-text); margin-bottom: 1rem;}

p {
    margin-bottom: 1.5rem;
    max-width: 75ch; /* Slightly wider max width */
    color: var(--medium-text);
}
p.lead {
     font-size: 1.15rem;
     font-weight: 400;
     color: var(--dark-text);
 }
p.center {
     margin-left: auto;
     margin-right: auto;
     text-align: center;
}
p.subtle {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-style: italic;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #062c4a; /* Darker blue */
    text-decoration: underline;
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 25px;
}
p + ul, p + ol {
    margin-top: -0.5rem; /* Adjust spacing after paragraph */
}
ul.styled-list {
    list-style: none;
    padding-left: 0;
}
ul.styled-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
}
ul.styled-list li::before {
    content: "\f00c"; /* Checkmark */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--success-color);
    font-size: 1rem;
}
/* Ensure centered paragraphs containing lists keep the list centered too */
p.center + ul, p.center + ol {
     max-width: 75ch;
     margin-left: auto;
     margin-right: auto;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}
.text-center { text-align: center; }
.mt-1 {margin-top: 1rem;} .mt-2 {margin-top: 2rem;} .mt-3 {margin-top: 3rem;}
.mb-0 {margin-bottom: 0rem;} .mb-1 {margin-bottom: 1rem;} .mb-2 {margin-bottom: 2rem;}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}
.btn-primary { background-color: var(--primary-color); color: var(--white-color); border-color: var(--primary-color);}
.btn-primary:hover { background-color: #062c4a; border-color: #062c4a; color: var(--white-color); text-decoration: none; }
.btn-secondary { background-color: var(--secondary-color); color: var(--dark-text); border-color: var(--secondary-color); } /* Dark text for contrast */
.btn-secondary:hover { background-color: #5a6268; border-color: #5a6268; color: var(--white-color); text-decoration: none; }
.btn-outline-primary { background-color: transparent; color: var(--primary-color); border-color: var(--primary-color);}
.btn-outline-primary:hover { background-color: var(--primary-color); color: var(--white-color); text-decoration: none;}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }


/* Navigation */
.main-nav {
    background-color: var(--white-color);
    padding: 0.5rem 0; /* Reduced padding slightly */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav .logo {
    text-decoration: none;
    line-height: 1; /* Prevent extra space around logo */
}
.logo-img { /* Class added to logo image */
    height: 50px; /* Adjust height as needed */
    width: auto;
    vertical-align: middle;
}
.main-nav .main-navigation ul { /* Target the main navigation ul */
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center; /* Align items vertically */
}
.main-nav .main-navigation ul li a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    display: flex; /* Align icon with text */
    align-items: center;
}
.main-nav .main-navigation ul li a::after { /* Underline effect */
    content: '';
    position: absolute;
    bottom: -2px; /* Position underline slightly below text */
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.main-nav .main-navigation ul li a:hover::after,
.main-nav .main-navigation ul li a.active::after {
    width: 100%;
}
.main-nav .main-navigation ul li a.active {
    color: var(--primary-color); /* Highlight active link */
}

/* Desktop Navigation Dropdown */
.main-nav ul li.dropdown {
    position: relative; /* Needed for absolute positioning of the dropdown */
}
.main-nav ul li .dropdown-menu {
    display: none; /* Hide dropdown by default */
    position: absolute;
    top: 100%; /* Position below the parent link */
    left: 0;
    background-color: var(--white-color);
    list-style: none;
    padding: 0.5rem 0; /* Padding top/bottom */
    margin: 5px 0 0 0; /* Small gap above dropdown */
    min-width: 220px; /* Width of the dropdown */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1010; /* Ensure it's above other content */
    border: 1px solid var(--border-color);
    opacity: 0; /* Start hidden for transition */
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
.main-nav ul li.dropdown:hover .dropdown-menu {
    display: block; /* Use block on hover (JS toggle might be better) */
    opacity: 1;
    visibility: visible;
}
.main-nav ul li .dropdown-menu li {
    margin: 0; /* Remove default li margin */
}
.main-nav ul li .dropdown-menu li a {
    display: block; /* Make links full width */
    padding: 0.6rem 1.5rem; /* Padding inside dropdown links */
    color: var(--dark-text);
    font-weight: 400; /* Regular weight for dropdown items */
    white-space: nowrap; /* Prevent wrapping */
}
.main-nav ul li .dropdown-menu li a::after {
    display: none; /* No underline effect on dropdown items */
}
.main-nav ul li .dropdown-menu li a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
    text-decoration: none; /* Remove underline on hover */
}
/* Style the chevron icon on main link */
.main-nav ul li.dropdown > a i {
    transition: transform 0.3s ease;
    font-size: 0.7em; /* Smaller chevron */
    margin-left: 6px;
}
.main-nav ul li.dropdown:hover > a i {
    transform: rotate(180deg);
}


/* Hero Section */
.hero {
    background-color: var(--light-bg); /* Default background */
    background-size: cover;
    background-position: center center;
    padding: 7rem 1rem;
    text-align: center;
    color: var(--dark-text); /* Default text color */
    position: relative;
}
.hero.hero-bg { /* Class for heroes with background image */
    color: var(--white-color); /* Text color for bg images */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    z-index: 1;
}
.hero.hero-bg::before { /* Dark overlay */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(10, 74, 125, 0.7); /* Dark blue overlay */
    z-index: -1;
}
.hero h1 { color: inherit; margin-bottom: 1rem; }
.hero .sub-headline {
    font-size: clamp(1.2rem, 3.5vw, 1.6rem); font-weight: 400; margin-top: -0.5rem; margin-bottom: 1.5rem; color: inherit; opacity: 0.95;
}
.hero p.lead { color: inherit; opacity: 0.95; max-width: 70ch; margin: 0 auto 2rem auto; }
.hero .phone-number {
    font-size: clamp(1.6rem, 5vw, 2.5rem); font-weight: 700; color: var(--accent-color); margin-bottom: 2.5rem; display: block; text-decoration: none; text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}
.hero .phone-number:hover { color: #fff; text-decoration: none; }
.hero .btn { margin-top: 0.5rem; }


/* Section Styling */
section { padding: var(--section-padding); overflow: hidden; }
section:nth-child(even) { background-color: var(--light-bg); }
section h2::after { content: ''; display: block; width: 80px; height: 3px; background-color: var(--accent-color); margin: 1rem auto 0; }


/* Feature Grids / Service Boxes */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.feature-box { background: var(--white-color); padding: 2.5rem 2rem; border-radius: 8px; box-shadow: var(--shadow); text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; /* Align button bottom */ }
.feature-box:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); }
.feature-box i { font-size: 2.8rem; color: var(--primary-color); margin-bottom: 1.5rem; }
.feature-box h4 { font-size: 1.2rem; margin-bottom: 0.8rem; color: var(--primary-color); }
.feature-box p { font-size: 0.95rem; margin-bottom: 1.5rem; flex-grow: 1; /* Push button down */}
.feature-box .btn { margin-top: auto; /* Align button to bottom */ }


/* About Section Specifics */
#about-intro .row { display: flex; flex-wrap: wrap; align-items: center; gap: 3rem; }
#about-intro .text-content { flex: 1; min-width: 300px; }
#about-intro .image-content { flex: 1; min-width: 300px; text-align: center; }


/* Service Detail Pages */
.service-detail-header { text-align: left; margin-bottom: 3rem; padding-bottom: 1rem; /* Add padding bottom */ }
.service-detail-header h1 { text-align: left; }
.service-detail-header h1::after { /* Optional underline for service H1 */
     content: ''; display: block; width: 100px; height: 3px; background-color: var(--accent-color); margin: 0.5rem 0 0 0; /* Align left */
}
.service-content ul { margin-top: 1.5rem; }


/* Industries Section */
.industry-list { list-style: none; padding: 0; margin-top: 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem;}
.industry-list li { background: var(--white-color); padding: 1.5rem; border-radius: 5px; box-shadow: var(--shadow); font-weight: 600; color: var(--primary-color); text-align: center; }
.industry-list i { display: block; font-size: 2rem; margin-bottom: 0.5rem; color: var(--accent-color); }


/* FAQ Section */
.faq-list { margin-top: 3rem; max-width: 800px; margin-left: auto; margin-right: auto;}
.faq-item { background: var(--white-color); margin-bottom: 1rem; border-radius: 5px; border: 1px solid var(--border-color); overflow: hidden; }
.faq-question { display: block; width: 100%; padding: 1rem 1.5rem; background: var(--white-color); border: none; text-align: left; font-weight: 600; font-family: var(--font-heading); font-size: 1.1rem; color: var(--primary-color); cursor: pointer; position: relative; transition: background-color 0.3s ease; }
.faq-question:hover { background-color: var(--light-bg); }
.faq-question::after { content: '\f078'; font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands"; font-weight: 900; position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 0.9rem; color: var(--secondary-color); transition: transform 0.3s ease; }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, padding 0.4s ease-out; background: var(--white-color); }
.faq-answer p { padding: 1.5rem 0; margin-bottom: 0; font-size: 0.98rem; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-item.active .faq-question::after { transform: translateY(-50%) rotate(180deg); }
.faq-item.active .faq-question { background-color: var(--light-bg); }


/* Contact Form */
.contact-form { max-width: 700px; margin: 2rem auto 0 auto; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--dark-text); }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 2px rgba(10, 74, 125, 0.2); }
.form-group textarea { min-height: 120px; resize: vertical; }


/* Valuation Section Specifics */
#valuation ul { list-style: none; padding-left: 0; }
#valuation li { position: relative; padding-left: 1.5rem; margin-bottom: 0.8rem; }
#valuation li::before { content: "\f00c"; font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands"; font-weight: 900; position: absolute; left: 0; top: 5px; color: var(--success-color); font-size: 0.9rem; }
#valuation .row > div > ul { margin-left: 0; }


/* Image Section */
.image-divider { padding: 0; max-height: 400px; overflow: hidden; }
.image-divider img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }


/* Vehicles We Buy Section Specifics */
.vehicle-types-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }
.vehicle-type-tag { background: var(--primary-color); color: white; padding: 0.6rem 1.2rem; border-radius: 25px; font-size: 0.95rem; font-weight: 600; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: background-color 0.3s ease; }
.vehicle-type-tag:hover { background-color: #003f73; }


/* Hassle-Free Advantage Section */
.comparison-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.comparison-item { background: var(--white-color); padding: 2rem; border-radius: 8px; box-shadow: var(--shadow); }
.comparison-item h4 { color: var(--primary-color); margin-bottom: 1rem; }
.comparison-item ul { list-style: none; padding-left: 0; }
.comparison-item li { margin-bottom: 0.5rem; position: relative; padding-left: 1.5rem; }
.comparison-item li::before { font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands"; font-weight: 900; position: absolute; left: 0; top: 5px; font-size: 0.9rem; }
.comparison-item .pro::before { content: "\f00c"; color: var(--success-color); } /* Check for pro */
.comparison-item .con::before { content: "\f00d"; color: #dc3545; } /* X for con */


/* Serving Bakersfield Section */
#service-area { background-color: var(--primary-color); color: var(--light-text); }
#service-area h2 { color: var(--white-color); }
#service-area h2::after { background-color: var(--secondary-color); }
#service-area p { color: var(--light-text); opacity: 0.95; }
#service-area .areas-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem 1.5rem; list-style: none; padding-left: 0; margin-top: 2rem; }
#service-area .areas-list li { background: rgba(255,255,255, 0.15); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.95rem; }


/* Testimonials Section */
#testimonials { background-color: var(--light-bg); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 4rem; }
.testimonial-card { background-color: var(--white-color); color: var(--dark-text); padding: 2.5rem; border-radius: 10px; box-shadow: var(--shadow); position: relative; border-left: 5px solid var(--secondary-color); }
.testimonial-card::before { content: "\f10d"; font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands"; font-weight: 900; position: absolute; top: 1.5rem; right: 1.5rem; font-size: 2.5rem; color: var(--border-color); opacity: 0.8; }
.testimonial-card p { font-style: italic; margin-bottom: 1.5rem; font-size: 1.05rem; color: var(--medium-text); }
.testimonial-card footer { font-style: normal; font-weight: 700; text-align: left; color: var(--primary-color); font-size: 1rem; }


/* Call to Action Section */
.cta-section { background: var(--primary-color); color: var(--white-color); text-align: center; padding: var(--section-padding-y) 1rem; }
.cta-section h2 { color: var(--white-color); margin-bottom: 1.5rem; }
.cta-section h2::after { background-color: var(--secondary-color); }
.cta-section p { color: var(--light-text); opacity: 0.9; max-width: 60ch; margin-left: auto; margin-right: auto; font-size: 1.1rem; margin-bottom: 2rem; }
.cta-section .phone-cta { font-size: clamp(1.6rem, 5vw, 2.5rem); font-weight: 700; color: var(--white-color); display: block; margin-bottom: 2rem; text-decoration: none; }
.cta-section .phone-cta:hover { color: var(--secondary-color); text-decoration: none; }
.cta-section .btn { margin-top: 1rem; padding: 1.2rem 2.8rem; font-size: 1.2rem; }


/* Footer */
footer#main-footer { background-color: var(--dark-text); color: #ccc; padding: 3rem 1rem; margin-top: 0; /* Removed margin if sections have padding */}
footer#main-footer .container { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; }
footer#main-footer p { color: #ccc; font-size: 0.9rem; margin: 0; }
footer#main-footer .footer-nav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 1rem; }
footer#main-footer .footer-nav a { color: var(--light-bg); text-decoration: none; font-size: 0.9rem; opacity: 0.8; transition: opacity 0.3s ease;}
footer#main-footer .footer-nav a:hover { color: var(--white-color); text-decoration: underline; opacity: 1; }


/* -------------------- */
/* Responsive Styles */
/* -------------------- */

/* Mobile Navigation Toggle Button */
.mobile-nav-toggle {
    display: none; /* Hidden by default on larger screens */
    background: none;
    border: none;
    font-size: 1.8rem; /* Size of the hamburger icon */
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1; /* Prevent extra spacing */
    z-index: 1100; /* Make sure it's clickable */
}


/* Medium Screens & Down (Tablets / Large Phones) */
@media (max-width: 991px) {
    .container { width: 92%; }
    .hero { min-height: 75vh; }
    .benefits-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
    .comparison-grid {grid-template-columns: 1fr;}

    /* --- Mobile Navigation Activation --- */
    .main-nav .main-navigation {
        display: none; /* Hide standard nav */
        position: absolute;
        top: 100%; /* Position below header relative to .main-nav */
        left: 0;
        width: 100%;
        background-color: var(--white-color);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        border-top: 1px solid var(--border-color);
        z-index: 1000; /* Ensure nav is below header but above content */
    }

    .main-nav .main-navigation.mobile-nav-active {
        display: block; /* Show when active */
    }

    .main-nav .main-navigation ul {
        flex-direction: column; /* Stack links vertically */
        align-items: stretch; /* Stretch items full width */
        gap: 0;
    }

    .main-nav .main-navigation ul li {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .main-nav .main-navigation ul li a {
        display: block; /* Make links full width */
        padding: 0.9rem 1rem; /* Padding for mobile links */
        border-bottom: 1px solid var(--light-bg); /* Separator */
        width: 100%;
    }
     .main-nav .main-navigation ul li:last-child a {
         border-bottom: none;
     }

    .main-nav .main-navigation ul li a::after {
        display: none; /* Hide desktop underline effect */
    }
     .main-nav .main-navigation ul li a.active {
        background-color: var(--light-bg); /* Highlight active page */
        color: var(--primary-color);
    }


    /* Mobile Dropdown Styling */
    .main-nav .main-navigation ul li.dropdown .dropdown-menu {
        position: static; /* Override absolute positioning */
        display: block; /* Always show content within toggle */
        background-color: #f1f3f5; /* Slightly different background */
        box-shadow: none;
        border: none;
        border-radius: 0;
        min-width: 100%;
        padding: 0;
        margin-top: 0;
        border-top: 1px solid var(--border-color); /* Separator */
        border-bottom: 1px solid var(--border-color); /* Separator */
        max-height: 0; /* Collapsed by default */
        overflow: hidden;
        transition: max-height 0.4s ease-out;
    }
    .main-nav .main-navigation ul li.dropdown.open > .dropdown-menu {
         max-height: 500px; /* Expand height */
    }
     .main-nav .main-navigation ul li.dropdown .dropdown-menu li a {
         padding: 0.8rem 1.5rem 0.8rem 2.5rem; /* Indent dropdown items */
         font-size: 0.95rem;
         font-weight: 400;
         text-align: left; /* Align left */
         border-bottom: 1px solid #e9ecef; /* Lighter separator */
     }
      .main-nav .main-navigation ul li.dropdown .dropdown-menu li:last-child a {
          border-bottom: none;
      }
       .main-nav .main-navigation ul li.dropdown .dropdown-menu li a:hover {
           background-color: #e9ecef;
       }

    .main-nav .main-navigation ul li.dropdown > a {
        display: flex; /* Use flex to align text and icon */
        justify-content: center; /* Center items */
        align-items: center;
        position: relative; /* For positioning the icon correctly */
    }
    .main-nav .main-navigation ul li.dropdown > a i {
        display: inline-block; /* Ensure icon shows */
        margin-left: 8px;
        transition: transform 0.3s ease;
        position: static; /* Let flexbox handle alignment */
        /* Remove absolute positioning if previously added */
    }
    /* Rotate icon when dropdown is open */
    .main-nav .main-navigation ul li.dropdown.open > a i {
        transform: rotate(180deg);
    }

    .mobile-nav-toggle {
        display: block; /* Show hamburger button */
    }
} /* End @media (max-width: 991px) */


/* Small Screens & Down (Phones) */
@media (max-width: 767px) {
    :root { --section-padding-y: 4rem; }
    body { font-size: 15px; }
    h1 { font-size: clamp(2.2rem, 7vw, 3rem); }
    h2 { font-size: clamp(1.8rem, 6vw, 2.4rem); margin-bottom: 2rem;}
    h3 { font-size: clamp(1.2rem, 5vw, 1.6rem); }
    .hero { min-height: 70vh; padding: 5rem 1rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .comparison-grid { grid-template-columns: 1fr; }
    #about-intro .row { flex-direction: column; }
    footer#main-footer .container { flex-direction: column; text-align: center; }
    footer#main-footer .footer-nav { margin-top: 1rem; }
    .btn { padding: 0.9rem 1.8rem; font-size: 1rem; }
    .cta-section .btn { padding: 1rem 2.2rem; font-size: 1.1rem; }
    .faq-question { padding: 1rem 1.5rem; font-size: 1.05rem; }
    .faq-question::after { right: 1.5rem; font-size: 0.9rem; }
    .faq-answer p { font-size: 0.95rem; }
}


/* Very Small Screens */
@media (max-width: 575px) {
    :root { --section-padding-y: 3rem; }
    .hero p.lead { font-size: 1rem; }
    .hero .phone-number { font-size: clamp(1.4rem, 6vw, 2.0rem); }
    .cta-section .phone-cta { font-size: clamp(1.5rem, 7vw, 2.2rem); }
    .process-step .step-number { width: 3rem; height: 3rem; line-height: 3rem; font-size: 1.3rem; }
    .benefit-item { padding: 2rem 1.5rem; }
    .testimonial-card { padding: 2rem 1.5rem; }
    .logo-img { height: 40px; } /* Smaller logo on small screens */
}