/* ==========================================================================
   MAIN STYLESHEET - ELV PROTECTOR
   Unified consolidated CSS for the entire website.
   No separate external files or @imports.
   ========================================================================== */

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

/* ==========================================================================
   TYPOGRAPHY & CORE VARIABLES / NAVIGATION
   ========================================================================== */

html, body {
    font-family: 'Outfit', sans-serif;
}

:root {
    --dark-navy: #030f26;
    --primary-blue: #0a4ebd;
    --accent-gold: #ffb300;
    --text-dark: #20344d;
    --white: #ffffff;
}

/* Top Slim Bar */
.top-bar {
    background: var(--dark-navy);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s ease, color 0.2s ease;
    font-weight: 500;
}

.top-bar a:hover {
    color: var(--accent-gold);
    opacity: 1;
}

.top-bar .divider-line {
    color: rgba(255, 255, 255, 0.2);
}

.text-primary-light {
    color: #6da2f8;
}

/* Top Bar Badge Pills */
.top-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--accent-gold);
    background: rgba(255, 179, 0, 0.06);
    color: var(--white);
    font-weight: 700;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.2px;
}

.top-badge-pill i {
    font-size: 12px;
}

.top-badge-text {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Main Sticky Header */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    box-shadow: none;
    height: 80px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    position: fixed;
    background: rgba(3, 15, 38, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.brand-wrap {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    width: 210px;
    height: 70px;
    object-fit: contain;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.desktop-nav .nav-link {
    position: relative;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.25s ease;
    padding: 28px 0;
    display: flex;
    align-items: center;
}

.desktop-nav .nav-link i {
    font-size: 11px;
    font-weight: 800;
}

.desktop-nav .nav-link:hover {
    color: #00b4d8;
}

/* Active Link State with bottom line indicator */
.desktop-nav .nav-link.active {
    color: #00b4d8;
}

.desktop-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #00b4d8;
    border-radius: 3px 3px 0 0;
}

/* Dropdown Menu Styling */
.desktop-nav .nav-item.dropdown {
    position: relative;
}

.desktop-nav .dropdown-toggle::after {
    display: none !important; /* Hide default bootstrap caret */
}

.desktop-nav .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    border: 1px solid rgba(3, 15, 38, 0.08);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(3, 15, 38, 0.1);
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    margin: 0;
    z-index: 1000;
}

.desktop-nav .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-nav .dropdown-item {
    display: block;
    width: 100%;
    padding: 8px 20px;
    clear: both;
    font-weight: 600;
    color: #4a5c73;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    font-size: 14px;
    transition: all 0.2s ease;
}

.desktop-nav .dropdown-item:hover {
    color: var(--primary-blue);
    background-color: #f0f7ff;
    padding-left: 24px;
}

.desktop-nav .dropdown-item.active {
    color: var(--primary-blue);
    background-color: #e2eeff;
    padding-left: 24px;
}

/* Action Quote/Phone Button */
@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.6);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(0, 180, 216, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 180, 216, 0);
    }
}

.btn-phone {
    background: #00b4d8;
    color: var(--white);
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 0;
    box-shadow: 0 4px 12px rgba(0, 180, 216, 0.2);
    animation: btnPulse 2s infinite;
}

.btn-phone:hover {
    background: #0096c7;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 180, 216, 0.35);
}

.btn-phone i {
    font-size: 18px;
}

/* Hamburger Button */
.hamburger {
    background: transparent;
    border: 0;
    outline: none;
    padding: 6px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--white);
    border-radius: 10px;
    transition: background-color 0.25s ease;
}

.hamburger:hover span {
    background-color: #00b4d8;
}

/* Full Screen Mega Menu (Overlay backdrop) */
.mega-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 15, 38, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
    overflow: hidden;
}

body.menu-open {
    overflow: hidden;
}

.mega-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Slide-in Drawer Container */
.mega-inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 360px;
    background: #ffffff;
    height: 100%;
    overflow-y: auto;
    box-shadow: -5px 0 25px rgba(3, 15, 38, 0.15);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 70px 24px 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mega-overlay.active .mega-inner {
    transform: translateX(0);
}

/* Close Button (top-right of drawer) */
.mega-close {
    position: absolute !important;
    z-index: 2010;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(3, 15, 38, 0.08);
    background: #ffffff;
    color: var(--text-dark);
    font-size: 20px;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 12px rgba(4, 27, 61, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.mega-close:hover {
    background: #f5f8fc;
    color: var(--primary-blue);
    transform: rotate(90deg);
}

/* Top Brand Card */
.mega-brand-card {
    background: #f5f9ff;
    border: 1px solid #e2eeff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(10, 78, 189, 0.02);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mega-logo {
    width: 110px;
    height: auto;
    object-fit: contain;
    margin-bottom: 4px;
}

.mega-brand-card .brand-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark-navy);
    margin: 0;
}

.mega-brand-card p {
    color: #506176;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Call Buttons in Brand Card */
.mega-call-btn-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.mega-call-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--primary-blue);
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(10, 78, 189, 0.2);
}

.mega-call-primary:hover {
    background: #083c93;
    color: #ffffff;
    transform: translateY(-1px);
}

.mega-call-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f0f6fe;
    color: var(--primary-blue);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid #d2e4fc;
    transition: all 0.2s ease;
}

.mega-call-secondary:hover {
    background: #e2eeff;
    color: var(--primary-blue);
    transform: translateY(-1px);
}

/* Mobile Accordion Navigation System */
.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-heading {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark-navy);
    margin: 12px 0 8px 4px;
}

.mobile-nav-item {
    border-bottom: 1px solid #f2f5fa;
}

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

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    background: none;
    border: none;
    text-decoration: none;
    text-align: left;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover, .mobile-nav-link:focus {
    color: var(--primary-blue);
}

.mobile-nav-link i.toggle-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Accordion Active / Expanded State */
.mobile-nav-item.active .mobile-nav-link {
    color: var(--primary-blue);
}

.mobile-nav-item.active .toggle-icon {
    transform: rotate(180deg);
}

/* Mobile Dropdown Sub-menu */
.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    display: flex;
    flex-direction: column;
    background: #fbfcfd;
    border-radius: 8px;
    margin: 0 4px 8px 4px;
}

.mobile-nav-item.active .mobile-dropdown-menu {
    max-height: 500px; /* high enough limit for CSS transitions */
    transition: max-height 0.3s cubic-bezier(0.9, 0, 0.1, 1);
    padding: 6px 0;
    border: 1px solid #f2f5fa;
}

.mobile-dropdown-menu a {
    padding: 8px 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: #506176;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-dropdown-menu a:hover {
    color: var(--primary-blue);
    padding-left: 20px;
    background: #f5f9ff;
}

.mobile-dropdown-menu a.active {
    color: var(--primary-blue);
    background-color: #f5f9ff;
    padding-left: 20px;
}

/* Secondary links at the bottom */
.mobile-sec-links {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding-top: 16px;
    border-top: 1px solid #f2f5fa;
}

.mobile-sec-links a {
    font-size: 12px;
    font-weight: 600;
    color: #8da2bb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-sec-links a:hover {
    color: var(--primary-blue);
}

/* Responsive Rules */
@media (max-width: 991px) {
    .main-header {
        height: 70px;
    }

    .brand-logo {
        width: 170px;
        height: 60px;
    }

    /* Smaller Quote Button for Mobile */
    .btn-quote {
        padding: 6px 14px;
        font-size: 12px;
        border-radius: 30px;
    }

    .btn-quote i {
        font-size: 14px;
    }

    /* Centered contact text in mobile top bar */
    .top-bar-mobile {
        font-size: 12px;
    }

    .top-bar-mobile a {
        font-size: 12px;
    }

    .top-badge-pill {
        font-size: 10px;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .top-bar-mobile {
        font-size: 11px;
    }

    .top-bar-mobile a {
        font-size: 11px;
    }

    .top-badge-pill {
        font-size: 9px;
        padding: 2px 6px;
    }

    .brand-logo {
        width: 140px;
        height: 50px;
    }
}

.mega-call-secondary:hover {
    background: #e2eeff;
    color: var(--primary-blue);
    transform: translateY(-1px);
}

/* Mobile Accordion Navigation System */
.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-heading {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark-navy);
    margin: 12px 0 8px 4px;
}

.mobile-nav-item {
    border-bottom: 1px solid #f2f5fa;
}

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

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    background: none;
    border: none;
    text-decoration: none;
    text-align: left;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover, .mobile-nav-link:focus {
    color: var(--primary-blue);
}

.mobile-nav-link i.toggle-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Accordion Active / Expanded State */
.mobile-nav-item.active .mobile-nav-link {
    color: var(--primary-blue);
}

.mobile-nav-item.active .toggle-icon {
    transform: rotate(180deg);
}

/* Mobile Dropdown Sub-menu */
.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    display: flex;
    flex-direction: column;
    background: #fbfcfd;
    border-radius: 8px;
    margin: 0 4px 8px 4px;
}

.mobile-nav-item.active .mobile-dropdown-menu {
    max-height: 500px; /* high enough limit for CSS transitions */
    transition: max-height 0.3s cubic-bezier(0.9, 0, 0.1, 1);
    padding: 6px 0;
    border: 1px solid #f2f5fa;
}

.mobile-dropdown-menu a {
    padding: 8px 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: #506176;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-dropdown-menu a:hover {
    color: var(--primary-blue);
    padding-left: 20px;
    background: #f5f9ff;
}

.mobile-dropdown-menu a.active {
    color: var(--primary-blue);
    background-color: #f5f9ff;
    padding-left: 20px;
}

/* Secondary links at the bottom */
.mobile-sec-links {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding-top: 16px;
    border-top: 1px solid #f2f5fa;
}

.mobile-sec-links a {
    font-size: 12px;
    font-weight: 600;
    color: #8da2bb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-sec-links a:hover {
    color: var(--primary-blue);
}

/* Responsive Rules */
@media (max-width: 991px) {
    .main-header {
        height: 70px;
    }

    .brand-logo {
        width: 170px;
        height: 60px;
    }

    /* Smaller Quote Button for Mobile */
    .btn-quote {
        padding: 6px 14px;
        font-size: 12px;
        border-radius: 30px;
    }

    .btn-quote i {
        font-size: 14px;
    }

    /* Centered contact text in mobile top bar */
    .top-bar-mobile {
        font-size: 12px;
    }

    .top-bar-mobile a {
        font-size: 12px;
    }

    .top-badge-pill {
        font-size: 10px;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .top-bar-mobile {
        font-size: 11px;
    }

    .top-bar-mobile a {
        font-size: 11px;
    }

    .top-badge-pill {
        font-size: 9px;
        padding: 2px 6px;
    }

    .brand-logo {
        width: 140px;
        height: 50px;
    }
}

/* Responsive Floating Contact Bar */

.mobile-bottom-bar {
    display: flex;
    position: fixed;
    z-index: 1050;
}

.mobile-bottom-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #fff !important;
    text-decoration: none;
    border: none;
    outline: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.mobile-bottom-btn i {
    font-size: 18px;
}

.btn-call-bottom { background: #0077b6; }
.btn-call-bottom:hover { background: #023e8a; transform: scale(1.05); }
.btn-call-bottom i { animation: pulse-icon 1.5s infinite ease-in-out; }

.btn-whatsapp-bottom { background: #075e54; }
.btn-whatsapp-bottom:hover { background: #054039; transform: scale(1.05); }

.btn-quote-bottom { background: #0056b3; }
.btn-quote-bottom:hover { background: #004494; transform: scale(1.05); }

@keyframes pulse-icon {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Mobile Layout: Full Width Tabs */
@media (max-width: 991px) {
    .mobile-bottom-bar {
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
        height: 60px;
        flex-direction: row;
    }
    .mobile-bottom-btn {
        flex: 1;
        border-radius: 0;
    }
    .btn-call-bottom:hover, .btn-whatsapp-bottom:hover, .btn-quote-bottom:hover {
        transform: none; /* No scale on mobile tabs */
    }
    body {
        padding-bottom: 60px !important;
    }
}

/* Desktop Layout: Floating Vertical Stack */
@media (min-width: 992px) {
    .mobile-bottom-bar {
        bottom: 30px;
        right: 30px;
        left: auto;
        width: auto;
        flex-direction: column;
        gap: 10px;
        background: transparent;
        box-shadow: none;
    }
    .mobile-bottom-btn {
        border-radius: 50px;
        padding: 8px 18px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        justify-content: flex-start;
        min-width: 130px;
    }
}

/* ==========================================================================
   SLIDER & HERO SECTION
   ========================================================================== */

/* --- Home Page Slider Styles --- */

:root {
    --hero-bg: url("../images/slider/slider.jpg");
}

.home-page-slider {
    position: relative;
    padding-top: 160px;
    padding-bottom: 60px;
    overflow: hidden;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
}

@media (max-width: 991px) {
    .home-page-slider {
        background-position: 80% top;
    }
}

.home-page-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            #031633 0%,
            rgba(3, 22, 51, 0.96) 35%,
            rgba(3, 22, 51, 0.65) 65%,
            rgba(3, 22, 51, 0.1) 100%);
    z-index: 1;
}

.home-page-slider-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-col {
    padding-top: 0;
    padding-bottom: 12px;
}

.hero-eyebrow {
    color: #38bdf8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.hero-title .accent-text {
    color: #38bdf8;
}

.hero-lead {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin-bottom: 0;
}

.btn-explore {
    background: #023e8a;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background: #00b4d8;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--white);
    color: #023e8a;
}

/* Quote Form Card Container */
.hero-quote-card-container {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 12px 14px 12px 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    margin-top: 12px;
    position: relative;
    z-index: 10;
}

.hero-quote-header {
    margin-bottom: 8px;
    padding-left: 6px;
}

.hero-quote-title {
    font-size: 20px;
    font-weight: 800;
    color: black;
    margin: 0;
    letter-spacing: 0.5px;
    font-family: 'Outfit', sans-serif;
}

.hero-quote-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin: 3px 0 0 0;
    font-family: 'Outfit', sans-serif;
}

.hero-quote-white-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.card-body-form {
    padding: 12px;
}

.form-row-custom {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    width: 100%;
}

.input-wrap-custom {
    position: relative;
    flex: 1;
    min-width: 0;
}

.floating-label-custom {
    position: absolute;
    left: 32px;
    top: 13px;
    font-size: 13px;
    color: #475569;
    pointer-events: none;
    transition: 0.2s ease all;
    background: transparent;
}

.form-control-custom:focus ~ .floating-label-custom,
.form-control-custom:not(:placeholder-shown) ~ .floating-label-custom {
    top: -8px;
    left: 28px;
    font-size: 10px;
    font-weight: 600;
    color: #0a4ebd;
    background: #ffffff;
    padding: 0 4px;
}

.input-icon-custom {
    position: absolute;
    left: 10px;
    top: 22px;
    transform: translateY(-50%);
    color: #475569;
    font-size: 15px;
    pointer-events: none;
}

.form-control-custom {
    width: 100%;
    height: 44px;
    padding-left: 32px;
    padding-right: 10px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
    color: #1e293b;
    background: transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    font-family: 'Outfit', sans-serif;
}

.form-control-custom:focus {
    border-color: #0a4ebd;
    box-shadow: 0 0 0 3px rgba(10, 78, 189, 0.1);
}

.select-wrap-custom {
    position: relative;
    display: flex;
    flex-direction: column;
}

.select-label-custom {
    position: absolute;
    left: 10px;
    top: 5px;
    font-size: 8px;
    color: #475569;
    font-weight: 700;
    text-transform: uppercase;
    pointer-events: none;
    line-height: 1;
}

.form-select-custom {
    width: 100%;
    height: 44px;
    padding-top: 15px;
    padding-left: 10px;
    padding-right: 24px;
    border: 1px solid #dcdfe6;
    border-radius: 8px;
    font-size: 13px;
    color: #2d3748;
    background-color: #ffffff;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%237c8ba1' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 9px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: 'Outfit', sans-serif;
}

.form-select-custom:focus {
    border-color: #0a4ebd;
    box-shadow: 0 0 0 3px rgba(10, 78, 189, 0.1);
}

.btn-submit-custom {
    background: #0a4ebd;
    color: #ffffff;
    border: 0;
    border-radius: 8px;
    height: 44px;
    padding: 0 12px;
    font-weight: 700;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    outline: none;
    font-family: 'Outfit', sans-serif;
}

.btn-submit-custom:hover {
    background: #003ba8;
}

.btn-submit-custom:active {
    transform: scale(0.98);
}

.submit-btn-icon-desktop {
    display: inline-block;
}

.submit-btn-icon-mobile {
    display: none;
}

/* Card Footer Trust Bar (Desktop) */
.card-footer-trust {
    background: #ffffff;
    border-top: 1px solid #edf2f7;
    padding: 8px 12px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: center;
}

.trust-item:first-child {
    justify-content: flex-start;
}

.trust-item:last-child {
    justify-content: flex-end;
}

.trust-icon {
    font-size: 24px;
    color: #0a4ebd;
}

.trust-icon-circle {
    font-size: 13px;
    color: #ffffff;
    background: #0a4ebd;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.trust-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.trust-text strong {
    font-size: 12.5px;
    color: #031b4e;
    font-weight: 700;
}

.trust-text span {
    font-size: 10.5px;
    color: #7c8ba1;
}

.divider-vertical {
    width: 1px;
    height: 28px;
    background: #edf2f7;
}

/* Mobile Trust Elements */
.mobile-trust-bar {
    box-shadow: inset 0 1px 0 #edf2f7;
    background: #ffffff;
}

.trust-mobile-item {
    border-right: 1px solid #edf2f7;
    padding-left: 2px;
    padding-right: 2px;
}

.trust-mobile-item:last-child {
    border-right: none;
}

.mobile-trust-bar .trust-icon {
    font-size: 20px;
    color: #0d47a1;
}

.mobile-trust-bar .trust-icon-circle {
    font-size: 11px;
    color: #0d47a1;
    background: transparent;
    border: 1.5px solid #0d47a1;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
}

.trust-mobile-item strong {
    font-size: 10.5px;
    color: #031b4e;
    margin-top: 6px;
    font-weight: 700;
    line-height: 1.2;
    display: block;
}

.trust-mobile-item span {
    font-size: 8.5px;
    color: #7c8ba1;
    line-height: 1.2;
    display: block;
    margin-top: 2px;
}

.mobile-security-tag {
    font-size: 12px;
    color: #506176;
    font-weight: 600;
}

/* Hero Services bottom bar */
.hero-services-bar {
    background: #030f26;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 0;
    color: #ffffff;
}

.service-bar-col {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.service-bar-col:last-child {
    border-right: 0;
}

.service-bar-item {
    justify-content: center;
    width: 100%;
}

.service-bar-icon {
    font-size: 20px;
    color: #6da2f8;
}

.service-bar-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.service-bar-text strong {
    font-size: 13.5px;
    font-weight: 700;
}

.service-bar-text span {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.6);
}

/* Validation Style Adjustments for inline error */
.field-error-msg {
    margin-top: 4px !important;
}

/* --- Responsive Adaptations --- */

@media (max-width: 991px) {
 

    .home-page-slider {
        padding-top: 100px;
        padding-bottom: 30px;
    }

    .hero-text-col {
        text-align: left !important;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 15px;
    }

    .hero-lead {
        text-align: left;
        max-width: 480px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .hero-quote-card-container {
        margin-top: 15px;
        padding: 12px 10px 10px 10px;
        border-radius: 16px;
    }

    .hero-quote-header {
        margin-bottom: 10px;
        text-align: left;
        padding-left: 6px;
    }

    .hero-quote-title {
        font-size: 18px;
    }

    .hero-quote-subtitle {
        font-size: 11px;
    }

    .hero-quote-white-card {
        border-radius: 10px;
    }

    .card-body-form {
        padding: 12px;
    }

    .form-row-custom {
        flex-direction: column;
        gap: 8px;
    }

    .input-wrap-custom {
        width: 100%;
    }

    .form-control-custom {
        height: 40px;
        font-size: 12.5px;
        padding-left: 30px;
    }

    .form-select-custom {
        height: 40px;
        font-size: 12.5px;
        padding-top: 13px;
        padding-bottom: 1px;
    }

    .btn-submit-custom {
        width: 100%;
        height: 40px;
        font-size: 13px;
    }

    .submit-btn-icon-desktop {
        display: none;
    }

    .submit-btn-icon-mobile {
        display: inline-block;
    }

    /* Stack Moving From & Moving To side by side on Mobile */
    .half-width-mobile {
        width: calc(50% - 4px) !important;
        flex: none;
    }

    /* We combine them in a row */
    .form-row-custom {
        display: flex;
        flex-flow: row wrap;
    }

    .form-row-custom > :not(.half-width-mobile) {
        width: 100%;
        flex: none;
    }

    .service-bar-col {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 10px 0;
    }

    .service-bar-col:nth-child(even) {
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }

    .service-bar-col:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .service-bar-item {
        padding-left: 15px;
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-lead {
        font-size: 13.5px;
    }

    .hero-buttons {
        flex-wrap: nowrap !important;
        gap: 10px !important;
    }

    .btn-explore, .btn-outline {
        padding: 10px 12px;
        font-size: 12px;
        flex: 1;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
    }

    .btn-explore i, .btn-outline i {
        font-size: 11px;
    }

    .service-bar-text strong {
        font-size: 12px;
    }

    .service-bar-text span {
        font-size: 9.5px;
    }
}

/* --- Shared Form & Common Styles (Vertical Sidebar Forms) --- */
.quote-card {
    background: var(--white);
    color: #1d2b3a;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.quote-head {
    background: linear-gradient(135deg, #003b8f, #00245d);
    color: var(--white);
    padding: 12px 16px;
    position: relative;
}

.quote-head h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.quote-head h3 span {
    color: #ff7a16;
}

.quote-head p {
    margin: 4px 0 0;
    font-size: 12px;
    opacity: 0.9;
}

.quote-badge {
    position: absolute;
    right: 16px;
    top: 14px;
    width: 42px;
    height: 42px;
    background: #ff7a16;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 20px;
}

.quote-body {
    padding: 10px 16px 8px;
}

.form-label {
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 4px;
}

.form-label span {
    color: #ff7a16;
}

.form-control,
.form-select {
    height: 36px;
    border-radius: 4px;
    font-size: 12px;
    border-color: #d9dee7;
    box-shadow: none !important;
}

.submit-btn {
    width: 100%;
    height: 42px;
    margin-top: 4px;
    border: 0;
    border-radius: 40px;
    background: linear-gradient(90deg, #ff7a16, #ff9a22);
    color: var(--white);
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    position: relative;
}

.submit-btn i {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 30px;
    height: 30px;
    background: var(--white);
    color: #ff7a16;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 14px;
}

.quote-footer {
    background: #003176;
    color: var(--white);
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 11px;
}

.quote-footer div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.quote-footer i {
    font-size: 18px;
}

@media (max-width: 991px) {
    .quote-card {
        margin-top: 26px;
    }
}

/* ==========================================================================
   DYNAMIC BREADCRUMBS
   ========================================================================== */

/* Dynamic Breadcrumbs Styles */
.dynamic-bc-section {
    padding: 200px 0 80px 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.dyn-bc-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.dyn-bc-nav a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}
.dyn-bc-nav a:hover { color: #ffffff; }
.dyn-bc-nav .dyn-bc-sep {
    color: rgba(255,255,255,0.5);
    font-size: 16px;
    margin: 0;
}
.dyn-bc-nav .dyn-bc-current {
    color: #ffffff;
    font-weight: 600;
}

.dynamic-bc-section h1 {
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    color: #ffffff;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.dyn-bc-desc {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .dynamic-bc-section { padding: 120px 0 60px 0; }
    .dynamic-bc-section h1 { font-size: 1.5rem; }
}

/* ==========================================================================
   HOME MODULES
   ========================================================================== */

/* --- Home Page Modules: Services Grid Section --- */

.services-section {
    background-color: #ffffff;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

/* Background Decor Elements */
.services-section .services-decor {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.services-section .decor-top-left {
    top: 0;
    left: 0;
    width: 320px;
    height: 320px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300' fill='none'><path d='M0 0 C 220 0, 160 220, 0 300 Z' fill='url(%23grad1)' opacity='0.7'/><path d='M0 0 C 170 0, 110 170, 0 220 Z' fill='url(%23grad2)' opacity='0.45'/><defs><linearGradient id='grad1' x1='0' y1='0' x2='1' y2='1'><stop offset='0%' stop-color='%236da2f8'/><stop offset='100%' stop-color='%230a4ebd'/></linearGradient><linearGradient id='grad2' x1='0' y1='0' x2='1' y2='1'><stop offset='0%' stop-color='%230a4ebd'/><stop offset='100%' stop-color='%23030f26'/></linearGradient></defs></svg>");
    background-size: contain;
    background-repeat: no-repeat;
}

.services-section .decor-top-right {
    top: 0;
    right: 0;
    width: 160px;
    height: 160px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='none'><pattern id='dots' x='0' y='0' width='16' height='16' patternUnits='userSpaceOnUse'><circle cx='3' cy='3' r='2' fill='%230a4ebd' opacity='0.15'/></pattern><rect width='100' height='100' fill='url(%23dots)'/></svg>");
    background-size: 80px 80px;
}

.services-section .decor-bottom-right {
    bottom: 0;
    right: 0;
    width: 320px;
    height: 320px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300' fill='none'><path d='M300 300 C 80 300, 140 80, 300 0 Z' fill='url(%23grad1)' opacity='0.7'/><path d='M300 300 C 130 300, 190 130, 300 80 Z' fill='url(%23grad2)' opacity='0.45'/><defs><linearGradient id='grad1' x1='1' y1='1' x2='0' y2='0'><stop offset='0%' stop-color='%236da2f8'/><stop offset='100%' stop-color='%230a4ebd'/></linearGradient><linearGradient id='grad2' x1='1' y1='1' x2='0' y2='0'><stop offset='0%' stop-color='%230a4ebd'/><stop offset='100%' stop-color='%23030f26'/></linearGradient></defs></svg>");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Header Decor */
.services-section .section-header {
    margin-bottom: 30px;
    position: relative;
}

.services-section .header-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-section .section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #0a4ebd;
    margin: 0 15px;
    text-transform: uppercase;
}

.services-section .header-line {
    height: 2px;
    width: 120px;
    background-color: #0a4ebd;
}

.services-section .header-dot {
    width: 6px;
    height: 6px;
    background-color: #0a4ebd;
    border-radius: 50%;
}

.services-section .left-dot {
    margin-left: 8px;
}

.services-section .right-dot {
    margin-right: 8px;
}

/* Truck Icon & Speed Lines styling */
.services-section .header-truck-wrap {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.services-section .truck-icon-container {
    position: relative;
    display: inline-block;
    color: #0a4ebd;
}

.services-section .truck-icon {
    font-size: 26px;
    position: relative;
    z-index: 2;
    display: inline-block;
    animation: truckDrive 3s infinite ease-in-out;
}

.services-section .speed-line {
    position: absolute;
    height: 2px;
    background-color: #0a4ebd;
    border-radius: 2px;
    opacity: 0.6;
}

.services-section .line-1 {
    top: 6px;
    left: -20px;
    width: 12px;
    animation: speedLine1 1.5s infinite linear;
}

.services-section .line-2 {
    top: 13px;
    left: -26px;
    width: 18px;
    animation: speedLine2 1.5s infinite linear;
}

.services-section .line-3 {
    top: 20px;
    left: -16px;
    width: 10px;
    animation: speedLine3 1.5s infinite linear;
}

/* Service Card Design */
.services-section .service-card {
    background: #ffffff;
    border: 1px solid #e1ebf6;
    border-radius: 20px;
    padding: 16px 12px;
    box-shadow: 0 4px 20px rgba(10, 78, 189, 0.02);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.services-section .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(10, 78, 189, 0.08);
    border-color: rgba(10, 78, 189, 0.2);
}

.services-section .service-img-wrap {
    width: 110px;
    height: 82px;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.services-section .service-card:hover .service-img-wrap {
    transform: scale(1.06);
}

.services-section .service-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.services-section .service-title-wrap {
    text-align: left;
    padding-left: 10px;
}

.services-section .service-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
    color: #0a4ebd;
}

.services-section .title-part-1 {
    display: block;
    color: #0a4ebd;
}

.services-section .title-part-2 {
    display: block;
    color: #0a4ebd;
}

.services-section .title-underline {
    height: 2px;
    width: 40px;
    background-color: #0a4ebd;
    margin-top: 5px;
    border-radius: 1px;
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                background-color 0.4s ease;
}

.services-section .service-card:hover .title-underline {
    width: 65px;
    background-color: #ffb300;
}

.services-section .service-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #556880;
    line-height: 1.5;
    text-align: center;
    margin-top: 15px !important;
}

/* Animations */
@keyframes truckDrive {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(3px);
    }
}

@keyframes speedLine1 {
    0% {
        transform: scaleX(0.4);
        opacity: 0.2;
    }
    50% {
        transform: scaleX(1);
        opacity: 0.7;
    }
    100% {
        transform: scaleX(0.4);
        opacity: 0.2;
    }
}

@keyframes speedLine2 {
    0% {
        transform: scaleX(1);
        opacity: 0.8;
    }
    50% {
        transform: scaleX(0.5);
        opacity: 0.3;
    }
    100% {
        transform: scaleX(1);
        opacity: 0.8;
    }
}

@keyframes speedLine3 {
    0% {
        transform: scaleX(0.5);
        opacity: 0.3;
    }
    50% {
        transform: scaleX(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scaleX(0.5);
        opacity: 0.3;
    }
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .services-section {
        padding: 25px 0;
    }
    .services-section .section-title {
        font-size: 24px;
    }
    .services-section .header-line {
        width: 60px;
    }
    .services-section .service-card {
        padding: 12px 8px;
        border-radius: 14px;
    }
    .services-section .service-img-wrap {
        width: 68px;
        height: 51px;
    }
    .services-section .service-title-wrap {
        padding-left: 5px;
    }
    .services-section .service-card-title {
        font-size: 10.5px;
    }
    .services-section .title-underline {
        width: 20px;
        margin-top: 3px;
    }
    .services-section .service-card:hover .title-underline {
        width: 35px;
    }
    .services-section .service-desc {
        font-size: 10.5px;
        margin-top: 10px !important;
        line-height: 1.4;
    }
    .services-section .decor-top-left {
        width: 150px;
        height: 150px;
    }
    .services-section .decor-bottom-right {
        width: 150px;
        height: 150px;
    }
}

/* --- FAQ Section Modules --- */
.faq-section {
    background-color: #fbfcfe;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

/* Background Decor Elements */
.faq-section .faq-decor {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.faq-section .decor-top-left {
    top: 5%;
    left: 2%;
    width: 120px;
    height: 120px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='none'><pattern id='dots' x='0' y='0' width='16' height='16' patternUnits='userSpaceOnUse'><circle cx='3' cy='3' r='2' fill='%230a4ebd' opacity='0.12'/></pattern><rect width='100' height='100' fill='url(%23dots)'/></svg>");
    background-size: contain;
}

.faq-section .decor-bottom-right {
    bottom: 5%;
    right: 2%;
    width: 120px;
    height: 120px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='none'><pattern id='dots2' x='0' y='0' width='16' height='16' patternUnits='userSpaceOnUse'><circle cx='3' cy='3' r='2' fill='%230a4ebd' opacity='0.12'/></pattern><rect width='100' height='100' fill='url(%23dots2)'/></svg>");
    background-size: contain;
}

/* Header Decor & Badge */
.faq-pill-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 800;
    color: #ffffff;
    background-color: #0a4ebd;
    padding: 4px 12px;
    border-radius: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(10, 78, 189, 0.15);
}

.faq-header-wrap .badge-line {
    height: 1.5px;
    width: 24px;
    background-color: rgba(10, 78, 189, 0.15);
}

.faq-header-wrap .line-left {
    margin-right: 10px;
}

.faq-header-wrap .line-right {
    margin-left: 10px;
}

.faq-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #031633;
    letter-spacing: -0.5px;
}

.faq-title-truck-wrap {
    display: flex;
    justify-content: center;
    margin-top: 6px;
}

.faq-title-truck-wrap .truck-icon-container {
    position: relative;
    display: inline-block;
    color: #0a4ebd;
}

.faq-title-truck-wrap .truck-icon {
    font-size: 18px;
    position: relative;
    z-index: 2;
    display: inline-block;
    animation: truckDrive 3.5s infinite ease-in-out;
}

.faq-title-truck-wrap .speed-line {
    position: absolute;
    height: 2px;
    background-color: #0a4ebd;
    border-radius: 2px;
    opacity: 0.5;
}

.faq-title-truck-wrap .line-1 {
    top: 4px;
    left: -14px;
    width: 8px;
    animation: speedLine1 1.5s infinite linear;
}

.faq-title-truck-wrap .line-2 {
    top: 9px;
    left: -18px;
    width: 12px;
    animation: speedLine2 1.5s infinite linear;
}

.faq-title-truck-wrap .line-3 {
    top: 14px;
    left: -11px;
    width: 6px;
    animation: speedLine3 1.5s infinite linear;
}

.faq-section-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #556880;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Accordion Grid Cards */
.faq-card {
    background: #ffffff;
    border: 1px solid #e1ebf6;
    border-radius: 10px;
    padding: 10px 14px;
    box-shadow: 0 4px 15px rgba(10, 78, 189, 0.01);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.4s ease;
}

.faq-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(10, 78, 189, 0.05);
    border-color: rgba(10, 78, 189, 0.2);
}

.faq-card:has(.faq-card-header:not(.collapsed)) {
    border-color: #0a4ebd;
    box-shadow: 0 10px 25px rgba(10, 78, 189, 0.06);
}

.faq-card-header {
    outline: none;
}

.faq-icon-wrap {
    width: 32px;
    height: 32px;
    background-color: #eef4fc;
    border-radius: 50%;
    color: #0a4ebd;
    font-size: 14px;
    flex-shrink: 0;
    margin-right: 12px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-card:hover .faq-icon-wrap {
    background-color: #0a4ebd;
    color: #ffffff;
}

.faq-card:has(.faq-card-header:not(.collapsed)) .faq-icon-wrap {
    background-color: #0a4ebd;
    color: #ffffff;
}

.faq-question {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #031633;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-card-header:not(.collapsed) .faq-question {
    color: #0a4ebd;
}

.faq-toggle-btn {
    width: 20px;
    height: 20px;
    color: #0a4ebd;
    font-size: 15px;
    font-weight: bold;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-toggle-icon {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-card-header[aria-expanded="true"] .faq-toggle-icon {
    transform: rotate(45deg);
    color: #556880;
}

.faq-card-body {
    padding-top: 6px;
    padding-left: 44px;
}

.faq-answer {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: #556880;
    line-height: 1.6;
}

/* Footer Banner */
.faq-help-banner {
    max-width: 600px;
    background: linear-gradient(135deg, #0a4ebd 0%, #032e73 100%);
    border-radius: 10px;
    padding: 12px 20px;
    box-shadow: 0 10px 25px rgba(10, 78, 189, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 5;
    position: relative;
}

.faq-help-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(10, 78, 189, 0.2);
}

.faq-help-banner .help-icon-wrap {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    flex-shrink: 0;
}

.faq-help-banner .help-title {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
}

.faq-help-banner .help-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.faq-help-banner .help-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.faq-help-banner .help-link:hover {
    color: #ffb300;
    border-color: #ffb300;
}

/* SVG Arrows positioning and animation */
.faq-arrow-wrap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.faq-arrow-left {
    left: 8%;
}

.faq-arrow-right {
    right: 8%;
}

@keyframes drawDash {
    to {
        stroke-dashoffset: -20;
    }
}

.faq-arrow-wrap path {
    animation: drawDash 4s linear infinite;
}

/* Responsive Styling for FAQ Section */
@media (max-width: 991px) {
    .faq-arrow-left, .faq-arrow-right {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 20px 0;
    }
    .faq-section-title {
        font-size: 20px;
    }
    .faq-header-wrap .badge-line {
        width: 15px;
    }
    .faq-section-subtitle {
        font-size: 12px;
    }
    .faq-card {
        padding: 8px 10px;
        border-radius: 8px;
    }
    .faq-icon-wrap {
        width: 26px;
        height: 26px;
        font-size: 12px;
        margin-right: 8px;
    }
    .faq-question {
        font-size: 12px;
    }
    .faq-toggle-btn {
        width: 18px;
        height: 18px;
        font-size: 12px;
        margin-left: 6px;
    }
    .faq-card-body {
        padding-left: 34px;
        padding-top: 4px;
    }
    .faq-answer {
        font-size: 11px;
    }
    .faq-help-banner {
        padding: 10px 14px;
        border-radius: 8px;
    }
    .faq-help-banner .help-icon-wrap {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    .faq-help-banner .help-title {
        font-size: 12.5px;
    }
    .faq-help-banner .help-desc {
        font-size: 11px;
    }
}

/* --- About Us Section Modules --- */
.about-section {
    background-color: #ffffff;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.about-decor {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.about-section .decor-top-right {
    top: 5%;
    right: 2%;
    width: 120px;
    height: 120px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='none'><pattern id='dotsA' x='0' y='0' width='16' height='16' patternUnits='userSpaceOnUse'><circle cx='3' cy='3' r='2' fill='%230a4ebd' opacity='0.08'/></pattern><rect width='100' height='100' fill='url(%23dotsA)'/></svg>");
    background-size: contain;
}

.about-section .decor-bottom-left {
    bottom: 5%;
    left: 2%;
    width: 120px;
    height: 120px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='none'><pattern id='dotsB' x='0' y='0' width='16' height='16' patternUnits='userSpaceOnUse'><circle cx='3' cy='3' r='2' fill='%230a4ebd' opacity='0.08'/></pattern><rect width='100' height='100' fill='url(%23dotsB)'/></svg>");
    background-size: contain;
}

.about-image-wrap {
    padding-right: 15px;
}

.about-img-bg-shape {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 78, 189, 0.05) 0%, rgba(3, 46, 115, 0.05) 100%);
    border: 2px dashed rgba(10, 78, 189, 0.15);
    border-radius: 24px;
    z-index: 1;
    transition: transform 0.4s ease;
}

.about-image-wrap:hover .about-img-bg-shape {
    transform: translate(6px, -6px);
}

.about-experience-badge {
    position: absolute;
    bottom: 25px;
    right: -10px;
    background: linear-gradient(135deg, #0a4ebd 0%, #032e73 100%);
    color: #ffffff;
    border-radius: 12px;
    padding: 10px 16px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: badgeFloat 4s ease-in-out infinite;
}

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

.about-experience-badge .exp-number {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
}

.about-experience-badge .exp-text {
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

/* Content Area */
.about-badge-wrap .about-pill-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 800;
    color: #0a4ebd;
    background-color: #eef4fc;
    padding: 4px 12px;
    border-radius: 30px;
    letter-spacing: 1px;
}

.about-badge-wrap .about-badge-line {
    height: 1.5px;
    width: 20px;
    background-color: #0a4ebd;
    margin-right: 8px;
}

.about-title {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #031633;
    line-height: 1.3;
}

.about-title .text-primary-blue {
    color: #0a4ebd;
}

.about-desc-lead {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: #031633;
    line-height: 1.6;
}

.about-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 12.5px;
    color: #556880;
    line-height: 1.6;
}

/* Features grid */
.about-feature-item {
    background: #f4f8fd;
    border: 1px solid #e1ebf6;
    border-radius: 8px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-feature-item:hover {
    transform: translateY(-2px);
    border-color: rgba(10, 78, 189, 0.2);
}

.about-feature-item .feature-icon-circle {
    width: 24px;
    height: 24px;
    background-color: #0a4ebd;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 10px;
    flex-shrink: 0;
}

.about-feature-item .feature-text {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #031633;
}

/* CTA */
.btn-primary-blue {
    background-color: #0a4ebd;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary-blue:hover {
    background-color: #032e73;
    color: #ffffff;
    transform: translateY(-1px);
}

.about-contact-wrap .about-contact-icon {
    width: 36px;
    height: 36px;
    background-color: #eef4fc;
    color: #0a4ebd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.about-contact-wrap .about-contact-details {
    margin-left: 10px;
}

.about-contact-wrap .contact-label {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-contact-wrap .contact-number {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: #0a4ebd;
    font-weight: 800;
}

@media (max-width: 991px) {
    .about-image-wrap {
        padding-right: 0;
        margin-bottom: 30px;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 25px 0;
    }
    .about-title {
        font-size: 20px;
    }
    .about-desc-lead {
        font-size: 12.5px;
    }
    .about-desc {
        font-size: 12px;
    }
    .about-experience-badge {
        bottom: 15px;
        right: 0px;
        padding: 8px 12px;
    }
    .about-experience-badge .exp-number {
        font-size: 24px;
    }
    .about-experience-badge .exp-text {
        font-size: 8px;
    }
}

/* --- Reviews Section --- */
.reviews-section {
    background-color: #fbfcfe;
    padding: 25px 0;
    position: relative;
    overflow: hidden;
}

.reviews-section .reviews-decor {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.reviews-section .decor-top-left {
    top: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none'><circle cx='40' cy='40' r='100' fill='%230a4ebd' opacity='0.03'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
}

.reviews-section .decor-bottom-right {
    bottom: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none'><circle cx='160' cy='160' r='100' fill='%230a4ebd' opacity='0.03'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Reviews Header elements */
.reviews-badge-container {
    gap: 8px;
}

.reviews-badge-container .badge-line {
    width: 6px;
    height: 6px;
    background-color: #0a4ebd;
    transform: rotate(45deg);
    opacity: 0.8;
}

.reviews-pill-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #0a4ebd;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.reviews-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: white;
    letter-spacing: -0.5px;
    margin-bottom: 3px;
}

.reviews-title-truck-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 10px 0 12px;
}

.reviews-title-truck-wrap::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 1px;
    background-color: #0a4ebd;
    opacity: 0.25;
    z-index: 1;
}

.reviews-title-truck-wrap .truck-icon-container {
    background-color: #fbfcfe;
    padding: 0 15px;
    position: relative;
    z-index: 2;
    color: #0a4ebd;
}

.reviews-title-truck-wrap .truck-icon {
    font-size: 20px;
    animation: truckDrive 3s infinite ease-in-out;
}

.reviews-title-truck-wrap .speed-line {
    position: absolute;
    height: 2px;
    background-color: #0a4ebd;
    border-radius: 2px;
    opacity: 0.6;
}

.reviews-title-truck-wrap .line-1 {
    top: 5px;
    left: -8px;
    width: 8px;
    animation: speedLine1 1.5s infinite linear;
}

.reviews-title-truck-wrap .line-2 {
    top: 10px;
    left: -12px;
    width: 12px;
    animation: speedLine2 1.5s infinite linear;
}

.reviews-title-truck-wrap .line-3 {
    top: 15px;
    left: -6px;
    width: 6px;
    animation: speedLine3 1.5s infinite linear;
}

.reviews-section-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: white;
    max-width: 600px;
    margin: 0 auto 15px;
    line-height: 1.5;
}

/* Slider Track Layout */
.reviews-slider-container {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 35px;
}

.reviews-slider-viewport {
    overflow: hidden;
    width: 100%;
}

.reviews-slider-track {
    display: flex;
    gap: 20px;
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Review Card Styling */
.review-card {
    background: #ffffff;
    border: 1.5px solid #e1ebf6;
    border-radius: 12px;
    padding: 14px 18px;
    position: relative;
    box-shadow: 0 6px 20px rgba(10, 78, 189, 0.012);
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(10, 78, 189, 0.04);
    border-color: rgba(10, 78, 189, 0.2);
}

/* Quote decorations */
.review-card .quote-decor {
    position: absolute;
    font-size: 42px;
    line-height: 1;
    color: #eef4fc;
    pointer-events: none;
    transition: color 0.3s ease;
}

.review-card:hover .quote-decor {
    color: #dbe8f8;
}

.review-card .top-quote {
    top: 10px;
    left: 12px;
}

.review-card .bottom-quote {
    bottom: 0px;
    right: 12px;
}

/* Stars */
.review-stars {
    color: #ffb300;
    font-size: 14px;
    display: flex;
    gap: 2px;
    position: relative;
    z-index: 2;
}

/* User Row */
.review-user-row {
    position: relative;
    z-index: 2;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e1ebf6;
    background-color: #f4f8fd;
}

.review-avatar-svg {
    display: block;
}

.review-user-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 10px;
}

.review-username {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #031633;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified-badge {
    color: #0a4ebd;
    font-size: 12px;
}

.review-location {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: #556880;
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 1px;
}

.location-icon {
    color: #0a4ebd;
}

/* Review Text */
.review-text {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: #4a5b72;
    line-height: 1.55;
    margin: 8px 0 0;
    position: relative;
    z-index: 2;
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #0a4ebd;
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(10, 78, 189, 0.15);
    z-index: 10;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.slider-arrow:hover {
    background-color: #032e73;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 5px 15px rgba(10, 78, 189, 0.25);
}

.prev-arrow {
    left: 10px;
}

.next-arrow {
    right: 10px;
}

/* Bottom Trust Bar styling */
.reviews-trust-bar {
    max-width: 820px;
    background: #ffffff;
    border: 1.5px solid #e1ebf6;
    border-radius: 100px;
    padding: 8px 24px;
    box-shadow: 0 6px 20px rgba(10, 78, 189, 0.015);
    position: relative;
    z-index: 5;
}

.trust-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.trust-icon-box.box-star {
    background-color: #0a4ebd;
    color: #ffffff;
    border-radius: 8px;
    width: 32px;
    height: 32px;
}

.trust-icon-box.box-users {
    background-color: #eef4fc;
    color: #0a4ebd;
}

.trust-icon-box.box-shield {
    background-color: #eef4fc;
    color: #0a4ebd;
}

.trust-icon-box.box-recommend {
    background-color: #eef4fc;
    color: #0a4ebd;
}

.trust-text-box {
    text-align: left;
}

.trust-value {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 900;
    color: #031633;
    margin: 0;
    line-height: 1.1;
}

.trust-label {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #556880;
}

/* Responsive Desktop Layout (>= 992px) */
@media (min-width: 992px) {
    .reviews-slider-track {
        transform: none !important;
    }
    
    .review-card {
        flex: 0 0 calc(33.333% - 14px);
    }
    
    .slider-arrow {
        display: none !important;
    }
    
    .reviews-slider-container {
        padding: 0;
    }
}

/* Mobile & Tablet Styles (< 992px) */
@media (max-width: 991px) {
    .reviews-section {
        padding: 15px 0;
    }
    
    .reviews-section-title {
        font-size: 20px;
    }
    
    .reviews-section-subtitle {
        font-size: 12px;
        margin: 0 auto 12px;
    }
    
    .reviews-trust-bar {
        border-radius: 12px;
        padding: 10px 8px;
    }
    
    .trust-stat-item {
        justify-content: center;
        gap: 6px;
    }
    
    .trust-icon-box {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .trust-icon-box.box-star {
        width: 28px;
        height: 28px;
    }
    
    .trust-value {
        font-size: 13px;
    }
    
    .trust-label {
        font-size: 9px;
    }
    
    .review-card {
        padding: 12px 14px;
        border-radius: 10px;
    }
    
    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .prev-arrow {
        left: 5px;
    }
    
    .next-arrow {
        right: 5px;
    }
    
    .reviews-slider-container {
        padding: 0 15px;
    }
}

/* Home Module Append */
.home-service-widget-container { z-index: 2; }
.home-error-breadcrumb { background: url('../img/breadcrumb/01.jpg'); }

/* --- New About Widget Styles --- */
.eyebrow-line {
    width: 40px;
    height: 2px;
    background: #0056b3;
    display: inline-block;
}

.feature-border-right {
    border-right: 1px solid #e9ecef;
}

.stat-border-right {
    border-right: 1px solid #e9ecef;
}

.about-value-item .value-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0, 86, 179, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.about-value-item .value-icon i {
    font-size: 24px;
    color: #0056b3;
}

.about-stats-box {
    margin-top: 20px;
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 86, 179, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.collage-images img {
    transition: transform 0.3s ease;
}

.collage-images img:hover {
    transform: scale(1.02);
}

@media (max-width: 575px) {
    .feature-border-right, .stat-border-right {
        border-right: none;
    }
    
    .feature-border-right:nth-child(odd), .stat-border-right:nth-child(odd) {
        border-right: 1px solid #e9ecef;
    }
    
    .feature-border-right:nth-child(-n+2), .stat-border-right:nth-child(-n+2) {
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    
    .collage-images {
        height: 400px !important;
    }
}

/* --- New FAQ Widget Styles --- */
.faq-accordion-item {
    transition: all 0.3s ease;
}

.faq-accordion-btn {
    padding: 15px 20px !important;
    box-shadow: none !important;
}

.faq-accordion-btn:not(.collapsed) {
    color: #011025;
    background-color: #fff !important;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.05) !important;
}

.faq-accordion-btn::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230056b3'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.faq-accordion-btn:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230056b3'%3e%3cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/%3e%3c/svg%3e") !important;
}

@media (max-width: 767px) {
    .faq-accordion-btn {
        padding: 15px !important;
    }
    .faq-accordion-body {
        padding: 20px 15px !important;
    }
}

/* --- New Why Choose Us Widget Styles --- */
.why-choose-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eef2f6;
    padding: 25px 20px;
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.08);
    border-color: rgba(0, 86, 179, 0.2);
}

.why-choose-card .card-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 86, 179, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: rgba(0, 86, 179, 0.03);
}

.why-choose-card .card-icon-wrap i {
    font-size: 24px;
    color: #0056b3;
}

.why-choose-card .card-title {
    color: #011025;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.why-choose-card .card-text {
    font-size: 12px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .why-stats-box .stat-border-right:nth-child(2) {
        border-right: none;
    }
    .why-stats-box .stat-border-right:nth-child(-n+2) {
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}

/* --- New Security Services Widget Styles --- */
.sec-service-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eef2f6;
    padding: 20px 15px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sec-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.08);
    border-color: rgba(0, 86, 179, 0.2);
}

.sec-service-card .srv-icon-wrap {
    margin: 0 auto;
}

.sec-service-card .srv-icon-wrap i {
    font-size: 32px;
    color: #0056b3;
}

.sec-service-card .srv-title {
    color: #011025;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.sec-service-card .srv-text {
    font-size: 12px;
    line-height: 1.6;
    flex-grow: 1;
}

.sec-service-card .srv-link {
    color: #0056b3;
    font-size: 12px;
    transition: all 0.3s ease;
}

.sec-service-card .srv-link i {
    transition: transform 0.3s ease;
}

.sec-service-card:hover .srv-link {
    color: #011025;
}

.sec-service-card:hover .srv-link i {
    transform: translateX(4px);
}

.trust-border-right {
    border-right: 1px solid #eef2f6;
}

@media (max-width: 991px) {
    .trust-border-right:nth-child(2) {
        border-right: none;
    }
    .trust-border-right:nth-child(-n+2) {
        border-bottom: 1px solid #eef2f6;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}

/* --- Home Page: Our Directors Section --- */
.directors-section {
    background: radial-gradient(circle at 50% 20%, #06193d 0%, var(--dark-navy) 75%);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

/* Background Atmosphere Elements */
.directors-dot-pattern {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 220px;
    height: 220px;
    background-image: radial-gradient(rgba(109, 162, 248, 0.22) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 1;
}

.directors-cctv-watermark {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle at 100% 0%, rgba(10, 78, 189, 0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

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

/* Section Header */
.directors-header {
    margin-bottom: 45px;
}

.directors-eyebrow {
    color: #e50914;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.directors-title {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.2;
}

.directors-title .text-red {
    color: #e50914;
}

.directors-title-line {
    width: 70px;
    height: 3px;
    background: #e50914;
    margin: 8px auto 16px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.6);
}

.directors-subtitle {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto;
}

/* Director Cards */
.director-card {
    background: linear-gradient(135deg, rgba(8, 28, 64, 0.7) 0%, rgba(3, 15, 38, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
}

.director-card:hover {
    transform: translateY(-6px);
    border-color: rgba(229, 9, 20, 0.35);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(229, 9, 20, 0.15);
}

/* Left Chevron Accent */
.director-card-chevron {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 90px;
    background: linear-gradient(180deg, rgba(229, 9, 20, 0.1) 0%, #e50914 50%, rgba(229, 9, 20, 0.1) 100%);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.director-card:hover .director-card-chevron {
    opacity: 1;
}

/* Card Row & Elements */
.director-card-row {
    height: 100%;
    margin: 0;
}

.director-img-col {
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, transparent 40%, rgba(3, 15, 38, 0.4) 100%);
}

.director-photo {
    width: 100%;
    max-height: 290px;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
    transition: transform 0.4s ease;
}

.director-card:hover .director-photo {
    transform: scale(1.03);
}

.director-content-col {
    padding: 28px 24px 28px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.director-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2px;
    letter-spacing: -0.3px;
}

.director-name .text-red {
    color: #e50914;
}

.director-role {
    font-size: 13.5px;
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 8px;
}

.director-role-line {
    width: 32px;
    height: 2px;
    background: #e50914;
    margin-bottom: 12px;
    border-radius: 1px;
}

.director-bio {
    font-size: 12.5px;
    color: #cbd5e1;
    line-height: 1.65;
    margin-bottom: 18px;
}

.director-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e50914;
    color: var(--white);
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.35);
    transition: all 0.25s ease;
}

.director-social:hover {
    background: #b90710;
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(229, 9, 20, 0.5);
}

/* Bottom Stats Strip */
.directors-stats-wrap {
    margin-top: 35px;
    background: linear-gradient(135deg, rgba(8, 28, 64, 0.75) 0%, rgba(3, 15, 38, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.director-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 12px;
}

.stat-icon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #e50914;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(229, 9, 20, 0.4));
}

.stat-number {
    font-size: 23px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 2px;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 0;
    line-height: 1.3;
    font-weight: 500;
}

.stat-border-r {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .director-card {
        margin-bottom: 20px;
    }
    .stat-border-r:nth-child(2) {
        border-right: none;
    }
    .stat-border-r:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 14px;
        margin-bottom: 14px;
    }
    .directors-title {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .director-card-row {
        flex-direction: row !important;
        flex-wrap: nowrap;
    }
    .director-img-col {
        padding: 0;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        flex: 0 0 42%;
        max-width: 42%;
    }
    .director-photo {
        max-height: 190px;
        width: 100%;
        object-fit: contain;
        object-position: bottom center;
    }
    .director-content-col {
        padding: 14px 14px 14px 6px;
        text-align: left;
        align-items: flex-start;
        flex: 0 0 58%;
        max-width: 58%;
    }
    .director-name {
        font-size: 16px;
        margin-bottom: 2px;
    }
    .director-role {
        font-size: 12px;
        margin-bottom: 4px;
    }
    .director-role-line {
        width: 24px;
        height: 2px;
        margin: 0 0 8px 0;
    }
    .director-bio, .director-content-col p {
        font-size: 11px;
        line-height: 1.45;
        margin-bottom: 0;
    }
    .director-card-chevron {
        width: 10px;
        height: 60px;
    }
    .directors-title {
        font-size: 26px;
    }
    .directors-subtitle {
        font-size: 12.5px;
    }
}

/* ==========================================================================
   ABOUT MODULES
   ========================================================================== */

.about-z2 {
    z-index: 2 !important;
}

.about-cta-icon {
    font-size: 1.2rem;
}
/* Styles from about.php */
.about-team-member-card { transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid #eef1f6 !important; }
.about-team-member-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(95, 150, 24, 0.1) !important; border-color: #5f9618 !important; }
.about-border-light-green { border-color: #e2f0d9 !important; }
.about-transition-hover { transition: all 0.3s ease; }

/* Styles from choose.php & testimonials.php */
.about-choose-transition-hover { transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.about-choose-transition-hover:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(10, 78, 189, 0.05) !important; }
.about-icon-box-lg { font-size: 2rem; }
.about-bg-success-soft { background-color: rgba(25, 135, 84, 0.1) !important; }
.about-italic-text { font-style: italic; }
.about-testimonial-card { border: 1px solid #eef1f6 !important; }
.about-testimonial-card:hover { border-color: #5f9618 !important; }
.about-quote-icon-lg { font-size: 3rem; }
.about-font-sm-075 { font-size: 0.75rem; }
.about-font-sm-070 { font-size: 0.7rem; }

/* Styles from faqs.php */
.about-custom-faq-accordion .accordion-item { border: 1px solid #eef1f6 !important; }
.about-custom-faq-accordion .accordion-button:not(.collapsed) { color: #5f9618 !important; background-color: #f6fbf2 !important; box-shadow: none !important; }
.about-custom-faq-accordion .accordion-button:focus { box-shadow: none !important; border-color: transparent !important; }

/* Styles from reviews.php */
.about-review-header { background: #f8fafc; padding: 60px 0; margin-bottom: 50px; text-align: center; border-bottom: 1px solid #e2e8f0; }
.about-review-header h1 { font-weight: 800; color: #001846; margin-bottom: 15px; }
.about-review-card { background: #fff; border-radius: 15px; padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-bottom: 30px; border: 1px solid #f1f5f9; position: relative; transition: transform 0.3s ease; }
.about-review-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.about-review-rating { color: #f59e0b; margin-bottom: 15px; font-size: 1.1rem; }
.about-review-text { font-size: 16px; color: #475569; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.about-review-author { display: flex; align-items: center; gap: 15px; }
.about-author-avatar { width: 50px; height: 50px; background: #e2e8f0; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #64748b; }
.about-author-info h6 { margin: 0; font-weight: 700; color: #001846; }
.about-author-info span { font-size: 13px; color: #94a3b8; }
.about-form-label { font-weight: 600; font-size: 0.9rem; color: #475569; margin-bottom: 8px; }
.about-form-control { border-radius: 10px; border: 1px solid #e2e8f0; padding: 12px 15px; }
.about-form-control:focus { border-color: #ff6600; box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.1); }
.about-rating-select { display: flex; gap: 10px; margin-bottom: 20px; }
.about-rating-item { cursor: pointer; font-size: 24px; color: #cbd5e1; transition: 0.2s; }
.about-rating-item.active { color: #f59e0b; }
.about-btn-submit { background: #ff6600; color: #fff; border: none; padding: 15px 30px; border-radius: 10px; font-weight: 700; width: 100%; transition: 0.3s; margin-top: 10px; }
.about-btn-submit:hover { background: #e65c00; transform: translateY(-2px); color: #fff; }
.about-btn-submit-inline { width: auto; padding: 15px 40px; font-size: 1.1rem; border-radius: 50px; }


/* Sitemap Hover Link */
.hover-primary:hover {
    color: #0056b3 !important;
}
.hover-primary:hover i {
    color: #0056b3 !important;
}

/* ==========================================================================
   SERVICES / PACKERS & MOVERS MODULES
   ========================================================================== */

/* Services Module Stylesheet */

/* 1. Breadcrumbs Header — Premium Redesign */
.service-breadcrumbs {
    background: linear-gradient(120deg, #001333 0%, #0a3fa8 55%, #1565d8 100%);
    padding: 52px 0 80px 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}
/* Subtle dot-grid overlay */
.service-breadcrumbs::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}
/* Decorative radial glow top-right */
.service-breadcrumbs::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255,200,0,0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Breadcrumb nav trail */
.bc-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.bc-nav a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.25s;
    font-weight: 500;
}
.bc-nav a:hover { color: #ffd600; }
.bc-nav .bc-sep {
    color: rgba(255,255,255,0.45);
    font-size: 12px;
    margin: 0 2px;
}
.bc-nav .bc-current {
    color: #ffd600;
    font-weight: 600;
}

/* Main H1 heading */
.service-breadcrumbs h1 {
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.bc-title-white { color: #ffffff; }
.bc-title-orange { color: #ffd600; }

/* Subtitle description */
.bc-desc {
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    line-height: 1.65;
    max-width: 560px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* Feature badge strip */
.bc-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    padding-bottom: 20px;
}
.bc-feature-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 10px;
    padding: 10px 16px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.25s, transform 0.2s;
    min-width: 155px;
}
.bc-feature-pill:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-2px);
}
.bc-feature-pill .pill-icon {
    width: 34px;
    height: 34px;
    background: rgba(255,214,0,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #ffd600;
    flex-shrink: 0;
}
.bc-feature-pill .pill-text strong {
    display: block;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}
.bc-feature-pill .pill-text small {
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    line-height: 1.3;
}

/* Wave SVG bottom separator — absolutely positioned at section bottom */
.bc-wave-wrap {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    overflow: hidden;
    z-index: 2;
}
.bc-wave-wrap svg {
    display: block;
    width: 100%;
    height: 64px;
}

/* Gap-free connection to content below */
.service-details-section {
    background-color: #ffffff;
    margin-top: 0 !important;
    padding-top: 48px;
}

/* Responsive */
@media (max-width: 768px) {
    .service-breadcrumbs { padding: 36px 0 70px 0; }
    .bc-features { gap: 8px; padding-bottom: 12px; }
    .bc-feature-pill { min-width: calc(50% - 8px); padding: 8px 12px; }
    .bc-wave-wrap svg { height: 48px; }
    .service-details-section { padding-top: 32px; }
}
@media (max-width: 480px) {
    .bc-feature-pill { min-width: 100%; }
}


/* 2. Main Layout Grid */
.service-main-content {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    margin-bottom: 40px;
}
.service-section-title {
    font-weight: 800;
    color: #001846;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.service-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #ff6600;
}

/* About Service Image & Copy */
.service-main-image {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    margin-bottom: 30px;
    filter: drop-shadow(0 15px 25px rgba(10, 78, 189, 0.15));
}
.about-service-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
}

/* 3. Reusable Sidebar Widget */
.service-sidebar {
    position: sticky;
    top: 100px;
    z-index: 10;
}
.sidebar-widget {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
}
.sidebar-widget .widget-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #001846;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
    border-bottom: 2px solid #f1f5f9;
}
.sidebar-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #ff6600;
}

/* Services Navigation list */
.sidebar-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-services-list li {
    margin-bottom: 8px;
}
.sidebar-services-list li:last-child {
    margin-bottom: 0;
}
.sidebar-services-list li a {
    color: #475569;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 10px;
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
}
.sidebar-services-list li a:hover {
    background-color: #ff6600;
    color: #ffffff;
    transform: translateX(5px);
    border-color: #ff6600;
}
.sidebar-services-list li a:hover .service-icon,
.sidebar-services-list li a:hover .arrow-icon {
    color: #ffffff;
}
.sidebar-services-list li a.active {
    background-color: #0a4ebd;
    color: #ffffff;
    border-color: #0a4ebd;
}
.sidebar-services-list li a.active .service-icon,
.sidebar-services-list li a.active .arrow-icon {
    color: #ffffff;
}
.sidebar-services-list .service-icon {
    color: #0a4ebd;
    font-size: 1.1rem;
    transition: color 0.3s;
}
.sidebar-services-list .arrow-icon {
    font-size: 0.9rem;
    color: #94a3b8;
    transition: color 0.3s;
}

/* Contact CTA Sidebar Card */
.widget-contact-cta {
    background: linear-gradient(135deg, #0a4ebd 0%, #001846 100%);
    border: none;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.widget-contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}
.cta-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.cta-title {
    font-weight: 800;
    font-size: 1.35rem;
    margin-bottom: 10px;
}
.cta-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}
.btn-sidebar-cta {
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}
.btn-sidebar-call {
    background-color: #ff6600;
    color: #ffffff;
}
.btn-sidebar-call:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
    color: #ffffff;
}
.btn-sidebar-whatsapp {
    background-color: #25d366;
    color: #ffffff;
}
.btn-sidebar-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    color: #ffffff;
}
.btn-sidebar-quote {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-sidebar-quote:hover {
    background-color: #ffffff;
    color: #001846;
    transform: translateY(-2px);
}

/* Trusted Checklist */
.widget-trusted-badges .widget-sub-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #001846;
}
.trusted-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.trusted-points-list strong {
    color: #001846;
    font-size: 14px;
}

/* 4. Process Timeline Shifting */
.process-timeline {
    position: relative;
    padding-left: 30px;
    margin-top: 30px;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 10px;
    width: 2px;
    height: calc(100% - 20px);
    background-color: #e2e8f0;
}
.process-step {
    position: relative;
    margin-bottom: 25px;
}
.process-step:last-child {
    margin-bottom: 0;
}
.step-number {
    position: absolute;
    left: -30px;
    top: 2px;
    width: 22px;
    height: 22px;
    background-color: #ff6600;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 11px;
    display: grid;
    place-items: center;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px #ff6600;
}
.process-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #001846;
    margin-bottom: 6px;
}
.process-step p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* 5. Why Choose Us Checklist */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 30px;
}
.choose-item-card {
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s;
}
.choose-item-card:hover {
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.04);
    border-color: #ff6600;
    transform: translateY(-2px);
}
.choose-icon-wrap {
    font-size: 1.4rem;
    color: #ff6600;
    margin-top: 2px;
}
.choose-content h5 {
    font-size: 14px;
    font-weight: 700;
    color: #001846;
    margin-bottom: 4px;
}
.choose-content p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* 6. FAQ Accordion for Service page */
.service-faq-container {
    margin-top: 35px;
}
.service-faq-container .faq-card {
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 12px;
    transition: all 0.3s;
}
.service-faq-container .faq-card-header {
    padding: 18px 20px;
    font-weight: 700;
    color: #001846;
    font-size: 15px;
    transition: all 0.3s;
}
.service-faq-container .faq-card-header:not(.collapsed) {
    color: #0a4ebd;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.service-faq-container .faq-card-icon {
    color: #ff6600;
    font-size: 18px;
    margin-right: 12px;
}
.service-faq-container .faq-toggle-icon {
    font-size: 18px;
    color: #94a3b8;
    transition: transform 0.3s;
}
.service-faq-container .faq-card-header:not(.collapsed) .faq-toggle-icon {
    transform: rotate(45deg);
    color: #ff6600;
}
.service-faq-container .faq-card-body {
    padding: 18px 20px;
    background-color: #ffffff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
}

/* 7. Reviews Card Widget */
.service-reviews-slice {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 25px;
    margin: 35px 0;
}
.service-reviews-slice .rating-row {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.service-reviews-slice .review-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}
.service-reviews-slice .review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}
.service-reviews-slice .user-avatar {
    width: 40px;
    height: 40px;
    background-color: #e2e8f0;
    color: #64748b;
    font-weight: 700;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 14px;
}
.service-reviews-slice .user-name h6 {
    margin: 0;
    font-weight: 700;
    color: #001846;
    font-size: 14px;
}
.service-reviews-slice .user-name span {
    font-size: 12px;
    color: #94a3b8;
}

/* Mobile View adjustments */
@media (max-width: 991px) {
    .service-breadcrumbs {
        padding: 40px 0;
        text-align: center;
    }
    .service-breadcrumbs h1 {
        font-size: 2rem;
    }
    .service-main-content {
        padding: 20px;
    }
    .service-sidebar {
        margin-top: 30px;
        position: static;
    }
}


﻿/* packers_movers_modules.css */

/* city_list.php */
.pm-list-service-page {
    background-image: url('../images/location/location-background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 500px;
    background-attachment: fixed !important;
    position: relative;
    padding: 50px 0 !important;
}
.pm-list-service-page::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(2px); z-index: 1;
}
.pm-list-feature-section { position: relative; z-index: 2; }
.pm-list-city-card {
    border: 1px solid #edf2f7 !important; border-radius: 12px !important; background: #fff !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 4px 12px rgba(0, 24, 70, 0.04) !important; overflow: hidden; position: relative;
}
.pm-list-city-card-link:hover .pm-list-city-card {
    transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 24, 70, 0.12) !important; background: #fff !important;
}
.pm-list-city-card::after {
    content: ""; position: absolute; bottom: 0; left: 0; width: 0; height: 4px;
    background: var(--primary); transition: width 0.4s ease;
}
.pm-list-city-card-link:hover .pm-list-city-card::after { width: 100%; }
.pm-list-card-body { padding: 10px 15px !important; display: flex; align-items: center; gap: 12px; justify-content: flex-start !important; }
.pm-list-city-card .pm-list-icon {
    width: 40px; height: 40px; background: #f8fafc; border-radius: 10px; display: flex; align-items: center;
    justify-content: center; transition: all 0.3s ease; flex-shrink: 0;
}
.pm-list-city-card-link:hover .pm-list-icon { background: rgba(255, 107, 22, 0.1); transform: scale(1.05); }
.pm-list-city-card .pm-list-icon i { font-size: 1.2rem; color: var(--navy); transition: color 0.3s ease; }
.pm-list-city-card-link:hover .pm-list-icon i { color: var(--primary); }
.pm-list-city-name { flex: 1; }
.pm-list-city-name h5 { font-size: 0.75rem; font-weight: 600; color: var(--navy); margin: 0; line-height: 1.2; transition: color 0.3s ease; }
.pm-list-city-name h5 b { display: block; font-weight: 700; color: var(--primary); font-size: 0.95rem; margin-top: 1px; }
@media (max-width: 991px) { .pm-list-service-page { padding: 50px 0 !important; } }
@media (max-width: 576px) {
    .pm-list-card-body { padding: 12px 10px !important; gap: 10px; }
    .pm-list-city-card .pm-list-icon { width: 35px; height: 35px; border-radius: 8px; }
    .pm-list-city-card .pm-list-icon img { width: 24px !important; }
    .pm-list-city-name h5 { font-size: 0.75rem; }
    .pm-list-city-name h5 b { font-size: 0.8rem; }
    .row > div { padding-left: 8px; padding-right: 8px; }
}

/* states.php */
.pm-states-title-span { color: #073c91; }
.pm-states-card { transition: all 0.35s ease; border: 1px solid #eef1f5; }
.pm-states-card:hover { transform: translateY(-8px); box-shadow: 0 12px 35px rgba(0,0,0,0.12); }
.pm-states-img { height: 180px; }
.pm-states-img img { height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.pm-states-card:hover img { transform: scale(1.08); }
.pm-states-overlay {
    position: absolute; inset: 0; background: rgba(7, 60, 145, 0.75); display: flex;
    align-items: center; justify-content: center; opacity: 0; transition: 0.3s ease;
}
.pm-states-card:hover .pm-states-overlay { opacity: 1; }
.pm-states-yellow-dash { display: inline-block; width: 24px; height: 3px; background-color: #ffb800; border-radius: 2px; flex-shrink: 0; }
.pm-states-city-breadcrumb .breadcrumb-item a { color: #fff; }
.pm-states-city-breadcrumb .breadcrumb-item.active { color: #ffc107; }
@media(max-width: 767px) { .pm-states-img { height: 140px; } .pm-states-display-4 { font-size: 2rem; } }

/* city_page_design/city_map.php */
.pm-city-map-iframe { border: 0; }

/* city_page_design/city_service.php */
.pm-city-srv-card {
    background: #fff; border-radius: 12px; padding: 30px 20px; text-align: center;
    border: 1px solid #eef2f6; box-shadow: 0 4px 15px rgba(0,0,0,0.02); height: 100%; transition: all 0.3s ease;
}
.pm-city-srv-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.pm-city-srv-icon-wrap { height: 70px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; }
.pm-city-srv-icon-wrap img { max-height: 100%; max-width: 100%; object-fit: contain; }
.pm-city-srv-title { font-size: 1.15rem; font-weight: 800; color: #000; margin-bottom: 15px; line-height: 1.4; }
.pm-city-srv-desc { font-size: 0.85rem; color: #64748b; line-height: 1.7; margin-bottom: 20px; }
.pm-city-srv-link { font-size: 0.9rem; color: #4ea3fc; text-decoration: none; font-weight: 400; }
.pm-city-srv-link:hover { color: #073c91; text-decoration: underline; }

/* city_page_design/city_slider.php */
.pm-city-slider-nav { margin-bottom: 0.5rem; }
.pm-city-slider { min-height: auto; background-size: cover; background-position: center; background-repeat: no-repeat; color: var(--white); position: relative; overflow: hidden; }
@media (max-width: 991px) { .pm-city-slider { min-height: auto; background-position: 80% top; } }

/* city_page_design/city_sidebar.php */
.pm-city-sidebar { position: sticky; top: 100px; }
.pm-city-sidebar-widget { background: #ffffff; border-radius: 18px; padding: 24px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); border: 1px solid #e8edf4; }
.pm-city-sidebar-widget-title { font-size: 1rem; font-weight: 800; color: #001333; margin-bottom: 6px; padding-bottom: 10px; border-bottom: 2px solid #f1f5f9; position: relative; }
.pm-city-sidebar-widget-title::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 36px; height: 2px; background: #ff6600; }
.pm-city-sidebar-widget-desc { font-size: 12px; color: #94a3b8; margin-bottom: 16px; }
.pm-city-cta-card { background: linear-gradient(125deg, #001333 0%, #0a3fa8 55%, #1565d8 100%); position: relative; overflow: hidden; border: none; padding: 28px 22px; }
.pm-city-cta-bg-icon { position: absolute; top: -10px; right: -10px; font-size: 7rem; color: rgba(255,255,255,0.04); pointer-events: none; transform: rotate(15deg); }
.pm-city-cta-inner { position: relative; z-index: 1; }
.pm-city-cta-icon-wrap { width: 50px; height: 50px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 14px; display: grid; place-items: center; font-size: 22px; color: #ffd600; margin-bottom: 14px; }
.pm-city-cta-title { font-size: 1.05rem; font-weight: 800; color: #ffffff; line-height: 1.3; margin-bottom: 8px; }
.pm-city-cta-title span { color: #ffd600; }
.pm-city-cta-desc { font-size: 12px; color: rgba(255,255,255,0.72); margin-bottom: 18px; line-height: 1.5; }
.pm-city-cta-buttons { display: flex; flex-direction: column; gap: 10px; }
.pm-city-cta-btn { display: flex; align-items: center; gap: 14px; padding: 12px 16px; border-radius: 12px; background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.14); text-decoration: none; color: #ffffff; transition: background 0.25s, transform 0.2s; }
.pm-city-cta-btn:hover { background: rgba(255,255,255,0.16); transform: translateX(3px); color: #fff; }
.pm-city-cta-btn > i { font-size: 20px; color: #ffd600; flex-shrink: 0; }
.pm-city-cta-btn small { display: flex; align-items: center; gap: 6px; font-size: 10px; color: rgba(255,255,255,0.65); margin-bottom: 2px; }
.pm-city-cta-btn strong { display: block; font-size: 14px; font-weight: 700; }
.pm-city-badge-live { background: #22c55e; color: #fff; font-size: 9px; padding: 1px 5px; border-radius: 3px; font-weight: 700; }
.pm-city-cta-action-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px; }
.pm-city-action-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 12px 8px; border-radius: 12px; border: none; font-size: 13px; font-weight: 700; cursor: pointer; text-decoration: none; transition: transform 0.2s, opacity 0.2s; }
.pm-city-action-btn:hover { transform: translateY(-2px); opacity: 0.92; }
.pm-city-action-btn i { font-size: 18px; }
.pm-city-whatsapp-btn { background: #25d366; color: #fff; }
.pm-city-quote-btn { background: #ffd600; color: #001333; }
.pm-city-services-list { list-style: none; padding: 0; margin: 0 0 14px; display: flex; flex-direction: column; gap: 6px; }
.pm-city-service-link { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 10px; background: #f8fafc; border: 1px solid #f1f5f9; text-decoration: none; color: #334155; font-size: 13px; font-weight: 600; transition: all 0.25s; }
.pm-city-service-link:hover { background: #0a4ebd; color: #fff; border-color: #0a4ebd; transform: translateX(4px); }
.pm-city-service-link:hover .pm-city-svc-icon, .pm-city-service-link:hover .pm-city-svc-arrow { color: #fff; }
.pm-city-svc-icon { font-size: 16px; color: #0a4ebd; flex-shrink: 0; transition: color 0.25s; }
.pm-city-svc-name { flex: 1; }
.pm-city-svc-arrow { font-size: 13px; color: #94a3b8; transition: color 0.25s; }
.pm-city-view-all-btn { display: flex; align-items: center; justify-content: center; width: 100%; padding: 10px; border: 2px solid #0a4ebd; border-radius: 10px; color: #0a4ebd; font-weight: 700; font-size: 13px; text-decoration: none; transition: all 0.25s; }
.pm-city-view-all-btn:hover { background: #0a4ebd; color: #fff; }
.pm-city-trust-list { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 16px; }
.pm-city-trust-list li { display: flex; align-items: flex-start; gap: 12px; }
.pm-city-trust-icon-wrap { width: 36px; height: 36px; border-radius: 10px; background: #eff6ff; color: #0a4ebd; display: grid; place-items: center; font-size: 16px; flex-shrink: 0; }
.pm-city-trust-green { background: #f0fdf4; color: #16a34a; }
.pm-city-trust-orange { background: #fff7ed; color: #ea580c; }
.pm-city-trust-red { background: #fef2f2; color: #dc2626; }
.pm-city-trust-yellow { background: #fefce8; color: #ca8a04; }
.pm-city-trust-list li strong { display: block; font-size: 13px; color: #001333; line-height: 1.3; }
.pm-city-trust-list li small { font-size: 11px; color: #94a3b8; }
.pm-city-related-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.pm-city-tag { display: inline-flex; align-items: center; gap: 3px; padding: 6px 12px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 20px; font-size: 12px; font-weight: 600; color: #334155; text-decoration: none; transition: all 0.2s; }
.pm-city-tag:hover { background: #0a4ebd; color: #fff; border-color: #0a4ebd; }
.pm-city-tag i { color: #0a4ebd; transition: color 0.2s; font-size: 14px; }
.pm-city-tag:hover i { color: #fff; }
@media (max-width: 991px) { .pm-city-sidebar { position: static; } }

/* city_page_design/city_about.php */
.pm-city-details-section { background: #f1f5f9; padding: 48px 0 60px; }
.pm-city-content-card { background: #ffffff; border-radius: 18px; padding: 32px; box-shadow: 0 4px 24px rgba(0,0,0,0.05); border: 1px solid #e8edf4; }
.pm-city-section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: #0a4ebd; text-transform: uppercase; margin-bottom: 8px; }
.pm-city-section-title { font-size: clamp(1.3rem, 2.5vw, 1.65rem); font-weight: 800; color: #001333; line-height: 1.3; margin-bottom: 22px; }
.pm-city-accent { color: #0a4ebd; }
.pm-city-section-title-sm { font-size: 1.15rem; font-weight: 800; color: #001333; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid #f1f5f9; position: relative; }
.pm-city-section-title-sm::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 42px; height: 2px; background: #ff6600; }
.pm-city-img-wrap { position: relative; border-radius: 14px; overflow: hidden; margin-bottom: 24px; }
.pm-city-hero-img { width: 100%; max-height: 320px; object-fit: cover; display: block; }
.pm-city-exp-badge { position: absolute; bottom: 16px; left: 16px; background: #ffffff; border-radius: 12px; padding: 12px 18px; display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.pm-city-exp-badge .pm-exp-num { font-size: 2rem; font-weight: 900; color: #0a4ebd; line-height: 1; }
.pm-city-exp-badge .pm-exp-label { font-size: 12px; color: #64748b; line-height: 1.4; }
.pm-city-prose p { color: #475569; font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.pm-city-feature-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pm-city-pill { display: flex; align-items: center; gap: 8px; background: #f0f6ff; border: 1px solid #d4e4ff; color: #0a4ebd; border-radius: 8px; padding: 8px 14px; font-size: 13px; font-weight: 600; }
.pm-city-pill i { font-size: 15px; }
.pm-city-checklist { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 14px 0 18px; }
.pm-city-checklist li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #334155; }
.pm-city-checklist li i { color: #0a4ebd; font-size: 16px; flex-shrink: 0; }
.pm-city-stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: linear-gradient(120deg, #001333 0%, #0a4ebd 100%); border-radius: 14px; padding: 20px 10px; margin-top: 24px; text-align: center; }
.pm-city-stat { padding: 0 10px; border-right: 1px solid rgba(255,255,255,0.15); }
.pm-city-stat:last-child { border-right: none; }
.pm-city-stat .pm-stat-num { display: block; font-size: 1.4rem; font-weight: 900; color: #ffd600; line-height: 1; margin-bottom: 4px; }
.pm-city-stat .pm-stat-label { font-size: 11px; color: rgba(255,255,255,0.75); font-weight: 500; }
.pm-city-review-card { background: #f8fafc; border: 1px solid #e2e8f0; border-left: 4px solid #0a4ebd; border-radius: 12px; padding: 18px; height: 100%; }
.pm-city-review-card .pm-review-stars { color: #f59e0b; font-size: 13px; margin-bottom: 10px; }
.pm-city-review-card p { font-size: 13px; color: #475569; line-height: 1.6; font-style: italic; margin-bottom: 14px; }
.pm-city-review-card .pm-review-author { display: flex; align-items: center; gap: 10px; }
.pm-city-review-card .pm-review-avatar { width: 36px; height: 36px; background: linear-gradient(135deg, #0a4ebd, #001333); color: #fff; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.pm-city-review-card .pm-review-author strong { display: block; font-size: 13px; color: #001333; }
.pm-city-review-card .pm-review-author small { font-size: 11px; color: #94a3b8; }
.pm-city-faq-item { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.pm-city-faq-btn { width: 100%; text-align: left; background: none; border: none; padding: 16px 20px; display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 14px; color: #001333; cursor: pointer; transition: background 0.2s; }
.pm-city-faq-btn:hover { background: #f0f6ff; }
.pm-city-faq-btn.active { color: #0a4ebd; background: #f0f6ff; }
.pm-city-faq-btn .pm-faq-q-icon { color: #ff6600; font-size: 17px; flex-shrink: 0; }
.pm-city-faq-btn .pm-faq-chevron { margin-left: auto; font-size: 14px; color: #94a3b8; transition: transform 0.3s; }
.pm-city-faq-btn[aria-expanded="true"] .pm-faq-chevron { transform: rotate(180deg); color: #0a4ebd; }
.pm-city-faq-btn span { flex: 1; }
.pm-city-faq-body { padding: 4px 20px 16px 49px; font-size: 13px; color: #64748b; line-height: 1.7; }
@media (max-width: 768px) {
  .pm-city-content-card { padding: 20px 16px; }
  .pm-city-stats-strip { grid-template-columns: repeat(2, 1fr); gap: 12px 0; }
  .pm-city-stat { padding: 8px 10px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .pm-city-stat:nth-child(even) { border-right: none; }
  .pm-city-checklist { grid-template-columns: 1fr; }
  .pm-city-hero-img { max-height: 200px; }
}
@media (max-width: 480px) { .pm-city-feature-pills { flex-direction: column; } }

/* ==========================================================================
   SERVICE WIDGETS
   ========================================================================== */

/* Clean Service Card Design */
.srv-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #eef2f6;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    height: 100%;
    transition: all 0.3s ease;
}
.srv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.srv-icon-wrap {
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.srv-icon-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.srv-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.4;
}
.srv-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}
.srv-link {
    font-size: 0.9rem;
    color: #4ea3fc;
    text-decoration: none;
    font-weight: 400;
    display: inline-block;
    margin-top: auto;
}
.srv-link:hover {
    color: #073c91;
    text-decoration: underline;
}


/* Clean Card & Image Styles from service_widget */
.sec-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f2f5;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 !important;
}
.sec-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,86,179,0.15);
}
.srv-img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}
.srv-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.sec-service-card:hover .srv-img-wrap img {
    transform: scale(1.05);
}
.srv-icon-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: #0056b3;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
}
.srv-content {
    padding: 25px 20px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.srv-title {
    font-size: 15px;
    color: #011025;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.srv-text {
    font-size: 12.5px;
    color: #55606d;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}
.srv-link {
    color: #0056b3;
    font-size: 13px;
    transition: color 0.2s ease;
}
.srv-link:hover {
    color: #003d82;
}
.srv-link i {
    transition: transform 0.2s ease;
}
.srv-link:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   GALLERY & IMAGES (WIDGETS, MODULES, LIGHTBOX)
   ========================================================================== */

/* --- Mosaic Collage Gallery Widget --- */
.sec-gallery-section {
    background-color: #ffffff;
    position: relative;
}

/* Mosaic Collage Grid Layout matching sketch */
.gallery-mosaic-wrapper {
    display: grid;
    gap: 14px;
    width: 100%;
}

.gallery-standard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    width: 100%;
}
.gallery-standard-grid .gallery-mosaic-card {
    height: 220px;
}

/* Base Card Style */
.gallery-mosaic-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef2f7;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    width: 100%;
}

.gallery-mosaic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 86, 179, 0.18);
    border-color: rgba(0, 86, 179, 0.35);
    z-index: 5;
}

.gallery-mosaic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* Overlay & Badges */
.gallery-mosaic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(1, 16, 37, 0.15) 0%, rgba(1, 16, 37, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    opacity: 0;
    transition: all 0.35s ease;
    z-index: 2;
}

.gallery-mosaic-card:hover .gallery-mosaic-overlay {
    opacity: 1;
}

.gallery-top-badge {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(0, 86, 179, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 6px;
}

.gallery-bottom-info {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.gallery-mosaic-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.35;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-zoom-icon-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    color: #0056b3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-mosaic-card:hover .gallery-zoom-icon-badge {
    transform: scale(1);
}

/* --- Exact Grid Layout Specifics (Matching Sketch Diagram) --- */
/* Desktop Layout: (min-width: 992px) */
@media (min-width: 992px) {
    .gallery-mosaic-wrapper {
        grid-template-columns: 1fr 1fr 1fr 1.15fr 1fr;
        grid-template-rows: 200px 200px;
    }
    
    /* Box 1 (Top Left Horizontal) */
    .mosaic-card-0 {
        grid-column: 1;
        grid-row: 1;
    }
    
    /* Box 2 (Top Middle-Left Horizontal) */
    .mosaic-card-1 {
        grid-column: 2;
        grid-row: 1;
    }
    
    /* Box 3 (Top Middle Horizontal) */
    .mosaic-card-2 {
        grid-column: 3;
        grid-row: 1;
    }
    
    /* Box 4 (Bottom Left Horizontal) */
    .mosaic-card-3 {
        grid-column: 1;
        grid-row: 2;
    }
    
    /* Box 5 (Bottom Wide Panoramic Horizontal, Spanning Col 2 & 3) */
    .mosaic-card-4 {
        grid-column: 2 / span 2;
        grid-row: 2;
    }
    
    /* Box 6 (Tall Portrait, Spanning Row 1 & 2 in Col 4) */
    .mosaic-card-5 {
        grid-column: 4;
        grid-row: 1 / span 2;
    }
    
    /* Box 7 (Top Right Horizontal) */
    .mosaic-card-6 {
        grid-column: 5;
        grid-row: 1;
    }
    
    /* Box 8 (Bottom Right Horizontal) */
    .mosaic-card-7 {
        grid-column: 5;
        grid-row: 2;
    }
}

/* Tablet Layout: (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .gallery-mosaic-wrapper {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 180px;
    }
    .mosaic-card-0 { grid-column: span 2; grid-row: span 1; }
    .mosaic-card-1 { grid-column: span 2; grid-row: span 1; }
    .mosaic-card-2 { grid-column: span 2; grid-row: span 1; }
    .mosaic-card-3 { grid-column: span 2; grid-row: span 1; }
    .mosaic-card-4 { grid-column: span 4; grid-row: span 1; }
    .mosaic-card-5 { grid-column: span 2; grid-row: span 2; }
    .mosaic-card-6 { grid-column: span 2; grid-row: span 1; }
    .mosaic-card-7 { grid-column: span 2; grid-row: span 1; }
}

/* Mobile Layout: (< 768px) */
@media (max-width: 767px) {
    .gallery-mosaic-wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 155px;
        gap: 10px;
    }
    .mosaic-card-0 { grid-column: span 1; grid-row: span 1; }
    .mosaic-card-1 { grid-column: span 1; grid-row: span 1; }
    .mosaic-card-2 { grid-column: span 1; grid-row: span 1; }
    .mosaic-card-3 { grid-column: span 1; grid-row: span 1; }
    .mosaic-card-4 { grid-column: span 2; grid-row: span 1; }
    .mosaic-card-5 { grid-column: span 2; grid-row: span 2; }
    .mosaic-card-6 { grid-column: span 1; grid-row: span 1; }
    .mosaic-card-7 { grid-column: span 1; grid-row: span 1; }
}

/* Gallery Action Button */
.btn-view-gallery {
    background: linear-gradient(135deg, #0056b3 0%, #004494 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 13px 32px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 18px rgba(0, 86, 179, 0.28);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
}

.btn-view-gallery:hover {
    background: linear-gradient(135deg, #004494 0%, #002d62 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.4);
    color: #ffffff !important;
}

.btn-view-gallery i {
    transition: transform 0.3s ease;
    font-size: 16px;
}

.btn-view-gallery:hover i.bi-arrow-right {
    transform: translateX(4px);
}


/* gallery_modules.css */

/* Photo Gallery Cards */
.gallery-photo-card {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease;
    border: 1px solid #eef1f6 !important;
}
.gallery-photo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 86, 179, 0.12) !important;
    border-color: #0056b3 !important;
}
.gallery-bg-success-soft {
    background-color: rgba(0, 86, 179, 0.1) !important;
    color: #0056b3 !important;
}
.gallery-img-wrapper:hover .gallery-hover-overlay {
    opacity: 1 !important;
}
.gallery-bg-dark-50 {
    background: linear-gradient(180deg, rgba(1, 16, 37, 0.2) 0%, rgba(1, 16, 37, 0.8) 100%) !important;
}
.gallery-transition-all {
    transition: all 0.35s ease-in-out;
}

.gallery-img {
    height: 220px;
    object-fit: cover;
}
.gallery-icon-lg {
    font-size: 2rem;
}
.gallery-badge-sm {
    font-size: 0.75rem;
}
.gallery-title-sm {
    font-size: 1rem;
}

/* Video Gallery Cards */
.gallery-video-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid #eef1f6 !important;
}
.gallery-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 86, 179, 0.12) !important;
    border-color: #0056b3 !important;
}

/* Photo Gallery Page Lightbox Modal */
.pg-lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(3, 10, 26, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.pg-lightbox-modal.show {
    display: flex;
    opacity: 1;
}
.pg-lightbox-body {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pg-lightbox-img-wrap {
    max-width: 85vw;
    max-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pg-lightbox-img-wrap img {
    max-width: 100%;
    max-height: 78vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: pgZoomIn 0.25s ease-out;
}
@keyframes pgZoomIn {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.pg-lightbox-btn {
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 100;
}
.pg-lightbox-btn:hover {
    background: #0056b3;
    color: #fff;
    transform: scale(1.1);
}
.pg-btn-close {
    top: -50px;
    right: 0;
}
.pg-btn-close:hover {
    background: #dc3545;
}
.pg-btn-prev {
    left: -65px;
    top: 50%;
    transform: translateY(-50%);
}
.pg-btn-next {
    right: -65px;
    top: 50%;
    transform: translateY(-50%);
}
.pg-btn-prev:hover, .pg-btn-next:hover {
    transform: translateY(-50%) scale(1.1);
}
.pg-lightbox-footer {
    margin-top: 12px;
    text-align: center;
    color: #fff;
}
@media (max-width: 991px) {
    .pg-btn-prev { left: 10px; }
    .pg-btn-next { right: 10px; }
    .pg-btn-close { top: -45px; right: 5px; }
    .pg-lightbox-img-wrap { max-width: 92vw; max-height: 72vh; }
    .pg-lightbox-img-wrap img { max-height: 72vh; }
}

/* ==========================================================================
   CITY LIST & CITY PAGES
   ========================================================================== */

.search-location-section {
    background: #fff;
}

.location-heading h2 {
    display: inline-block;
    color: #e10d0d;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #e10d0d;
    position: relative;
}

.location-heading {
    border-bottom: 1px solid #ddd;
}

.location-list {
    padding-left: 18px;
}

.location-list li a {
    color: #666;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
    line-height: 1.4;
}

.location-list li {
    color: #333;
    margin-bottom: 6px;
}

.location-list li a:hover {
    color: #073c91;
    padding-left: 4px;
}

/* ==========================================================================
   BLOG MODULES
   ========================================================================== */

/* blog_modules.css */

.blog-transition-hover { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.blog-transition-hover:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important; }
.blog-card img { transition: transform 0.4s ease; }
.blog-card:hover img { transform: scale(1.05); }
.blog-title-link { transition: color 0.2s ease; line-height: 1.4; }
.blog-title-link:hover { color: #ffb800 !important; }
.blog-card .btn:hover { background: #052c6e !important; }

.blog-title-highlight { color:#073c91; }
.blog-card-img { height: 240px; object-fit: cover; width: 100%; transition: transform 0.4s ease; }
.blog-date-badge { font-size: 0.9rem; }
.blog-icon-primary { color: #073c91; }
.blog-btn-primary { background: #073c91; color: #fff; transition: background 0.3s ease; }

.blog-post-link-item:hover .blog-post-title { color: #ffb800 !important; }
.blog-post-link-item:hover img { transform: scale(1.05); }
.blog-content-wrapper { line-height: 1.8; font-size: 1.05rem; }
.blog-content-wrapper img { max-width: 100%; height: auto; border-radius: 10px; margin: 15px 0; }
.blog-content-wrapper a { color: #073c91; text-decoration: none; }
.blog-content-wrapper a:hover { text-decoration: underline; }

.blog-details-img { max-height: 450px; object-fit: cover; }
.blog-btn-share { background: rgba(7, 60, 145, 0.1); color: #073c91; border: none; transition: background 0.3s; }
.blog-btn-share:hover { background: rgba(7, 60, 145, 0.2); }
.blog-details-title { color: #073c91; line-height: 1.4; }
.blog-sidebar-sticky { top: 100px; z-index: 1; }
.blog-recent-post-img { width: 80px; height: 80px; object-fit: cover; transition: transform 0.3s ease; }
.blog-post-title { font-size: 0.95rem; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color 0.2s; }
.blog-border-warning { border-color: #ffb800 !important; }
.blog-icon-lg-primary { font-size: 3rem; color: #073c91; }

.blog-btn-quote { background-color: #ffb800; color: #000; border: none; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.blog-btn-quote:hover { transform: translateY(-2px); box-shadow: 0 8px 15px rgba(255, 184, 0, 0.3); }

.blog-bg-fb { background-color: #1877F2; }
.blog-bg-tw { background-color: #1DA1F2; }
.blog-bg-wa { background-color: #25D366; }

/* ==========================================================================
   CONTACT MODULES & MODALS
   ========================================================================== */

/* Call Me Back Modal */
.contact-modal-content { border-radius: 8px; border: none; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.contact-modal-header { position: relative; }
.contact-modal-close { position: absolute; right: 15px; top: 15px; z-index: 2; width: 10px; height: 10px; font-weight: bold; }
.contact-modal-title { color: #0a4ebd; font-family: 'Times New Roman', serif; font-size: 42px; font-weight: normal; }
.contact-modal-input { border-radius: 4px; padding: 12px 15px; border: 1px solid #ced4da; font-size: 16px; }
.contact-modal-btn { background-color: #0a4ebd; color: white; border-radius: 4px; padding: 12px; font-size: 18px; font-weight: 500; border: none; transition: background-color 0.3s; }
.contact-modal-btn:hover { background-color: #083c93; }
.contact-modal-result { font-weight: 600; }

/* Contacts page */
.contact-title-primary { color: #073c91; }
.contact-icon-box { width: 60px; height: 60px; font-size: 1.5rem; background: rgba(7, 60, 145, 0.1); color: #073c91; }
.contact-icon-box-success { width: 60px; height: 60px; font-size: 1.5rem; background: rgba(25, 135, 84, 0.1); color: #198754; }
.contact-icon-box-warning { width: 60px; height: 60px; font-size: 1.5rem; background: rgba(255, 193, 7, 0.1); color: #ffc107; }
.contact-border-warning { border-color: #ffb800 !important; }
.contact-input-rounded { border-radius: 8px; }
.contact-btn-rounded { border-radius: 8px; font-size: 1.1rem; }

/* Quote Modal */
.contact-quote-gap { gap: 10px; }
.contact-custom-modal .modal-dialog { max-width: 500px; }
.contact-custom-modal .modal-content { border: 0; border-radius: 16px; overflow: hidden; background: #ffffff; box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25); }
.contact-form-header { background: linear-gradient(135deg, #06283d, #1363df); color: #fff; padding: 15px 20px; display: flex; align-items: center; justify-content: space-between; }
.contact-form-header span { font-size: 20px; font-weight: 700; letter-spacing: .3px; }
.contact-form-header .close { width: 30px; height: 30px; border: 0; border-radius: 50%; background: rgba(255,255,255,.18); color: #fff; display: flex; align-items: center; justify-content: center; transition: .3s; }
.contact-form-header .close:hover { background: #fff; color: #1363df; }
#quotemodal { padding: 20px; }
#quotemodal .form-group { margin-bottom: 12px; }
#quotemodal .form-icon { position: relative; }
#quotemodal .form-icon i { position: absolute; left: 14px; top: 21px; transform: translateY(-50%); color: #1363df; font-size: 16px; z-index: 2; }
#quotemodal textarea + i, #quotemodal .form-icon:has(textarea) i { top: 14px; transform: none; }
#quotemodal .form-control { height: 42px; border-radius: 10px; border: 1px solid #e1e7ef; background: transparent; padding-left: 40px; font-size: 14px; color: #222; box-shadow: none; transition: .25s ease; position: relative; z-index: 1; }
#quotemodal textarea.form-control { min-height: 90px; padding-top: 12px; resize: none; }
#quotemodal .form-control:focus { background: transparent; border-color: #1363df; box-shadow: 0 0 0 4px rgba(19, 99, 223, .12); }

.floating-label-modal { position: absolute; left: 40px; top: 11px; font-size: 14px; color: #6c757d; pointer-events: none; transition: 0.2s ease all; background: transparent; z-index: 0; }
.floating-label-modal-textarea { position: absolute; left: 40px; top: 11px; font-size: 14px; color: #6c757d; pointer-events: none; transition: 0.2s ease all; background: transparent; z-index: 0; }
.select-label-modal { position: absolute; left: 14px; top: 6px; font-size: 9px; color: #6c757d; font-weight: 700; text-transform: uppercase; pointer-events: none; z-index: 3; }

#quotemodal .form-control:focus ~ .floating-label-modal,
#quotemodal .form-control:not(:placeholder-shown) ~ .floating-label-modal { top: -8px; left: 30px; font-size: 11px; font-weight: 600; color: #1363df; background: #ffffff; padding: 0 4px; z-index: 2; }

#quotemodal .form-control:focus ~ .floating-label-modal-textarea,
#quotemodal .form-control:not(:placeholder-shown) ~ .floating-label-modal-textarea { top: -8px; left: 30px; font-size: 11px; font-weight: 600; color: #1363df; background: #ffffff; padding: 0 4px; z-index: 2; }

#quotemodal .theme-btn { border: 0; border-radius: 50px; padding: 10px 24px; font-size: 14px; font-weight: 600; background: linear-gradient(135deg, #1363df, #47b5ff); color: #fff; transition: .3s ease; box-shadow: 0 10px 25px rgba(19, 99, 223, .25); }
#quotemodal .theme-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(19, 99, 223, .35); }
#quotemodal button[type="reset"] { background: #eef4fb; color: #1363df; box-shadow: none; }
#quotemodal button[type="reset"]:hover { background: #dcecff; }
#resultquotemodal { margin-top: 10px; text-align: center; font-weight: 600; }
@media (max-width: 576px) { #quotemodal { padding: 15px; } .contact-form-header { padding: 12px 15px; } .contact-form-header span { font-size: 18px; } }

/* Review Modal */
.contact-review-form-label { font-weight: 600; font-size: 0.9rem; color: #475569; margin-bottom: 8px; }
.contact-review-form-control { border-radius: 10px; border: 1px solid #e2e8f0; padding: 12px 15px; }
.contact-review-form-control:focus { border-color: #ff6600; box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.1); outline: none; }
.contact-rating-select { display: flex; gap: 10px; margin-bottom: 20px; }
.contact-rating-item { cursor: pointer; font-size: 24px; color: #cbd5e1; transition: 0.2s; }
.contact-rating-item.active { color: #f59e0b; }
.contact-btn-submit-review { background: #ff6600; color: #fff; border: none; padding: 15px 30px; border-radius: 10px; font-weight: 700; width: 100%; transition: 0.3s; margin-top: 10px; }
.contact-btn-submit-review:hover { background: #e65c00; transform: translateY(-2px); color: #fff; }

.contact-review-modal-content { border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.contact-review-modal-title { font-weight: 800; color: #001846; }
.contact-review-rating-wrap { margin-top: -4px; }
.contact-review-emoji { font-size: 28px; line-height: 1; }
.contact-review-number { font-weight: 700; color: #475569; font-size: 1.1rem; }
.contact-review-total { color: #94a3b8; font-weight: 600; }

/* ==========================================================================
   REVIEWS & REVIEW MODALS
   ========================================================================== */

﻿/* reviews_modules.css */

/* reviews.php and single_review.php */
.reviews-service-page {
    min-height: 50vh;
    background-image: url('../images/location/location-background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 15px;
    padding-bottom: 15px;
    padding: 30px 0;
    color: #000;
}
.reviews-feature-content-section {
    box-shadow: 15px 15px 25px rgba(0, 0, 0, 0.1);
    color: black;
}
.reviews-header-wrap {
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}
.reviews-header-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #001333;
}
.reviews-write-btn {
    background: #0a4ebd;
    border-color: #0a4ebd;
    font-weight: 700;
}
.reviews-header-line {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ff6600;
}
.reviews-fade-in {
    visibility: visible;
    animation: fadeInUp 0.6s ease-in-out;
}
.reviews-write-review-btn {
    background-color: #e21b22;
    color: #fff;
    border: none;
    width: 100%;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    padding: 10px;
}
.reviews-single-review {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    position: relative;
}
.reviews-single-review:hover {
    transform: scale(1.02);
}
.reviews-review-icon {
    align-self: center;
    max-width: 70px;
    margin-bottom: 10px;
}
.reviews-review-img {
    width: 100%;
    border-radius: 50%;
}
.reviews-review-content {
    flex-grow: 1;
}
.reviews-review-author {
    color: #f4854a;
    font-size: 0.9rem;
}
.reviews-author-name {
    background-color: #000;
    padding: 3px;
    border-radius: 5px;
    color: #fff;
}
.reviews-review-date {
    color: #555;
    font-size: 0.8rem;
}
.reviews-review-rating {
    margin-top: 10px;
}
.reviews-rating-value {
    color: #000;
    font-weight: bold;
}
.reviews-review-title {
    font-weight: bold;
    color: #000;
    margin-top: 5px;
    font-size: 1.1rem;
}
.reviews-review-body {
    color: #000;
    margin: 5px 0;
}
.reviews-review-email {
    font-weight: bold;
    color: #555;
}
.reviews-no-reviews-text {
    color: #888;
    text-align: center;
    font-size: 1.2rem;
    margin: 20px auto;
}
.reviews-read-more-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 0.9rem;
    margin-top: 10px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s;
}
.reviews-read-more-btn:hover {
    background-color: #0056b3;
}

/* single_review.php extra styles */
.reviews-single-content {
    padding: 25px 15px;
    transition: .5s;
    margin-bottom: 30px;
    background-color: white;
    border-radius: 12px;
}
.reviews-content-text {
    padding: 0 10px 0 0;
}
.reviews-content-text h4 {
    font-size: 20px;
    font-weight: 500;
    color: #444;
    padding: 0px 0 4px;
}
@media (min-width: 992px) and (max-width: 1199px) {
    .reviews-content-text h4 {
        font-size: 18px;
    }
}
.reviews-btn-write-review {
    background:#f4854a;
    color:white;
    border:none;
    width:100%;
    font-size:100%;
    font-weight:bold;
}
.reviews-author-badge {
    color:white;
    background-color:black;
    padding:5px;
    border-radius:5px;
}
.reviews-float-right-span {
    float: right;
}
.reviews-star-saver-black {
    color:black;
}
.reviews-title-black {
    font-weight: bold;
    color:black;
    margin-top: 5px;
}
.reviews-text-black {
    color:black;
}
.reviews-text-black-bold {
    font-weight: bold;
    color:black;
}
.reviews-date-yellow {
    color:#fab504;
}
.reviews-reply-box {
    padding-top: 20px; 
    color:black;
}
.reviews-reply-box b {
    font-weight:bold;
}
.reviews-reply-text {
    text-align: right;
}

/* reviewmodal.php */
.reviews-modal-content {
    background: linear-gradient(107.2deg, rgb(150, 15, 15) 10.6%, rgb(247, 0, 0) 91.1%);
}
.reviews-modal-title {
    color: white; 
    font-size: 20px;
    font-weight:bold;
    line-height:1;
}
.reviews-modal-close {
    color: red; 
    font-size: 30px; 
    margin-right: 15px;
}
.reviews-modal-label {
    color: white; 
    display: block;
}
.reviews-modal-file {
    color:white;
}
.reviews-modal-submit {
    background-color: #FBA707;
}
.reviews-modal-clear {
    background-color: white; 
    color: #A0A0A0;
}

.reviews-rating {
    display: flex;
    width: 100%;
    justify-content: center;
    overflow: hidden;
    flex-direction: row-reverse;
    position: relative;
}
.reviews-rating>input {
    display: none;
}
.reviews-rating>label {
    cursor: pointer;
    width: 40px;
    height: 40px;
    margin-top: auto;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23e3e3e3' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 76%;
    transition: .3s;
}
.reviews-rating>input:checked~label,
.reviews-rating>input:checked~label~label {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}

/* ==========================================================================
   TRACKING MODULES
   ========================================================================== */

/* Tracking */
.contact-tracking-details-card { display: none; }
.contact-tracking-progress { position: relative; padding: 20px 0; }
.contact-progress-bar-container { position: relative; }
.contact-progress { height: 8px; background-color: #e9ecef; border-radius: 4px; margin: 30px 0; }
.contact-progress-bar { background-color: #28a745; transition: width 0.5s ease; }
.contact-progress-steps { display: flex; justify-content: space-between; position: absolute; width: 100%; top: -15px; }
.contact-step { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
.contact-step-icon { width: 40px; height: 40px; border-radius: 50%; background-color: #e9ecef; color: #6c757d; display: flex; align-items: center; justify-content: center; font-weight: bold; margin-bottom: 8px; border: 3px solid #fff; }
.contact-step-label { font-size: 12px; font-weight: 600; text-align: center; margin-bottom: 4px; }
.contact-step-date { font-size: 11px; color: #6c757d; text-align: center; }
.contact-step.active .contact-step-icon { background-color: #28a745; color: white; }
.contact-step.completed .contact-step-icon { background-color: #28a745; color: white; }
.contact-tracking-table table { width: 100%; border-collapse: collapse; }
.contact-tracking-table th { background-color: #f8f9fa; padding: 10px; text-align: left; border: 1px solid #dee2e6; }
.contact-tracking-table td { padding: 10px; border: 1px solid #dee2e6; }
.contact-tracking-table tr:nth-child(even) { background-color: #f8f9fa; }
.contact-tracking-form input { border-radius: 4px; }
#statusMessage { margin-top: 10px; }
.contact-tracking-details-card .card { border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); }
@media(max-width: 768px) { .contact-track-details-flex { display: flex; margin-bottom: 10px; } }
.contact-tracking-label { font-weight: 700; }

.contact-tracking-success { color: green; }
.contact-tracking-link { background-color: #28a745; padding: 4px; color: #fff; }
.contact-tracking-underline { text-decoration: underline; }

/* ==========================================================================
   FOOTER & FLOATING ACTION BUTTONS
   ========================================================================== */

.footer-section {
  background: #011025; /* Very dark navy blue */
  color: #ffffff;
  position: relative;
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
}

/* Feature Top Strip */
.footer-feature-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.footer-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-feature-item i {
  color: #00b4d8;
  font-size: 32px;
  line-height: 1;
}

.footer-feature-text {
  display: flex;
  flex-direction: column;
}

.footer-feature-text strong {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.footer-feature-text span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.feature-col {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.feature-col:last-child {
  border-right: none;
}

@media (max-width: 991px) {
  .feature-col:nth-child(2) {
    border-right: none;
  }
  .feature-col:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .feature-col {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-bottom: 20px;
    margin-bottom: 0;
  }
  .feature-col:last-child {
    border-bottom: none !important;
    padding-bottom: 0;
  }
}

/* Main Footer */
.footer-main {
  padding: 40px 0 20px;
}

.footer-brand-copy {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 15px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #00b4d8;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-widget ul li {
  margin-bottom: 8px;
}

.footer-widget ul li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.25s ease;
}

.footer-widget ul li a::before {
  content: "\F285"; /* Bootstrap icons right arrow chevron */
  font-family: bootstrap-icons;
  color: #00b4d8;
  font-size: 10px;
}

.footer-widget ul li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-contact-item:hover {
  color: #ffffff;
}

.footer-contact-item .icon-circle {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 180, 216, 0.15);
  color: #00b4d8;
  font-size: 12px;
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: 13px;
  line-height: 1.6;
}

/* Newsletter Strip */
.footer-newsletter {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
}

.newsletter-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #00b4d8;
  display: grid;
  place-items: center;
  color: #00b4d8;
  font-size: 18px;
  flex-shrink: 0;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  width: 100%;
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  height: 42px;
  border-radius: 4px;
  font-size: 13px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: #0284c7;
  color: #ffffff;
  box-shadow: none;
}

.btn-subscribe {
  background: #0284c7;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13px;
  height: 42px;
  padding: 0 20px;
  border-radius: 4px;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-subscribe:hover {
  background: #0369a1;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.footer-policy-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-policy-links a:hover {
  color: #38bdf8;
}

.floating-actions {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  background: #ffffff;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  z-index: 1040;
}

.float-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  color: #555;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  border-right: 1px solid #eee;
  transition: background-color 0.3s;
  background: transparent;
  border-top: none;
  border-bottom: none;
  border-left: none;
}

.float-btn:last-child {
  border-right: none;
}

.float-btn .icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 4px;
  color: #fff;
  font-size: 16px;
}

.float-btn span {
  white-space: nowrap;
}

/* Call Now Button */
.float-call .icon-wrap {
  background: #00b4d8;
}
.float-call:hover { color: #00b4d8; background: #f4f8ff; }

/* WhatsApp Button */
.float-whatsapp .icon-wrap {
  background: #25d366;
}
.float-whatsapp:hover { color: #25d366; background: #f0fdf4; }

/* Call Me Back Button */
.float-callback .icon-wrap {
  background: #ffb300;
  color: #030f26;
}
.float-callback:hover { color: #d69600; background: #fffdf5; }

@media (min-width: 992px) {
  .floating-actions {
    position: fixed;
    bottom: 30px;
    left: auto;
    right: 30px;
    width: auto;
    flex-direction: column;
    gap: 15px;
    background: transparent;
    box-shadow: none;
    border: none;
  }
  .float-btn {
    flex-direction: row;
    align-items: center;
    border: none;
    padding: 0;
    gap: 10px;
    background: transparent !important;
  }
  .float-btn span {
    background: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-size: 14px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    order: -1;
  }
  .float-btn:hover span {
    opacity: 1;
    transform: translateX(0);
  }
  .float-btn .icon-wrap {
    width: 54px;
    height: 54px;
    margin-bottom: 0;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  }
}

@media (max-width: 767px) {
  .newsletter-form {
    flex-direction: column;
  }
  .btn-subscribe {
    width: 100%;
  }
  .footer-bottom {
    padding-bottom: 80px; /* space for floating buttons */
  }
}

/* ==========================================================================
   TEMPLATE & UTILITIES
   ========================================================================== */

﻿/* template_modules.css */

/* header_error.php */
.template-uk-sticky-fixed {animation-duration: 0.3s;}
.template-quickqbtn {position:fixed;z-index:99;bottom:1%;left:1.5%;padding:5px 0px 0px 7px;height:35px;width:155px;color:#fff;background-image: linear-gradient(-20deg, #fc6076 0%, #ff9a44 100%);}
.template-quickqbtn a {color:#fff;font-size: 14px;}
.template-services-carousel-single-item {padding:5px}
.template-blinking {animation:template-blinkingText 1.5s infinite;padding: 10px;border-radius: 10px;}
@keyframes template-blinkingText {
	0% { border: 2px solid #f7b1b1;	}
	49% { border: 2px solid #ee6262;	}
	50% { border: 2px solid #da0202;	}
	99% { border: 2px solid #f33535;	}
	100% { border: 2px solid #f79393;	}
}


/* ==========================================================================
   UTILITIES AND EXTRACTED COMPONENT STYLES
   (Migrated from inline styles)
   ========================================================================== */

.footer-logo-img {
    height: 55px; max-width: 100%;
}

.footer-col-title {
    color: #00b4d8 !important; letter-spacing: 0.5px;
}

.footer-news-desc {
    font-size: 13px;
}

.footer-security-icon {
    font-size: 24px; color: #00b4d8;
}

.nav-brand-logo-img {
    height: 60px; max-width: 100%;
}

.nav-chevron-icon {
    font-size: 10px;
}

.slider-accent-text {
    color: #00b4d8;
}

.slider-feature-icon {
    font-size: 24px; color: #00b4d8;
}

.slider-feature-label {
    font-size: 11px; font-weight: 500; line-height: 1.3; color: rgba(255, 255, 255, 0.9);
}

.srv-detail-heading {
    color: #011025;
}

.srv-detail-desc {
    color: #55606d; line-height: 1.8;
}

.srv-solution-icon {
    font-size: 40px; color: #0056b3;
}

.srv-product-icon {
    font-size: 32px;
}

.track-top-stripe {
    position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(90deg, #031b4e, #ff7a16);
}

.track-main-title {
    color: #031b4e; font-weight: 800; letter-spacing: -0.5px;
}

.track-form-max {
    max-width: 650px;
}

.track-box-icon {
    left: 20px; top: 50%; transform: translateY(-50%); color: #ff7a16; font-size: 1.1rem;
}

.premium-tracking-input {
    padding-left: 55px; border-radius: 50px; border: 2px solid #f1f5f9; box-shadow: none; font-size: 16px; height: 54px; background-color: #f8fafc;
}

.premium-tracking-btn {
    border-radius: 50px; background-color: #ff7a16; color: white; font-weight: 700; border: none; transition: all 0.3s; height: 54px; min-width: 150px;
}

.premium-clear-btn {
    width: 54px; height: 54px; border: 2px solid #f1f5f9; color: #64748b; transition: all 0.3s; flex-shrink: 0;
}

.review-thumb-img {
    height: 60px; width: 60px; object-fit: cover; border-radius: 6px; border: 1px solid #ddd; cursor: pointer;
}

.admin-reply-border {
    border-left: 3px solid #0056b3;
}

.admin-reply-heading {
    color: #0056b3; font-size: 0.9rem; font-weight: bold;
}

.admin-reply-body {
    font-size: 0.85rem; color: #555;
}

.review-footer-date {
    font-size: 0.75rem;
}

.review-modal-close-opacity {
    opacity: 1;
}

.review-modal-full-img {
    max-height: 85vh; object-fit: contain; max-width: 100%;
}

.city-overlap-card {
    margin-top: -50px; position: relative; z-index: 10;
}

.city-main-heading {
    color: #011025;
}

.city-main-desc {
    color: #55606d; line-height: 1.8;
}

.city-feature-icon {
    font-size: 40px; color: #00b4d8;
}

.sec-services-section {
    background-color: #f4f8fb;
}

.badge-dot-primary {
    width: 4px; height: 4px; border-radius: 50%; background: #0056b3; display: inline-block;
}

.badge-line-primary {
    width: 30px; height: 1px; background: #0056b3; display: inline-block;
}

.badge-label-primary {
    color: #0056b3; letter-spacing: 1px; font-size: 12px; text-transform: uppercase; font-weight: 700;
}

.sec-widget-heading {
    font-weight: 900; font-size: 28px; color: #011025; letter-spacing: -0.5px;
}

.text-highlight-blue {
    color: #0056b3;
}

.sec-truck-badge-icon {
    color: #0056b3; font-size: 18px;
}

.sec-widget-lead {
    color: #55606d; font-size: 14px; max-width: 650px; line-height: 1.6;
}

.border-soft {
    border: 1px solid #f0f2f5;
}

.feature-badge-icon-lg {
    font-size: 28px; color: #0056b3;
}

.feature-badge-title {
    color: #011025; font-size: 13px;
}

.feature-badge-subtitle {
    font-size: 11px; line-height: 1.4;
}

.gallery-camera-icon {
    color: #0056b3; font-size: 20px;
}

.text-sm-11 {
    font-size: 11px;
}

.icon-size-17 {
    font-size: 17px;
}

.text-sm-12 {
    font-size: 12px;
}

.faq-header-line {
    width: 40px; height: 2px; background: #0056b3; display: inline-block;
}

.faq-badge-title {
    color: #0056b3; letter-spacing: 1px; font-size: 13px; text-transform: uppercase; font-weight: 700;
}

.faq-main-heading {
    font-weight: 900; font-size: 26px; color: #011025; letter-spacing: -0.5px;
}

.faq-header-sub {
    color: #55606d; font-size: 14px;
}

.faq-bg-soft {
    background-color: #f8f9fa;
}

.faq-help-icon-lg {
    font-size: 36px; color: #0056b3;
}

.faq-help-heading {
    color: #011025; font-size: 20px; font-weight: 800;
}

.faq-help-sub {
    font-size: 13px; line-height: 1.5; color: #55606d;
}

.faq-help-divider {
    border-color: #dee2e6; margin: 15px 0;
}

.faq-call-icon-wrap {
    width: 36px; height: 36px; border-radius: 50%; background: #0056b3; display: flex; align-items: center; justify-content: center; color: #fff;
}

.icon-size-16 {
    font-size: 16px;
}

.faq-contact-label {
    color: #011025; font-size: 13px; font-weight: 700;
}

.faq-contact-sub {
    font-size: 11px; line-height: 1.4; color: #55606d;
}

.faq-bg-primary {
    background-color: #0056b3;
}

.faq-quote-icon-wrap {
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; color: #fff;
}

.faq-quote-btn-text {
    font-size: 16px; letter-spacing: 0.5px;
}

.faq-accordion-card {
    border: 1px solid #eef2f6; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.faq-badge-q-wrap {
    width: 28px; height: 28px; border-radius: 50%; background: #0056b3; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px;
}

.faq-card-question {
    color: #011025; font-size: 14px; padding-right: 15px; font-weight: 700;
}

.faq-answer-container {
    background-color: #f8f9fa; border-left: 4px solid #0056b3; padding: 15px 20px;
}

.faq-answer-text {
    font-size: 13px; line-height: 1.6; color: #55606d;
}

.why-choose-num {
    color: #011025; font-size: 22px; font-weight: 900;
}

.why-choose-badge-text {
    font-size: 10px; letter-spacing: 0.5px; text-transform: uppercase;
}

.we-serve-section {
    background: #f4f7f9; padding: 40px 0;
}

.we-serve-banner-box {
    min-height: 250px;
}

.we-serve-overlay-wrap {
    width: 55%; z-index: 1;
}

.we-serve-gradient-overlay {
    background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0) 70%);
}

.we-serve-title {
    font-weight: 900; font-size: 36px; color: #011025; line-height: 1.1;
}

.we-serve-circle-badge {
    width: 35px; height: 35px; border-radius: 50%; border: 2px solid #011025; display: flex; align-items: center; justify-content: center;
}

.we-serve-badge-icon {
    font-size: 20px; color: #011025; font-weight: bold;
}

.we-serve-badge-text {
    font-weight: 700; color: #011025; font-size: 12px; line-height: 1.2;
}

.we-serve-divider {
    width: 1px; height: 30px; background: #cbd5e1;
}

.we-serve-square-badge {
    width: 35px; height: 35px; border-radius: 5px; border: 2px solid #011025; display: flex; align-items: center; justify-content: center;
}

.we-serve-icon-18 {
    font-size: 18px; color: #011025;
}

.we-serve-text-800 {
    font-weight: 800; color: #011025; font-size: 12px;
}

.we-serve-line {
    flex: 1; height: 2px; background: #011025;
}

.we-serve-dot {
    width: 6px; height: 6px; border-radius: 50%; background: #011025;
}

.we-serve-heading-11 {
    color: #011025; font-weight: 800; font-size: 1.1rem; margin: 0; letter-spacing: 0.5px;
}

.we-serve-card-item {
    border-radius: 10px; border-color: #d2dbe5 !important; background: #ffffff; box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.we-serve-item-icon {
    font-size: 40px; color: #011025; margin-bottom: 10px; transition: color 0.3s ease;
}

.we-serve-item-label {
    color: #011025; font-weight: 700; font-size: 13px; margin: 0; text-transform: uppercase;
}


/* ==========================================================================
   ADDITIONAL EXTRACTED COMPONENT STYLES
   ========================================================================== */

.about-icon-blue-40 {
    font-size: 40px; color: #0056b3;
}

.career-icon-box {
    width: 70px; height: 70px; margin: 0 auto 15px; background: #e6f0fa; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

.choose-card-top-border {
    border-top: 4px solid #0056b3 !important;
}

.choose-icon-32 {
    font-size: 32px; color: #0056b3;
}

.mission-icon-box {
    width: 50px; height: 50px; background: #e6f0fa; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

.testimonial-avatar-box {
    width: 40px; height: 40px; background: #0056b3; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

.text-white-80 {
    color: rgba(255,255,255,0.8);
}

.contact-card-icon-box {
    width: 50px; height: 50px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

.contact-social-btn-size {
    width: 35px; height: 35px; padding: 0; line-height: 33px;
}

.text-black {
    color: black;
}

.qf-btn-highlight {
    background: #0a4ebd !important;
    color: #ffffff !important;
    border-radius: 8px;
    font-weight: bold;
}

.text-accent-blue {
    color: #00b4d8;
}

.text-sm-13 {
    font-size: 13px;
}

.qm-input-size {
    padding-left: 45px; padding-top: 10px; height: 50px;
}

.rounded-6 {
    border-radius: 6px;
}

.qm-btn-cancel {
    background: #6c757d; border-color: #6c757d; border-radius: 6px;
}

.text-xs-75 {
    font-size: 0.75rem;
}

.cursor-pointer {
    cursor: pointer;
}

.icon-size-25rem {
    font-size: 2.5rem;
}

.aw-title-heading {
    font-weight: 900; font-size: 26px; color: #011025; line-height: 1.1;
}

.aw-feature-title {
    color: #011025; font-size: 13px; font-weight: 700;
}

.aw-feature-sub {
    font-size: 11px; line-height: 1.5; color: #55606d;
}

.aw-cta-box {
    background: #011025; padding: 25px 30px; position: relative; z-index: 3;
}

.aw-cta-icon-wrap {
    width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center;
}

.aw-icon-cyan-24 {
    font-size: 24px; color: #00b4d8;
}

.icon-size-18 {
    font-size: 18px;
}

.aw-cta-subtext {
    color: rgba(255,255,255,0.7); font-size: 13px; line-height: 1.5;
}

.aw-icon-blue-22 {
    font-size: 22px; color: #0056b3;
}

.aw-icon-blue-24 {
    color: #0056b3; font-size: 24px;
}

.aw-badge-xs {
    font-size: 9px; letter-spacing: 0.5px;
}

.error-watermark-num {
    font-size: clamp(8rem, 20vw, 14rem); line-height: 1; color: rgba(255, 255, 255, 0.04);
}

.error-alert-icon {
    font-size: 70px; color: #ffd600; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.error-main-heading {
    font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -1px; text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.error-lead-desc {
    color: rgba(255,255,255,0.85); max-width: 600px; font-size: 16px; line-height: 1.6;
}

.error-action-btn {
    background-color: #0056b3; color: #fff; border: 2px solid #0056b3; font-size: 16px; transition: all 0.3s;
}

.icon-size-14 {
    font-size: 14px;
}

.rw-truck-icon {
    color: #0a4ebd; font-size: 18px;
}


/* ==========================================================================
   CONSOLIDATED INLINE REPLACEMENTS
   ========================================================================== */

.style-auto-9d6c6e84 {
    width: 70px; height: 70px; margin: 0 auto 15px; background: #e6f0fa; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #0056b3; font-size: 30px;
}

.style-auto-0babfef7 {
    z-index: 2;
}

.style-auto-c8013b0a {
    width: 50px; height: 50px; background: #e6f0fa; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #0056b3; font-size: 24px;
}

.style-auto-79f1f34b {
    width: 40px; height: 40px; background: #0056b3; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; margin-right: 15px;
}

.style-auto-9806e965 {
    padding:30px; background:#e6e6e6; font-size: 18px !important;
}

.style-auto-c051733d {
    width: 50px; height: 50px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px;
}

.style-auto-6c5761da {
    width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: grid; place-items: center;
}

.style-auto-6c383bc1 {
    font-size: clamp(8rem, 20vw, 14rem); line-height: 1; color: rgba(255, 255, 255, 0.05); margin-bottom: -60px; user-select: none;
}

.style-auto-4b840bad {
    font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -1px; text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.style-auto-a1a2347f {
    background-color: #0056b3; color: #fff; border: 2px solid #0056b3; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s ease; box-shadow: 0 5px 20px rgba(0, 86, 179, 0.4);
}

.style-auto-768e1f23 {
    font-size: 18px;
}

.style-auto-cbe142be {
    width: 36px; height: 36px; border-radius: 50%; background: #0056b3; display: grid; place-items: center; color: #fff;
}

.style-auto-f2250385 {
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); display: grid; place-items: center; color: #fff;
}

.style-auto-bc0d66bc {
    width: 28px; height: 28px; border-radius: 50%; background: #0056b3; color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 700;
}

.style-auto-4abe77d3 {
    background-color: #f8f9fa; border-left: 4px solid #0056b3; padding: 15px 20px; margin-left: 2px;
}

.style-auto-f2ceb25c {
    width: 35px; height: 35px; border-radius: 50%; border: 2px solid #011025; display: grid; place-items: center;
}

.style-auto-ee1c3a05 {
    width: 35px; height: 35px; border-radius: 5px; border: 2px solid #011025; display: grid; place-items: center;
}

.style-auto-557e0cb6 {
    width: 35px; height: 35px; border-radius: 50%; border: 2px solid #011025; display: grid; place-items: center; border-style: dashed;
}

.style-auto-049fd829 {
    border-radius: 10px; border-color: #d2dbe5 !important; background: #ffffff; box-shadow: 0 2px 8px rgba(0,0,0,0.02); transition: all 0.3s ease;
}

.style-auto-6c9d0264 {
    color: #011025; font-weight: 700; font-size: 13px; margin: 0; text-transform: uppercase; transition: color 0.3s ease;
}

.style-auto-bc9cee5c {
    margin-top: 30px;
}

.style-auto-53f2608b {
    background:#002446; border-color:#002446; color:#fff;
}

/* Page and Section Background Classes */
.reviews-section-bg {
    background: linear-gradient(black, rgba(10, 78, 189, 0.21)), url('../images/slider/slider.jpg') center/cover fixed;
}

.error-page-main {
    background: linear-gradient(rgba(1, 16, 37, 0.92), rgba(10, 78, 189, 0.85)), url('../images/slider/slide1.jpg') center/cover no-repeat fixed;
    padding: 160px 0 100px;
    min-height: 100vh;
}

.dynamic-bc-bg {
    background: linear-gradient(rgba(10, 78, 189, 0.85), rgba(1, 16, 37, 0.95)), url('../images/slider/slider.jpg') center/cover no-repeat fixed;
}

/* CodeIgniter Error Pages */
.ci-error-body {
    background-color: #fff;
    margin: 40px;
    font: 13px/20px normal Helvetica, Arial, sans-serif;
    color: #4F5155;
}

.ci-error-container {
    margin: 10px;
    border: 1px solid #D0D0D0;
    box-shadow: 0 0 8px #D0D0D0;
}

.ci-error-h1 {
    color: #444;
    background-color: transparent;
    border-bottom: 1px solid #D0D0D0;
    font-size: 19px;
    font-weight: normal;
    margin: 0 0 14px 0;
    padding: 14px 15px 10px 15px;
}

.ci-error-code {
    font-family: Consolas, Monaco, Courier New, Courier, monospace;
    font-size: 12px;
    background-color: #f9f9f9;
    border: 1px solid #D0D0D0;
    color: #002166;
    display: block;
    margin: 14px 0 14px 0;
    padding: 12px 10px 12px 10px;
}

.ci-error-p {
    margin: 12px 15px 12px 15px;
}

.ci-php-error-box {
    border: 1px solid #990000;
    padding-left: 20px;
    margin: 0 0 10px 0;
}

.ci-php-error-backtrace {
    margin-left: 10px;
}

/* ==========================================================================
   WHY CHOOSE US WIDGET STYLES
   ========================================================================== */
.why-choose-section {
    padding: 60px 0;
    background: var(--white);
}

.wc-badge-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 78, 189, 0.08);
    color: var(--primary-blue);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.wc-main-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--dark-navy);
    line-height: 1.3;
}

.wc-lead-text {
    color: #55606d;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.wc-strengths-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wc-strength-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 22px 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.wc-strength-card:hover {
    background: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(10, 78, 189, 0.1);
}

.wc-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(10, 78, 189, 0.1);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.wc-strength-card:hover .wc-icon-box {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.08) rotate(5deg);
}

.wc-strength-text {
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
}

/* How It Works Box */
.wc-workflow-box {
    background: linear-gradient(145deg, #f8fafc 0%, #edf2f7 100%);
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 36px 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.wc-workflow-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 16px;
}

.wc-workflow-desc {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.wc-step-pill {
    background: var(--white);
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 16px 18px;
    height: 100%;
    transition: all 0.25s ease;
}

.wc-step-pill:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.wc-step-num {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    background: rgba(10, 78, 189, 0.1);
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 8px;
}

.wc-step-text {
    font-size: 0.9rem;
    color: #334155;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Dependable Security Block & Stats */
.wc-dependable-box {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.wc-dependable-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 14px;
}

.wc-dependable-desc {
    color: #55606d;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.wc-stat-item {
    padding: 15px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.25s ease;
}

.wc-stat-item:hover {
    border-color: var(--primary-blue);
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(10, 78, 189, 0.08);
}

.wc-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 4px;
}

.wc-stat-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

@media (max-width: 767.98px) {
    .why-choose-section {
        padding: 40px 0;
    }
    .wc-main-title {
        font-size: 1.6rem;
    }
    .wc-workflow-box,
    .wc-dependable-box {
        padding: 24px 18px;
    }
    .wc-workflow-title {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   SERVICES INDEX PAGE STYLES
   ========================================================================== */
.srv-page-section {
    padding: 60px 0 80px;
    background: #f8fafc;
}

.srv-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 78, 189, 0.08);
    color: var(--primary-blue);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.srv-header-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-navy);
    line-height: 1.25;
}

.srv-header-desc {
    color: #55606d;
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto;
}

/* Service Card Design (Without Image) */
.srv-grid-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 32px 26px 26px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.srv-grid-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), #00d2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.srv-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(10, 78, 189, 0.12);
    border-color: rgba(10, 78, 189, 0.3);
}

.srv-grid-card:hover::before {
    opacity: 1;
}

.srv-card-top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.srv-card-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(10, 78, 189, 0.12) 0%, rgba(10, 78, 189, 0.04) 100%);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    border: 1px solid rgba(10, 78, 189, 0.15);
    transition: all 0.3s ease;
}

.srv-grid-card:hover .srv-card-icon-wrap {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0012e0 100%);
    color: var(--white);
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 8px 20px rgba(10, 78, 189, 0.3);
    border-color: transparent;
}

.srv-card-number-badge {
    font-size: 1.5rem;
    font-weight: 900;
    color: #e2e8f0;
    transition: color 0.3s ease;
}

.srv-grid-card:hover .srv-card-number-badge {
    color: rgba(10, 78, 189, 0.2);
}

.srv-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 6px;
    transition: color 0.2s ease;
}

.srv-grid-card:hover .srv-card-title {
    color: var(--primary-blue);
}

.srv-card-tagline {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.srv-card-text {
    font-size: 0.92rem;
    color: #55606d;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.srv-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 22px;
}

.srv-tag-chip {
    background: #f1f5f9;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.srv-grid-card:hover .srv-tag-chip {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.srv-btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 16px;
    border-radius: 10px;
    background: #f8fafc;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(10, 78, 189, 0.2);
    text-decoration: none;
    transition: all 0.25s ease;
}

.srv-grid-card:hover .srv-btn-action {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(10, 78, 189, 0.25);
}

.srv-btn-action i {
    transition: transform 0.25s ease;
}

.srv-btn-action:hover i,
.srv-grid-card:hover .srv-btn-action i {
    transform: translateX(4px);
}

/* CTA Banner */
.srv-cta-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #001594 100%);
    border-radius: 20px;
    padding: 45px 35px;
    color: var(--white);
    box-shadow: 0 15px 35px rgba(10, 78, 189, 0.3);
    position: relative;
    overflow: hidden;
}

.srv-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.srv-cta-btn-white {
    background: var(--white);
    color: var(--primary-blue);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.srv-cta-btn-white:hover {
    background: #f8fafc;
    color: #0012e0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.srv-cta-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.srv-cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    color: var(--white);
}

@media (max-width: 767.98px) {
    .srv-page-section {
        padding: 40px 0 60px;
    }
    .srv-header-title {
        font-size: 1.7rem;
    }
    .srv-cta-banner {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   ABOUT PAGE STYLES (about.php)
   ========================================================================== */
.ap-section {
    padding: 50px 0 70px;
    background: #f8fafc;
}

.ap-hero-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 35px;
}

.ap-main-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-navy);
    line-height: 1.3;
    margin-bottom: 12px;
}

.ap-tagline {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.ap-text {
    color: #475569;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.ap-box-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ap-box-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(10, 78, 189, 0.08);
}

.ap-section-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 18px;
}

.ap-belief-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.ap-belief-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
}

.ap-belief-item i {
    color: var(--primary-blue);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.ap-unique-card {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    padding: 26px 22px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
    border-left: 4px solid var(--primary-blue);
}

.ap-unique-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(10, 78, 189, 0.08);
    border-color: var(--primary-blue);
}

.ap-unique-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.ap-stat-card {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    padding: 24px 18px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: all 0.25s ease;
}

.ap-stat-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(10, 78, 189, 0.09);
}

.ap-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 8px;
}

.ap-stat-desc {
    font-size: 0.9rem;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

.ap-cta-box {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #0a4ebd 100%);
    border-radius: 18px;
    padding: 40px 35px;
    color: var(--white);
    box-shadow: 0 12px 35px rgba(3, 15, 38, 0.25);
    text-align: center;
}

.ap-cta-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.ap-cta-phone {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-decoration: none;
    display: inline-block;
    margin: 15px 0 20px;
    transition: color 0.2s ease;
}

.ap-cta-phone:hover {
    color: var(--white);
}

.ap-cta-footer-links {
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 15px;
}

@media (max-width: 767.98px) {
    .ap-hero-card,
    .ap-box-card,
    .ap-cta-box {
        padding: 25px 20px;
    }
    .ap-main-title {
        font-size: 1.5rem;
    }
    .ap-section-title {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   WHY CHOOSE US PAGE STYLES (choose.php)
   ========================================================================== */
.cp-section {
    padding: 50px 0 70px;
    background: #f8fafc;
}

.cp-hero-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 35px;
}

.cp-main-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-navy);
    line-height: 1.3;
    margin-bottom: 15px;
}

.cp-section-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 16px;
}

.cp-highlight-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 15px 0;
}

.cp-text {
    color: #475569;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.cp-feature-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 25px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border-left: 5px solid var(--primary-blue);
}

.cp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(10, 78, 189, 0.08);
    border-left-color: var(--dark-navy);
}

.cp-feature-num-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cp-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.cp-service-chip {
    background: #f1f5f9;
    color: var(--dark-navy);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cp-service-chip i {
    color: var(--primary-blue);
    font-size: 16px;
}

.cp-cta-box {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #0a4ebd 100%);
    border-radius: 18px;
    padding: 40px 35px;
    color: var(--white);
    box-shadow: 0 12px 35px rgba(3, 15, 38, 0.25);
    text-align: center;
}

.cp-cta-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.cp-cta-phone {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-decoration: none;
    display: inline-block;
    margin: 15px 0 20px;
    transition: color 0.2s ease;
}

.cp-cta-phone:hover {
    color: var(--white);
}

.cp-cta-footer-links {
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 15px;
}

@media (max-width: 767.98px) {
    .cp-hero-card,
    .cp-feature-card,
    .cp-cta-box {
        padding: 25px 20px;
    }
    .cp-main-title {
        font-size: 1.5rem;
    }
    .cp-feature-num-title {
        font-size: 1.15rem;
    }
}

/* ==========================================================================
   FAQS PAGE STYLES (faqs.php)
   ========================================================================== */
.fq-page-section {
    padding: 50px 0 70px;
    background: #f8fafc;
}

.fq-hero-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 35px;
}

.fq-main-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-navy);
    line-height: 1.3;
    margin-bottom: 12px;
}

.fq-item-card {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.25s ease;
}

.fq-item-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(10, 78, 189, 0.08);
}

.fq-accordion-btn {
    width: 100%;
    text-align: left;
    background: var(--white);
    border: none;
    padding: 20px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: all 0.25s ease;
}

.fq-accordion-btn:not(.collapsed) {
    color: var(--primary-blue);
    background: rgba(10, 78, 189, 0.03);
    border-bottom: 1px solid #e2e8f0;
}

.fq-accordion-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--primary-blue);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 14px;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.fq-accordion-btn:not(.collapsed) .fq-accordion-icon {
    transform: rotate(180deg);
    background: var(--primary-blue);
    color: var(--white);
}

.fq-accordion-body {
    padding: 22px 24px;
    color: #475569;
    font-size: 1rem;
    line-height: 1.75;
    background: var(--white);
}

.fq-cta-box {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #0a4ebd 100%);
    border-radius: 18px;
    padding: 40px 35px;
    color: var(--white);
    box-shadow: 0 12px 35px rgba(3, 15, 38, 0.25);
    text-align: center;
    margin-top: 40px;
}

.fq-cta-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.fq-cta-phone {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-decoration: none;
    display: inline-block;
    margin: 12px 0 16px;
    transition: color 0.2s ease;
}

.fq-cta-phone:hover {
    color: var(--white);
}

@media (max-width: 767.98px) {
    .fq-hero-card,
    .fq-cta-box {
        padding: 25px 20px;
    }
    .fq-main-title {
        font-size: 1.5rem;
    }
    .fq-accordion-btn {
        padding: 16px 18px;
        font-size: 1rem;
    }
    .fq-accordion-body {
        padding: 16px 18px;
    }
}

/* ==========================================================================
   TESTIMONIALS PAGE STYLES (testimonials.php)
   ========================================================================== */
.tm-section {
    padding: 50px 0 70px;
    background: #f8fafc;
}

.tm-hero-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 35px;
}

.tm-main-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-navy);
    line-height: 1.3;
    margin-bottom: 12px;
}

.tm-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 30px 26px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
    position: relative;
}

.tm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(10, 78, 189, 0.08);
    border-color: var(--primary-blue);
}

.tm-stars {
    color: var(--accent-gold);
    font-size: 14px;
    margin-bottom: 12px;
}

.tm-card-title {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 12px;
    line-height: 1.35;
}

.tm-card-quote {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
    font-style: normal;
}

.tm-author-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.tm-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #030f26 100%);
    color: var(--white);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.tm-author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin: 0 0 2px;
}

.tm-author-loc {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

.tm-cta-box {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #0a4ebd 100%);
    border-radius: 18px;
    padding: 40px 35px;
    color: var(--white);
    box-shadow: 0 12px 35px rgba(3, 15, 38, 0.25);
    text-align: center;
    margin-top: 40px;
}

.tm-cta-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

@media (max-width: 767.98px) {
    .tm-hero-card,
    .tm-card,
    .tm-cta-box {
        padding: 22px 18px;
    }
    .tm-main-title {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   SERVICE DETAIL PAGES STYLES (cctv.php, etc.)
   ========================================================================== */
.sd-section {
    padding: 50px 0 70px;
    background: #f8fafc;
}

.sd-hero-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 30px;
}

.sd-main-heading {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--dark-navy);
    line-height: 1.35;
    margin-bottom: 16px;
}

.sd-content-box {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 25px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sd-content-box:hover {
    box-shadow: 0 10px 28px rgba(3, 15, 38, 0.08);
    border-color: rgba(10, 78, 189, 0.25);
}

.sd-content-box.city-accent-top {
    position: relative;
    border-top: 4px solid var(--primary-blue);
}

.sd-content-box.city-accent-gold {
    position: relative;
    border-top: 4px solid var(--accent-gold);
}

.sd-content-box.city-case-box {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-left: 4px solid var(--primary-blue);
    border-top: 1px solid #e2e8f0;
}

.sd-content-box.city-pricing-box {
    background: linear-gradient(145deg, #ffffff 0%, #f0f7ff 100%);
    border: 1px solid #bfdbfe;
    border-left: 4px solid var(--accent-gold);
}

.city-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(10, 78, 189, 0.1);
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.city-case-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 179, 0, 0.15);
    color: #b45309;
    margin-bottom: 12px;
}

.sd-h3-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 16px;
    line-height: 1.35;
}

.sd-h4-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 14px;
    line-height: 1.35;
}

.sd-h5-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 12px;
}

.sd-h6-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 12px;
}

.sd-text {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.sd-testimonial-card {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    padding: 24px 20px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-left: 4px solid var(--primary-blue);
    display: flex;
    flex-direction: column;
}

.sd-testimonial-quote {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 14px;
    flex-grow: 1;
}

.sd-testimonial-author {
    font-weight: 700;
    color: var(--dark-navy);
    font-size: 0.92rem;
    margin: 0;
}

@media (max-width: 767.98px) {
    .sd-hero-card,
    .sd-content-box {
        padding: 22px 18px;
    }
    .sd-main-heading {
        font-size: 1.45rem;
    }
    .sd-h3-title {
        font-size: 1.2rem;
    }
}

.sd-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.sd-cta-phone {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.sd-cta-phone:hover {
    color: var(--white);
}









