/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #e8630a;
    --primary-dark: #c5520a;
    --dark: #1a1a1a;
    --dark2: #222222;
    --text-light: #cccccc;
    --white: #ffffff;
    --font-main: 'Roboto', sans-serif;
    --font-heading: 'Oswald', sans-serif;
}

/* ===== GLOBAL ===== */
* { box-sizing: border-box; }
body { font-family: var(--font-main); color: #333; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); }
a { text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; }

/* ===== TOP BAR ===== */
.top-bar { background: #111; color: #ccc; padding: 6px 0; border-bottom: 1px solid #333; }
.top-bar-text { color: #ccc; font-size: 0.82rem; }
.top-bar-link { color: #ccc; }
.top-bar-link:hover { color: var(--primary); }
.top-bar-phone { color: #ccc; font-size: 0.82rem; font-weight: 600; }
.top-bar-phone:hover { color: var(--primary); }
.social-icon-top { width: 26px; height: 26px; background: #333; color: #ccc; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 0.7rem; }
.social-icon-top:hover { background: var(--primary); color: #fff; }

/* ===== NAVBAR ===== */
.main-navbar { background: #fff; box-shadow: 0 2px 15px rgba(0,0,0,0.1); padding: 8px 0; z-index: 999; }
.logo-img { height: 60px; width: auto; }
.logo-text { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--dark); line-height: 1.2; }
.main-navbar .nav-link { color: #333; font-weight: 600; font-size: 0.9rem; padding: 8px 12px;
    text-transform: uppercase; letter-spacing: 0.3px; position: relative; }
.main-navbar .nav-link::after { content: ''; position: absolute; bottom: 0; left: 12px; right: 12px;
    height: 2px; background: var(--primary); transform: scaleX(0); transition: transform 0.3s; }
.main-navbar .nav-link:hover::after, .main-navbar .nav-link.active::after { transform: scaleX(1); }
.main-navbar .nav-link:hover, .main-navbar .nav-link.active { color: var(--primary); }
.main-navbar .dropdown-menu { border: none; box-shadow: 0 5px 25px rgba(0,0,0,0.12); border-radius: 4px; padding: 8px 0; min-width: 240px; }
.main-navbar .dropdown-item { font-size: 0.85rem; padding: 8px 18px; font-weight: 500; color: #333; }
.main-navbar .dropdown-item:hover { background: var(--primary); color: #fff; }
.btn-click-call { background: var(--primary); color: #fff; font-size: 0.75rem; font-weight: 700;
    padding: 5px 12px; border-radius: 3px; text-transform: uppercase; }
.btn-click-call:hover { background: var(--primary-dark); color: #fff; }
.btn-phone-nav { background: transparent; border: 2px solid var(--primary); color: var(--primary);
    font-weight: 700; font-size: 0.85rem; padding: 7px 16px; border-radius: 3px; }
.btn-phone-nav:hover { background: var(--primary); color: #fff; }
.btn-quote-nav { background: var(--primary); color: #fff; font-weight: 700; font-size: 0.85rem;
    padding: 9px 18px; border-radius: 3px; text-transform: uppercase; }
.btn-quote-nav:hover { background: var(--primary-dark); color: #fff; }
.navbar-toggler { border: 1px solid #ddd; padding: 5px 8px; }
.navbar-toggler:focus { box-shadow: none; }

/* ===== HERO SECTION ===== */
.hero-section { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 88vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-section::before { content: ''; position: absolute; inset: 0;
    background: url('../images/hero-bg.svg') center/cover no-repeat; opacity: 0.5; }
.hero-badge { display: inline-block; background: var(--primary); color: #fff; font-size: 0.75rem;
    font-weight: 700; padding: 4px 14px; border-radius: 20px; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 16px; }
.hero-title { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.hero-title span { color: var(--primary); }
.hero-subtitle { font-size: 1.1rem; color: #ccc; margin-bottom: 30px; line-height: 1.7; max-width: 540px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary { background: var(--primary); color: #fff; font-weight: 700; padding: 14px 32px;
    border-radius: 4px; text-transform: uppercase; font-size: 0.95rem; border: 2px solid var(--primary); }
.btn-hero-primary:hover { background: transparent; color: var(--primary); }
.btn-hero-secondary { background: transparent; color: #fff; font-weight: 700; padding: 14px 32px;
    border-radius: 4px; text-transform: uppercase; font-size: 0.95rem; border: 2px solid #fff; }
.btn-hero-secondary:hover { background: #fff; color: var(--dark); }
.hero-stats { display: flex; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-number { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--primary); }
.hero-stat-label { font-size: 0.8rem; color: #aaa; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-form-card { background: #fff; border-radius: 8px; padding: 30px; box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.hero-form-card h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--dark);
    margin-bottom: 20px; border-left: 4px solid var(--primary); padding-left: 12px; }
.hero-form-card .form-control, .hero-form-card .form-select { border-radius: 4px; font-size: 0.9rem;
    padding: 10px 14px; border: 1px solid #ddd; }
.hero-form-card .form-control:focus, .hero-form-card .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,99,10,0.15); }
.btn-submit { background: var(--primary); color: #fff; font-weight: 700; padding: 12px 30px;
    border-radius: 4px; text-transform: uppercase; border: none; width: 100%; font-size: 0.95rem; }
.btn-submit:hover { background: var(--primary-dark); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%); padding: 60px 0 80px;
    position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0;
    background: url('/client/deve/assets/images/hero-bg.svg') center/cover no-repeat; opacity: 0.3; }
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a { color: #aaa; font-size: 0.85rem; }
.page-hero .breadcrumb-item.active { color: var(--primary); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: #666; }
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700; color: #fff; margin-top: 8px; }
.page-hero p { color: #ccc; max-width: 600px; }

/* ===== SECTION TITLES ===== */
.section-title { font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--dark); }
.section-title span { color: var(--primary); }
.section-subtitle { color: #666; font-size: 1rem; max-width: 600px; }
.title-line { width: 50px; height: 3px; background: var(--primary); margin: 12px 0 20px; }
.title-line.center { margin: 12px auto 20px; }

/* ===== SERVICES CARDS ===== */
.service-card { background: #fff; border-radius: 8px; padding: 30px 24px; box-shadow: 0 3px 20px rgba(0,0,0,0.07);
    transition: all 0.3s ease; border-bottom: 3px solid transparent; height: 100%; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 10px 35px rgba(0,0,0,0.12); border-bottom-color: var(--primary); }
.service-icon { width: 64px; height: 64px; background: rgba(232,99,10,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service-icon i { font-size: 1.6rem; color: var(--primary); }
.service-card h5 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.service-card p { color: #666; font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.btn-service { color: var(--primary); font-weight: 600; font-size: 0.85rem; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 6px; }
.btn-service:hover { color: var(--primary-dark); gap: 10px; }

/* ===== WHY CHOOSE US ===== */
.why-section { background: #f8f9fa; }
.why-card { background: #fff; border-radius: 8px; padding: 24px 20px; text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06); height: 100%; transition: all 0.3s; }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.why-icon { width: 70px; height: 70px; background: var(--primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.why-icon i { font-size: 1.8rem; color: #fff; }
.why-card h5 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; margin-bottom: 10px; color: var(--dark); }
.why-card p { font-size: 0.87rem; color: #666; line-height: 1.6; }

/* ===== FEATURES LIST ===== */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li { padding: 8px 0; font-size: 0.95rem; color: #444; display: flex; align-items: center; gap: 10px; }
.feature-list li i { color: var(--primary); font-size: 0.9rem; flex-shrink: 0; }

/* ===== ABOUT SECTION ===== */
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); width: 100%; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--primary);
    color: #fff; border-radius: 8px; padding: 20px; text-align: center; box-shadow: 0 5px 20px rgba(232,99,10,0.4); }
.about-badge .number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.about-badge .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }

/* ===== PROCESS STEPS ===== */
.process-step { text-align: center; position: relative; }
.step-number { width: 60px; height: 60px; background: var(--primary); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-family: var(--font-heading);
    font-size: 1.4rem; font-weight: 700; margin: 0 auto 16px; }
.process-step h6 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.87rem; color: #666; }

/* ===== TESTIMONIALS ===== */
.testimonial-card { background: #fff; border-radius: 8px; padding: 28px 24px; box-shadow: 0 3px 20px rgba(0,0,0,0.07);
    height: 100%; border-top: 4px solid var(--primary); transition: transform 0.3s; }
.testimonial-card:hover { transform: translateY(-4px); }
.stars { color: #f5a623; font-size: 1rem; margin-bottom: 14px; }
.testimonial-card p { font-size: 0.93rem; color: #555; line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.reviewer-name { font-weight: 700; color: var(--dark); font-size: 0.95rem; }
.reviewer-location { font-size: 0.8rem; color: #999; }

/* ===== FAQ ===== */
.faq-accordion .accordion-button { font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
    color: var(--dark); background: #f8f9fa; }
.faq-accordion .accordion-button:not(.collapsed) { background: var(--primary); color: #fff; box-shadow: none; }
.faq-accordion .accordion-button:not(.collapsed)::after { filter: invert(1); }
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-item { border: 1px solid #e5e5e5; border-radius: 6px; margin-bottom: 10px; overflow: hidden; }
.faq-accordion .accordion-body { font-size: 0.92rem; color: #555; line-height: 1.75; }

/* ===== CONTACT FORM ===== */
.contact-form-wrap { background: #fff; border-radius: 8px; padding: 36px; box-shadow: 0 5px 30px rgba(0,0,0,0.08); }
.contact-info-card { background: var(--dark); border-radius: 8px; padding: 36px; color: #ccc; height: 100%; }
.contact-info-card h4 { font-family: var(--font-heading); color: #fff; margin-bottom: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-info-icon { width: 44px; height: 44px; background: var(--primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon i { color: #fff; font-size: 1rem; }
.contact-info-text strong { display: block; color: #fff; font-size: 0.85rem; margin-bottom: 3px; }
.contact-info-text a, .contact-info-text span { color: #aaa; font-size: 0.9rem; }
.contact-info-text a:hover { color: var(--primary); }
.form-label { font-weight: 600; font-size: 0.87rem; color: #444; margin-bottom: 5px; }
.form-control, .form-select { border-radius: 4px; border: 1px solid #ddd; padding: 11px 14px; font-size: 0.9rem; }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,99,10,0.12); }
.form-control.is-invalid { border-color: #dc3545; }
.btn-form-submit { background: var(--primary); color: #fff; font-weight: 700; padding: 13px 36px;
    border-radius: 4px; text-transform: uppercase; border: none; font-size: 0.95rem; }
.btn-form-submit:hover { background: var(--primary-dark); color: #fff; }

/* ===== CTA SECTION (footer top) ===== */
.cta-section { background: #f4f4f4; border-top: 4px solid var(--primary); }
.cta-title { font-family: var(--font-heading); font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 700; color: var(--dark); margin: 0; }
.cta-subtitle { font-family: var(--font-heading); font-size: clamp(1rem, 2vw, 1.5rem); color: #444; margin: 0; }
.cta-text { color: #666; font-size: 0.95rem; }
.cta-review-title { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: #444; }
.review-logos .review-logo { max-height: 60px; width: auto; filter: grayscale(20%); transition: filter 0.3s; }
.review-logos .review-logo:hover { filter: grayscale(0%); }
.review-placeholder { font-size: 0.8rem; font-weight: 600; color: #555; padding: 8px; background: #eee; border-radius: 4px; text-align: center; }
.btn-call-lg { background: var(--primary); color: #fff; font-weight: 700; padding: 14px 34px;
    border-radius: 4px; font-size: 1rem; text-transform: uppercase; display: inline-block; }
.btn-call-lg:hover { background: var(--primary-dark); color: #fff; }

/* ===== QUOTE REQUEST STRIP ===== */
.quote-request-section { background: #fff; border-top: 1px solid #eee; }
.quote-heading { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--dark); margin: 0; }
.quote-subheading { font-family: var(--font-heading); font-size: 1rem; color: #555; margin: 0; }
.quote-phone { color: var(--primary); font-weight: 600; font-size: 1rem; display: inline-flex; align-items: center; }
.quote-phone:hover { color: var(--primary-dark); }

/* ===== MAIN FOOTER ===== */
.main-footer { background: #1a1a1a; color: #aaa; }
.footer-logo { height: 80px; width: auto; }
.footer-logo-text { font-family: var(--font-heading); color: #fff; font-size: 1.3rem; font-weight: 700; line-height: 1.3; }
.footer-tagline { font-size: 0.88rem; color: #888; line-height: 1.6; }
.footer-heading { font-family: var(--font-heading); color: #fff; font-size: 1rem; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); display: inline-block; }
.footer-links li { margin-bottom: 9px; }
.footer-links li a { color: #e8630a; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 5px; }
.footer-links li a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { margin-bottom: 14px; display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; }
.footer-contact li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-contact li a { color: #e8630a; }
.footer-contact li a:hover { color: #fff; }

/* ===== BOTTOM BAR ===== */
.bottom-bar { background: #111; color: #888; border-top: 1px solid #333; }
.bottom-bar p { color: #888; }
.bottom-link { color: var(--primary); }
.bottom-link:hover { color: #fff; }
.social-icon-bottom { width: 32px; height: 32px; background: #333; color: #aaa; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 0.75rem; }
.social-icon-bottom:hover { background: var(--primary); color: #fff; }

/* ===== INNER PAGE SECTIONS ===== */
.service-detail-section { padding: 70px 0; }
.service-feature-box { background: #f8f9fa; border-radius: 8px; padding: 20px; border-left: 4px solid var(--primary); margin-bottom: 16px; }
.service-feature-box h6 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 6px; color: var(--dark); }
.service-feature-box p { font-size: 0.87rem; color: #666; margin: 0; }
.side-quote-form { background: #fff; border-radius: 8px; padding: 28px; box-shadow: 0 5px 30px rgba(0,0,0,0.1); position: sticky; top: 90px; }
.side-quote-form h4 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--dark); margin-bottom: 20px;
    border-left: 4px solid var(--primary); padding-left: 12px; }
.info-strip { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 50px 0; }
.info-strip h2 { font-family: var(--font-heading); color: #fff; font-size: clamp(1.3rem, 3vw, 2rem); }
.info-strip p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }

/* ===== PRIVACY / DISCLAIMER ===== */
.legal-page { padding: 60px 0; }
.legal-page h2 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--dark); margin-top: 30px; margin-bottom: 12px; }
.legal-page p { color: #555; line-height: 1.8; font-size: 0.95rem; }
.legal-page a { color: var(--primary); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== MISC BUTTONS ===== */
.btn-primary-custom { background: var(--primary); color: #fff; font-weight: 700; padding: 12px 28px;
    border-radius: 4px; text-transform: uppercase; font-size: 0.9rem; border: 2px solid var(--primary); display: inline-block; }
.btn-primary-custom:hover { background: transparent; color: var(--primary); }
.btn-outline-custom { background: transparent; color: var(--primary); font-weight: 700; padding: 12px 28px;
    border-radius: 4px; text-transform: uppercase; font-size: 0.9rem; border: 2px solid var(--primary); display: inline-block; }
.btn-outline-custom:hover { background: var(--primary); color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .main-navbar .navbar-collapse { background: #fff; padding: 16px; border-top: 1px solid #eee; }
    .main-navbar .nav-link { padding: 10px 6px; border-bottom: 1px solid #f0f0f0; }
    .main-navbar .nav-link::after { display: none; }
    .hero-section { min-height: auto; padding: 60px 0; }
    .about-badge { position: static; margin-top: 20px; display: inline-block; }
}
@media (max-width: 767.98px) {
    .hero-title { font-size: 1.9rem; }
    .top-bar .top-bar-text { display: none; }
    .contact-form-wrap { padding: 22px; }
    .contact-info-card { padding: 22px; margin-top: 20px; }
    .side-quote-form { position: static; margin-top: 30px; }
}
@media (max-width: 575.98px) {
    .hero-btns { flex-direction: column; }
    .btn-hero-primary, .btn-hero-secondary { text-align: center; }
}

/* ===== NAVBAR SCROLLED STATE ===== */
.main-navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.15); }

/* ===== FORM ALERT MESSAGES ===== */
.alert-success-custom { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; font-size: 0.92rem; transition: opacity 0.4s ease; }
.alert-error-custom   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; font-size: 0.92rem; }

/* ===== BACK TO TOP BUTTON ===== */
#backToTop { position: fixed; bottom: 28px; right: 28px; width: 46px; height: 46px;
    background: var(--primary); color: #fff; border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
    cursor: pointer; box-shadow: 0 4px 16px rgba(232,99,10,0.4); z-index: 999;
    opacity: 0; pointer-events: none; transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease; }
#backToTop.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
#backToTop:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ===== HERO SVG PATTERN OVERLAY ===== */
.hero-section::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 80px; background: linear-gradient(to bottom, transparent, rgba(248,249,250,0.05));
    pointer-events: none; }

/* ===== PAGE HERO DECORATION ===== */
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 60px; background: #fff; clip-path: ellipse(55% 100% at 50% 100%); }

/* ===== SERVICE DETAIL IMAGE ===== */
.service-hero-img { width: 100%; border-radius: 8px; object-fit: cover; max-height: 400px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); }

/* ===== REVIEW SECTION ===== */
.review-logos .col-sm-3 { display: flex; align-items: center; justify-content: center; }
.review-logos img { max-height: 65px; width: auto; transition: transform 0.3s ease; }
.review-logos img:hover { transform: scale(1.05); }

/* ===== TYPOGRAPHY EXTRAS ===== */
.text-primary-custom { color: var(--primary) !important; }
.bg-primary-custom   { background: var(--primary) !important; }
.border-primary-custom { border-color: var(--primary) !important; }

/* ===== INFO STRIP BUTTON OVERRIDE ===== */
.info-strip .btn-hero-secondary { border-color: rgba(255,255,255,0.6); }
.info-strip .btn-hero-secondary:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* ===== WHY CARD ON DARK BG ===== */
.why-card-dark { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.why-card-dark h5, .why-card-dark p { color: #fff; }

/* ===== FORM PRIVACY NOTICE ===== */
.privacy-notice { font-size: 0.78rem; color: #888; line-height: 1.5; padding: 10px 12px;
    background: #f8f9fa; border-radius: 4px; border-left: 3px solid #ddd; }
.privacy-notice a { color: var(--primary); }

/* ===== TESTIMONIALS ===== */
.testimonial-card .stars { letter-spacing: 2px; }
.review-badge-wrap { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ===== HERO FORM SCROLLBAR ===== */
.hero-form-card { max-height: 90vh; overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--primary) #f0f0f0; }
.hero-form-card::-webkit-scrollbar { width: 5px; }
.hero-form-card::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

/* ===== LEGAL PAGE LINK COLOR ===== */
.legal-page h2 { border-left: 3px solid var(--primary); padding-left: 12px; }

/* ===== MOBILE FIXES ===== */
@media (max-width: 575.98px) {
    #backToTop { bottom: 18px; right: 18px; width: 40px; height: 40px; font-size: 0.95rem; }
    .hero-stats { gap: 18px; }
    .hero-stat-number { font-size: 1.6rem; }
    .page-hero h1 { font-size: 1.6rem; }
    .cta-section { text-align: center; }
    .btn-call-lg { width: 100%; }
    .review-logos .col-sm-3 { justify-content: center; }
}
@media (max-width: 767.98px) {
    .hero-form-card { max-height: none; }
    .about-badge { bottom: auto; right: auto; margin-top: 16px; }
    .side-quote-form { margin-top: 24px; }
    .contact-info-card { padding: 24px 18px; }
}
@media (max-width: 991.98px) {
    .main-navbar .dropdown-menu { border: none; box-shadow: none; padding-left: 12px; }
    .page-hero { padding: 50px 0 36px; }
    .page-hero::after { display: none; }
    .service-detail-section { padding: 40px 0; }
}

/* ===== FLOATING MOBILE CALL BUTTON ===== */
.floating-call {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
    background: var(--primary); color: #fff;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 20px; font-weight: 700; font-size: 1rem;
    text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 -3px 15px rgba(232,99,10,0.4);
    text-decoration: none;
}
.floating-call:hover { background: var(--primary-dark); color: #fff; }
.floating-call i { font-size: 1.1rem; animation: ring 1.5s infinite; }
@keyframes ring {
    0%,100% { transform: rotate(0deg); }
    10%      { transform: rotate(-15deg); }
    20%      { transform: rotate(15deg); }
    30%      { transform: rotate(-10deg); }
    40%      { transform: rotate(10deg); }
    50%      { transform: rotate(0deg); }
}
/* Push page content up on mobile so floating btn doesn't cover content */
@media (max-width: 991.98px) {
    body { padding-bottom: 56px; }
    #backToTop { bottom: 70px; }
}

/* ===== HERO SECTION MOBILE FORM ===== */
@media (max-width: 991.98px) {
    .hero-section { padding: 40px 0 30px; }
    .hero-section .col-lg-6:last-child { order: -1; }
    .hero-form-card { margin-bottom: 30px; }
}

/* ===== SELECTED NAV ACTIVE UNDERLINE FIX ===== */
.main-navbar .nav-item.dropdown:hover > .nav-link::after { transform: scaleX(1); }

/* ===== PAGE HERO POSITION FIX ===== */
.page-hero .breadcrumb { background: transparent; padding: 0; margin: 0; }
.page-hero .container-xl { position: relative; z-index: 2; }

/* ===== CTA SECTION BUTTON FIX ===== */
.cta-section .btn { text-decoration: none; }

/* ===== ABOUT BADGE POSITION FIX ===== */
@media (min-width: 992px) {
    .about-img-wrap { padding-bottom: 30px; padding-right: 30px; }
    .about-badge { position: absolute; bottom: 0; right: 0; }
}

/* ===== FOOTER LOGO LINK ===== */
.footer-logo-link { display: inline-block; }

/* ===== SERVICE CARD HEIGHT FIX ===== */
.service-card { display: flex; flex-direction: column; }
.service-card p { flex: 1; }

/* ===== TESTIMONIAL CARD HEIGHT FIX ===== */
.testimonial-card { display: flex; flex-direction: column; }
.testimonial-card p { flex: 1; }

/* ===== PRINT STYLES ===== */
@media print {
    .top-bar, .main-navbar, .floating-call, #backToTop, .cta-section, .info-strip { display: none !important; }
    body { padding: 0; }
    .main-footer { background: #fff; color: #333; }
    .footer-links li a, .footer-contact li a, .footer-heading { color: #333 !important; }
}
