/* =========================================================
   1. ROOT VARIABLES & GLOBAL
   ========================================================= */
:root {
    --navy-blue: #04153B;
    --navy-dark: #020d25;
    --navy-light: #0c285c;
    --orange-primary: #ff5a00;
    --orange-secondary: #ffad00;
    --orange-light: #fff2e9;
    --white: #ffffff;
    --border-color: #e4eaf2;
    --font-primary: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-primary);
}

/* =========================================================
   2. FLOATING CONTACT BUTTONS (WhatsApp & Call)
   ========================================================= */
.floating-contact-btn {
    position: fixed;
    bottom: 25px;
    right: 20px;
    z-index: 1040;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background-color: #25d366;
}

.whatsapp-btn:hover {
    background-color: #1eb956;
    transform: scale(1.1);
}

.call-btn {
    background-color: var(--navy-blue);
}

.call-btn:hover {
    background-color: var(--orange-primary);
    transform: scale(1.1);
}

/* =========================================================
   3. TOP BAR SECTION
   ========================================================= */
.top-bar {
    background: linear-gradient(90deg, var(--navy-dark), var(--navy-blue)) !important;
    font-size: 13px;
    font-weight: 500;
}

.top-bar span {
    color: rgba(255, 255, 255, 0.85);
}

.text-orange {
    color: var(--orange-primary) !important;
}

.social-top-icon {
    display: inline-flex;
    width: 32px;
    height: 32px;
    margin-left: 6px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.social-top-icon:hover {
    color: #ffffff !important;
    background: var(--orange-primary);
    transform: translateY(-2px);
}

/* =========================================================
   4. HEADER & NAVBAR (COMMON)
   ========================================================= */
header.sticky-top {
    z-index: 1030;
}

.main-logo {
    max-height: 75px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .main-logo {
        max-height: 55px;
    }
}

/* Custom Button */
.btn-orange-custom {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    border: none;
    border-radius: 10px;
    font-weight: 700;
    padding: 10px 22px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-orange-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 90, 0, 0.3) !important;
}

/* =========================================================
   5. MOBILE & TABLET OFFCANVAS MENU (< 992px)
   ========================================================= */
@media (max-width: 991.98px) {
    .offcanvas.offcanvas-end {
        position: fixed !important;
        top: 0 !important;
        bottom: 0 !important;
        right: 0 !important;
        left: auto !important;
        height: 100vh !important;
        height: 100dvh !important;
        width: 310px !important;
        max-width: 85vw !important;
        background: #ffffff !important;
        border: none !important;
        z-index: 1055 !important;
        display: flex !important;
        flex-direction: column !important;
        box-shadow: -15px 0 45px rgba(0, 0, 0, 0.25) !important;
    }

    .offcanvas-backdrop {
        position: fixed !important;
        inset: 0 !important;
        z-index: 1050 !important;
        background-color: rgba(2, 13, 37, 0.78) !important;
    }

    .offcanvas-header {
        position: relative;
        flex: 0 0 auto !important;
        min-height: 70px;
        padding: 16px 20px !important;
        background: linear-gradient(135deg, var(--navy-dark), var(--navy-blue)) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
        display: flex !important;
        align-items: center;
        justify-content: space-between;
    }

    .offcanvas-body {
        flex: 1 1 auto !important;
        min-height: 0 !important;
        width: 100% !important;
        padding: 20px 16px !important;
        background: #ffffff !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        align-items: stretch !important;
    }

    .offcanvas-body .navbar-nav {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 6px !important;
        flex: 0 0 auto !important;
    }

    .offcanvas-body .nav-link {
        width: 100% !important;
        min-height: 46px;
        display: flex !important;
        align-items: center !important;
        padding: 10px 14px !important;
        border-radius: 10px !important;
        color: var(--navy-blue) !important;
        font-size: 15px !important;
        font-weight: 600 !important;
    }

    .offcanvas-body .nav-link.active {
        color: #ffffff !important;
        background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary)) !important;
    }

    .offcanvas-body > div:last-child {
        width: 100%;
        margin-top: auto !important;
        padding-top: 18px;
        border-top: 1px solid #edf1f5;
        flex-shrink: 0 !important;
    }

    .offcanvas-body > div:last-child .btn-orange-custom {
        width: 100% !important;
        min-height: 48px;
        border-radius: 12px !important;
    }
}

/* =========================================================
   6. DESKTOP NAVBAR RESTORE (>= 992px)
   ========================================================= */
@media (min-width: 992px) {
    .offcanvas {
        position: static !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        bottom: auto !important;
        height: auto !important;
        max-height: none !important;
        width: auto !important;
        max-width: none !important;
        background: transparent !important;
        box-shadow: none !important;
        transform: none !important;
        visibility: visible !important;
        display: flex !important;
        flex-direction: row !important;
        flex-grow: 1 !important;
        border: none !important;
    }

    .offcanvas-header {
        display: none !important;
    }

    .offcanvas-body {
        padding: 0 !important;
        overflow: visible !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end !important;
        background: transparent !important;
        width: 100% !important;
    }

    .navbar .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 6px !important;
        margin-bottom: 0 !important;
    }

    .navbar .nav-link {
        position: relative;
        color: var(--navy-blue) !important;
        font-size: 15px;
        font-weight: 600;
        padding: 8px 14px !important;
        border-radius: 8px;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .navbar .nav-link:hover,
    .navbar .nav-link.active {
        color: var(--orange-primary) !important;
        background-color: var(--orange-light) !important;
    }

    .offcanvas-body > div:last-child {
        margin-top: 0 !important;
        padding-top: 0 !important;
        border-top: none !important;
        width: auto !important;
    }

    .offcanvas-body > div:last-child .btn-orange-custom {
        width: auto !important;
    }
}











/* =========================================================
   HERO SECTION STYLES
   ========================================================= */

.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(2, 13, 37, 0.92), rgba(4, 21, 59, 0.88)), 
                url('../images/acrepair.jpg?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    min-height: 85vh;
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: hidden;
}

/* Badge Styling */
.hero-section .badge.bg-orange {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary)) !important;
    letter-spacing: 0.5px;
    border-radius: 50px;
    display: inline-flex !important; 
    align-items: center !important;
    justify-content: center !important;
    max-width: 100% !important; 
    white-space: normal !important;
    text-align: left !important;
    line-height: 1.4 !important;
}

/* Hero Typography */
.hero-heading {
    font-size: 2.75rem;
    line-height: 1.25;
    font-weight: 800 !important;
    letter-spacing: -0.5px;
}

.hero-section .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Custom Primary Button (Explore All Services) */
.btn-primary-custom {
    background-color: transparent;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    font-weight: 700;
    padding: 12px 28px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #ffffff;
    color: var(--navy-blue) !important;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Hero Lead Form Card */
.hero-lead-card {
    background: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

.hero-lead-card h4.text-navy {
    color: var(--navy-blue) !important;
    font-size: 1.35rem;
}

/* Form Controls Styling */
.hero-lead-card .form-control,
.hero-lead-card .form-select {
    height: 48px;
    border: 1.5px solid #e1e7ef;
    border-radius: 10px;
    font-size: 0.92rem;
    color: var(--navy-blue);
    padding: 10px 15px;
    background-color: #f8fafc;
    transition: all 0.25s ease;
}

.hero-lead-card .form-control:focus,
.hero-lead-card .form-select:focus {
    background-color: #ffffff;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.15);
    outline: none;
}

.hero-lead-card .form-control::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.hero-lead-card .form-select {
    cursor: pointer;
    color: #475569;
}

/* Submit Button Override */
.hero-lead-card button.btn-orange-custom {
    height: 50px;
    font-size: 1rem;
    border-radius: 10px !important;
    margin-top: 5px;
}


/* =========================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================= */

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 40px;
        padding-bottom: 40px;
        text-align: center;
    }

    .hero-heading {
        font-size: 2.1rem;
    }

    .hero-section .d-flex.gap-3 {
        justify-content: center;
    }

    .hero-lead-card {
        text-align: left;
        margin-top: 10px;
    }
}

@media (max-width: 575.98px) {
    .hero-heading {
        font-size: 1.75rem;
    }

    .hero-section .btn {
        width: 100%;
    }
}



/* =========================================================
   ABOUT SECTION STYLES
   ========================================================= */

#about {
    background-color: #ffffff;
    overflow: hidden;
}

/* Image Wrapper & Experience Badge Styling */
#about .position-relative {
    display: inline-block;
    width: 100%;
}

#about .position-relative img {
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(4, 21, 59, 0.12) !important;
}

#about .experience-badge {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary)) !important;
    min-width: 130px;
    box-shadow: 0 10px 25px rgba(255, 90, 0, 0.3) !important;
    border: 3px solid #ffffff;
    z-index: 2;
}

#about .experience-badge h3 {
    font-size: 2.2rem;
    line-height: 1;
}

#about .experience-badge small {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 4px;
}

/* Section Typography */
#about .sub-title {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

#about .section-title {
    color: var(--navy-blue);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
}

#about p.text-muted {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #5d6a7e !important;
}

#about p.text-muted strong {
    color: var(--navy-blue);
}

/* Feature Check Highlights */
#about .col-6 .d-flex {
    background: #f8fafc;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

#about .col-6 .d-flex:hover {
    background: #ffffff;
    border-color: var(--orange-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

#about .col-6 span.text-navy {
    color: var(--navy-blue) !important;
    font-size: 0.9rem;
    line-height: 1.3;
}

/* Button overrides for dark text contrast inside light background */
#about .btn-primary-custom {
    color: var(--navy-blue) !important;
    border: 2px solid var(--navy-blue);
}

#about .btn-primary-custom:hover {
    background-color: var(--navy-blue);
    color: #ffffff !important;
    border-color: var(--navy-blue);
}


/* =========================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================= */

@media (max-width: 991.98px) {
    #about .section-title {
        font-size: 1.85rem;
    }

    #about .experience-badge {
        min-width: 110px;
        padding: 10px !important;
    }

    #about .experience-badge h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 575.98px) {
    #about .col-6 {
        width: 100%;
    }

    #about .d-flex.gap-3 {
        flex-direction: column;
    }

    #about .d-flex.gap-3 .btn {
        width: 100%;
        text-align: center;
    }
}






/* =========================================================
   CTA / STATISTICS BANNER STYLES
   ========================================================= */

.cta-banner {
    background: linear-gradient(135deg, #ff5a00 0%, #ff9000 60%, #ffad00 100%) !important;
    position: relative;
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
    overflow: hidden;
}

/* Right-side curved circle overlay */
.cta-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.cta-banner h2 {
    color: #ffffff !important;
    font-size: 36px;
    font-weight: 600 !important;
    letter-spacing: -0.5px;
    margin-bottom: 8px !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
}

.cta-banner p {
    font-size: 0.95rem;
    color: #ffffff !important;
    font-weight: 700 !important;
    letter-spacing: 0.2px;
    opacity: 0.95;
}

/* Mobile & Tablet Adjustments */
@media (max-width: 767.98px) {
    .cta-banner {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .cta-banner h2 {
        font-size: 2.1rem;
    }

    .cta-banner p {
        font-size: 0.85rem;
    }
}




/* =========================================================
   SERVICES SECTION STYLES
   ========================================================= */

#services {
    background-color: #f8fafc !important;
}

.max-w-700 {
    max-width: 700px;
}

#services .sub-title {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

#services .section-title {
    color: var(--navy-blue);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
}

/* Service Card Container */
.service-card {
    border-radius: 16px !important;
    background: #ffffff;
    transition: all 0.35s ease;
    border: 1px solid #e2e8f0 !important;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(4, 21, 59, 0.1) !important;
    border-color: rgba(255, 90, 0, 0.3) !important;
}

/* Service Card Image Styling */
.service-img {
    height: 210px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.06);
}

/* Service Card Body & Text */
.service-card .card-title {
    color: var(--navy-blue) !important;
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 12px;
}

.service-card .card-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #64748b !important;
    margin-bottom: 20px;
}

/* Card Link Button */
.service-card a.text-orange {
    color: var(--orange-primary) !important;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.25s ease;
}

.service-card a.text-orange i {
    transition: transform 0.25s ease;
}

.service-card:hover a.text-orange i {
    transform: translateX(5px);
}

.service-card a.text-orange:hover {
    color: var(--orange-secondary) !important;
}


/* =========================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================= */

@media (max-width: 991.98px) {
    #services .section-title {
        font-size: 1.85rem;
    }
    
    .service-img {
        height: 190px;
    }
}

@media (max-width: 575.98px) {
    #services .section-title {
        font-size: 1.6rem;
    }

    .service-card .card-body {
        padding: 1.25rem !important;
    }
}






/* =========================================================
   WHY CHOOSE US SECTION STYLES
   ========================================================= */

#why-us {
    background-color: #ffffff !important;
}

#why-us .max-w-700 {
    max-width: 700px;
}

#why-us .sub-title {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

#why-us .section-title {
    color: var(--navy-blue);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
}

/* Feature Cards Styling */
.why-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 90, 0, 0.3) !important;
    box-shadow: 0 15px 30px rgba(4, 21, 59, 0.08) !important;
}

/* Circle Icon Wrapper */
.why-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 90, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.why-card:hover .why-icon-wrap {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
}

.why-card:hover .why-icon-wrap i {
    color: #ffffff !important;
}

/* Typography Inside Cards */
.why-card h5 {
    color: var(--navy-blue);
    font-size: 1.1rem;
    letter-spacing: -0.2px;
}

.why-card p {
    color: #64748b !important;
    line-height: 1.6;
    font-size: 0.88rem;
}


/* =========================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================= */

@media (max-width: 991.98px) {
    #why-us .section-title {
        font-size: 1.85rem;
    }

    .why-icon-wrap {
        width: 60px;
        height: 60px;
    }

    .why-icon-wrap i {
        font-size: 1.5em;
    }

    .why-card h5 {
        font-size: 1.02rem;
    }
}

@media (max-width: 575.98px) {
    #why-us .section-title {
        font-size: 1.6rem;
    }

    .why-card {
        padding: 1.5rem 1.25rem !important;
    }
}





/* =========================================================
   TESTIMONIALS SECTION STYLES
   ========================================================= */

#testimonials {
    background-color: var(--navy-dark, #04153b) !important;
}

#testimonials .max-w-700 {
    max-width: 700px;
}

#testimonials .sub-title {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

#testimonials .section-title {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
}

/* Testimonial Card Design */
.testimonial-card {
    background-color: #ffffff;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important;
    border-color: rgba(255, 90, 0, 0.4) !important;
}

/* Rating Stars */
.testimonial-card .stars {
    font-size: 0.95rem;
    letter-spacing: 2px;
}

/* Feedback Text */
.testimonial-card p.text-muted {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a5568 !important;
    font-style: italic;
}

/* Author Title */
.testimonial-card h6.text-navy {
    color: var(--navy-blue, #04153b) !important;
    font-size: 1.05rem;
    letter-spacing: -0.2px;
}


/* =========================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================= */

@media (max-width: 991.98px) {
    #testimonials .section-title {
        font-size: 1.85rem;
    }
}

@media (max-width: 575.98px) {
    #testimonials .section-title {
        font-size: 1.6rem;
    }

    .testimonial-card {
        padding: 1.5rem !important;
    }
}








/* =========================================================
   FAQ SECTION STYLES (Matching Header Structure)
   ========================================================= */

#faq-section {
    background-color: #f8fafc !important;
}

#faq-section .max-w-700 {
    max-width: 700px;
}

#faq-section .sub-title {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

#faq-section .section-title {
    color: var(--navy-blue);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
}

/* Accordion Item Styling */
.accordion-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(255, 90, 0, 0.3) !important;
    box-shadow: 0 10px 25px rgba(4, 21, 59, 0.05) !important;
}

/* Accordion Button Styling */
.accordion-button {
    background-color: #ffffff !important;
    color: var(--navy-blue) !important;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--orange-primary) !important;
    background-color: rgba(255, 90, 0, 0.03) !important;
    border-bottom: 1px solid #e2e8f0;
}

.accordion-body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b !important;
    padding: 1.25rem 1.5rem 1.5rem 1.5rem;
    background-color: #ffffff;
}

/* =========================================================
   RESPONSIVE ADJUSTMENTS (Exact Match)
   ========================================================= */

@media (max-width: 991.98px) {
    #faq-section .section-title {
        font-size: 1.85rem;
    }
}

@media (max-width: 575.98px) {
    #faq-section .section-title {
        font-size: 1.6rem;
    }

    .accordion-button {
        font-size: 0.98rem;
        padding: 1rem 1.25rem;
    }

    .accordion-body {
        padding: 1rem 1.25rem 1.25rem 1.25rem;
        font-size: 0.9rem;
    }
}




/* =========================================================
   CONTACT / BOOKING SECTION STYLES
   ========================================================= */

#contact {
    background-color: #ffffff !important;
}

#contact .sub-title {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

#contact .section-title {
    color: var(--navy-blue);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
}

/* Form Controls Styling */
#contact .form-control,
#contact .form-select {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px !important;
    padding: 0.85rem 1.15rem;
    color: #1e293b;
    transition: all 0.3s ease;
}

#contact .form-control:focus,
#contact .form-select:focus {
    background-color: #ffffff;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.1) !important;
}

/* Custom Submit Button */
.btn-orange-custom {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    color: #ffffff !important;
    border: none;
    border-radius: 10px !important;
    padding: 0.9rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-orange-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 90, 0, 0.3);
    opacity: 0.95;
}

/* Direct Contact Info Card (Navy Box) */
#contact .bg-navy {
    background-color: var(--navy-dark, #04153b) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
}


/* =========================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================= */

/* Mobile Overflow Fix for Contact Section */
@media (max-width: 991.98px) {
    #contact .bg-navy {
        padding: 1.5rem !important; /* মোবাইলে প্যাডিং কমিয়ে ফিট করা হলো */
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    #contact .row {
        --bs-gutter-x: 0; /* গ্লিচ এড়াতে এক্সট্রা গাটার গ্যাপ রিসেট */
    }
}

@media (max-width: 575.98px) {
    #contact .section-title {
        font-size: 1.6rem;
    }
}





/* =========================================================
   MULTI-BRAND EXPERTISE SECTION STYLES (Colorful Logos)
   ========================================================= */

#brand-section {
    background-color: #f8fafc !important;
}

#brand-section .max-w-700 {
    max-width: 700px;
}

#brand-section .sub-title {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

#brand-section .section-title {
    color: var(--navy-blue);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
}

/* Brand Card Styling */
.brand-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    padding: 15px !important;
}

.brand-card:hover {
    border-color: rgba(255, 90, 0, 0.4) !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(4, 21, 59, 0.06) !important;
}

/* Brand Image Styling - Always Colorful */
.brand-img {
    max-height: 90px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    filter: none; /* ধূসর ভাব রিমুভ করা হয়েছে */
    opacity: 0.9;
    transition: all 0.3s ease;
}

.brand-card:hover .brand-img {
    opacity: 1;
    transform: scale(1.05); /* মাউস নিলে লোগো হালকা জুম হবে */
}


/* =========================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================= */

@media (max-width: 991.98px) {
    #brand-section .section-title {
        font-size: 1.85rem;
    }
}

@media (max-width: 575.98px) {
    #brand-section .section-title {
        font-size: 1.6rem;
    }

    .brand-card {
        height: 90px;
    }

    .brand-img {
        max-height: 55px;
    }
}






/* =========================================================
   NEW REDESIGNED FOOTER STYLES
   ========================================================= */

.site-footer {
    background: linear-gradient(135deg, #020b1f 0%, #04153b 100%) !important;
    position: relative;
    overflow: hidden;
}

/* Top Emergency CTA Box inside Footer */
.footer-cta-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.footer-cta-icon {
    width: 55px;
    height: 55px;
    background-color: var(--orange-primary, #ff5a00);
}

/* Footer Headings with Bottom Accent Line */
.footer-heading {
    font-size: 1.1rem;
    letter-spacing: -0.2px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background-color: var(--orange-primary, #ff5a00);
}

/* Footer Link Lists & Hover Effect */
.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.93rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--orange-primary, #ff5a00);
    transform: translateX(5px);
}

.footer-links li a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.footer-links li a:hover i {
    transform: translateX(2px);
}

/* Social Media Button Overrides */
.social-footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-footer-btn:hover {
    background-color: var(--orange-primary, #ff5a00);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(255, 90, 0, 0.3);
}

.social-footer-btn.bg-success:hover {
    background-color: #198754 !important;
}


/* =========================================================
   RESPONSIVE ADJUSTMENTS FOR FOOTER
   ========================================================= */

@media (max-width: 991.98px) {
    .footer-cta-box {
        text-align: center;
    }
    
    .footer-cta-box .d-flex {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .site-footer {
        padding-top: 3rem !important;
    }
    
    .footer-heading {
        font-size: 1rem;
    }
}







/* =========================================
   Breadcrumb Section with Image Background
========================================= */
.breadcrumb-section {
    position: relative;
    background: linear-gradient(rgba(4, 21, 59, 0.82), rgba(4, 21, 59, 0.88)), url('../images/acrepair.jpg?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.breadcrumb-section h1 {
    font-size: 2.25rem;
    letter-spacing: -0.5px;
}

.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.breadcrumb-section .breadcrumb-item a:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .breadcrumb-section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .breadcrumb-section h1 {
        font-size: 1.75rem;
    }
}







/* =========================================================
   ABOUT PAGE & HOME PAGE CONSISTENT STYLING
   ========================================================= */

/* Section base adjustment */
#about {
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Image container and Experience Badge positioning matching home page */
#about .position-relative {
    position: relative;
}

#about .experience-badge {
    background: var(--orange-primary, #ff5a00) !important;
    z-index: 2;
    border: 2px solid #ffffff;
}

/* Typography alignment */
#about .sub-title {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

#about .section-title {
    color: var(--navy-blue, #04153b);
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.3;
}

/* Feature grid item styling for clean mobile view */
#about .row.g-3 .col-6 div {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}

#about .row.g-3 .col-6 div:hover {
    border-color: var(--orange-primary, #ff5a00);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Responsive Fixes to Prevent Mobile Gap Overflow */
@media (max-width: 991.98px) {
    #about {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    #about .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 575.98px) {
    /* Ensures zero horizontal scrolling gap on mobile devices */
    body, html {
        overflow-x: hidden !important;
    }
    
    #about .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    #about .experience-badge {
        padding: 10px !important;
    }
    
    #about .experience-badge h3 {
        font-size: 1.5rem !important;
    }
}

/* Styling for Extended/Secondary Section Titles to Match Home Page */
.bg-light .sub-title {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.bg-light .section-title {
    color: var(--navy-blue, #04153b);
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.3;
}

@media (max-width: 991.98px) {
    .bg-light .section-title {
        font-size: 1.75rem;
    }
}







/* =========================================================
   SERVICES PAGE CUSTOM STYLING
   ========================================================= */

/* Main services spacing and alignment */
.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Service item rows border spacing */
.border-bottom {
    border-bottom: 1px solid #e2e8f0 !important;
}

/* Image container and Experience Badge positioning */
.position-relative {
    position: relative;
}

.experience-badge {
    background: var(--orange-primary, #ff5a00) !important;
    z-index: 2;
    border: 2px solid #ffffff;
}

/* Typography styles */
.sub-title {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.section-title {
    color: var(--navy-blue, #04153b);
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.3;
}

/* Button Container & Visibility Fix */
.d-flex.flex-wrap.gap-3 {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    align-items: center;
}

.d-flex.flex-wrap.gap-3 .btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
    flex: 0 0 auto;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Button custom variants matching global theme */
.btn-primary-custom {
    background-color: #f8fafc;
    border: 2px solid var(--navy-blue, #04153b);
    color: var(--navy-blue, #04153b) !important;
}

.btn-primary-custom:hover {
    background-color: var(--navy-blue, #04153b);
    color: #ffffff !important;
}

.btn-orange-custom {
    background-color: var(--orange-primary, #ff5a00);
    border: 2px solid var(--orange-primary, #ff5a00);
    color: #ffffff !important;
}

.btn-orange-custom:hover {
    background-color: #e04f00;
    border-color: #e04f00;
    color: #ffffff !important;
}

/* Responsive Fixes */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .g-5 {
        --bs-gutter-y: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .experience-badge {
        padding: 10px !important;
    }
    
    .experience-badge h3 {
        font-size: 1.5rem !important;
    }
    
    .d-flex.flex-wrap.gap-3 .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}





/* ==========================================
   CONTACT US PAGE
   ========================================== */
.contact-section-scope {
    --primary-orange: #fd7e14;
    --primary-navy: #0f172a;
}

.contact-section-scope .text-orange {
    color: var(--primary-orange) !important;
}

.contact-section-scope .text-navy {
    color: var(--primary-navy) !important;
}

.contact-section-scope .bg-orange {
    background-color: var(--primary-orange) !important;
}

.contact-section-scope .btn-orange {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #fff;
    transition: all 0.3s ease;
}

.contact-section-scope .btn-orange:hover {
    background-color: #e67112;
    border-color: #e67112;
    color: #fff;
}

.contact-section-scope .max-w-700 {
    max-width: 700px;
}

.contact-section-scope .sub-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.contact-section-scope .section-title {
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.contact-section-scope .form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.25rem rgba(253, 126, 20, 0.15);
}