/* ==========================================================================
   1. RESET & GLOBAL STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #333333;
}

/* TOP TRUST STRIP */
.trust-banner {
    background: #ffcc00;
    color: #000000;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 6%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 43, 91, 0.05);
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: all 0.3s ease;
}

/* Logo & Branding */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 65px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.brand-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0056b3;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-sub {
    font-size: 0.75rem;
    font-weight: 500;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333333;
    margin-left: 20px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0056b3;
}

/* Desktop Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
    padding: 10px 0;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    margin-left: 3px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 270px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 8px 0;
    z-index: 1000;
    border-top: 3px solid #0056b3;
}

.dropdown-menu a {
    color: #333333;
    padding: 12px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
    text-align: left;
}

.dropdown-menu a i {
    color: #0056b3;
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.dropdown-menu a:hover {
    background-color: #f4f7fc;
    color: #0056b3;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Header Action Buttons */
.header-actions-wrapper {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.nav-tilt-btn {
    text-decoration: none;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    margin-left: 0;
    animation: continuousTiltLoop 3s ease-in-out infinite;
}

.call-tilt { background: #0056b3; }
.call-tilt:hover { background: #003d82; }

.wa-tilt { 
    background: #25d366; 
    animation-delay: 1.5s; 
}
.wa-tilt:hover { background: #1ebea5; }

.nav-action-circles {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 15px;
}

.circle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.15rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease;
}

.circle-btn::after {
    display: none;
}

.nav-call-tilt {
    background: linear-gradient(135deg, #0056b3, #003d82);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.25);
    animation: navButtonWiggle 3.5s ease-in-out infinite;
}

.nav-wa-tilt {
    background: linear-gradient(135deg, #25d366, #1ebd54);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    animation: navButtonWiggle 3.5s ease-in-out infinite 0.5s;
}

.circle-btn:hover {
    transform: scale(1.12);
    animation-play-state: paused;
}

.nav-call-tilt:hover { box-shadow: 0 6px 16px rgba(0, 86, 179, 0.45); }
.nav-wa-tilt:hover { box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45); }


/* Hide mobile standalone menu button on Desktop screens by default */
.mobile-menu-btn {
    display: none;
}

/* Base style rules for desktop image icons within buttons */
.btn-image-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 6px;
}


/* Hide mobile standalone menu button on Desktop screens by default */
.mobile-menu-btn {
    display: none;
}

/* Base style rules for desktop image icons within buttons */
.btn-image-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 6px;
}

/* ==========================================================================
   📱 ISOLATED MOBILE RE-ALIGNMENT PATCH (Phones Under 768px ONLY)
   ========================================================================== */
@media (max-width: 768px) {
    /* Stabilize mobile fixed navigation track container dimensions perfectly */
    .main-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 65px !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 15px !important;
        background: #ffffff !important;
        z-index: 999999 !important; 
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }

    /* Suppress desktop raw text links without hiding our outer action wrappers */
    .nav-links {
        display: none !important;
    }

    /* Force mobile brand logo dimension limits cleanly */
    .logo img {
        max-height: 42px !important;
        width: auto !important;
        display: block !important;
    }
    
    /* Suppress logo text to prevent crowding on horizontal row track */
    .logo-text {
        display: none !important; 
    }

    /* Force button wrapper to convert automatically into a re-aligned row layout track */
    .header-actions-wrapper {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px !important;
        margin: 0 !important;
    }

    /* Hide desktop text strings automatically on phone viewports */
    .btn-text-label {
        display: none !important;
    }

    /* 🎯 UNIFIED CIRCLE TRANSFORMATION: Converts links and buttons into circular shapes */
    .header-actions-wrapper .nav-tilt-btn,
    .header-actions-wrapper .mobile-menu-btn {
        width: 38px !important;
        height: 38px !important;
        border-radius: 50% !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12) !important;
        padding: 0 !important;
        margin: 0 !important;
        transform: none !important;
        animation: none !important;
        border: none !important;
    }

    /* Reveal the mobile menu button next to the links */
    .mobile-menu-btn {
        display: inline-flex !important;
        background: #222222 !important;
        cursor: pointer !important;
    }

    /* Ensure specific baseline background fills remain operational */
    .call-tilt { background: #0056b3 !important; }
    .wa-tilt   { background: #25d366 !important; }

    /* 📐 IMAGE PROPORTIONS: Controls the size of all inner image tags inside the circles */
    .header-actions-wrapper .nav-tilt-btn img,
    .header-actions-wrapper .mobile-menu-btn img {
        width: 20px !important;
        height: 20px !important;
        max-width: 20px !important;
        max-height: 20px !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
}



/* ==========================================================================
   3. HERO SECTION & FORM
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 100px 5%;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000000;
}

.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active { opacity: 1; }

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient-overlay-shroud {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 10, 30, 0.9) 0%, rgba(0, 20, 50, 0.6) 40%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    z-index: 3;
}

.hero-text {
    flex: 1.2;
    text-align: left;
    color: #ffffff;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 204, 0, 0.15);
    color: #ffcc00;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 204, 0, 0.3);
    margin-bottom: 25px;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    color: #ffffff;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
    color: #f0f5fa;
    max-width: 600px;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
    max-width: 550px;
}

.feat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
}

.feat-card i { color: #ffcc00; font-size: 1.2rem; }
.feat-card span { font-size: 0.95rem; font-weight: 600; color: #ffffff; }

.hero-cta-main {
    display: inline-block;
    background: #ffcc00;
    color: #000000;
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-cta-main:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

.hero-form-wrapper {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
}

.form-container {
    background: #ffffff;
    color: #333333;
    padding: 35px;
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-top: 5px solid #0056b3;
}

.form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 5px;
}

.form-subtext {
    font-size: 0.85rem;
    color: #666666;
    margin-bottom: 25px;
    line-height: 1.4;
}

.input-group-row {
    position: relative;
    margin-bottom: 18px;
    width: 100%;
}

.input-group-row i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0056b3;
    font-size: 1rem;
    z-index: 5;
}

.input-group-row input,
.input-group-row select {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #333333;
    background: #fdfdfd;
    transition: border-color 0.3s ease;
}

.input-group-row input:focus,
.input-group-row select:focus {
    border-color: #0056b3;
    outline: none;
    background: #ffffff;
}

.submit-btn-premium {
    width: 100%;
    padding: 15px;
    background: #0056b3;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
    transition: background 0.3s ease;
}

.submit-btn-premium:hover { background: #003d82; }

/* ==========================================================================
   4. BRANDS & CREDIBILITY STRIP
   ========================================================================== */
.brands-row {
    background: #f4f7fc;
    padding: 20px 5%;
    border-bottom: 1px solid #e1e8f5;
}

.brands-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.brands-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.brand-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 10px 18px;
    border-radius: 6px;
    border: 1px solid #d0daf0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.brand-badge i {
    color: #0056b3;
    font-size: 1.1rem;
}

.brand-badge span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #222222;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   5. SERVICES SECTION & CARDS
   ========================================================================== */
.services-section {
    padding: 80px 5%;
    text-align: center;
}

.services-section h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666666;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    padding: 30px 20px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-box img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.service-box h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
}

.service-box p {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Service Card Action Buttons Options */
.service-actions-circles-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    width: 100%;
    height: 50px;
}

.mini-circle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.call-bg { background: #0056b3; }
.wa-bg { background: #25d366; }

.mini-circle-btn img {
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    padding: 0;
    border-radius: 0;
}

.mini-circle-btn:hover {
    transform: scale(1.1);
}

.circle-action-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: alternateServiceCircleTilt 3.5s ease-in-out infinite;
}

.call-circle { background: #0056b3; }
.call-circle:hover { background: #003d82; }

.wa-circle {
    background: #25d366;
    animation-delay: 0.5s;
}
.wa-circle:hover { background: #1ebea5; }

.circle-action-btn:hover {
    transform: scale(1.12);
    animation-play-state: paused;
}

.service-actions-row {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 10px;
    margin-top: auto;
    width: 100%;
    height: 46px;
}

.btn-call-rectangle {
    background: #0056b3;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 100%;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.15);
    animation: alternateServiceRectangularTilt 3.5s ease-in-out infinite;
}
.btn-call-rectangle:hover { background: #003d82; }

.btn-wa-square {
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.15);
    animation: alternateServiceRectangularTilt 3.5s ease-in-out infinite 0.5s;
}
.btn-wa-square:hover { background: #1ebea5; }

.btn-call-rectangle:hover, 
.btn-wa-square:hover {
    transform: scale(1.02);
    animation-play-state: paused;
}

/* ==========================================================================
   6. PROCESS ROADMAP SECTION
   ========================================================================== */
.process-section {
    padding: 80px 5%;
    background: #ffffff;
    text-align: center;
}

.process-section h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #222222;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.process-step-card {
    background: #ffffff;
    border: 1px solid #e2e8f5;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.08);
    border-color: #b3d1ff;
}

.step-number-badge {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #b3d1ff;
    opacity: 0.4;
    line-height: 1;
    z-index: 5;
}

.step-img-wrapper {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.step-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.process-step-card:hover .step-img-wrapper img {
    transform: scale(1.08);
}

.process-step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222222;
}

.process-step-card p {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
}

/* ==========================================================================
   7. ABOUT OUR TEAM SECTION
   ========================================================================== */
.about-section {
    padding: 90px 5%;
    background: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image-side {
    flex: 1;
    position: relative;
    min-width: 320px;
}

.about-image-side img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.experience-badge-floating {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #0056b3;
    color: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.25);
    text-align: center;
    border: 2px solid #ffffff;
}

.experience-badge-floating .exp-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffcc00;
    line-height: 1;
}

.experience-badge-floating .exp-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text-side {
    flex: 1.2;
    min-width: 320px;
    text-align: left;
}

.section-tag {
    display: inline-block;
    color: #0056b3;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.about-text-side h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #222222;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text-side p {
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 35px;
}

.about-stats-row {
    display: flex;
    gap: 25px;
}

.stat-box {
    background: #f4f7fc;
    padding: 20px;
    border-radius: 8px;
    flex: 1;
    text-align: center;
    border: 1px solid #e1e8f5;
}

.stat-box h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0056b3;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555555;
    margin: 0;
}

/* ==========================================================================
   8. LOCATIONS & REGIONAL HUBS
   ========================================================================== */
.locations-section {
    padding: 80px 5%;
    background: #0056b3;
    color: #ffffff;
    text-align: center;
}

.locations-section h2 {
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.locations-subtitle {
    color: #ffcc00;
    margin-bottom: 40px;
    font-weight: 500;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    text-align: left;
}

.location-col {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 6px;
    border-left: 4px solid #ffcc00;
}

.location-col h3 {
    margin-bottom: 12px;
    color: #ffcc00;
    font-size: 1.2rem;
}

.location-col p {
    line-height: 1.6;
    font-size: 0.9rem;
    opacity: 0.95;
}

.regional-hubs-container {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed #d0daf0;
}

.regional-hubs-container h4 {
    font-size: 1.3rem;
    color: #222222;
    margin-bottom: 20px;
    font-weight: 700;
}

.hubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.hub-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f5;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hub-card:hover {
    transform: translateY(-4px);
    border-color: #0056b3;
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.08);
}

.hub-card h5 {
    font-size: 1.05rem;
    color: #0056b3;
    margin-bottom: 8px;
    font-weight: 700;
}

.hub-address {
    font-size: 0.85rem;
    color: #555555;
    line-height: 1.5;
    margin-bottom: 12px;
}

.working-hours {
    font-size: 0.78rem;
    font-weight: 600;
    color: #777777;
    background: #f4f7fc;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

/* ==========================================================================
   9. GALLERY & REVIEWS
   ========================================================================== */
.gallery-section { 
    padding: 80px 5%; 
    text-align: center; 
    background: #ffffff; 
}

.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.gallery-item { 
    position: relative; 
    overflow: hidden; 
    border-radius: 8px; 
    height: 250px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); 
}

.gallery-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.4s ease; 
}

.gallery-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 86, 179, 0.8); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    opacity: 0; 
    transition: opacity 0.3s ease; 
}

.gallery-overlay span { 
    color: #ffffff; 
    font-weight: bold; 
    font-size: 1.2rem; 
    border: 2px solid #ffffff; 
    padding: 8px 15px; 
    border-radius: 4px; 
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.reviews-section {
    padding: 80px 5%;
    background: #fafafa;
    text-align: center;
}

.reviews-section h2 {
    margin-bottom: 40px;
    font-size: 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    border-top: 4px solid #0056b3;
}

.stars {
    color: #ffcc00;
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ==========================================================================
   10. FAQ SECTION
   ========================================================================== */
.faq-section {
    padding: 80px 5%;
    background-color: #fafafa;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 30px auto 0 auto;
    text-align: left;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #eeeeee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #ffffff;
    transition: background 0.3s;
}

.faq-question:hover { background: #f4f7fc; }

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222222;
}

.faq-question i {
    color: #0056b3;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: #ffffff;
    border-top: 1px solid transparent;
}

.faq-answer p {
    color: #555555;
    line-height: 1.6;
    font-size: 0.95rem;
    padding-bottom: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 15px;
    border-top: 1px solid #eeeeee;
}

/* ==========================================================================
   11. CONTACT & MAP SECTION
   ========================================================================== */
.contact-section {
    padding: 90px 5%;
    background: #fdfdfd;
    border-top: 1px solid #eeeeee;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.contact-info-panel {
    flex: 1;
    text-align: left;
}

.contact-info-panel h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #222222;
    margin-bottom: 15px;
}

.contact-info-panel p {
    color: #666666;
    margin-bottom: 35px;
    font-size: 1rem;
}

.contact-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f5;
}

.info-card-item i {
    font-size: 1.5rem;
    color: #0056b3;
    background: #e6f0fa;
    padding: 12px;
    border-radius: 6px;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card-item h4 {
    font-size: 1.1rem;
    color: #222222;
    margin-bottom: 4px;
}

.info-card-item p, 
.info-card-item a {
    font-size: 0.95rem;
    color: #555555;
    text-decoration: none;
}

.contact-map-panel {
    flex: 1;
    min-width: 320px;
}

.map-placeholder-box {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(rgba(0, 86, 179, 0.05), rgba(0, 86, 179, 0.1)), url('https://unsplash.com') no-repeat center center/cover;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #d0daf0;
}

.map-bg-icon {
    font-size: 5rem;
    color: rgba(0, 86, 179, 0.15);
    position: absolute;
}

.map-overlay-card {
    position: relative;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    max-width: 85%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    border-top: 5px solid #ffcc00;
    z-index: 10;
}

.map-overlay-card h4 {
    font-size: 1.25rem;
    color: #222222;
    margin-bottom: 10px;
}

.map-overlay-card p {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.5;
    margin-bottom: 20px;
}

.map-cta-btn {
    display: inline-block;
    background: #0056b3;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.map-cta-btn:hover { background: #003d82; }

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.main-footer {
    background: #222222;
    color: #ffffff;
    text-align: center;
    padding: 25px;
    font-size: 0.9rem;
}

/* ==========================================================================
   13. FLOATING ACTION WIDGETS & MODAL POPUP
   ========================================================================== */
.floating-actions-stack {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99999;
}

.floating-actions-stack .whatsapp-float,
.floating-actions-stack button.quote-float,
.floating-actions-stack a.quote-float {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    animation: continuousFloatingTiltLoop 3s ease-in-out infinite;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    background: #20ba5a;
    color: #ffffff;
}

.whatsapp-float i { font-size: 22px; }

.floating-actions-stack button.quote-float {
    background: #0056b3;
    color: #ffffff;
    animation-delay: 1.5s;
}

.wa-live-red-dot {
    position: absolute;
    top: -4px;
    left: 14px;
    width: 14px;
    height: 14px;
    background-color: #ff3b30;
    border-radius: 50%;
    border: 2px solid #25d366;
    z-index: 10005;
    display: block;
    animation: liveNotificationPulseWave 1.8s infinite ease-in-out;
}

.whatsapp-welcome-bubble {
    position: relative;
    background: #ffffff;
    color: #333333;
    padding: 15px 35px 15px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 275px;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    border-left: 4px solid #25d366;
    z-index: 10000;
    opacity: 0;
}

.bubble-close-x-btn {
    position: absolute;
    top: 6px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #aaaaaa;
    cursor: pointer;
    line-height: 1;
}

.bubble-close-x-btn:hover { color: #333333; }

/* Quote Modal Window Overlay */
.modal-overlay-shroud,
#quoteModalWindow {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay-shroud.modal-open {
    display: flex;
}

.modal-form-container,
#quoteModalWindow > div {
    background: #ffffff;
    color: #333333;
    padding: 40px 35px;
    width: 100%;
    max-width: 440px;
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    border-top: 5px solid #0056b3;
    position: relative;
    text-align: left;
    animation: modalPopIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.modal-close-btn,
#closeQuoteModalBtn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #999999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.modal-close-btn:hover,
#closeQuoteModalBtn:hover {
    color: #0056b3;
}

.modal-form-container h3,
#quoteModalWindow h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 5px;
    line-height: 1.2;
}

.modal-form-subtext,
#quoteModalWindow p {
    font-size: 0.85rem;
    color: #666666;
    margin-bottom: 25px;
    line-height: 1.4;
}

/* ==========================================================================
   14. ANIMATION KEYFRAMES
   ========================================================================== */
@keyframes continuousTiltLoop {
    0% { transform: rotate(0deg); }
    15% { transform: rotate(4deg); }
    30% { transform: rotate(-4deg); }
    45% { transform: rotate(3deg); }
    60% { transform: rotate(-2deg); }
    75% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

@keyframes continuousFloatingTiltLoop {
    0% { transform: rotate(0deg); }
    15% { transform: rotate(5deg); }
    30% { transform: rotate(-5deg); }
    45% { transform: rotate(4deg); }
    60% { transform: rotate(-3deg); }
    75% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

@keyframes navButtonWiggle {
    0%, 100% { transform: rotate(0deg); }
    85% { transform: rotate(0deg); }
    88% { transform: rotate(12deg); }
    91% { transform: rotate(-12deg); }
    94% { transform: rotate(8deg); }
    97% { transform: rotate(-8deg); }
}

@keyframes alternateServiceCircleTilt {
    0%, 100% { transform: rotate(0deg); }
    85% { transform: rotate(0deg); }
    88% { transform: rotate(15deg); }   
    91% { transform: rotate(-15deg); }  
    94% { transform: rotate(10deg); }
    97% { transform: rotate(-10deg); }
}

@keyframes alternateServiceRectangularTilt {
    0%, 100% { transform: rotate(0deg); }
    85% { transform: rotate(0deg); }
    88% { transform: rotate(5deg); }   
    91% { transform: rotate(-5deg); }  
    94% { transform: rotate(3deg); }
    97% { transform: rotate(-3deg); }
}

@keyframes liveNotificationPulseWave {
    0% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(255, 59, 48, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

@keyframes welcomeBubbleFadeInPop {
    from { transform: translateY(15px) scale(0.9); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes modalPopIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ==========================================================================
   15. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hero-text { text-align: center; }
    .hero-features-grid { margin: 0 auto 30px auto; }
    .hero-form-wrapper {
        justify-content: center;
        width: 100%;
    }
    .hero-gradient-overlay-shroud {
        background: linear-gradient(180deg, rgba(0, 15, 40, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
    }
}

/* ==========================================================================
   3. ISOLATED RESPONSIVE MOBILE BAR ADJUSTMENTS (Phones Under 768px ONLY)
   ========================================================================== */
@media (max-width: 768px) {
    
    /* Forces the phone header to stay horizontally straight with a clean row layout */
    .main-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 15px !important;
        background: #ffffff !important;
        z-index: 99999 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
        height: 65px !important;
    }

    /* Shuts off messy plain-text desktop navigation links on phone viewports */
    .nav-links {
        display: none !important;
    }

    /* Restores clear boundary scaling constraints over branding images */
    .logo img {
        max-height: 42px !important;
        width: auto !important;
        display: block !important;
    }
    
    /* Hides duplicate header texts to provide full space for the active buttons */
    .logo-text {
        display: none !important; 
    }

    /* Arranges Call, WhatsApp, and Menu items in a perfectly spaced straight line */
    .nav-action-circles {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px !important;
        margin: 0 !important;
    }

    /* Formats the layout nodes into small responsive action circles */
    .circle-btn {
        width: 38px !important;
        height: 38px !important;
        border-radius: 50% !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12) !important;
        transform: none !important;
        animation: none !important;
    }

    /* Forces nested vector graphic layers to retain square proportions */
    .circle-btn img {
        width: 20px !important;
        height: 20px !important;
        max-width: 20px !important;
        max-height: 20px !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    /* 🌟 DECREASED HERO BANNER SIZE FOR MOBILE DEVICES 🌟 */
    .hero-section {
        min-height: 380px !important; /* Brought down from 620px so it takes up less space */
        padding: 85px 20px 30px 20px !important; /* Adjusted top padding to clear header and text fields */
        display: flex !important;
        align-items: center !important;
    }

    /* Scales down the large headline typography so everything sits neatly inside the smaller block */
    .hero-text h1 {
        font-size: 1.8rem !important; /* Reduced headline from 3.2rem to fit the small banner aspect */
        margin-bottom: 10px !important;
        line-height: 1.2 !important;
    }

    /* Cleans up paragraphs inside your shorter banner wrapper block */
    .hero-text p {
        font-size: 0.95rem !important;
        margin-bottom: 20px !important;
        line-height: 1.4 !important;
    }

    /* Shrinks badge taglines slightly to keep things in proportion */
    .hero-tagline {
        padding: 5px 12px !important;
        font-size: 0.75rem !important;
        margin-bottom: 12px !important;
    }

    /* Decreases spacing inside the internal checklist features box columns matrix */
    .hero-features-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Forces a tight 2x2 square instead of long list entries */
        gap: 8px !important;
        margin-bottom: 20px !important;
    }

    .feat-card {
        padding: 8px 10px !important;
    }

    .feat-card span {
        font-size: 0.8rem !important;
    }

    /* Standardizes clean responsive stacking for remaining section panels below header */
    .brands-container,
    .about-container,
    .contact-container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 40px !important;
    }
    .brands-grid {
        justify-content: center !important;
    }
    .locations-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}
    

    /* Clean spacing patches for custom height parameters */
    div[style*="margin: 50px auto;"] {
        margin: 20px auto !important;
        padding: 0 15px !important;
    }
    div[style*="height: 380px;"] {
        height: 220px !important; 
        margin-bottom: 20px !important;
    }
    div[style*="margin: 0 auto 40px auto;"] {
        margin-bottom: 25px !important;
        gap: 10px !important;
        max-width: 100% !important;
    }
    .services-section h1 {
        font-size: 1.8rem !important;
        margin-bottom: 12px !important;
        line-height: 1.3 !important;
    }
}

@media (max-width: 600px) {
    .whatsapp-welcome-bubble { display: none !important; }
    .wa-live-red-dot {
        left: auto !important;
        right: -2px !important;
        top: -2px !important;
    }
    .floating-actions-stack {
        bottom: 20px !important;
        right: 20px !important;
        gap: 12px !important;
    }
    .floating-actions-stack span:not(.wa-live-red-dot) {
        display: none !important;
    }
    .floating-actions-stack .whatsapp-float,
    .floating-actions-stack button.quote-float {
        padding: 15px !important;
        border-radius: 50% !important;
        width: 50px !important;
        height: 50px !important;
    }
}  /* Closing bracket safely restored to unlock the engine layout loops */




    /* ==========================================================
   18. PREMIUM STAGGERED BOUNCE WAVE FOR ALL 12 GRID CARDS
   ========================================================== */
.services-grid .service-box {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
    
    /* Attaches the high-authority continuous bouncing loop */
    animation: professionalGridBoxBounce 4s ease-in-out infinite !important;
}

/* Staggers the bounce timeline coordinates across the matrix rhythm rows */
.services-grid .service-box:nth-child(1)  { animation-delay: 0.0s !important; }
.services-grid .service-box:nth-child(2)  { animation-delay: 0.2s !important; }
.services-grid .service-box:nth-child(3)  { animation-delay: 0.4s !important; }
.services-grid .service-box:nth-child(4)  { animation-delay: 0.6s !important; }
.services-grid .service-box:nth-child(5)  { animation-delay: 0.8s !important; }
.services-grid .service-box:nth-child(6)  { animation-delay: 1.0s !important; }
.services-grid .service-box:nth-child(7)  { animation-delay: 1.2s !important; }
.services-grid .service-box:nth-child(8)  { animation-delay: 1.4s !important; }
.services-grid .service-box:nth-child(9)  { animation-delay: 1.6s !important; }
.services-grid .service-box:nth-child(10) { animation-delay: 1.8s !important; }
.services-grid .service-box:nth-child(11) { animation-delay: 2.0s !important; }
.services-grid .service-box:nth-child(12) { animation-delay: 2.2s !important; }

/* Freezes the loop motion instantly when a client points their cursor over the container */
.services-grid .service-box:hover {
    animation-play-state: paused !important;
    transform: translateY(-8px) scale(1.02) !important; /* Holds a clean hovering lift focus */
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.12) !important;
    transition: all 0.3s ease !important;
}

/* --- THE TIMELINE AXIS TRACK FOR BOX LIFTS --- */
@keyframes professionalGridBoxBounce {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    }
    50% {
        transform: translateY(-10px); /* Smoothly lifts the entire 3D card box up by 10 pixels */
        box-shadow: 0 12px 25px rgba(0, 86, 179, 0.06); /* Expands the shadow depth dynamically */
    }
} /* 🌟 FIXED: This closing bracket was missing, which broke all code written below it! */

/* ==========================================================================
   📱 MOBILE OVERLAY SLIDING DRAWER MENU SYSTEM
   ========================================================================== */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%; /* Keeps drawer tucked off-screen by default */
    width: 280px;
    height: 100vh;
    background: #ffffff;
    z-index: 1000000; /* Layers over header, overlays, and animated elements */
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1); /* Premium fluid slide curve */
    display: flex;
    flex-direction: column;
}

/* Active class toggled instantly via JavaScript interaction */
.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    border-bottom: 1px solid #eeeeee;
    background: #0056b3;
    color: #ffffff;
}

.drawer-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.drawer-close-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

.drawer-body {
    flex: 1;
    overflow-y: auto; /* Handles screen scrolling constraints smoothly */
    padding: 10px 0;
}

.drawer-body a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: #333333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid #f9f9f9;
    transition: background 0.2s, color 0.2s;
}

.drawer-body a i {
    color: #0056b3;
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.drawer-body a:hover,
.drawer-body a:active {
    background-color: #f4f7fc;
    color: #0056b3;
}

/* Fail-Safe Dark Backdrop Tint Overlay */
.drawer-backdrop-shield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999998; /* Sits exactly 1 layer beneath the active mobile drawer */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.drawer-backdrop-shield.visible {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   🎯 DESKTOP ALIGNMENT FIX FOR FLOAT WIDGETS (Sits ABOVE @media queries)
   ========================================================================== */
.floating-actions-stack {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important; /* Lines up button trailing edges straight on the right */
    gap: 15px !important;
    width: auto !important; /* Allows containers to expand dynamically based on text length */
    max-width: 320px !important;
    z-index: 99999 !important;
}

/* 🟢 WhatsApp Container & Pop-up Bubble Alignment Resets */
.whatsapp-float {
    position: relative !important; /* Stops it from breaking loose from the stack */
    bottom: auto !important;
    right: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 12px 24px !important; /* Even tracking margins for text container */
    background: #25d366 !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
    white-space: nowrap !important; /* ❌ Crucial: Forces "Chat with us" to stay on one single line */
}

/* 🔵 Get Quote Button Dimensional Polish */
.floating-actions-stack button.quote-float,
.floating-actions-stack a.quote-float {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 24px !important; /* Uniform height padding scales match WhatsApp button sizes */
    background: #0056b3 !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3) !important;
    cursor: pointer !important;
    white-space: nowrap !important; /* Keeps text fields on one line */
    width: fit-content !important; /* Binds parent box layout dimensions tightly */
}

/* 🔴 Live Indicator Red Dot Tracking Re-alignment */
.wa-live-red-dot {
    position: absolute !important;
    top: -3px !important;
    left: -3px !important; /* Snaps indicator safely on the leading layout border track */
    right: auto !important;
}


/* ==========================================================================
   📱 ISOLATED MOBILE RE-ALIGNMENT PATCH (Phones Under 768px ONLY)
   ========================================================================== */
@media (max-width: 768px) {
    /* Stabilize mobile fixed navigation track container dimensions perfectly */
    .main-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 65px !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 12px !important; /* Slightly tighter padding gives more text space */
        background: #ffffff !important;
        z-index: 999999 !important; 
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }

    /* Suppress desktop raw text navigation links */
    .nav-links {
        display: none !important;
    }

    /* Keep brand logo image well-proportioned within the 65px header height */
    .logo img {
        max-height: 40px !important;
        width: auto !important;
        display: block !important;
    }
    
    /* 🌟 RE-REVEAL & ALIGN BRAND TEXT FOR MOBILE SCREENS */
    .logo-text {
        display: flex !important; /* Re-reveals text fields */
        flex-direction: column !important;
        text-align: left !important;
        margin-left: -4px !important; /* Draws text slightly closer to the logo icon image */
    }

    /* Scales down the main brand name dynamically to stay on one row */
    .brand-name {
        font-size: 1.15rem !important; /* Balanced sizing for mobile screens */
        font-weight: 700 !important;
        color: #0056b3 !important;
        line-height: 1.1 !important;
    }

    /* Scales down subtext to keep the presentation neat */
    .brand-sub {
        font-size: 0.65rem !important;
        font-weight: 600 !important;
        color: #555555 !important;
        letter-spacing: 0.5px !important; /* Tighter letter-spacing stops text wrapping */
        margin-top: 1px !important;
    }

    /* Force button wrapper to convert automatically into a re-aligned row layout track */
    .header-actions-wrapper {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important; /* Tighter gap ensures all 3 image circles stay grouped */
        margin: 0 !important;
    }

    /* Hide desktop text strings automatically on phone viewports */
    .btn-text-label {
        display: none !important;
    }

    /* 🎯 UNIFIED CIRCLE TRANSFORMATION: Converts links and buttons into circular shapes */
    .header-actions-wrapper .nav-tilt-btn,
    .header-actions-wrapper .mobile-menu-btn {
        width: 36px !important; /* Shrunk slightly to 36px to give brand text maximum layout width */
        height: 36px !important;
        border-radius: 50% !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12) !important;
        padding: 0 !important;
        margin: 0 !important;
        transform: none !important;
        animation: none !important;
        border: none !important;
    }

    /* Reveal the mobile menu button next to the links */
    .mobile-menu-btn {
        display: inline-flex !important;
        background: #222222 !important;
        cursor: pointer !important;
    }

    /* Ensure specific baseline background fills remain operational */
    .call-tilt { background: #0056b3 !important; }
    .wa-tilt   { background: #25d366 !important; }

    /* 📐 IMAGE PROPORTIONS: Controls the size of all inner image tags inside the circles */
    .header-actions-wrapper .nav-tilt-btn img,
    .header-actions-wrapper .mobile-menu-btn img {
        width: 18px !important;
        height: 18px !important;
        max-width: 18px !important;
        max-height: 18px !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
}



