/* ======================================================
   HOUSE HELPERS — CLEAN MASTER STYLESHEET
   House Cleaning | Air Duct Cleaning | House Moving
   ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =========================
   1. THEME
========================= */
:root {
    --brand: #3E86C9;
    --brand-dark: #2C6CA9;
    --brand-light: #6AA8DF;

    --tint: #ECF4FC;
    --tint-2: #D6E8F7;

    --cta: #1A62B0;
    --cta-dark: #134D8C;

    --gold: #EFAE4A;

    --ink: #17293A;
    --text: #4E6275;
    --muted: #8296A7;

    --paper: #FFFFFF;
    --soft: #F4F8FC;
    --line: #DCE8F2;
    --line-strong: #C3D6E7;

    --shadow-sm: 0 4px 14px rgba(23, 41, 58, .06);
    --shadow: 0 10px 30px rgba(23, 41, 58, .08);
    --shadow-lg: 0 20px 50px rgba(23, 41, 58, .14);
}

/* =========================
   2. RESET / GLOBAL
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--paper);
    overflow-x: hidden;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--ink);
    line-height: 1.15;
}

.section-subtitle {
    display: inline-block;
    color: var(--cta);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.section-title {
    margin-top: 10px;
    color: var(--ink);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -.025em;
}

.section-description {
    max-width: 700px;
    margin: 15px auto 0;
    color: var(--text);
    line-height: 1.75;
}

/* =========================
   3. TOP BAR
========================= */
.top-bar {
    background: var(--ink);
    color: #DCE6EF;
    padding: 9px 0;
    font-size: 13px;
}

.top-bar a {
    color: #DCE6EF;
    transition: color .25s ease;
}

.top-bar a:hover {
    color: var(--brand-light);
}

/* =========================
   4. NAVBAR
========================= */
.navbar {
    z-index: 1000;
    background: rgba(255, 255, 255, .96) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 20px rgba(23, 41, 58, .06);
    transition: box-shadow .3s ease, background .3s ease;
}

.navbar-brand img {
    width: auto;
    height: 70px;
    max-height: 70px;
}

.navbar-nav .nav-link {
    margin-left: 20px;
    color: var(--ink) !important;
    font-weight: 600;
    transition: color .25s ease, transform .25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--cta) !important;
}

.navbar-nav .nav-link:hover {
    transform: translateY(-1px);
}

.navbar .btn-success {
    background: var(--cta) !important;
    border-color: var(--cta) !important;
    border-radius: 10px;
    padding: 11px 20px;
    font-weight: 600;
    box-shadow: 0 7px 18px rgba(26, 98, 176, .22);
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.navbar .btn-success:hover {
    background: var(--cta-dark) !important;
    border-color: var(--cta-dark) !important;
    transform: translateY(-2px);
}

.navbar-toggler {
    border-color: var(--line-strong) !important;
    border-radius: 10px;
    padding: 8px 10px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(26, 98, 176, .12);
}

.navbar.shadow {
    box-shadow: 0 8px 28px rgba(23, 41, 58, .12);
}

/* =========================
   5. BUTTONS
========================= */
.btn {
    border-radius: 10px;
    font-weight: 600;
    transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.btn-primary,
.btn-success {
    background: var(--cta);
    border-color: var(--cta);
}

.btn-primary:hover,
.btn-success:hover {
    background: var(--cta-dark);
    border-color: var(--cta-dark);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: rgba(255, 255, 255, .06);
    border: 2px solid rgba(255, 255, 255, .85);
    color: #fff;
}

.btn-outline-light:hover {
    background: #fff;
    border-color: #fff;
    color: var(--cta-dark);
}

/* =========================
   6. HERO
========================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(12, 30, 55, .62), rgba(12, 30, 55, .62)),
        url('../images/hero-services.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(19, 77, 140, .28), rgba(19, 77, 140, .05) 70%);
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    max-width: 760px;
    color: #fff;
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
}

.hero h1 span {
    color: var(--brand-light);
}

.hero p {
    max-width: 620px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .92);
    font-size: 18px;
    line-height: 1.7;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 100px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-buttons .btn-primary {
    padding: 14px 25px;
    background: var(--cta);
    border-color: var(--cta);
    box-shadow: 0 8px 20px rgba(26, 98, 176, .22);
}

.hero-buttons .btn-primary:hover {
    background: var(--cta-dark);
    border-color: var(--cta-dark);
}

.hero-services {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.service-item {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.service-item i {
    margin-right: 8px;
    color: var(--brand-light);
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 4s ease-in-out infinite;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 650px;
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* =========================
   7. WHY CHOOSE US
========================= */
.why-us,
.about-section {
    background: #fff;
}

.feature-card {
    height: 100%;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.feature-card:hover {
    transform: translateY(-7px);
    border-color: var(--tint-2);
    box-shadow: var(--shadow);
}

.feature-card > i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 12px;
    background: var(--tint);
    color: var(--cta);
    font-size: 19px;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

.feature-card:hover > i {
    background: var(--cta);
    color: #fff;
    transform: scale(1.05);
}

.feature-card h4 {
    margin-bottom: 9px;
    color: var(--ink);
    font-size: 18px;
    font-weight: 700;
}

.feature-card p {
    margin: 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.65;
}

/* =========================
   8. SERVICES
========================= */
.services,
.services-section {
    background: linear-gradient(180deg, var(--tint) 0%, #fff 100%);
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--tint-2);
    box-shadow: var(--shadow-lg);
}

.service-card > img {
    width: 100%;
    height: 250px;
    padding: 14px;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(160deg, var(--tint) 0%, var(--soft) 100%);
    border-bottom: 1px solid var(--line);
    transition: transform .5s ease;
}

.service-card:hover > img {
    transform: scale(1.04);
}

.service-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 26px 24px 24px;
}

.service-content > i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 11px;
    background: var(--cta);
    color: #fff;
    font-size: 18px;
    box-shadow: 0 6px 16px rgba(26, 98, 176, .25);
}

.service-content h3 {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 22px;
    font-weight: 700;
}

.service-content p {
    margin-bottom: 20px;
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.7;
}

.service-content .btn {
    align-self: flex-start;
    margin-top: auto;
    padding: 11px 20px;
    border: 2px solid var(--line-strong);
    border-radius: 10px;
    background: transparent;
    color: var(--cta);
}

.service-content .btn:hover {
    background: var(--cta);
    border-color: var(--cta);
    color: #fff;
}

/* =========================
   9. STATS — KEEP SIMPLE
========================= */
.stats {
    background: var(--cta);
    color: #fff;
}

.stats h2 {
    margin: 0;
    color: #fff;
    font-size: 50px;
    font-weight: 800;
    line-height: 1;
}

.stats p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
}

/* =========================
   10. PROCESS
========================= */
.process {
    background: #fff;
}

.process .row {
    position: relative;
}

.process .row::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: var(--tint-2);
    z-index: 0;
}

.process .col-lg-3 {
    position: relative;
    z-index: 1;
}

.process-box {
    position: relative;
    height: 100%;
    min-height: 260px;
    padding: 28px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.process-box:hover {
    transform: translateY(-6px);
    border-color: var(--tint-2);
    box-shadow: var(--shadow);
}

.process-box .step-number {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--tint-2);
    border-radius: 50%;
    background: #fff;
    color: var(--cta);
    font-size: 15px;
    font-weight: 800;
    transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
}

.process-box:hover .step-number {
    background: var(--cta);
    border-color: var(--cta);
    color: #fff;
    transform: scale(1.05);
}

.process-box > i {
    display: block;
    margin-bottom: 14px;
    color: var(--brand);
    font-size: 24px;
}

.process-box h4 {
    min-height: 54px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-size: 18px;
    font-weight: 700;
}

/* =========================
   11. GALLERY
========================= */
.gallery,
.gallery-section {
    background: linear-gradient(180deg, var(--tint) 0%, #fff 100%);
}

.gallery-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.gallery-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-card img:hover {
    transform: scale(1.04);
}

.gallery-image {
    cursor: zoom-in;
}

/* =========================
   12. TESTIMONIALS
========================= */
.testimonials,
.reviews-section {
    background: var(--soft);
}

.testimonial-card {
    height: 100%;
    padding: 30px 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--tint-2);
    box-shadow: var(--shadow);
}

.stars {
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 17px;
    letter-spacing: 3px;
}

.testimonial-card p {
    margin-bottom: 22px;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.65;
}

.testimonial-card h5 {
    margin: 0;
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
}

/* =========================
   13. SERVICE AREAS
========================= */
.service-areas {
    background: var(--soft);
}

.service-areas .city-box {
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease;
}

.service-areas .city-box:hover {
    transform: translateY(-4px);
    border-color: var(--brand-light);
    color: var(--cta);
    box-shadow: var(--shadow);
}

/* =========================
   14. FAQ
========================= */
.faq {
    background: var(--soft) !important;
}

.faq .accordion-item {
    border: none;
    margin-bottom: 14px;
    overflow: hidden;
    border-radius: 14px !important;
    box-shadow: var(--shadow-sm);
}

.faq .accordion-button {
    padding: 20px 22px;
    background: #fff;
    color: var(--ink);
    font-size: 17px;
    font-weight: 600;
    box-shadow: none !important;
}

.faq .accordion-button:hover,
.faq .accordion-button:not(.collapsed) {
    background: var(--tint);
    color: var(--cta);
}

.faq .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(26, 98, 176, .10) !important;
}

.faq .accordion-body {
    padding: 0 22px 22px;
    background: #fff;
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.7;
}

/* =========================
   15. CONTACT / QUOTE
========================= */
.contact-section {
    background: linear-gradient(180deg, var(--tint) 0%, #fff 100%);
}

.contact-info {
    height: 100%;
    padding: 32px 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.contact-info h3 {
    margin-bottom: 12px;
    color: var(--ink);
    font-size: 25px;
}

.contact-info > p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item > i {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--tint);
    color: var(--cta);
}

.contact-item strong {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.contact-item div {
    color: var(--ink);
    font-size: 15px;
}

.quote-form {
    padding: 32px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.quote-form .form-control,
.quote-form .form-select {
    background: var(--soft);
    border: 1.5px solid var(--line);
    border-radius: 10px;
    color: var(--ink);
    padding: 13px 14px;
    font-size: 15px;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
    background: #fff;
    border-color: var(--cta);
    box-shadow: 0 0 0 3px rgba(26, 98, 176, .10);
}

.quote-form textarea {
    min-height: 130px;
    resize: vertical;
}

.quote-form button[type='submit'] {
    background: var(--cta);
    border-color: var(--cta);
    border-radius: 10px;
    padding: 14px 22px;
    font-weight: 700;
}

.quote-form button[type='submit']:hover {
    background: var(--cta-dark);
    border-color: var(--cta-dark);
}

.form-error {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #C2402F;
}

.form-valid {
    border-color: var(--brand) !important;
}

.form-invalid {
    border-color: #C2402F !important;
}

#formMessage {
    min-height: 24px;
    font-size: 14px;
    font-weight: 600;
}

/* =========================
   16. MAP
========================= */
.map-section iframe {
    display: block;
    width: 100%;
}

/* =========================
   17. FOOTER
========================= */
.footer {
    padding: 70px 0 25px;
    background: var(--soft);
    color: var(--text);
    border-top: 1px solid var(--line);
}

.footer img {
    max-height: 70px;
    width: auto;
    margin-bottom: 15px;
}

.footer p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
}

.footer h5 {
    margin-bottom: 18px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.footer ul {
    padding-left: 0;
}

.footer li {
    margin-bottom: 10px;
    color: var(--text);
    font-size: 15px;
}

.footer a {
    color: var(--text);
    transition: color .25s ease, padding-left .25s ease;
}

.footer a:hover {
    color: var(--cta);
}

.footer hr {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 35px 0 20px;
}

/* =========================
   18. FLOATING BUTTONS
========================= */
.floating-call,
.floating-whatsapp {
    position: fixed;
    right: 22px;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff !important;
    z-index: 9999;
    box-shadow: 0 8px 22px rgba(23, 41, 58, .22);
    transition: transform .25s ease, box-shadow .25s ease;
}

.floating-call {
    bottom: 84px;
    background: var(--cta);
}

.floating-whatsapp {
    bottom: 22px;
    background: #25D366;
}

.floating-call:hover,
.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 28px rgba(23, 41, 58, .28);
}

/* =========================
   19. BACK TO TOP
========================= */
#backToTop {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    width: 55px;
    height: 55px;
    display: none;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: var(--cta);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(23, 41, 58, .18);
}

#backToTop:hover {
    background: var(--cta-dark);
    transform: translate(-50%, -4px);
}

/* =========================
   20. SCROLL REVEAL
========================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   21. LIGHTBOX
========================= */
.image-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(9, 18, 26, .88);
    z-index: 10000;
}

.image-lightbox.active {
    display: flex;
}

.image-lightbox img {
    max-width: 90%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .5);
}

.close-lightbox {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    font-size: 32px;
    cursor: pointer;
}

.close-lightbox:hover {
    background: var(--cta);
    color: #fff;
}

/* =========================
   22. MOBILE STICKY ACTION BAR
========================= */
.mobile-action-bar {
    display: none;
}

/* =========================
   23. OPTIONAL ESTIMATOR
   harmless until HTML is added
========================= */
.estimator-section {
    background: var(--soft);
}

.estimator-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 28px;
}

.estimator-panel,
.estimate-result {
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.estimator-panel {
    padding: 30px;
    background: #fff;
    border: 1px solid var(--line);
}

.estimate-result {
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--ink);
    color: #fff;
}

.estimate-price {
    color: #fff;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
}

.estimate-label {
    color: var(--brand-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
}

.estimate-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.estimate-option {
    border: 1.5px solid var(--line);
    border-radius: 100px;
    background: var(--soft);
    color: var(--text);
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.estimate-option.active {
    background: var(--cta);
    border-color: var(--cta);
    color: #fff;
}

/* =========================
   24. RESPONSIVE
========================= */
@media (max-width: 991px) {
    section {
        padding: 70px 0;
    }

    .navbar-nav {
        padding: 16px;
        margin-top: 12px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 12px;
        box-shadow: var(--shadow-sm);
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .process .row::before {
        display: none;
    }

    .contact-info {
        margin-bottom: 20px;
    }

    .estimator-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .hero {
        min-height: 92vh;
        padding: 100px 20px 60px;
        text-align: center;
    }

    .hero h1 {
        font-size: 34px;
        max-width: 100%;
    }

    .hero p {
        font-size: 15px;
    }

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

    .feature-card,
    .service-card,
    .process-box,
    .testimonial-card {
        width: 100%;
    }

    .process-box {
        min-height: 0;
    }

    .service-card > img {
        height: 230px;
    }

    .contact-info,
    .quote-form,
    .estimator-panel,
    .estimate-result {
        padding: 24px 18px;
    }

    .floating-call,
    .floating-whatsapp {
        right: 16px;
        width: 48px;
        height: 48px;
    }

    .floating-call {
        bottom: 78px;
    }

    .floating-whatsapp {
        bottom: 18px;
    }

    .mobile-action-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9990;
        display: flex;
        background: #fff;
        border-top: 1px solid var(--line);
        box-shadow: 0 -6px 20px rgba(23, 41, 58, .10);
        padding-bottom: env(safe-area-inset-bottom);
    }

    .mobile-action-bar a {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        min-height: 62px;
        color: var(--ink);
        font-size: 12px;
        font-weight: 600;
    }

    .mobile-action-bar a i {
        color: var(--cta);
        font-size: 18px;
    }

    .mobile-action-bar .quote-action {
        background: var(--cta);
        color: #fff;
    }

    .mobile-action-bar .quote-action i {
        color: #fff;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons .btn {
        padding: 13px 20px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .process-box h4 {
        min-height: 0;
    }

    .quote-form {
        padding: 22px 18px;
    }

    .footer {
        padding: 55px 0 25px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
/* =========================
   LOGO + BRAND NAME
========================= */

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
}

.navbar-brand img {
    height: 60px;
    width: auto;
}

.brand-name {
    color: var(--ink);

    font-size: 24px;
    font-weight: 800;

    letter-spacing: -0.02em;

    white-space: nowrap;
}

@media (max-width: 576px) {

    .navbar-brand img {
        height: 50px;
    }

    .brand-name {
        font-size: 19px;
    }

}
