@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Great+Vibes&display=swap');

/* ==========================================================================
   MAKE MY SHIFTING - MASTER CONSOLIDATED STYLESHEET (style.css)
   ========================================================================== */


/* ========================================
   TYPOGRAPHY
======================================== */
html, body {
    font-family: 'Outfit', sans-serif;
    overflow-x: clip !important;
    max-width: 100% !important;
}

:root {
    --brand-navy: #081C34;
    --brand-navy-dark: #041224;
    --brand-red: #D92318;
    --brand-red-hover: #c62828;
    --brand-red-soft: #fff5f5;
    --brand-red-light: #fee2e2;
    --light-blue: #0ea5e9;
    --light-blue-hover: #0284c7;
    --light-blue-bright: #38bdf8;
    --light-blue-soft: #f0f9ff;
    --light-blue-light: #e0f2fe;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-light: rgba(8, 28, 52, 0.08);
    --white: #ffffff;
    --hero-navy: #0A1E3F;
    --hero-red: #D92318;
    --hero-red-hover: #c62828;
    --hero-blue: #0A4EBD;
    --hero-text-muted: #64748b;
    --hero-text-body: #334155;
    --hero-card-bg: #ffffff;
    --hero-input-bg: #f8fafc;
    --hero-input-border: #e2e8f0;
    --hero-border-radius: 18px;
    --strip-bg: #F0F6FE;
    --strip-border: rgba(10, 30, 63, 0.09);
}

.text-brand-red {
    color: #D92318 !important;
}

.eyebrow-dash {
    display: inline-block;
    width: 22px;
    height: 3px;
    background-color: #D92318;
    margin-right: 8px;
    border-radius: 2px;
}

.eyebrow-text {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #0A1E3F;
    text-transform: uppercase;
}


/* ========================================
   NAVIGATION
======================================== */
html, body {
    font-family: 'Outfit', sans-serif;
}

:root {
    --brand-navy: #081C34;
    --brand-navy-dark: #041224;
    --brand-red: #D92318;
    --brand-red-hover: #c62828;
    --brand-red-soft: #fff5f5;
    --brand-red-light: #fee2e2;
    --light-blue: #0ea5e9;
    --light-blue-hover: #0284c7;
    --light-blue-bright: #38bdf8;
    --light-blue-soft: #f0f9ff;
    --light-blue-light: #e0f2fe;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-light: rgba(8, 28, 52, 0.08);
    --white: #ffffff;
}

/* ==========================================================================
   1. Top Slim Bar
   ========================================================================== */
.top-bar {
    background: #081C34;
    color: var(--white);
    font-size: 13px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 6px 0;
}

.top-bar-link:hover {
    color: #38bdf8;
}

.top-bar-link i {
    font-size: 13.5px;
    color: #ffffff;
    transition: color 0.2s ease;
}

.top-bar-link:hover i {
    color: #38bdf8;
}

.top-bar .divider-line {
    color: rgba(255, 255, 255, 0.3);
    user-select: none;
    font-weight: 300;
    margin: 0 6px;
}

.top-trust-badge {
    display: inline-flex;
    align-items: center;
}

.trust-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.22) 0%, rgba(14, 165, 233, 0.1) 100%);
    border: 1px solid rgba(56, 189, 248, 0.5);
    color: #e0f2fe;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: 20px;
    letter-spacing: 0.2px;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.22);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    user-select: none;
    white-space: nowrap;
}

.trust-badge-pill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: shinyBadgeSweep 4s infinite ease-in-out;
}

@keyframes shinyBadgeSweep {
    0% { left: -100%; }
    30%, 100% { left: 180%; }
}

.trust-badge-pill:hover {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.35) 0%, rgba(14, 165, 233, 0.22) 100%);
    border-color: #38bdf8;
    color: #ffffff;
    box-shadow: 0 0 16px rgba(56, 189, 248, 0.45);
    transform: translateY(-1px);
}

.trust-badge-pill i {
    font-size: 13.5px;
    color: #38bdf8;
    filter: drop-shadow(0 0 4px rgba(56, 189, 248, 0.6));
}

.trust-badge-pill.trust-badge-green i {
    color: #38bdf8;
    filter: drop-shadow(0 0 4px rgba(56, 189, 248, 0.6));
}

.top-follow-label {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-right: 4px;
}

.top-social-icons {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.top-social-btn {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
    transition: all 0.2s ease;
}

.top-social-btn:hover {
    background: var(--brand-red);
    color: #ffffff;
    transform: translateY(-1px);
}

/* ==========================================================================
   2. Main Sticky Header
   ========================================================================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--white);
    box-shadow: 0 2px 14px rgba(15, 61, 126, 0.05);
    padding: 0;
    height: auto;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 10px 30px rgba(15, 61, 126, 0.08);
    padding: 0;
}

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

.brand-logo {
    width: auto;
    max-width: 260px;
    height: auto;
    max-height: 72px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* ==========================================================================
   3. Desktop Navigation Menu
   ========================================================================== */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.desktop-nav .nav-link {
    position: relative;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 12px 0;
    display: flex;
    align-items: center;
}

.desktop-nav .nav-link i {
    font-size: 11px;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link:focus,
.desktop-nav .nav-link:active {
    color: var(--brand-red);
}

/* Active Link State with Centered Red Underline Bar */
.desktop-nav .nav-link.active {
    color: var(--brand-red);
    font-weight: 700;
}

.desktop-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 28px;
    height: 3px;
    background-color: var(--brand-red);
    border-radius: 3px;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link:active::after,
.desktop-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

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

.desktop-nav .dropdown-toggle::after {
    display: none !important;
}

.desktop-nav .nav-item.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.desktop-nav .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 220px;
    box-shadow: 0 12px 32px rgba(8, 28, 52, 0.12);
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    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: flex;
    align-items: center;
    width: 100%;
    padding: 8px 16px;
    clear: both;
    font-weight: 600;
    color: var(--text-dark);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    font-size: 13.5px;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.desktop-nav .dropdown-item:hover {
    color: var(--brand-red);
    background-color: var(--brand-red-soft);
    padding-left: 20px;
}

.desktop-nav .dropdown-item.active {
    color: var(--brand-red);
    background-color: var(--brand-red-light);
    padding-left: 20px;
}

/* Service Dropdown Menu with Icons */
.desktop-nav .dropdown-menu-services {
    min-width: 250px;
    padding: 8px 6px;
}

.dropdown-service-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.dropdown-service-icon svg {
    width: 20px;
    height: 20px;
}

.desktop-nav .dropdown-item:hover .dropdown-service-icon,
.mobile-dropdown-menu a:hover .dropdown-service-icon {
    transform: scale(1.15);
}

/* ==========================================================================
   4. Action Quote CTA Button (Red Accent)
   ========================================================================== */
.btn-quote {
    background: var(--brand-red);
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: 0;
    box-shadow: 0 4px 14px rgba(229, 43, 32, 0.32);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    white-space: nowrap;
}

.btn-quote i {
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.25s ease;
    display: inline-block;
    color: #ffffff;
}

.btn-quote:hover {
    background: var(--brand-red-hover);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 43, 32, 0.45);
}

.btn-quote:hover i {
    transform: translateX(4px);
}

.btn-quote:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(229, 43, 32, 0.25);
}

/* Highlighted Header Nav Phone Button (Soft Sky-Blue Pill Card) */
.btn-nav-phone {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #0c2a52 !important;
    padding: 9px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1.5px solid #0284c7;
    box-shadow: 0 3px 12px rgba(2, 132, 199, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-nav-phone i {
    font-size: 15px;
    color: #0284c7;
    filter: drop-shadow(0 1px 3px rgba(2, 132, 199, 0.35));
    transition: transform 0.25s ease;
    display: inline-block;
}

.btn-nav-phone span {
    position: relative;
}

.btn-nav-phone:hover {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-color: #0369a1;
    color: #061938 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(2, 132, 199, 0.25);
}

.btn-nav-phone:hover i {
    transform: scale(1.18) rotate(-10deg);
}

.btn-nav-phone:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(2, 132, 199, 0.12);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}



@keyframes phonePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 43, 32, 0.5);
    }
    70% {
        box-shadow: 0 0 0 7px rgba(229, 43, 32, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(229, 43, 32, 0);
    }
}

/* ==========================================================================
   5. Mobile 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: 2.5px;
    background-color: var(--text-dark);
    border-radius: 10px;
    transition: background-color 0.25s ease;
}

.hamburger:hover span {
    background-color: var(--brand-red);
}

/* ==========================================================================
   6. Mobile Slide-in Drawer (Mega Overlay)
   ========================================================================== */
.mega-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 28, 52, 0.65);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.menu-open {
    overflow: hidden;
}

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

.mega-inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 360px;
    background: var(--white);
    height: 100%;
    overflow-y: auto;
    box-shadow: -5px 0 25px rgba(8, 28, 52, 0.2);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 24px 20px 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.brand-logo-mobile {
    height: 46px;
    max-width: 155px;
    object-fit: contain;
}

/* Close Button (top-right of drawer) */
.mega-close {
    position: absolute !important;
    z-index: 2010;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: var(--white);
    color: var(--text-dark);
    font-size: 20px;
    display: grid;
    place-items: center;
    box-shadow: 0 3px 10px rgba(8, 28, 52, 0.08);
    transition: all 0.25s ease;
    cursor: pointer;
}

.mega-close:hover {
    background: var(--brand-red-soft);
    color: var(--brand-red);
    transform: rotate(90deg);
}

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

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

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

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 8px;
    min-height: 48px;
    font-size: 15px;
    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(--brand-red);
}

.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(--brand-red);
}

.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: #fafbfe;
    border-radius: 8px;
    margin: 0 4px 8px 4px;
}

.mobile-nav-item.active .mobile-dropdown-menu {
    max-height: 500px;
    transition: max-height 0.3s cubic-bezier(0.9, 0, 0.1, 1);
    padding: 6px 0;
    border: 1px solid #edf2f7;
}

.mobile-dropdown-menu a {
    padding: 12px 16px;
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-dropdown-menu a:hover {
    color: var(--brand-red);
    padding-left: 20px;
    background: var(--brand-red-soft);
}

.mobile-dropdown-menu a.active {
    color: var(--brand-red);
    background-color: var(--brand-red-light);
    padding-left: 20px;
}

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

.mobile-sec-links a {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 6px 0;
}

.mobile-sec-links a:hover {
    color: var(--brand-red);
}

/* ==========================================================================
   7. Responsive Rules
   ========================================================================== */
@media (max-width: 1199px) {
    .desktop-nav {
        gap: 18px;
    }
    .desktop-nav .nav-link {
        font-size: 14px;
    }
    .btn-quote {
        padding: 9px 18px;
        font-size: 13.5px;
    }
}

@media (max-width: 991px) {
    .main-header {
        padding: 0;
        height: auto;
    }

    .brand-logo {
        max-width: 220px;
        max-height: 56px;
        width: auto;
        height: auto;
    }

    .btn-quote {
        display: none !important;
    }

    .top-bar {
        font-size: 12px;
        padding: 5px 0;
    }

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

    .top-social-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        font-size: 13px;
    }
}

@media (max-width: 767.98px) {
    .brand-logo {
        max-width: 190px;
        max-height: 50px;
        width: auto;
        height: auto;
    }

    .btn-nav-phone {
        padding: 6px 12px;
        font-size: 12px;
        gap: 5px;
    }
    .btn-nav-phone i {
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .main-header {
        padding: 0;
        height: auto;
    }

    .main-header .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .brand-logo {
        width: auto;
        height: auto;
        max-width: 170px;
        max-height: 48px;
        object-fit: contain;
    }

    .header-actions {
        gap: 8px;
        flex-shrink: 0;
    }

    .btn-nav-phone {
        padding: 5px 10px;
        font-size: 11px;
        border-radius: 50px;
        gap: 4px;
        letter-spacing: 0;
    }

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

    .btn-quote {
        display: none !important;
    }

    .hamburger {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        padding: 6px 5px;
        flex-shrink: 0;
    }

    .hamburger span {
        width: 18px;
        height: 2px;
    }

    .top-bar-mobile {
        font-size: 11px;
        padding: 2px 0;
    }

    .top-bar-mobile .top-bar-link {
        font-size: 11px;
        min-height: 32px;
        padding: 2px 0;
    }

    .top-bar-mobile .trust-badge-pill {
        font-size: 9.5px;
        padding: 2px 6px;
        gap: 3px;
        white-space: nowrap;
    }

    .top-bar-mobile .trust-badge-pill i {
        font-size: 10px;
    }
}


/* ========================================
   SLIDER
======================================== */
/* ==========================================================================
   Hero Slider Section CSS
   Pixel-accurate matching to reference design (media_1788847234120.png & media_1788848037738.png)
   ========================================================================== */

:root {
  --hero-navy: #0A1E3F;
  --hero-red: #D92318;
  --hero-red-hover: #c62828;
  --hero-blue: #0A4EBD;
  --hero-text-muted: #64748b;
  --hero-text-body: #334155;
  --hero-card-bg: #ffffff;
  --hero-input-bg: #f8fafc;
  --hero-input-border: #e2e8f0;
  --hero-border-radius: 18px;
  --strip-bg: #F0F6FE;
  --strip-border: rgba(10, 30, 63, 0.09);
}

/* --------------------------------------------------------------------------
   1. Main Hero Container & Background
   -------------------------------------------------------------------------- */
.hero-slider-section {
  position: relative;
  width: 100%;
  min-height: 560px;
  background-color: #0b2b5c;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.22) 55%, rgba(0, 0, 0, 0.10) 100%), url('../img/slide4.jpg');
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.city-hero-slider-bg {
  background-image: linear-gradient(to right, rgba(4, 20, 56, 0.88) 0%, rgba(10, 48, 128, 0.70) 55%, rgba(10, 48, 128, 0.35) 100%), url('../img/slide (1).jpg') !important;
  background-position: center right !important;
  background-size: cover !important;
}

.hero-container {
  z-index: 2;
  padding-top: 36px;
  padding-bottom: 36px;
}

.hero-content-row {
  position: relative;
}

/* --------------------------------------------------------------------------
   2. Left Column: Text & Trust Badges
   High contrast text rendering with balanced background overlay transparency
   -------------------------------------------------------------------------- */
.hero-text-col {
  padding-top: 4px;
  padding-bottom: 4px;
  position: relative;
  z-index: 2;
}

.hero-text-col::before {
  display: none;
}

/* City Hero Breadcrumb Navigation */
.city-hero-bc-nav {
  display: block;
  margin-bottom: 16px;
  position: relative;
  z-index: 3;
}
.city-hero-bc-nav a,
.city-hero-bc-nav span.city-bc-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) !important;
}
.city-hero-bc-nav a:hover,
.city-hero-bc-nav span.city-bc-link:hover {
  color: #ff3b30;
  text-decoration: none;
}
.city-hero-bc-nav .bc-sep {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  opacity: 0.8;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) !important;
}
.city-hero-bc-nav .bc-current {
  color: #ffffff;
  background: #0a4ebd;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 12px;
  text-shadow: none !important;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.6px;
  color: #38bdf8;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 1px 3px #000000, 0 2px 8px rgba(0, 0, 0, 0.9);
}
.hero-eyebrow span {
  color: #38bdf8;
}

.hero-main-title {
  font-family: 'Outfit', sans-serif;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 4px 14px rgba(0, 0, 0, 0.95), 0 0 24px rgba(0, 0, 0, 0.7);
}

.hero-main-title .text-brand-red {
  color: #ff3b30 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95), 0 4px 14px rgba(0, 0, 0, 0.95), 0 0 24px rgba(0, 0, 0, 0.7);
}

.hero-main-desc {
  font-size: 15px;
  line-height: 1.55;
  color: #ffffff;
  font-weight: 600;
  max-width: 440px;
  margin-bottom: 24px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.95), 0 2px 8px rgba(0, 0, 0, 0.9);
}

/* Trust Badges: Clean transparent on desktop */
.hero-trust-badges {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 14px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 22px;
  position: relative;
}

.hero-trust-item:first-child {
  padding-left: 0;
}

.hero-trust-item:last-child {
  padding-right: 0;
}

.hero-trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.25);
}

.trust-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FDE8E8;
  color: #D92318;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease;
}

.hero-trust-item:hover .trust-badge-icon {
  transform: scale(1.08);
}

.trust-value {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.95), 0 3px 8px rgba(0, 0, 0, 0.95) !important;
}

.trust-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #ffffff !important;
  line-height: 1.2;
  margin-top: 2px;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.95), 0 3px 8px rgba(0, 0, 0, 0.95) !important;
}

@media (min-width: 992px) {
  .hero-trust-badges .trust-value {
    color: #ffffff !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9) !important;
  }
  .hero-trust-badges .trust-label {
    color: #ffffff !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9) !important;
  }
  .hero-trust-item:not(:last-child)::after {
    background: rgba(255, 255, 255, 0.35) !important;
  }
}

/* --------------------------------------------------------------------------
   3. Center-Right Column: Floating Quote Card
   -------------------------------------------------------------------------- */
.hero-card-col {
  display: flex;
  justify-content: flex-end;
}

.hero-quote-card {
  background: var(--hero-card-bg);
  border-radius: var(--hero-border-radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(226, 232, 240, 0.85);
  padding: 20px 20px 16px 20px;
  width: 100%;
  max-width: 380px;
  margin-left: auto;
}

.quote-card-header {
  margin-bottom: 12px;
}

.quote-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 23px;
  font-weight: 800;
  color: var(--hero-navy);
  margin-bottom: 2px;
  line-height: 1.2;
}

.quote-card-title .text-brand-red {
  color: var(--hero-red) !important;
}

.quote-card-subtitle {
  font-size: 12px;
  font-weight: 500;
  color: var(--hero-text-muted);
  margin-bottom: 0;
}

.hero-card-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.hero-form-row .hero-form-group {
  flex: 1;
  min-width: 0;
}

.hero-form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.hero-field-label {
  font-size: 11.5px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-input-box {
  position: relative;
  display: flex;
  align-items: center;
}

.hero-field-icon {
  position: absolute;
  left: 10px;
  font-size: 14px;
  color: var(--hero-red);
  pointer-events: none;
  z-index: 2;
}

.hero-field-input,
.hero-field-select {
  width: 100%;
  height: 48px;
  min-height: 48px;
  padding: 4px 10px 4px 32px;
  background: var(--hero-input-bg);
  border: 1px solid var(--hero-input-border);
  border-radius: 8px;
  font-size: 13px;
  color: var(--hero-navy);
  outline: none;
  transition: all 0.2s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.hero-field-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 30px;
}

.hero-field-input:focus,
.hero-field-select:focus {
  background-color: #ffffff;
  border-color: var(--hero-red);
  box-shadow: 0 0 0 3px rgba(229, 43, 32, 0.12);
}

.hero-field-input::placeholder {
  color: #94a3b8;
  font-size: 12.5px;
}

.btn-hero-submit {
  width: 100%;
  height: 48px;
  min-height: 48px;
  background: var(--hero-red);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 4px;
  box-sizing: border-box;
}

.btn-hero-submit:hover {
  background: var(--hero-red-hover);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-hero-submit:active {
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   4. Bottom Feature Strip (Icy Blue Bar with Vertical Dividers)
   Matching media_1788848037738.png
   -------------------------------------------------------------------------- */
.hero-features-bar {
  position: relative;
  z-index: 2;
  background: #F0F5FB;
  border-top: 1px solid rgba(10, 30, 63, 0.08);
  border-bottom: 1px solid rgba(10, 30, 63, 0.08);
  padding: 16px 0;
}

.hero-feature-item-col {
  padding: 4px 16px;
}

@media (min-width: 992px) {
  .hero-feature-item-col:not(:last-child) {
    border-right: 1px solid rgba(10, 30, 63, 0.09);
  }
}

.hero-feature-item {
  gap: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.feature-icon-wrap {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: #FDE8E8;
  color: #D92318;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(229, 43, 32, 0.12);
  transition: all 0.25s ease;
}

.hero-feature-item:hover .feature-icon-wrap {
  background: #D92318;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(229, 43, 32, 0.3);
}

.feature-icon-wrap svg {
  width: 22px;
  height: 22px;
}

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

.feature-item-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #0A1E3F;
  line-height: 1.25;
}

.feature-item-desc {
  font-size: 11.5px;
  font-weight: 500;
  color: #556987;
  line-height: 1.25;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   5. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1199px) {
  .hero-main-title {
    font-size: 38px;
  }

  .hero-quote-card {
    max-width: 320px;
  }

  .hero-trust-badges {
    gap: 22px;
  }
}

@media (max-width: 991px) {
  .hero-slider-section {
    min-height: auto;
    background-position: 70% center;
  }

  .hero-container {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .hero-content-row {
    row-gap: 28px;
  }

  .hero-text-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-text-col::before {
    display: none !important;
  }

  .hero-main-title {
    font-size: 34px;
  }

  .hero-main-desc {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }

  .hero-trust-badges {
    justify-content: center;
    gap: 0;
    margin-top: 10px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .hero-trust-item {
    padding: 0 16px;
  }

  .hero-trust-item:first-child {
    padding-left: 8px;
  }

  .hero-trust-item:last-child {
    padding-right: 8px;
  }

  .hero-card-col {
    justify-content: center;
  }

  .hero-quote-card {
    max-width: 380px;
    margin: 0 auto;
  }

  .hero-features-bar {
    background: #F0F5FB;
    padding: 18px 0;
  }

  .hero-features-row {
    row-gap: 12px;
  }

  .hero-feature-item-col {
    padding: 0 8px;
    border: none !important;
  }

  .hero-feature-item {
    background: #ffffff;
    border: 1px solid #E2EBF5;
    border-radius: 12px;
    padding: 12px 14px;
    gap: 12px;
    height: 100%;
    box-shadow: 0 2px 8px rgba(10, 30, 63, 0.04);
    align-items: center;
    justify-content: flex-start;
  }

  .feature-icon-wrap {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}

@media (max-width: 575px) {
  .hero-container {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
  }

  .hero-main-title {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .hero-main-desc {
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .hero-eyebrow {
    color: #ffffff !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95), 0 0 12px rgba(0, 0, 0, 0.8) !important;
  }
  .hero-eyebrow span {
    color: #ffffff !important;
  }

  .hero-trust-badges {
    gap: 0;
    justify-content: space-around;
    width: 100%;
    max-width: 380px;
    padding: 10px 6px;
    border-radius: 14px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(226, 235, 245, 0.95);
    box-shadow: 0 6px 20px rgba(10, 30, 63, 0.09);
  }

  .hero-trust-item {
    padding: 0 4px;
    flex: 1;
  }

  .hero-trust-item:first-child {
    padding-left: 4px;
  }

  .hero-trust-item:last-child {
    padding-right: 4px;
  }

  .hero-trust-item:not(:last-child)::after {
    height: 30px;
    background: rgba(8, 28, 52, 0.15);
  }

  .trust-badge-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 4px;
    box-shadow: 0 2px 5px rgba(229, 43, 32, 0.12);
  }

  .trust-badge-icon svg {
    width: 16px;
    height: 16px;
  }

  .trust-value {
    font-size: 13px;
    color: #081C34 !important;
    font-weight: 800;
    text-shadow: none !important;
  }

  .trust-label {
    font-size: 9.5px;
    color: #475569 !important;
    font-weight: 600;
    text-shadow: none !important;
  }

  .hero-form-row {
    gap: 8px;
  }

  .hero-quote-card {
    padding: 16px 14px;
    border-radius: 14px;
    max-width: 100%;
  }

  .quote-card-title {
    font-size: 20px;
  }

  .quote-card-subtitle {
    font-size: 11.5px;
    margin-bottom: 10px;
  }

  .hero-field-input,
  .hero-field-select {
    height: 42px;
    font-size: 13px;
  }

  .btn-hero-submit {
    height: 44px;
    min-height: 44px;
    font-size: 14px;
  }

  .hero-features-bar {
    background: #F0F5FB;
    padding: 14px 0;
  }

  .hero-features-row {
    row-gap: 8px;
  }

  .hero-feature-item-col {
    padding: 0 4px;
  }

  .hero-feature-item {
    padding: 10px 8px;
    gap: 8px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #E2EBF5;
    box-shadow: 0 2px 6px rgba(10, 30, 63, 0.04);
  }

  .feature-icon-wrap {
    width: 34px;
    height: 34px;
    min-width: 34px;
    box-shadow: 0 2px 6px rgba(229, 43, 32, 0.12);
  }

  .feature-icon-wrap svg {
    width: 17px;
    height: 17px;
  }

  .feature-item-title {
    font-size: 11px;
    line-height: 1.25;
    margin-bottom: 1px;
  }

  .feature-item-desc {
    font-size: 9px;
    line-height: 1.2;
    margin-top: 0;
  }
}

/* ==========================================================================
   City Hero Breadcrumbs (Visible Dark Blue & White Styling)
   ========================================================================== */
.city-hero-bc-nav {
  margin-bottom: 20px;
  display: block;
  position: relative;
  z-index: 3;
}
.city-bc-nav-wrap,
.city-bc-pill-box {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  flex-wrap: wrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
.city-bc-link,
.city-hero-bc-nav a.city-bc-link,
.city-hero-bc-nav span.city-bc-link {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88) !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
  line-height: 1;
  text-shadow: none !important;
  cursor: pointer;
}
.city-bc-link:hover,
.city-hero-bc-nav a.city-bc-link:hover,
.city-hero-bc-nav span.city-bc-link:hover {
  color: #ff3b30 !important;
}
.city-bc-home-icon {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.88) !important;
  margin-right: 4px;
}
.city-bc-sep {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65) !important;
  margin: 0 2px;
}
.city-bc-current {
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff !important;
  background: #0a4ebd !important;
  padding: 3px 12px;
  border-radius: 12px;
  line-height: 1.3;
  box-shadow: 0 2px 8px rgba(10, 78, 189, 0.4);
  text-shadow: none !important;
}
@media (max-width: 576px) {
  .city-bc-nav-wrap,
  .city-bc-pill-box {
    gap: 5px;
  }
  .city-bc-link,
  .city-hero-bc-nav a.city-bc-link {
    font-size: 12px;
  }
  .city-bc-current {
    font-size: 11.5px;
    padding: 2px 9px;
  }
}


/* ========================================
   DYNAMIC BREADCRUMBS
======================================== */
/* Dynamic Breadcrumbs Styles */
.dynamic-bc-section {
    background: linear-gradient(90deg, rgba(4, 20, 56, 0.90) 0%, rgba(10, 48, 128, 0.72) 42%, rgba(10, 48, 128, 0.25) 80%, rgba(4, 20, 56, 0.15) 100%),
                url('../img/slide (1).jpg') center right / cover no-repeat;
    padding: 56px 0 76px 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}
.dynamic-bc-section::before {
    display: none;
}
.dynamic-bc-section::after {
    display: none;
}

.dyn-bc-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
.dyn-bc-nav a,
.dyn-bc-nav .dyn-bc-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.25s;
    font-weight: 500;
    cursor: pointer;
}
.dyn-bc-nav a:hover,
.dyn-bc-nav a:hover .dyn-bc-link { color: #ff3b30; }
.dyn-bc-nav .dyn-bc-sep {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    margin: 0 3px;
}
.dyn-bc-nav .dyn-bc-current {
    color: #ffffff;
    background: #D92318;
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 700;
    text-shadow: none;
    box-shadow: 0 2px 6px rgba(217, 35, 24, 0.35);
}

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

.dyn-bc-desc {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    line-height: 1.65;
    max-width: 560px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .dynamic-bc-section {
        padding: 40px 0 68px 0;
        background: linear-gradient(90deg, rgba(4, 20, 56, 0.92) 0%, rgba(10, 48, 128, 0.78) 55%, rgba(10, 48, 128, 0.4) 100%),
                    url('../img/slide (1).jpg') 75% center / cover no-repeat;
    }
}


/* ========================================
   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: #031633;
    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: #556880;
    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'); }

/* ==========================================================================
   A Simple Process, Seamless Moving - 6 Steps & CTA Strip CSS
   Matching reference media_1788855018598.png
   ========================================================================== */

.process-clean-section {
    background-color: #ffffff;
    padding: 55px 0 60px 0;
    position: relative;
    font-family: inherit;
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   Section Header
   -------------------------------------------------------------------------- */
.process-eyebrow {
    margin-bottom: 6px;
}

.process-eyebrow .eyebrow-dash {
    display: inline-block;
    width: 22px;
    height: 3px;
    background-color: #D92318;
    margin-right: 8px;
    border-radius: 2px;
}

.process-eyebrow .eyebrow-text {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #0A1E3F;
    text-transform: uppercase;
}

.process-title {
    font-family: 'Outfit', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #0A1E3F;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.process-title .text-brand-red {
    color: #D92318 !important;
}

.process-subtitle {
    font-size: 15px;
    color: #556987;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 4px;
}

/* --------------------------------------------------------------------------
   6 Steps Timeline Row & Horizontal Connector Line
   -------------------------------------------------------------------------- */
.process-timeline-row {
    position: relative;
    margin-top: 40px;
}

@media (min-width: 992px) {
    .process-timeline-row::before {
        content: '';
        position: absolute;
        top: 42px;
        left: 6%;
        right: 6%;
        height: 2px;
        border-top: 2px dashed #A8C2DE;
        z-index: 1;
        pointer-events: none;
    }
}

.process-col {
    position: relative;
}

.process-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    height: 100%;
}

/* Dashed Circular Badges */
.process-circle-badge {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    margin: 0 auto;
    box-shadow: 0 4px 14px rgba(10, 30, 63, 0.05);
}

.circle-dashed-red {
    border: 2px dashed #D92318;
}

.circle-dashed-navy {
    border: 2px dashed #0A1E3F;
}

/* Overlapping Pill Numbers (01, 02, 03, ...) */
.process-pill-number {
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    padding: 1px 14px;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    z-index: 4;
    line-height: 1.5;
    white-space: nowrap;
}

.pill-red {
    background-color: #D92318;
    box-shadow: 0 2px 6px rgba(229, 43, 32, 0.3);
}

.pill-navy {
    background-color: #0A1E3F;
    box-shadow: 0 2px 6px rgba(10, 30, 63, 0.3);
}

/* White Step Cards */
.process-step-card {
    background-color: #ffffff;
    border: 1px solid #E2EBF5;
    border-radius: 14px;
    padding: 26px 10px 18px 10px;
    margin-top: -8px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 18px rgba(10, 30, 63, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.process-step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(10, 30, 63, 0.09);
    border-color: rgba(229, 43, 32, 0.35);
}

.step-card-title {
    font-size: 0.84rem;
    font-weight: 800;
    color: #0A1E3F;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1.35;
    letter-spacing: 0.2px;
}

.step-card-desc {
    font-size: 0.74rem;
    color: #556987;
    line-height: 1.45;
}

/* Connector Arrow between cards */
.process-step-connector {
    position: absolute;
    right: -11px;
    top: 42px;
    transform: translateY(-50%);
    z-index: 4;
    pointer-events: none;
}

.connector-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #0A1E3F;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A1E3F;
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

/* --------------------------------------------------------------------------
   Bottom Full-Width CTA Strip Card
   -------------------------------------------------------------------------- */
.process-cta-strip {
    background-color: #F8FAFC;
    border: 1px solid #E2EBF5;
    border-radius: 16px;
    padding: 18px 28px;
    box-shadow: 0 4px 16px rgba(10, 30, 63, 0.04);
}

.cta-strip-icon-badge {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    background-color: #FDE8E8;
    color: #D92318;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: transform 0.25s ease;
}

.cta-strip-icon-badge:hover {
    transform: scale(1.06);
}

.cta-strip-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #0A1E3F;
    letter-spacing: 0.5px;
    line-height: 1.3;
    text-transform: uppercase;
}

.cta-strip-desc {
    font-size: 0.82rem;
    color: #6B7280;
    margin-top: 2px;
}

@media (min-width: 992px) {
    .cta-strip-divider-wrap {
        border-left: 1px solid #E2E8F0;
        padding-left: 28px;
    }
}

.btn-process-quote {
    background-color: #D92318;
    color: #ffffff !important;
    border: none;
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(229, 43, 32, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-process-quote:hover {
    background-color: #C41F15;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 43, 32, 0.4);
    color: #ffffff !important;
}

.btn-process-quote i {
    transition: transform 0.2s ease;
}

.btn-process-quote:hover i {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Responsive Media Queries (Mobile: exactly 2 containers per line)
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
    .process-title {
        font-size: 27px;
    }
    .process-col:nth-child(n+3) {
        margin-top: 28px;
    }
}

@media (max-width: 575.98px) {
    .process-clean-section {
        padding: 40px 0 45px 0;
    }
    .process-title {
        font-size: 22px;
    }
    .process-subtitle {
        font-size: 13px;
    }
    .process-timeline-row {
        margin-top: 30px;
    }
    .process-circle-badge {
        width: 72px;
        height: 72px;
    }
    .process-circle-badge .process-icon {
        width: 30px;
        height: 30px;
    }
    .process-pill-number {
        font-size: 0.70rem;
        padding: 1px 11px;
        bottom: -9px;
    }
    .process-step-card {
        padding: 20px 10px 14px 10px;
        border-radius: 12px;
        min-height: auto;
    }
    .step-card-title {
        font-size: 0.76rem;
        margin-bottom: 6px;
    }
    .step-card-desc {
        font-size: 0.70rem;
        line-height: 1.35;
    }
    .process-col:nth-child(n+3) {
        margin-top: 24px;
    }
    .process-cta-strip {
        padding: 16px 16px;
        border-radius: 14px;
    }
    .cta-strip-title {
        font-size: 0.82rem;
    }
    .cta-strip-desc {
        font-size: 0.75rem;
    }
    .btn-process-quote {
        width: 100%;
        padding: 12px 20px;
    }
}

/* ==========================================================================
   Frequently Asked Questions - Clean Modern FAQ Section
   Matching reference media_1788863451443.png
   ========================================================================== */

.faq-clean-section {
    background-color: #F0F5FB;
    padding: 60px 0 70px 0;
    position: relative;
    font-family: inherit;
}

/* --------------------------------------------------------------------------
   Left Column: Header & Still Have Questions Contact Box
   -------------------------------------------------------------------------- */
.faq-eyebrow {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.faq-eyebrow .faq-eyebrow-dash {
    display: inline-block;
    width: 26px;
    height: 3.5px;
    background-color: #D92318;
    margin-right: 8px;
    border-radius: 2px;
}

.faq-eyebrow .faq-eyebrow-text {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #0A1E3F;
    text-transform: uppercase;
}

.faq-title {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #0A1E3F;
    line-height: 1.15;
    letter-spacing: -0.4px;
    margin-bottom: 16px;
}

.faq-title .text-brand-red {
    color: #D92318 !important;
}

.faq-subtitle {
    font-size: 15px;
    color: #556987;
    line-height: 1.6;
    max-width: 380px;
    margin-bottom: 34px;
}

/* Contact box matching media_1788863451443.png (no badges, no icons in contact) */
.faq-contact-box {
    margin-top: 10px;
}

.faq-contact-dash {
    display: block;
    width: 36px;
    height: 3.5px;
    background-color: #D92318;
    border-radius: 2px;
    margin-bottom: 18px;
}

.faq-contact-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #0A1E3F;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.faq-contact-desc {
    font-size: 14px;
    color: #556987;
    line-height: 1.55;
    max-width: 340px;
    margin-bottom: 22px;
}

.btn-faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #D92318;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(229, 43, 32, 0.28);
    transition: all 0.25s ease;
    border: none;
}

.btn-faq-contact:hover {
    background-color: #C71810;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(229, 43, 32, 0.38);
}

.btn-faq-contact .btn-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
    font-size: 15px;
}

.btn-faq-contact:hover .btn-arrow {
    transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   Right Column: Accordion Items (Matching media_1788863451443.png)
   -------------------------------------------------------------------------- */
.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-accordion-item {
    background: #ffffff;
    border: 1px solid #E4EDF7;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-accordion-item:hover {
    transform: translateY(-3px);
    border-color: #0088FF;
    box-shadow: 0 10px 25px rgba(0, 136, 255, 0.16), 0 3px 10px rgba(10, 30, 63, 0.08);
}

/* Active / Open state styling with ice-blue background and soft blue border */
.faq-accordion-item.active-faq,
.faq-accordion-item:has(.faq-accordion-btn:not(.collapsed)) {
    background: #F4F8FD;
    border-color: #D6E6F8;
    box-shadow: 0 4px 14px rgba(10, 30, 63, 0.05);
}

.faq-accordion-item.active-faq:hover,
.faq-accordion-item:has(.faq-accordion-btn:not(.collapsed)):hover {
    transform: translateY(-3px);
    border-color: #0088FF;
    box-shadow: 0 12px 28px rgba(0, 136, 255, 0.2), 0 4px 12px rgba(10, 30, 63, 0.08);
}

.faq-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    gap: 16px;
    outline: none !important;
}

.faq-question-text {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0A1E3F;
    line-height: 1.35;
    margin: 0;
    transition: color 0.2s ease;
}

.faq-accordion-item:hover .faq-question-text {
    color: #006cd1;
}

.faq-accordion-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #0A1E3F;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.25s ease;
}

/* When open: Rotate chevron up and turn Red */
.faq-accordion-btn:not(.collapsed) .faq-accordion-chevron {
    transform: rotate(180deg);
    color: #D92318;
}

.faq-accordion-body-wrap {
    padding: 0 22px 18px 22px;
}

.faq-body-divider {
    height: 1px;
    background: #E3EDF8;
    margin-bottom: 14px;
}

.faq-answer-text {
    font-size: 13.5px;
    color: #5A6E85;
    line-height: 1.6;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
    .faq-clean-section {
        padding: 45px 0 50px 0;
    }
    .faq-title {
        font-size: 30px;
    }
    .faq-subtitle {
        max-width: 100%;
        margin-bottom: 24px;
    }
    .faq-contact-box {
        margin-bottom: 25px;
    }
}

@media (max-width: 575.98px) {
    .faq-clean-section {
        padding: 38px 0 42px 0;
    }
    .faq-title {
        font-size: 24px;
    }
    .faq-subtitle {
        font-size: 13.5px;
        margin-bottom: 20px;
    }
    .faq-contact-title {
        font-size: 18px;
    }
    .faq-contact-desc {
        font-size: 13px;
        margin-bottom: 18px;
    }
    .btn-faq-contact {
        width: 100%;
        justify-content: center;
    }
    .faq-question-text {
        font-size: 14px;
    }
    .faq-accordion-btn {
        padding: 14px 16px;
    }
    .faq-accordion-body-wrap {
        padding: 0 16px 14px 16px;
    }
    .faq-answer-text {
        font-size: 13px;
    }
}


/* ========================================
   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; }

/* ==========================================================================
   Clean About Us Section (Matching Reference Mockup & Brand Theme)
   ========================================================================== */

.about-clean-section {
    background-color: #F0F5FB;
    padding-top: 35px;
    padding-bottom: 0;
    overflow: hidden;
    font-family: inherit;
}

.about-clean-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-main-photo {
    width: 100%;
    height: 415px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 10px 30px rgba(10, 30, 63, 0.08);
}

#aboutVideoCover:hover .about-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: #b91c1c !important;
}

.about-video-wrapper {
    width: 100%;
}

@media (max-width: 767.98px) {
    .about-video-wrapper {
        max-width: 440px;
    }
    .about-video-wrapper .about-play-btn {
        width: 56px !important;
        height: 56px !important;
    }
    .about-video-wrapper .about-play-btn i {
        font-size: 30px !important;
    }
}

@media (max-width: 575.98px) {
    .about-video-wrapper {
        max-width: 320px;
    }
    .about-video-wrapper .about-play-btn {
        width: 48px !important;
        height: 48px !important;
    }
    .about-video-wrapper .about-play-btn i {
        font-size: 24px !important;
    }
}


/* Floating Badge on Worker Photo */
.about-floating-card {
    position: absolute;
    right: 20px;
    top: 30%;
    background: #ffffff;
    padding: 16px 24px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(10, 30, 63, 0.12);
    border: 1px solid #E2EBF5;
    z-index: 3;
    text-align: left;
    min-width: 180px;
    animation: aboutFloat 4s ease-in-out infinite alternate;
}

@keyframes aboutFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-6px); }
}

.about-floating-card .badge-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0A1E3F;
    line-height: 1.3;
    margin-bottom: 2px;
}

.about-floating-card .badge-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #D92318;
    line-height: 1.3;
}

/* Right Content Column */
.about-clean-content {
    padding-left: 10px;
}

.about-clean-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.about-clean-eyebrow .eyebrow-dash {
    display: inline-block;
    width: 24px;
    height: 3px;
    background-color: #D92318;
    border-radius: 2px;
}

.about-clean-eyebrow .eyebrow-text {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #0A1E3F;
    text-transform: uppercase;
}

.about-clean-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0A1E3F;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.text-brand-red {
    color: #D92318 !important;
}

.about-clean-desc {
    font-size: 0.93rem;
    color: #4A5568;
    line-height: 1.65;
    margin-bottom: 18px;
}

/* 4 Themed Feature Pills */
.about-pills-grid {
    margin-bottom: 20px;
}

.about-theme-pill {
    background-color: #ffffff;
    border: 1px solid #E2EBF5;
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    transition: all 0.25s ease;
    height: 100%;
    box-shadow: 0 2px 6px rgba(10, 30, 63, 0.03);
}

.about-theme-pill:hover {
    background-color: #ffffff;
    border-color: rgba(229, 43, 32, 0.4);
    box-shadow: 0 4px 14px rgba(229, 43, 32, 0.08);
    transform: translateY(-2px);
}

.about-theme-pill .pill-icon-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #D92318;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    box-shadow: 0 3px 8px rgba(229, 43, 32, 0.25);
    flex-shrink: 0;
}

.about-theme-pill .pill-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0A1E3F;
    line-height: 1.3;
}

/* Know More CTA Button */
.btn-about-know-more {
    display: inline-flex;
    align-items: center;
    background-color: #D92318;
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(229, 43, 32, 0.3);
}

.btn-about-know-more:hover {
    background-color: #C41F15;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(229, 43, 32, 0.4);
}

.btn-about-know-more i {
    transition: transform 0.2s ease;
}

.btn-about-know-more:hover i {
    transform: translateX(4px);
}

/* Bottom Navy Stats Bar (Slim according to content) */
.about-stats-bar {
    background-color: #0A1E3F;
    padding: 10px 0;
    margin-top: 18px;
    width: 100%;
}

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

.about-stat-col:last-child {
    border-right: none;
}

.about-stat-item {
    padding: 2px 10px;
}

.about-stat-item .stat-icon {
    font-size: 1.5rem;
    color: #ffffff;
    line-height: 1;
    opacity: 0.95;
}

.about-stat-item .stat-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.about-stat-item .stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: 1px;
    white-space: nowrap;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .about-clean-content {
        padding-left: 0;
        margin-top: 10px;
    }
    .about-clean-title {
        font-size: 1.85rem;
    }
    .about-main-photo {
        height: 320px;
    }
    .about-floating-card {
        right: 15px;
        top: auto;
        bottom: 20px;
        padding: 12px 18px;
    }
    .about-floating-card .badge-subtitle {
        font-size: 0.85rem;
    }
    .about-floating-card .badge-title {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .about-stats-bar {
        padding: 10px 0;
    }
    .about-stat-col {
        border-right: none;
    }
    .about-stat-col:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }
    .about-stat-col:nth-child(1),
    .about-stat-col:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
    .about-stat-item {
        justify-content: center !important;
        padding: 0 10px;
    }
}

@media (max-width: 575.98px) {
    .about-clean-section {
        padding-top: 40px;
    }
    .about-clean-title {
        font-size: 1.6rem;
    }
    .about-main-photo {
        height: 280px;
    }
    .about-floating-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: -30px;
        margin-left: 15px;
        margin-right: 15px;
        animation: none;
    }
    .about-stat-item .stat-icon {
        font-size: 1.85rem;
    }
    .about-stat-item .stat-value {
        font-size: 1.35rem;
    }
    .about-stat-item .stat-label {
        font-size: 0.78rem;
    }
    .about-theme-pill {
        padding: 8px 10px;
        border-radius: 10px;
        min-height: 52px;
    }
    .about-theme-pill .pill-icon-badge {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    .about-theme-pill .pill-title {
        font-size: 0.78rem;
        line-height: 1.25;
    }
}

@media (max-width: 375.98px) {
    .about-theme-pill {
        padding: 6px 8px;
    }
    .about-theme-pill .pill-icon-badge {
        width: 28px;
        height: 28px;
        font-size: 0.82rem;
    }
    .about-theme-pill .pill-title {
        font-size: 0.72rem;
        line-height: 1.2;
    }
}

/* ==========================================================================
   Modern About Page (Reference Mockup Design)
   ========================================================================== */

/* Hero Banner */
.about-hero-banner {
    position: relative;
    background-color: #07193b;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0 75px;
    min-height: 290px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(7, 25, 59, 0.95) 0%, rgba(7, 25, 59, 0.85) 45%, rgba(7, 25, 59, 0.35) 75%, rgba(7, 25, 59, 0.1) 100%);
    z-index: 1;
}

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

.about-breadcrumb-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 5px 16px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

.about-breadcrumb-pill a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.about-breadcrumb-pill a:hover {
    opacity: 0.8;
}

.about-breadcrumb-pill .sep {
    opacity: 0.6;
    font-size: 11px;
}

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

.about-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.12rem;
    font-weight: 400;
    max-width: 620px;
    margin: 0;
    line-height: 1.5;
}

/* Main Cards */
.about-advantage-card,
.about-faq-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 38px 36px;
    box-shadow: 0 4px 20px rgba(7, 25, 59, 0.04);
}

.about-section-eyebrow {
    font-size: 11.5px;
    font-weight: 800;
    color: #0a4ebd;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 6px;
    display: block;
}

.about-section-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #07193b;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    line-height: 1.25;
}

.about-red-accent-bar {
    width: 44px;
    height: 3.5px;
    background: #e52b20;
    border-radius: 2px;
    margin-bottom: 16px;
}

.about-section-desc {
    color: #475569;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 26px;
}

/* Feature Grid Boxes - Themed Card Design (Left Accent Border & Inline Head) */
.about-feature-box {
    background: #ffffff;
    border: 1px solid #e8eef5;
    border-left: 4.5px solid #0a4ebd;
    border-radius: 14px;
    padding: 24px 22px;
    text-align: left;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 18px rgba(10, 30, 63, 0.04);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-feature-box.box-red,
.about-feature-box:has(.about-icon-red) {
    border-left-color: #e52b20;
}

.about-feature-box.box-blue,
.about-feature-box:has(.about-icon-blue) {
    border-left-color: #0a4ebd;
}

.about-feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(10, 30, 63, 0.08);
    border-color: #e2e8f0;
    border-left-color: #0a4ebd;
}

.about-feature-box.box-red:hover,
.about-feature-box:has(.about-icon-red):hover {
    border-left-color: #e52b20;
}

.about-feature-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    width: 100%;
}

.about-feature-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.about-feature-box:hover .about-feature-icon-wrap {
    transform: translateY(-2px) scale(1.06);
}

.about-icon-blue {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #0a4ebd;
    border: 1px solid rgba(10, 78, 189, 0.16);
    box-shadow: 0 4px 12px rgba(10, 78, 189, 0.08);
}

.about-icon-red {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #e52b20;
    border: 1px solid rgba(229, 43, 32, 0.16);
    box-shadow: 0 4px 12px rgba(229, 43, 32, 0.08);
}

.about-feature-box .feature-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: #07193b;
    margin-bottom: 0;
    line-height: 1.35;
    letter-spacing: -0.2px;
}

.about-feature-box .future_desc {
    font-size: 14px;
    font-weight: 600;
    color: #0A1E3F;
    line-height: 1.55;
    margin-bottom: 10px;
    width: 100%;
}

.about-feature-box p {
    font-size: 14px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 12px;
    text-align: left;
    width: 100%;
}

.about-feature-box p:last-child {
    margin-bottom: 0;
}

.about-feature-box b,
.about-feature-box strong {
    color: #07193b;
    font-weight: 700;
}

.about-feature-box em {
    color: #0a4ebd;
    font-style: normal;
    font-weight: 600;
}

/* CTA Banner (Your Move. Our Responsibility.) */
.about-cta-banner {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 28px;
    position: relative;
}

.about-cta-banner-content {
    padding: 36px 32px;
}

.about-cta-headline {
    font-size: 1.85rem;
    font-weight: 800;
    color: #07193b;
    line-height: 1.2;
    margin-bottom: 12px;
}

.about-cta-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 440px;
}

.about-btn-quote {
    background: #e52b20;
    color: #ffffff !important;
    font-size: 14.5px;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 14px rgba(229, 43, 32, 0.3);
    transition: all 0.25s ease;
    cursor: pointer;
}

.about-btn-quote:hover {
    background: #c41f15;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(229, 43, 32, 0.4);
}

.about-cta-img-col {
    position: relative;
    overflow: hidden;
    min-height: 240px;
}

.about-cta-mover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-floating-cursive-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(6px);
    border: 1px solid #dbeafe;
    border-radius: 24px;
    padding: 6px 16px;
    font-family: cursive, 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #0a4ebd;
    box-shadow: 0 6px 16px rgba(10, 78, 189, 0.12);
    transform: rotate(3deg);
    z-index: 2;
    white-space: nowrap;
}

/* FAQ Accordion */
.about-faq-accordion .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
    background: #ffffff;
}

.about-faq-accordion .accordion-button {
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 700;
    color: #07193b;
    background: #ffffff;
    box-shadow: none !important;
    display: flex;
    align-items: center;
}

.about-faq-accordion .accordion-button:not(.collapsed) {
    color: #0a4ebd;
    background: #f8fafc;
}

.about-faq-badge-num {
    background: #eff6ff;
    color: #0a4ebd;
    font-size: 13px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 8px;
    margin-right: 16px;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.about-faq-accordion .accordion-button:not(.collapsed) .about-faq-badge-num {
    background: #e0edff;
    color: #0a4ebd;
}

.about-faq-accordion .accordion-body {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.7;
    padding: 18px 24px 24px 62px;
    background: #fafcff;
    border-top: 1px solid #edf2f7;
}

/* FAQ Bottom Contact Banner */
.faq-contact-card {
    background-color: #f0f7ff;
    border: 1px solid #dbeafe;
    box-shadow: 0 4px 20px rgba(10, 78, 189, 0.05);
}

.faq-contact-icon {
    box-shadow: 0 4px 12px rgba(10, 78, 189, 0.1);
}

/* Responsive Media Queries */
@media (max-width: 991.98px) {
    .about-hero-title {
        font-size: 2.2rem;
    }
    .about-hero-banner {
        padding: 50px 0;
        min-height: 250px;
    }
    .about-advantage-card,
    .about-faq-card {
        padding: 28px 22px;
    }
    .about-section-title {
        font-size: 1.6rem;
    }
    .about-cta-headline {
        font-size: 1.55rem;
    }
    .about-cta-banner-content {
        padding: 26px 20px;
    }
    .about-cta-mover-img {
        max-height: 250px;
    }
}

@media (max-width: 575.98px) {
    .about-hero-title {
        font-size: 1.8rem;
    }
    .about-hero-subtitle {
        font-size: 0.95rem;
    }
    .about-hero-banner {
        padding: 40px 0;
    }
    .about-section-title {
        font-size: 1.45rem;
    }
    .about-advantage-card,
    .about-faq-card {
        padding: 22px 16px;
        border-radius: 12px;
    }
    .about-faq-accordion .accordion-button {
        padding: 14px 16px;
        font-size: 13.5px;
    }
    .about-faq-accordion .accordion-body {
        padding: 14px 16px 18px 16px;
        font-size: 13px;
    }
    .about-cta-mover-img {
        max-height: 200px;
    }
}

/* ==========================================================================
   Testimonials Page Styles (media_1788952580875.png)
   ========================================================================== */

.testi-header-eyebrow {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #e52b20;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.testi-header-title {
    font-size: clamp(1.85rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #07193b;
    line-height: 1.2;
    margin-bottom: 12px;
}

.testi-header-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
}

/* Stats Row */
.testi-stats-container {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 4px 20px rgba(7, 25, 59, 0.03);
    margin: 36px 0 44px 0;
}

.testi-stat-col {
    position: relative;
}

@media (min-width: 768px) {
    .testi-stat-col:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background-color: #e2e8f0;
    }
}

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

.testi-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #eff6ff;
    color: #0a4ebd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.testi-stat-val {
    font-size: 1.35rem;
    font-weight: 800;
    color: #07193b;
    line-height: 1.15;
}

.testi-stat-lbl {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
    white-space: nowrap;
}

/* 6 Testimonial Cards */
.testi-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 30px 26px;
    box-shadow: 0 4px 20px rgba(7, 25, 59, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(10, 78, 189, 0.08);
    border-color: #bfdbfe;
}

.testi-quote-badge {
    display: inline-block;
    margin-bottom: 12px;
    line-height: 1;
}

.testi-quote-badge svg {
    width: 34px;
    height: 26px;
    display: block;
}

.testi-stars {
    display: flex;
    gap: 3px;
    color: #f59e0b;
    font-size: 15px;
    margin-bottom: 14px;
}

.testi-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 22px;
    flex-grow: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #eff6ff;
    color: #0a4ebd;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    object-fit: cover;
}

.testi-author-name {
    font-size: 14.5px;
    font-weight: 700;
    color: #07193b;
    margin: 0;
    line-height: 1.25;
}

.testi-author-route {
    font-size: 12px;
    color: #64748b;
    margin: 2px 0 0 0;
}

.testi-card-title {
    font-size: 14.5px;
    font-weight: 800;
    color: #07193b;
    line-height: 1.4;
    margin-bottom: 4px;
}

/* Callout Banner */
.testi-cta-card {
    background-color: #f0f7ff;
    border: 1px solid #dbeafe;
    border-left: 4px solid #b91c1c;
    border-radius: 14px;
    padding: 16px 28px;
    box-shadow: 0 4px 16px rgba(10, 78, 189, 0.04);
    margin-top: 0;
}

.testi-cta-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #991b1b;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 3px;
}

.testi-cta-dash {
    width: 18px;
    height: 2.5px;
    background-color: #991b1b;
    border-radius: 2px;
    display: inline-block;
}

.testi-cta-title {
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    font-weight: 800;
    color: #07193b;
    line-height: 1.25;
    margin-bottom: 4px;
}

.testi-cta-desc {
    font-size: 14px;
    color: #475569;
    margin: 0;
}

.testi-cta-btn {
    background-color: #e52b20;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 14px rgba(229, 43, 32, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s ease;
}

.testi-cta-btn:hover {
    background-color: #c41f15;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(229, 43, 32, 0.4);
}

.testi-review-btn {
    background-color: #ffffff;
    color: #07193b !important;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 24px;
    border-radius: 8px;
    border: 1.5px solid #cbd5e1;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s ease;
}

.testi-review-btn:hover {
    background-color: #07193b;
    color: #ffffff !important;
    border-color: #07193b;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(7, 25, 59, 0.18);
}


/* Bottom Trust Header */
.testi-bottom-wrap {
    margin-top: 56px;
    text-align: center;
}

.testi-bottom-eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #e52b20;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.testi-bottom-title {
    font-size: clamp(1.35rem, 2.2vw, 1.7rem);
    font-weight: 800;
    color: #07193b;
    line-height: 1.3;
    margin-bottom: 10px;
}

.testi-bottom-bar {
    width: 44px;
    height: 3px;
    background-color: #e52b20;
    border-radius: 2px;
    margin: 0 auto 12px auto;
}

.testi-bottom-desc {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Responsive */
@media (max-width: 767.98px) {
    .testi-stats-container {
        padding: 18px 14px;
    }
    .testi-stat-col:nth-child(1),
    .testi-stat-col:nth-child(2) {
        margin-bottom: 16px;
    }
    .testi-cta-card {
        padding: 16px 16px;
    }
    /* Feature boxes on mobile 2-column view */
    .about-advantage-card {
        padding: 20px 12px;
    }
    .about-feature-box {
        padding: 20px 16px;
        border-radius: 14px;
    }
    .about-feature-icon-wrap {
        width: 44px;
        height: 44px;
        font-size: 18px;
        margin-bottom: 10px;
    }
    .about-feature-box .feature-title {
        font-size: 15px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    .about-feature-box .future_desc,
    .about-feature-box p {
        font-size: 13px;
        line-height: 1.55;
        margin-bottom: 8px;
    }
}

/* ========================================================
   About & FAQs External Styles (Extracted from inline styles)
   ======================================================== */
.about-page-bg {
    background-color: #f8fafc;
}

/* Feature & Trust Icons */
.about-feature-icon-46 {
    width: 46px;
    height: 46px;
    font-size: 20px;
}
.about-feature-icon-44 {
    width: 44px;
    height: 44px;
    font-size: 20px;
}
.about-feature-icon-head-46 {
    width: 46px;
    height: 46px;
    font-size: 22px;
}
.about-trust-icon-40 {
    width: 40px;
    height: 40px;
    font-size: 18px;
}
.about-trust-caption {
    font-size: 11.5px;
}

/* Decorative divider & typography */
.about-sub-accent-bar {
    width: 28px;
    height: 2px;
    background: #e52b20;
}
.about-sub-desc {
    line-height: 1.6;
}

/* How We Work Steps */
.about-step-badge-blue {
    width: 36px;
    height: 36px;
    background: #eff6ff;
    color: #0a4ebd;
    font-size: 15px;
    border: 1px solid #bfdbfe;
}
.about-step-badge-red {
    width: 36px;
    height: 36px;
    background: #fef2f2;
    color: #e52b20;
    font-size: 15px;
    border: 1px solid #fecaca;
}
.about-step-subdesc {
    font-size: 12px;
    line-height: 1.5;
    color: #374151;
}

/* FAQ Header */
.faq-head-eyebrow {
    font-size: 13px;
    letter-spacing: 1.5px;
}
.faq-head-title {
    color: #07193b;
    font-size: 2rem;
}
.faq-head-divider {
    width: 44px;
    height: 3px;
    background-color: #e52b20;
    border-radius: 2px;
}
.faq-head-desc {
    font-size: 14.5px;
    color: #374151;
}

/* FAQ Bottom Contact CTA */
.faq-cta-box {
    background-color: #f0f7ff;
    border: 1px solid #dbeafe;
}
.faq-cta-icon {
    width: 58px;
    height: 58px;
    background-color: #dbeafe;
    color: #0a4ebd;
    font-size: 26px;
}
.faq-cta-heading {
    color: #07193b;
    font-size: 1.25rem;
}
.faq-cta-text {
    line-height: 1.4;
    color: #374151;
}
.faq-cta-btn {
    white-space: nowrap;
    font-size: 14px;
    background-color: #e52b20;
    border-color: #e52b20;
}
.faq-phone-wrap {
    white-space: nowrap;
}
.faq-phone-icon {
    width: 38px;
    height: 38px;
    background-color: #07193b;
    font-size: 16px;
}
.faq-phone-text {
    font-size: 14px;
    color: #07193b;
}
.faq-phone-sub {
    font-size: 11px;
}

/* Testimonial Verified Badge */
.testi-verified-pill {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    vertical-align: middle;
}


/* ========================================
   SERVICES / PACKERS & MOVERS
======================================== */
/* 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;
    }
}



/* ======================================================
   MODERN SERVICE HERO SECTION
   ====================================================== */
.service-hero-section {
    position: relative;
    width: 100%;
    min-height: 480px;
    background-image: url('../img/moving_bg.jpg');
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 50px 0 58px 0;
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 18, 42, 0.94) 0%, rgba(8, 32, 78, 0.88) 45%, rgba(10, 48, 128, 0.45) 78%, rgba(5, 18, 42, 0.20) 100%);
    pointer-events: none;
    z-index: 1;
}

.service-hero-container {
    z-index: 2;
}

/* Glassmorphic Breadcrumb Nav */
.service-hero-bc-nav {
    margin-bottom: 16px;
}

.service-bc-pill-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(10, 78, 189, 0.2);
    border-radius: 50px;
    padding: 5px 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-wrap: wrap;
}

.service-bc-link {
    font-size: 13px;
    font-weight: 600;
    color: #0a4ebd;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}

.service-bc-link:hover {
    color: #d92318;
}

.service-bc-sep {
    font-size: 12px;
    color: #d92318;
    font-weight: 700;
}

.service-bc-current {
    font-size: 12.5px;
    font-weight: 700;
    color: #ffffff;
    background: #d92318;
    padding: 3px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(217, 35, 24, 0.35);
    line-height: 1.3;
}

/* Eyebrow Badge */
.service-hero-eyebrow {
    margin-bottom: 12px;
}

.service-hero-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    padding: 4px 12px;
    border-radius: 30px;
    backdrop-filter: blur(6px);
    text-transform: uppercase;
}

/* Main Headline */
.service-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.1rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 14px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.service-hero-title .text-brand-red {
    color: #ff3b30 !important;
}

/* Description */
.service-hero-desc {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.65;
    max-width: 680px;
    margin-bottom: 22px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Trust Badges Row */
.service-hero-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.service-hero-pill-item {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 6px 14px;
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 600;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Action Buttons */
.service-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-service-hero-quote {
    background: #d92318;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(217, 35, 24, 0.45);
    transition: all 0.25s ease;
}

.btn-service-hero-quote:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 35, 24, 0.55);
}

.btn-service-hero-call {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 12px;
    padding: 8px 18px;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.btn-service-hero-call:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-service-hero-call small {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.1;
}

.btn-service-hero-call strong {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.btn-service-hero-wa {
    background: #ffffff;
    color: #075e54;
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
}

.btn-service-hero-wa i {
    color: #25d366;
    font-size: 18px;
}

.btn-service-hero-wa:hover {
    background: #effaf4;
    color: #075e54;
    transform: translateY(-2px);
}

/* Rating Strip */
.service-hero-rating-strip {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    flex-wrap: wrap;
}

.service-rating-stars i {
    font-size: 13px;
}

.service-rating-dot {
    color: rgba(255, 255, 255, 0.4);
}

/* Hero Responsive */
@media (max-width: 991px) {
    .service-hero-section {
        background-position: 75% center;
        padding: 38px 0 46px 0;
        min-height: auto;
    }
    .service-hero-overlay {
        background: linear-gradient(90deg, rgba(5, 18, 42, 0.96) 0%, rgba(8, 32, 78, 0.92) 65%, rgba(10, 48, 128, 0.75) 100%);
    }
}

@media (max-width: 576px) {
    .service-hero-section {
        padding: 24px 0 32px 0;
    }
    .service-bc-pill-box {
        padding: 4px 10px;
        gap: 4px;
    }
    .service-bc-link {
        font-size: 11px;
    }
    .service-bc-current {
        font-size: 11px;
        padding: 2px 6px;
    }
    .service-hero-eyebrow-pill {
        font-size: 9px;
        letter-spacing: 0.5px;
        padding: 2px 6px;
        line-height: 1.3;
        white-space: normal;
    }
    .service-hero-title {
        font-size: 20px !important;
        line-height: 1.25;
        margin-bottom: 8px;
        word-break: break-word;
    }
    .service-hero-desc {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    .service-hero-pills-row {
        gap: 4px;
        margin-bottom: 12px;
    }
    .service-hero-pill-item {
        font-size: 10px;
        padding: 3px 6px;
    }
    .service-hero-cta-row {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 12px;
    }
    .btn-service-hero-quote {
        width: 100%;
        padding: 10px 14px;
        font-size: 14px;
        justify-content: center;
        border-radius: 10px;
    }
    .btn-service-hero-call, .btn-service-hero-wa {
        width: 100%;
        padding: 8px 12px;
        justify-content: center;
        font-size: 12.5px;
        border-radius: 10px;
    }
    .service-hero-rating-strip {
        font-size: 10px;
        gap: 4px;
    }
}

/* ========================================================
   Service Detail Inner Elements (Extracted from inline styles)
   ======================================================== */
.service-detail-hero-img {
    max-height: 420px;
    object-fit: cover;
    object-position: center;
}
.service-step-card-title {
    font-size: 13px;
}
.service-step-card-desc {
    font-size: 11px;
    line-height: 1.35;
}
.service-guarantee-box {
    background: #f8fafc;
    border-left: 4px solid #0a4ebd !important;
}

/* Service Detail Feature / Info Content Cards */
.service-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 24, 70, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    height: 100%;
}
.service-feature-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 28px rgba(0, 24, 70, 0.08);
    transform: translateY(-2px);
}
.service-feature-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.service-feature-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #eef5ff;
    color: #0a4ebd;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.service-feature-card:hover .service-feature-card-icon {
    background: #0a4ebd;
    color: #ffffff;
}
.service-feature-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #001333;
    margin-bottom: 0;
    line-height: 1.35;
}

@media (max-width: 768px) {
    .service-feature-card {
        padding: 18px 16px;
        border-radius: 12px;
    }
    .service-feature-card-title {
        font-size: 1rem;
    }
}

/* packers_movers_modules.css */

/* legacy city_list.php rules migrated to city_list.css */

.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: relative; height: auto; }
.pm-city-sidebar-widget { background: #ffffff; border-radius: 18px; padding: 24px; box-shadow: 0 4px 24px rgba(0,24,70,0.06); border: 1px solid #e2e8f0; }
.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: #D92318; }
.pm-city-sidebar-widget-desc { font-size: 12px; color: #374151; margin-bottom: 16px; }
.pm-city-cta-card {
  background-color: #f1f6fd;
  background-image:
    radial-gradient(circle at 100% 0%, rgba(13, 110, 253, 0.16) 0%, transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(217, 35, 24, 0.08) 0%, transparent 45%),
    radial-gradient(rgba(10, 78, 189, 0.12) 1.4px, transparent 1.4px),
    linear-gradient(145deg, #f0f6ff 0%, #e6f0fd 100%);
  background-size: 100% 100%, 100% 100%, 18px 18px, 100% 100%;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1.5px solid #dbeafe;
  padding: 32px 24px 28px;
  box-shadow: 0 14px 40px rgba(10, 78, 189, 0.09);
}
.pm-city-cta-card::after {
  content: '';
  position: absolute;
  top: -85px;
  right: -85px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  border: 2px dashed rgba(13, 110, 253, 0.28);
  pointer-events: none;
  z-index: 0;
}
.pm-city-cta-card::before {
  content: '';
  position: absolute;
  bottom: -55px;
  left: -55px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 1.5px dashed rgba(217, 35, 24, 0.22);
  background: radial-gradient(circle, rgba(217, 35, 24, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.pm-cta-bg-blob-1 {
  position: absolute;
  top: -45px;
  right: -45px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.2) 0%, rgba(13, 110, 253, 0.06) 70%, transparent 100%);
  border: 1.5px solid rgba(13, 110, 253, 0.2);
  pointer-events: none;
  z-index: 0;
}
.pm-cta-bg-blob-2 {
  position: absolute;
  top: 108px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.14);
  border: 1.5px solid rgba(13, 110, 253, 0.26);
  box-shadow: 0 0 14px rgba(13, 110, 253, 0.2);
  pointer-events: none;
  z-index: 0;
}
.pm-city-cta-inner {
  position: relative;
  z-index: 1;
}
.pm-city-cta-header-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.pm-city-cta-icon-wrap {
  width: 58px;
  height: 58px;
  width: 52px;
  height: 52px;
  background: #ffffff;
  border: none;
  border-radius: 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-size: 26px;
  color: #00368a;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0, 30, 84, 0.08);
  margin-bottom: 0;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0, 30, 84, 0.08);
}
.pm-city-cta-header-text {
  flex: 1;
  min-width: 0;
}
.pm-city-cta-title {
  font-size: 25px;
  font-size: 19.5px;
  font-weight: 800;
  color: #001e54;
  line-height: 1.25;
  margin-bottom: 10px;
  margin-bottom: 7px;
  letter-spacing: -0.3px;
}
.pm-city-cta-title span {
  color: #d92318;
  text-decoration: none;
}
.pm-cta-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 22px;
  margin-bottom: 0;
}
.pm-cta-bar-red {
  width: 44px;
  height: 4px;
  width: 36px;
  height: 3.5px;
  background: #d92318;
  border-radius: 2px 0 0 2px;
}
.pm-cta-bar-blue {
  width: 28px;
  height: 4px;
  width: 24px;
  height: 3.5px;
  background: #bfdbfe;
  border-radius: 0 2px 2px 0;
}
.pm-city-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pm-city-cta-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #ffffff;
  box-shadow: 0 4px 16px rgba(0, 25, 70, 0.05);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.pm-city-cta-btn:hover {
  background: #ffffff;
  border-color: #bfdbfe;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 25, 70, 0.1);
  color: inherit;
}
.pm-cta-btn-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.pm-city-cta-btn:hover .pm-cta-btn-icon {
  transform: scale(1.08);
}
.pm-cta-btn-icon.icon-red {
  background: #fee2e2;
  color: #d92318;
}
.pm-cta-btn-icon.icon-blue {
  background: #dbeafe;
  color: #00368a;
}
.pm-cta-btn-text {
  flex: 1;
}
.pm-cta-btn-text small {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 2px;
}
.pm-cta-btn-text strong {
  display: block;
  font-size: 17.5px;
  font-weight: 800;
  color: #001e54;
  letter-spacing: 0.3px;
}
.pm-cta-btn-arrow {
  font-size: 22px;
  color: #001e54;
  transition: transform 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}
.pm-city-cta-btn:hover .pm-cta-btn-arrow {
  transform: translateX(4px);
  color: #d92318;
}
.pm-city-cta-action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}
.pm-city-action-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 8px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}
.pm-city-action-btn:hover {
  transform: translateY(-2px);
}
.action-btn-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
.action-btn-label i {
  font-size: 12px !important;
  transition: transform 0.2s ease;
}
.pm-city-action-btn:hover .action-btn-label i {
  transform: translateX(3px);
}
.pm-city-whatsapp-btn {
  background: #ffffff;
  border: 1px solid #ffffff;
  box-shadow: 0 4px 16px rgba(0, 25, 70, 0.05);
}
.pm-city-whatsapp-btn > i {
  font-size: 20px;
  color: #25D366;
  line-height: 1;
  flex-shrink: 0;
}
.pm-city-whatsapp-btn .action-btn-label {
  color: #001e54;
}
.pm-city-whatsapp-btn:hover {
  background: #ffffff;
  border-color: #bbf7d0;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
  color: #001e54;
}
.pm-city-quote-btn {
  background: linear-gradient(135deg, #e52b20 0%, #c91f15 100%);
  box-shadow: 0 6px 20px rgba(217, 35, 24, 0.35);
}
.pm-city-quote-btn > i {
  font-size: 18px;
  color: #ffffff;
  line-height: 1;
  flex-shrink: 0;
}
.pm-city-quote-btn .action-btn-label {
  color: #ffffff;
}
.pm-city-quote-btn:hover {
  background: linear-gradient(135deg, #cc2318 0%, #b31910 100%);
  box-shadow: 0 10px 26px rgba(217, 35, 24, 0.48);
  color: #ffffff;
}
.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: #001333; 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; display: grid; place-items: center; font-size: 16px; flex-shrink: 0; }
.pm-city-trust-blue { background: #eff6ff; color: #0a4ebd; }
.pm-city-trust-red { background: #fef2f2; color: #D92318; }
.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: #64748b; }
.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: #001333; text-decoration: none; transition: all 0.2s; }
.pm-city-tag:hover { background: #0a4ebd; color: #fff; border-color: #0a4ebd; }
.pm-city-tag i { color: #D92318; transition: color 0.2s; font-size: 14px; }
.pm-city-tag:hover i { color: #fff; }


/* city_page_design/city_about.php, city_reviews.php, city_faq.php */
.pm-city-details-section {
  background: #f8fafc;
  padding: 48px 0 60px;
}

.pm-city-content-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 34px 30px;
  box-shadow: 0 4px 20px rgba(0, 24, 70, 0.05);
  border: 1px solid #e8edf4;
  margin-bottom: 24px;
  transition: box-shadow 0.3s ease;
}
.pm-city-content-card:hover {
  box-shadow: 0 8px 30px rgba(0, 24, 70, 0.08);
}

.pm-city-section-eyebrow {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #0a4ebd;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}

.pm-city-section-title {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: #001333;
  line-height: 1.3;
  margin-bottom: 20px;
}
.pm-city-accent {
  color: #0a4ebd;
}

.pm-city-section-title-sm {
  font-size: 1.22rem;
  font-weight: 800;
  color: #001333;
  margin-bottom: 16px;
  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: #D92318;
}

.pm-city-prose p {
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.pm-city-prose strong {
  color: #0A1E3F;
}

.pm-city-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pm-city-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0f6fe;
  border: 1px solid #d4e4ff;
  color: #0a4ebd;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.25s ease;
}
.pm-city-pill:hover {
  background: #e2edfd;
  border-color: #0a4ebd;
  transform: translateY(-2px);
}
.pm-city-pill i {
  font-size: 16px;
}

.pm-city-map-container {
  background: #f8fafc;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #eef2f6;
}
.pm-city-map-frame iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.pm-city-checklist {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0 20px;
}
.pm-city-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
}
.pm-city-checklist li i {
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Rating Summary & Review Cards */
.pm-verified-pill {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  background: #eff6ff;
  color: #0a4ebd;
  border: 1px solid #dbeafe;
  padding: 5px 12px;
  border-radius: 20px;
}

.pm-city-rating-summary {
  background: #f8fafc;
  border-color: #e2e8f0 !important;
}
.pm-rating-big-score {
  font-size: 2.8rem;
  font-weight: 900;
  color: #0A1E3F;
  line-height: 1;
}
.pm-rating-max {
  font-size: 1.15rem;
  font-weight: 600;
  color: #64748b;
}
.pm-review-stars {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 14px;
}
.pm-rating-stat-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 6px;
}
.pm-stat-highlight {
  line-height: 1.2;
}

.pm-city-review-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #0a4ebd;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 24, 70, 0.03);
  transition: transform 0.25s, box-shadow 0.25s;
}
.pm-city-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 24, 70, 0.07);
}
.pm-review-text {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.65;
  margin: 12px 0 16px;
  font-style: normal;
}
.pm-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pm-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a4ebd, #001333);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13.5px;
  flex-shrink: 0;
}
.pm-review-author strong {
  display: block;
  font-size: 13.5px;
  color: #001333;
}

/* FAQ Accordion Styling */
.pm-city-faq-item {
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  margin-bottom: 12px;
  background: #ffffff;
  overflow: hidden;
}
.pm-city-faq-btn {
  background: #ffffff !important;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 14.5px;
  color: #0A1E3F !important;
  box-shadow: none !important;
  border: none;
  display: flex;
  align-items: center;
}
.pm-city-faq-btn:not(.collapsed) {
  background: #f0f6fe !important;
  color: #0a4ebd !important;
}
.pm-faq-badge-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #e0edff;
  color: #0a4ebd;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.pm-city-faq-btn:not(.collapsed) .pm-faq-badge-num {
  background: #0a4ebd;
  color: #ffffff;
}
.pm-city-faq-body {
  padding: 8px 24px 22px 64px;
  font-size: 14px;
  color: #475569;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .pm-city-content-card {
    padding: 22px 18px;
    border-radius: 14px;
  }
  .pm-city-checklist {
    grid-template-columns: 1fr;
  }
  .pm-city-faq-body {
    padding: 8px 18px 18px 18px;
  }
  .pm-city-faq-btn {
    padding: 14px 16px;
    font-size: 13.5px;
  }
}
@media (max-width: 480px) {
  .pm-city-feature-pills {
    flex-direction: column;
  }
}



/* ======================================================
   MODERN SERVICE HERO SECTION
   ====================================================== */
.service-hero-section {
    position: relative;
    width: 100%;
    min-height: 480px;
    background-image: url('../img/moving_bg.jpg');
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 50px 0 58px 0;
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 18, 42, 0.94) 0%, rgba(8, 32, 78, 0.88) 45%, rgba(10, 48, 128, 0.45) 78%, rgba(5, 18, 42, 0.20) 100%);
    pointer-events: none;
    z-index: 1;
}

.service-hero-container {
    z-index: 2;
}

/* Glassmorphic Breadcrumb Nav */
.service-hero-bc-nav {
    margin-bottom: 16px;
}

.service-bc-pill-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(10, 78, 189, 0.2);
    border-radius: 50px;
    padding: 5px 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-wrap: wrap;
}

.service-bc-link {
    font-size: 13px;
    font-weight: 600;
    color: #0a4ebd;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}

.service-bc-link:hover {
    color: #d92318;
}

.service-bc-sep {
    font-size: 12px;
    color: #d92318;
    font-weight: 700;
}

.service-bc-current {
    font-size: 12.5px;
    font-weight: 700;
    color: #ffffff;
    background: #d92318;
    padding: 3px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(217, 35, 24, 0.35);
    line-height: 1.3;
}

/* Eyebrow Badge */
.service-hero-eyebrow {
    margin-bottom: 12px;
}

.service-hero-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    padding: 4px 12px;
    border-radius: 30px;
    backdrop-filter: blur(6px);
    text-transform: uppercase;
}

/* Main Headline */
.service-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.1rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 14px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.service-hero-title .text-brand-red {
    color: #ff3b30 !important;
}

/* Description */
.service-hero-desc {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.65;
    max-width: 680px;
    margin-bottom: 22px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Trust Badges Row */
.service-hero-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.service-hero-pill-item {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 6px 14px;
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 600;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Action Buttons */
.service-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-service-hero-quote {
    background: #d92318;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(217, 35, 24, 0.45);
    transition: all 0.25s ease;
}

.btn-service-hero-quote:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 35, 24, 0.55);
}

.btn-service-hero-call {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 12px;
    padding: 8px 18px;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.btn-service-hero-call:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-service-hero-call small {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.1;
}

.btn-service-hero-call strong {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.btn-service-hero-wa {
    background: #ffffff;
    color: #075e54;
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
}

.btn-service-hero-wa i {
    color: #25d366;
    font-size: 18px;
}

.btn-service-hero-wa:hover {
    background: #effaf4;
    color: #075e54;
    transform: translateY(-2px);
}

/* Rating Strip */
.service-hero-rating-strip {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    flex-wrap: wrap;
}

.service-rating-stars i {
    font-size: 13px;
}

.service-rating-dot {
    color: rgba(255, 255, 255, 0.4);
}

/* Hero Responsive */
@media (max-width: 991px) {
    .service-hero-section {
        background-position: 75% center;
        padding: 38px 0 46px 0;
        min-height: auto;
    }
    .service-hero-overlay {
        background: linear-gradient(90deg, rgba(5, 18, 42, 0.96) 0%, rgba(8, 32, 78, 0.92) 65%, rgba(10, 48, 128, 0.75) 100%);
    }
}

@media (max-width: 576px) {
    .service-hero-section {
        padding: 24px 0 32px 0;
    }
    .service-bc-pill-box {
        padding: 4px 10px;
        gap: 4px;
    }
    .service-bc-link {
        font-size: 11px;
    }
    .service-bc-current {
        font-size: 11px;
        padding: 2px 6px;
    }
    .service-hero-eyebrow-pill {
        font-size: 9px;
        letter-spacing: 0.5px;
        padding: 2px 6px;
        line-height: 1.3;
        white-space: normal;
    }
    .service-hero-title {
        font-size: 20px !important;
        line-height: 1.25;
        margin-bottom: 8px;
        word-break: break-word;
    }
    .service-hero-desc {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    .service-hero-pills-row {
        gap: 4px;
        margin-bottom: 12px;
    }
    .service-hero-pill-item {
        font-size: 10px;
        padding: 3px 6px;
    }
    .service-hero-cta-row {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 12px;
    }
    .btn-service-hero-quote {
        width: 100%;
        padding: 10px 14px;
        font-size: 14px;
        justify-content: center;
        border-radius: 10px;
    }
    .btn-service-hero-call, .btn-service-hero-wa {
        width: 100%;
        padding: 8px 12px;
        justify-content: center;
        font-size: 12.5px;
        border-radius: 10px;
    }
    .service-hero-rating-strip {
        font-size: 10px;
        gap: 4px;
    }
}

/* ========================================================
   STICKY & RESPONSIVE SIDEBAR BEHAVIOR
   - Desktop (>= 992px): Sticks at top: 92px while scrolling left container,
     accompanying content through Overview, Reviews, and FAQ sections.
   - Mobile/Tablet (< 992px): Static flow, 100% responsive.
   ======================================================== */
@media (min-width: 992px) {
    .col-lg-4:has(.pm-city-sidebar) {
        position: relative;
    }
    .pm-city-sidebar {
        position: -webkit-sticky;
        position: sticky;
        top: 92px;
        z-index: 20;
        height: auto;
    }
}

@media (max-width: 991.98px) {
    .pm-city-sidebar {
        position: static !important;
        height: auto !important;
        width: 100% !important;
    }
}

/* Active Service Link State */
.pm-city-service-active {
    background: #0a4ebd !important;
    border-color: #0a4ebd !important;
    color: #ffffff !important;
}
.pm-city-service-active .pm-city-svc-icon,
.pm-city-service-active .pm-city-svc-arrow {
    color: #ffffff !important;
}

/* ========================================================
   City Reviews Slider External Styles
   ======================================================== */
.pm-city-review-slide-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 5px solid #0a4ebd;
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: 0 4px 16px rgba(0, 24, 70, 0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}
.pm-review-slide-quote-wrap {
  position: relative;
  min-height: 60px;
}
.pm-review-quote-watermark {
  position: absolute;
  right: 6px;
  top: -24px;
  font-size: 4.8rem;
  color: rgba(10, 78, 189, 0.08);
  line-height: 1;
  pointer-events: none;
  font-family: Georgia, serif;
}
.pm-review-slide-text {
  font-size: 15px;
  color: #334155;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.pm-review-carousel-indicators button {
  width: 22px !important;
  height: 6px !important;
  border-radius: 4px !important;
  background-color: #cbd5e1 !important;
  border: 0 !important;
  margin: 0 3px !important;
  opacity: 0.6 !important;
  transition: all 0.3s ease !important;
}
.pm-review-carousel-indicators button.active {
  width: 36px !important;
  background-color: #0a4ebd !important;
  opacity: 1 !important;
}
.pm-review-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  color: #0a4ebd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pm-review-nav-btn:hover {
  background: #e52b20;
  border-color: #e52b20;
  color: #ffffff;
  transform: scale(1.06);
}
@media (max-width: 576px) {
  .pm-city-review-slide-card {
    padding: 18px 18px;
  }
  .pm-review-slide-text {
    font-size: 14px;
  }
}


/* ========================================
   SERVICE WIDGETS
======================================== */
/* ==========================================================================
   Comprehensive Moving Solutions - Clean Service Cards CSS
   Pixel-accurate matching to reference design (media_1788850118138.png)
   ========================================================================== */

.services-clean-section {
  background-color: #ffffff;
  padding: 50px 0 25px 0;
  position: relative;
}

/* --------------------------------------------------------------------------
   1. Section Header: Eyebrow, Two-Tone Title, Accent Underline, Subtitle
   -------------------------------------------------------------------------- */
.services-clean-header-row {
  position: relative;
}

.services-header-eyebrow {
  margin-bottom: 6px;
}

.eyebrow-dash {
  display: inline-block;
  width: 22px;
  height: 3px;
  background-color: #D92318;
  margin-right: 8px;
  border-radius: 2px;
}

.eyebrow-text {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #0A1E3F;
  text-transform: uppercase;
}

.services-header-title {
  font-family: 'Outfit', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #0A1E3F;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.services-header-title .text-brand-red {
  color: #D92318 !important;
}

/* Two-tone accent bar directly beneath the title */
.services-title-accent {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}

.accent-navy {
  width: 36px;
  height: 3.5px;
  background-color: #0A1E3F;
  border-radius: 3px;
}

.accent-red {
  width: 24px;
  height: 3.5px;
  background-color: #D92318;
  border-radius: 3px;
}

/* Header Description (Left Aligned) */
.services-header-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #475569;
  text-align: left !important;
  max-width: 920px;
}

/* --------------------------------------------------------------------------
   2. Service Cards Grid (Compact & Sleek)
   -------------------------------------------------------------------------- */
.services-cards-grid {
  margin-top: 4px;
}

.srv-clean-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 18px 18px;
  height: 100%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(10, 30, 63, 0.03);
}

.srv-clean-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(10, 30, 63, 0.08);
  border-color: rgba(229, 43, 32, 0.35);
}

.srv-clean-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.srv-clean-icon svg {
  width: 42px;
  height: 42px;
  transition: transform 0.3s ease;
}

.srv-clean-card:hover .srv-clean-icon svg {
  transform: scale(1.06);
}

.srv-clean-content {
  display: flex;
  flex-direction: column;
}

.srv-clean-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16.5px;
  font-weight: 800;
  color: #0A1E3F;
  line-height: 1.25;
  margin-bottom: 4px;
}

.srv-title-link {
  color: #0A1E3F;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
  padding: 2px 0;
}

.srv-title-link:hover,
.srv-clean-card:hover .srv-title-link {
  color: #D92318;
  text-decoration: none;
}

.srv-clean-desc {
  font-size: 12.5px;
  line-height: 1.45;
  color: #64748b;
  margin-bottom: 6px;
}

.srv-clean-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: #D92318;
  text-decoration: none;
  margin-top: auto;
  padding: 4px 0 0 0;
  min-height: auto;
  transition: all 0.2s ease;
}

.srv-clean-link .srv-link-arrow {
  transition: transform 0.2s ease;
}

.srv-clean-link:hover {
  color: #c62828;
  text-decoration: none;
}

.srv-clean-card:hover .srv-clean-link .srv-link-arrow,
.srv-clean-link:hover .srv-link-arrow {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   3. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (min-width: 992px) {
  .services-header-desc {
    text-align: left !important;
    padding-left: 0;
  }
}

@media (max-width: 991px) {
  .services-clean-section {
    padding: 45px 0 35px 0;
  }

  .services-header-title {
    font-size: 28px;
  }

  .services-header-desc {
    margin-top: 10px;
  }
}

@media (max-width: 575px) {
  .services-clean-section {
    padding: 35px 0 25px 0;
  }

  .services-header-title {
    font-size: 23px;
  }

  .srv-clean-card {
    padding: 18px 16px;
    border-radius: 12px;
  }

  .srv-clean-icon {
    width: 44px;
    height: 44px;
    margin-right: 14px !important;
  }

  .srv-clean-icon svg {
    width: 42px;
    height: 42px;
  }

  .srv-clean-title {
    font-size: 16px;
  }

  .srv-clean-desc {
    font-size: 12.5px;
  }
}


/* ========================================
   CITY LIST
======================================== */
/* ======================================================
   LEGACY LOCATION SECTION STYLES
   ====================================================== */
.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;
}

/* ======================================================
   MODERN STATE CITY DIRECTORY STYLES (city_list.php)
   ====================================================== */

/* Hero Banner on City List Page */
.pm-state-hero-section {
    position: relative;
    width: 100%;
    min-height: 380px;
    background-image: url('../img/packers_movers.jpg');
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 46px 0 52px 0;
    overflow: hidden;
}

.pm-state-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 18, 42, 0.95) 0%, rgba(8, 32, 78, 0.89) 45%, rgba(10, 48, 128, 0.45) 80%, rgba(5, 18, 42, 0.22) 100%);
    pointer-events: none;
    z-index: 1;
}

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

.pm-state-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3.8vw, 2.9rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.pm-state-hero-title .text-brand-red {
    color: #ff3b30 !important;
}

.pm-state-hero-desc {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.6;
    max-width: 680px;
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Feature Badges in Hero */
.pm-state-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pm-state-hero-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 30px;
    padding: 6px 14px;
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

/* Directory Page Main Wrap */
.pm-list-service-page {
    background: #f8fafc;
    padding-bottom: 60px;
}

/* Simple & Elegant Search Bar */
.pm-simple-search-card {
    max-width: 760px;
    margin: -32px auto 28px auto;
    background: #ffffff;
    border-radius: 50px;
    padding: 7px 10px 7px 20px;
    box-shadow: 0 10px 32px rgba(7, 25, 59, 0.10);
    border: 1.5px solid #e2e8f0;
    position: relative;
    z-index: 10;
    transition: all 0.25s ease;
}

.pm-simple-search-card:focus-within {
    border-color: #0a4ebd;
    box-shadow: 0 12px 36px rgba(10, 78, 189, 0.18);
    transform: translateY(-2px);
}

.pm-search-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.pm-search-icon-box {
    color: #0a4ebd;
    font-size: 19px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.pm-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 10px 4px;
    font-size: 15px;
    font-weight: 500;
    color: #07193b;
    min-width: 0;
}

.pm-search-input::placeholder {
    color: #94a3b8;
}

.pm-search-clear-btn {
    background: #e2e8f0;
    border: none;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: none;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.pm-search-clear-btn:hover {
    background: #d92318;
    color: #ffffff;
}

.pm-search-count-badge {
    background: #eff6ff;
    color: #0a4ebd;
    border: 1px solid rgba(10, 78, 189, 0.15);
    border-radius: 30px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

/* City Directory Card */
.pm-city-grid-item {
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.pm-city-dir-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 14px 16px;
    box-shadow: 0 4px 14px rgba(7, 25, 59, 0.04);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pm-city-dir-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3.5px;
    background: #0a4ebd;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.pm-city-dir-card:hover {
    transform: translateY(-3px);
    border-color: #bfdbfe;
    box-shadow: 0 10px 24px rgba(10, 78, 189, 0.10);
    text-decoration: none;
}

.pm-city-dir-card:hover::before {
    opacity: 1;
}

/* Color-Filled Squircle Icon */
.pm-city-icon-squircle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 13px;
    background: linear-gradient(135deg, #0a4ebd 0%, #073a94 100%);
    color: #ffffff !important;
    display: grid;
    place-items: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(10, 78, 189, 0.22);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-city-icon-squircle i {
    color: #ffffff !important;
}

.pm-city-dir-card:hover .pm-city-icon-squircle {
    background: linear-gradient(135deg, #d92318 0%, #b91c1c 100%);
    color: #ffffff !important;
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(217, 35, 24, 0.35);
}

.pm-city-dir-card:hover .pm-city-icon-squircle i {
    color: #ffffff !important;
}

/* Text Content */
.pm-city-info {
    flex: 1;
    min-width: 0;
}

.pm-city-info-tag {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #64748b;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 3px;
}

.pm-city-name-title {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #07193b;
    line-height: 1.25;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.pm-city-dir-card:hover .pm-city-name-title {
    color: #d92318;
}

/* Arrow */
.pm-city-arrow-icon {
    font-size: 16px;
    color: #cbd5e1;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.pm-city-dir-card:hover .pm-city-arrow-icon {
    color: #d92318;
    transform: translateX(4px);
}

/* Empty Search State */
.pm-directory-empty-state {
    display: none;
    text-align: center;
    padding: 50px 20px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px dashed #cbd5e1;
    margin: 30px 0;
}

.pm-empty-icon {
    font-size: 48px;
    color: #94a3b8;
    margin-bottom: 14px;
}

/* Bottom Directory CTA Banner */
.pm-directory-cta-section {
    background: linear-gradient(135deg, #061838 0%, #0a4ebd 100%);
    border-radius: 22px;
    padding: 36px 32px;
    color: #ffffff;
    margin-top: 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(7, 25, 59, 0.12);
}

.pm-directory-cta-row {
    position: relative;
    z-index: 2;
}

.pm-directory-cta-bg-truck {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    line-height: 1;
}

.pm-dir-cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 8px;
}

.pm-dir-cta-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    max-width: 620px;
    margin-bottom: 22px;
    line-height: 1.5;
}

.pm-dir-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-dir-call {
    background: #d92318;
    color: #ffffff;
    padding: 11px 22px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 16px rgba(217, 35, 24, 0.4);
    transition: all 0.25s ease;
}

.btn-dir-call:hover {
    background: #b91c1c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 35, 24, 0.55);
}

.btn-dir-wa {
    background: #ffffff;
    color: #075e54;
    padding: 11px 22px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
}

.btn-dir-wa i {
    color: #25d366;
    font-size: 18px;
}

.btn-dir-wa:hover {
    background: #f0fdf4;
    color: #075e54;
    transform: translateY(-2px);
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .pm-directory-control-card {
        padding: 18px 18px;
        margin-top: -24px;
    }
    .pm-directory-cta-section {
        padding: 28px 22px;
    }
    .pm-dir-cta-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 576px) {
    .pm-state-hero-section {
        padding: 24px 0 32px 0;
        min-height: auto;
    }
    .pm-state-hero-title {
        font-size: 22px !important;
        line-height: 1.25;
    }
    .pm-state-hero-desc {
        font-size: 12.5px;
        line-height: 1.45;
    }
    .pm-state-hero-pill {
        font-size: 11px;
        padding: 4px 10px;
    }
    .pm-search-input {
        font-size: 13.5px;
        padding: 11px 36px 11px 38px;
    }
    .pm-search-icon-box {
        left: 12px;
        font-size: 15px;
    }
    .pm-alpha-nav-wrap {
        gap: 4px;
    }
    .pm-alpha-btn {
        min-width: 28px;
        height: 28px;
        font-size: 11px;
        padding: 2px 6px;
    }
    .pm-city-dir-card {
        padding: 10px 12px;
        gap: 8px;
        border-radius: 12px;
    }
    .pm-city-icon-squircle {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 16px;
        border-radius: 10px;
    }
    .pm-city-name-title {
        font-size: 13px;
    }
    .pm-city-info-tag {
        font-size: 9.5px;
    }
    .btn-dir-call, .btn-dir-wa {
        width: 100%;
        justify-content: center;
    }
}


/* ========================================
   CITY PAGE
======================================== */
/* Inherited from Services / Packers & Movers and City List */


/* ========================================
   BLOG MODULES
======================================== */
/* ==========================================================================
   BLOG MODULES STYLING - MAKE MY SHIFT THEME
   Brand Palette:
   --brand-navy: #081C34
   --brand-blue: #0a4ebd
   --brand-red: #D92318
   --brand-red-hover: #c62828
   --brand-red-soft: #fff5f5
   --text-dark: #1e293b
   --text-muted: #64748b
   --border-light: #e2e8f0
   ========================================================================== */

/* 1. Blog Section & Headings */
.blog-section,
.blog-details-section {
    background-color: #f8fafc !important;
    position: relative;
}

.blog-section .fw-bold {
    font-family: 'Outfit', sans-serif;
    color: #081c34;
    font-weight: 800 !important;
}

.blog-title-highlight {
    color: #0a4ebd !important;
    position: relative;
    display: inline-block;
}

.blog-title-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0a4ebd, #d92318);
    border-radius: 2px;
}

/* 2. Blog Card & Hover Animation */
.blog-card {
    background: #ffffff !important;
    border: 1px solid #e8eef5 !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.35s ease !important;
    box-shadow: 0 4px 18px rgba(8, 28, 52, 0.04) !important;
}

.blog-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(10, 78, 189, 0.12) !important;
    border-color: rgba(10, 78, 189, 0.3) !important;
}

.blog-card .position-relative {
    overflow: hidden !important;
}

.blog-card-img {
    height: 230px !important;
    object-fit: cover !important;
    width: 100% !important;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.08) !important;
}

/* 3. Theme Date Badge (Replaces Yellow with Brand Theme) */
.blog-date-badge {
    background: linear-gradient(135deg, #0a4ebd, #081c34) !important;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    padding: 6px 14px !important;
    border-bottom-left-radius: 14px !important;
    box-shadow: 0 4px 12px rgba(10, 78, 189, 0.3) !important;
    border: none !important;
    transition: background 0.3s ease, transform 0.3s ease !important;
}

.blog-card:hover .blog-date-badge {
    background: linear-gradient(135deg, #d92318, #b71c1c) !important;
    box-shadow: 0 4px 14px rgba(217, 35, 24, 0.4) !important;
    transform: scale(1.02);
}

/* 4. Meta Row & Icons */
.blog-icon-primary {
    color: #0a4ebd !important;
}

.blog-card .card-body {
    padding: 24px !important;
}

/* 5. Title & Title Hover */
.blog-title-link {
    color: #081c34 !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.15rem !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    transition: color 0.25s ease !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-title-link,
.blog-title-link:hover {
    color: #d92318 !important;
}

/* 6. Card Snippet Text */
.blog-card .card-text {
    color: #64748b !important;
    font-size: 13.5px !important;
    line-height: 1.6 !important;
}

/* 7. Read More Button & Hover */
.blog-btn-primary {
    background: #0a4ebd !important;
    color: #ffffff !important;
    border: none !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 13.5px !important;
    padding: 9px 22px !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 4px 14px rgba(10, 78, 189, 0.2) !important;
    text-decoration: none !important;
}

.blog-btn-primary i {
    transition: transform 0.3s ease !important;
}

.blog-card:hover .blog-btn-primary,
.blog-btn-primary:hover {
    background: #d92318 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(217, 35, 24, 0.35) !important;
    transform: translateY(-2px);
}

.blog-card:hover .blog-btn-primary i,
.blog-btn-primary:hover i {
    transform: translateX(4px) !important;
}

/* 8. Single Post View Details */
.blog-details-section .bg-white {
    border: 1px solid #e8eef5 !important;
    border-radius: 20px !important;
}

.blog-details-img {
    max-height: 480px !important;
    object-fit: cover !important;
    border-radius: 14px !important;
    width: 100% !important;
}

.blog-details-title {
    color: #081c34 !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: 2rem !important;
    line-height: 1.3 !important;
}

.blog-btn-share {
    background: #f0f5fc !important;
    color: #0a4ebd !important;
    border: 1px solid #e0ecfa !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 13px !important;
    padding: 7px 18px !important;
    border-radius: 30px !important;
    transition: all 0.3s ease !important;
}

.blog-btn-share:hover {
    background: #d92318 !important;
    color: #ffffff !important;
    border-color: #d92318 !important;
    box-shadow: 0 4px 14px rgba(217, 35, 24, 0.25) !important;
    transform: translateY(-2px);
}

.blog-content-wrapper {
    line-height: 1.85 !important;
    font-size: 1.05rem !important;
    color: #334155 !important;
}

.blog-content-wrapper p {
    margin-bottom: 1.25rem !important;
}

.blog-content-wrapper img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
    margin: 20px 0 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06) !important;
}

.blog-content-wrapper a {
    color: #0a4ebd !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
    transition: color 0.2s ease !important;
}

.blog-content-wrapper a:hover {
    color: #d92318 !important;
}

/* 9. Sidebar & Recent Posts */
.blog-sidebar-sticky {
    top: 100px !important;
    z-index: 5 !important;
}

.blog-sidebar .bg-white {
    border: 1px solid #e8eef5 !important;
    border-radius: 18px !important;
}

.blog-sidebar h5.border-bottom {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.15rem !important;
    color: #081c34 !important;
    border-bottom: 2px solid #e8eef5 !important;
    padding-bottom: 12px !important;
    position: relative;
}

.blog-sidebar h5.border-bottom::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 45px;
    height: 2px;
    background: #0a4ebd;
}

.blog-post-link-item {
    padding: 8px !important;
    border-radius: 12px !important;
    transition: all 0.25s ease !important;
    border: 1px solid transparent !important;
}

.blog-post-link-item:hover {
    background: #f8fafc !important;
    border-color: #e2e8f0 !important;
    transform: translateX(4px) !important;
}

.blog-recent-post-img {
    width: 72px !important;
    height: 60px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    transition: transform 0.3s ease !important;
}

.blog-post-link-item:hover .blog-recent-post-img {
    transform: scale(1.05) !important;
}

.blog-post-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    color: #081c34 !important;
    transition: color 0.2s ease !important;
}

.blog-post-link-item:hover .blog-post-title {
    color: #d92318 !important;
}

/* 10. Sidebar CTA Quote Box (Brand Theme) */
.blog-border-warning {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
    border: 1px solid #e2e8f0 !important;
    border-top: 4px solid #d92318 !important;
    border-radius: 18px !important;
    box-shadow: 0 8px 24px rgba(8, 28, 52, 0.05) !important;
}

.blog-icon-lg-primary {
    font-size: 2.8rem !important;
    color: #0a4ebd !important;
}

.blog-border-warning h5 {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    color: #081c34 !important;
}

.blog-btn-quote {
    background: linear-gradient(135deg, #d92318, #b71c1c) !important;
    color: #ffffff !important;
    border: none !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    letter-spacing: 0.3px !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(217, 35, 24, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.blog-btn-quote:hover {
    background: linear-gradient(135deg, #b71c1c, #991b1b) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 22px rgba(217, 35, 24, 0.45) !important;
}

/* 11. Styled Pagination */
.styled-pagination {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.styled-pagination li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #081c34;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.styled-pagination li a:hover,
.styled-pagination li a.active {
    background: #0a4ebd !important;
    color: #ffffff !important;
    border-color: #0a4ebd !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 78, 189, 0.25);
}

/* 12. Social Share Modal */
.blog-bg-fb { background-color: #1877F2 !important; }
.blog-bg-tw { background-color: #1DA1F2 !important; }
.blog-bg-wa { background-color: #25D366 !important; }

.social-buttons .btn {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* ========================================================
   Blog Image & Typography External Classes
   ======================================================== */
.blog-card-img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}
.blog-details-img {
    max-height: 480px;
    object-fit: cover;
}
.blog-content-wrapper {
    line-height: 1.8;
    font-size: 16px;
}
.blog-recent-post-img {
    width: 70px;
    height: 55px;
    object-fit: cover;
}
.blog-post-title {
    font-size: 14px;
}


/* ========================================
   GALLERY MODULES
======================================== */
/* gallery_modules.css - Brand Theme Styling */

/* Photo Gallery Cards */
.gallery-photo-card {
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid #e2e8f0 !important;
    background: #ffffff;
}

.gallery-photo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(10, 78, 189, 0.1) !important;
    border-color: #0a4ebd !important;
}

.gallery-img-wrapper {
    overflow: hidden;
}

.gallery-img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-hover-overlay {
    background-color: rgba(7, 25, 59, 0.45) !important;
    backdrop-filter: blur(2px);
}

.gallery-img-wrapper:hover .gallery-hover-overlay {
    opacity: 1 !important;
}

.gallery-zoom-circle {
    width: 48px;
    height: 48px;
    background: rgba(217, 35, 24, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-img-wrapper:hover .gallery-zoom-circle {
    transform: scale(1.1);
}

.gallery-badge-cat {
    background-color: #eff6ff !important;
    color: #0a4ebd !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid #dbeafe;
}

.gallery-title-sm {
    font-size: 1.05rem;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.gallery-photo-card:hover .gallery-title-sm {
    color: #0a4ebd !important;
}

/* Video Gallery Cards */
.gallery-video-card {
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid #e2e8f0 !important;
    background: #ffffff;
}

.gallery-video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(10, 78, 189, 0.1) !important;
    border-color: #0a4ebd !important;
}

.gallery-video-card:hover .gallery-title-sm {
    color: #0a4ebd !important;
}


/* ========================================
   CONTACT MODULES
======================================== */
/* 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: 44px; height: 44px; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; font-size: 18px; border: none; background: transparent; cursor: pointer; }
.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, #B8150D, #D92318); 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: 44px; height: 44px; min-width: 44px; min-height: 44px; border: 0; border-radius: 50%; background: rgba(255,255,255,.18); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: .3s; }
.contact-form-header .close:hover { background: #fff; color: #D92318; }
#quotemodal { padding: 20px; }
#quotemodal .form-group { margin-bottom: 12px; }
#quotemodal .form-icon { position: relative; }
#quotemodal .form-icon i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #D92318; font-size: 16px; z-index: 2; }
#quotemodal textarea + i, #quotemodal .form-icon:has(textarea) i { top: 14px; transform: none; }
#quotemodal .form-control { height: 46px; border-radius: 10px; border: 1px solid #e1e7ef; background: #fffafa; padding-left: 40px; font-size: 14px; color: #222; box-shadow: none; transition: .25s ease; }
#quotemodal textarea.form-control { min-height: 90px; padding-top: 12px; resize: none; }
#quotemodal .form-control:focus { background: #fff; border-color: #D92318; box-shadow: 0 0 0 4px rgba(229, 43, 32, .12); }
#quotemodal .theme-btn { border: 0; border-radius: 50px; padding: 12px 24px; min-height: 44px; font-size: 14px; font-weight: 600; background: linear-gradient(135deg, #D92318, #FF4D42); color: #fff; transition: .3s ease; box-shadow: 0 10px 25px rgba(229, 43, 32, .25); display: inline-flex; align-items: center; justify-content: center; }
#quotemodal .theme-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(229, 43, 32, .35); }
#quotemodal button[type="reset"] { background: #fff0f0; color: #D92318; box-shadow: none; }
#quotemodal button[type="reset"]:hover { background: #fde2e2; }
#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: 26px; min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; 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; }

/* 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; }

/* ==========================================================================
   Contact Us Page (Matching media_1788954005516.png)
   ========================================================================== */
.contact-page-section {
    background-color: #f8fafc;
    min-height: 70vh;
}

/* Headers & Accents */
.contact-header-wrap {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.contact-eyebrow {
    display: inline-block;
    color: #e53935;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-title {
    font-size: 38px;
    font-weight: 800;
    color: #111827;
    line-height: 1.25;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.contact-title-accent {
    color: #e53935;
}

.contact-title-bar {
    width: 48px;
    height: 3.5px;
    background-color: #e53935;
    border-radius: 4px;
    margin: 12px auto 16px;
}

.contact-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 0;
}

/* Form Card */
.contact-form-card-wrap {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 38px 42px;
}

.contact-field-group {
    position: relative;
}

.contact-label {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 7px;
}

.contact-label .required-star {
    color: #e53935;
    font-weight: 700;
}

.contact-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 17px;
    color: #2563eb;
    pointer-events: none;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-input {
    width: 100%;
    height: 48px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding-left: 44px;
    padding-right: 14px;
    font-size: 14px;
    color: #1e293b;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input::placeholder {
    color: #94a3b8;
    font-size: 13.5px;
}

.contact-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.contact-date-input {
    cursor: pointer;
    color: #1e293b;
}

.contact-textarea-wrap {
    align-items: flex-start;
}

.contact-textarea-wrap .contact-input-icon {
    top: 16px;
    transform: none;
}

.contact-textarea {
    height: auto;
    min-height: 100px;
    padding-top: 14px;
    padding-left: 44px;
    resize: vertical;
}

/* Submit Button */
.contact-submit-btn {
    width: 100%;
    height: 50px;
    background: #e53935;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(229, 57, 53, 0.28);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    margin-top: 6px;
}

.contact-submit-btn:hover {
    background: #d32f2f;
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.38);
    transform: translateY(-1px);
    color: #ffffff;
}

.contact-submit-btn:active {
    transform: translateY(0);
}

/* Lower Section - Reach Out Anytime Channels */
.contact-reach-section {
    border-top: 1px solid #edf2f7;
}

.contact-channels-row {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.contact-channel-col {
    position: relative;
}

@media (min-width: 992px) {
    .contact-channel-col:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background-color: #e2e8f0;
    }
}

.contact-channel-card {
    text-align: center;
    padding: 24px 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-channel-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    transition: transform 0.25s ease;
}

.contact-channel-card:hover .contact-channel-icon-wrap {
    transform: scale(1.08);
}

.contact-channel-icon-wrap.icon-blue {
    background-color: #eff6ff;
    color: #1d4ed8;
}

.contact-channel-icon-wrap.icon-red {
    background-color: #fef2f2;
    color: #dc2626;
}

.contact-channel-title {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.contact-channel-value {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
    word-break: break-word;
    line-height: 1.5;
}

.contact-channel-value .contact-link {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-channel-value .contact-link:hover {
    color: #e53935;
    text-decoration: underline;
}

.contact-channel-subtext {
    font-size: 13.5px;
    color: #64748b;
    margin-bottom: 0;
}

/* Mobile Adjustments */
@media (max-width: 767.98px) {
    .contact-title {
        font-size: 24px;
    }
    .contact-subtitle {
        font-size: 13.5px;
        margin-bottom: 20px;
    }
    .contact-form-card {
        padding: 24px 18px;
        border-radius: 12px;
    }
    .contact-channels-row {
        margin-left: -4px !important;
        margin-right: -4px !important;
    }
    .contact-channel-col {
        padding-left: 4px !important;
        padding-right: 4px !important;
    }
    .contact-channel-col:not(:last-child) {
        border-bottom: none;
        padding-bottom: 0;
    }
    .contact-channel-card {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 14px;
        padding: 16px 6px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .contact-channel-col:last-child {
        margin-top: 6px;
    }
    .contact-channel-col:last-child .contact-channel-card {
        padding: 18px 24px 24px;
    }
    .contact-channel-icon-wrap {
        width: 40px;
        height: 40px;
        font-size: 17px;
        margin-bottom: 8px;
    }
    .contact-channel-title {
        font-size: 13.5px;
        font-weight: 800;
        margin-bottom: 4px;
        white-space: nowrap;
    }
    .contact-channel-value {
        font-size: 11.5px;
        font-weight: 700;
        margin-bottom: 4px;
        width: 100%;
        text-align: center;
    }
    .contact-channel-value .contact-link {
        font-size: 11px;
        display: block;
        line-height: 1.35;
        word-break: break-all;
    }
    .contact-channel-subtext {
        font-size: 10.5px;
        color: #64748b;
    }
    .contact-address-text {
        font-size: 12px;
        line-height: 1.45;
        display: inline-block;
        color: #334155;
    }
}

/* ==========================================================================
   Side-by-Side: CTA Container & Contact Information Panel
   ========================================================================== */
.contact-side-row {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Side-by-Side: CTA Container & Contact Form Card (media_1789019065754.png)
   ========================================================================== */
.contact-cta-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

/* Right Side: Form Card */
.contact-form-side-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 34px 36px;
    box-shadow: 0 8px 30px rgba(0, 24, 70, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-heading {
    font-size: 28px;
    font-weight: 900;
    color: #0a2240;
    letter-spacing: 0.6px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.contact-form-red-bar {
    width: 38px;
    height: 3.5px;
    background: #e6261b;
    border-radius: 2px;
    margin: 8px 0 14px;
}

.contact-form-subtitle {
    font-size: 14.5px;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 22px;
}

.contact-fcard {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.contact-fcard:hover {
    border-color: #cbd5e1;
}

.contact-fcard:focus-within {
    border-color: #00368a;
    box-shadow: 0 0 0 3px rgba(0, 54, 138, 0.1);
}

.contact-fcard-icon {
    font-size: 18px;
    color: #00368a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
}

.contact-fcard-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.contact-fcard-label {
    font-size: 12.5px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1px;
    line-height: 1.2;
    cursor: pointer;
}

.contact-fcard-label .required-star {
    color: #e6261b;
    font-weight: 700;
}

.contact-fcard-input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 0;
    font-size: 13.5px;
    color: #1e293b;
    outline: none;
    line-height: 1.4;
}

.contact-fcard-input::placeholder {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 400;
}

.contact-fcard-date {
    cursor: pointer;
}

.contact-fcard-right-icon {
    font-size: 16px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    pointer-events: none;
}

.contact-fcard-textarea-wrap {
    align-items: flex-start;
    padding: 10px 14px;
}

.contact-fcard-textarea-wrap .contact-fcard-icon {
    margin-top: 2px;
}

.contact-fcard-textarea {
    resize: none;
    min-height: 52px;
}

.contact-fcard-submit-btn {
    width: 100%;
    height: 50px;
    background: #e6261b;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(230, 38, 27, 0.28);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    margin-top: 4px;
}

.contact-fcard-submit-btn:hover {
    background: #b8150d;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(230, 38, 27, 0.38);
    color: #ffffff;
}

.contact-fcard-submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .contact-form-side-card {
        padding: 24px 20px;
        border-radius: 16px;
    }
    .contact-cta-box {
        margin-bottom: 16px;
    }
}

/* Side 2: Contact Information Panel */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.contact-info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 24, 70, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 24, 70, 0.09);
    border-color: #cbd5e1;
}

.contact-info-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-info-icon-box.icon-blue {
    background-color: #eff6ff;
    color: #0a4ebd;
}

.contact-info-icon-box.icon-red {
    background-color: #fef2f2;
    color: #d92318;
}

.contact-info-body {
    flex: 1;
    min-width: 0;
}

.contact-info-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #0a4ebd;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.contact-info-badge.badge-red {
    color: #d92318;
}

.contact-info-heading {
    font-size: 17px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
    line-height: 1.3;
}

.contact-info-links {
    margin-bottom: 4px;
    word-break: break-word;
}

.contact-info-main-link {
    font-size: 15.5px;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-main-link:hover {
    color: #d92318;
    text-decoration: underline;
}

.contact-info-sep {
    margin: 0 8px;
    color: #94a3b8;
    font-weight: 700;
}

.contact-info-text-val {
    font-size: 14.5px;
    font-weight: 600;
    color: #334155;
    line-height: 1.45;
}

.contact-info-note {
    font-size: 12.5px;
    color: #64748b;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

@media (max-width: 991.98px) {
    .contact-cta-box {
        margin-bottom: 16px;
    }
    .contact-info-card {
        padding: 18px 20px;
        gap: 16px;
    }
    .contact-info-icon-box {
        width: 50px;
        height: 50px;
        font-size: 20px;
        border-radius: 12px;
    }
}

/* ========================================================
   Review Modal External Styles (Extracted from inline styles)
   ======================================================== */
.review-modal-content {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(7, 25, 59, 0.18);
}
.review-modal-header {
    background: linear-gradient(135deg, #07193b 0%, #0c2b5e 100%);
    padding: 20px 24px;
}
.review-modal-sub {
    font-size: 0.85rem;
}
.review-modal-body {
    background-color: #ffffff;
}
#reviewModalAlert {
    display: none;
}
.review-rating-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}
.review-rating-label {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}
#modalRatingText {
    font-size: 0.85rem;
}
.review-field-label {
    font-size: 0.85rem;
}
.review-modal-input {
    border-radius: 8px !important;
    padding: 8px 12px !important;
}
.review-modal-file-input {
    border-radius: 8px !important;
}
.review-photo-note {
    font-size: 0.72rem;
}
#modalReviewSubmitBtn {
    background-color: #e52b20;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(229, 43, 32, 0.3);
    transition: all 0.25s ease;
}
.review-modal-footer-note {
    font-size: 0.75rem;
}


/* ========================================
   REVIEWS
======================================== */
/* reviews_modules.css */

/* reviews.php and single_review.php */
.reviews-service-page {
    min-height: 50vh;
    background-image: url('../img/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");
}

/* ========================================================
   Reviews Page Inner Elements
   ======================================================== */
.review-img-clickable {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: transform 0.2s;
}
.review-img-clickable:hover {
    transform: scale(1.05);
}
.admin-reply-box {
    border-left: 3px solid #0056b3 !important;
}
.admin-reply-title {
    color: #0056b3;
    font-size: 0.9rem;
    font-weight: bold;
}
.admin-reply-body {
    font-size: 0.85rem;
    color: #555;
}
.review-author-meta {
    font-size: 0.75rem;
}
.review-lightbox-close {
    opacity: 1 !important;
}
.review-lightbox-img {
    max-height: 85vh;
    object-fit: contain;
    max-width: 100%;
}
.reviews-pagination-list {
    margin-top: 30px !important;
}
.reviews-pagination-current {
    background: #002446 !important;
    border-color: #002446 !important;
    color: #fff !important;
}

/* ==========================================================================
   What Our Customers Say - Testimonials Section CSS
   Matching reference media_1788855719292.png
   ========================================================================== */

.testimonials-clean-section {
    background: linear-gradient(135deg, rgba(6, 18, 36, 0.72) 0%, rgba(6, 18, 36, 0.65) 100%),
                url('../img/testimonials_bg.jpg') center center / cover no-repeat;
    padding: 48px 0 50px 0;
    position: relative;
    font-family: inherit;
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.reviews-eyebrow {
    margin-bottom: 6px;
}

.reviews-eyebrow .eyebrow-dash {
    display: inline-block;
    width: 22px;
    height: 3px;
    background-color: #ff3b30;
    margin-right: 8px;
    border-radius: 2px;
}

.reviews-eyebrow .eyebrow-text {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #38bdf8;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.reviews-title {
    font-family: 'Outfit', sans-serif;
    font-size: 25px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.4px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.reviews-title .text-brand-red {
    color: #ff3b30 !important;
}

.reviews-heading-comment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.reviews-heading-comment-icon svg {
    width: 30px;
    height: 30px;
    fill: #ff3b30;
    filter: drop-shadow(0 2px 5px rgba(255, 59, 48, 0.4));
}

.reviews-title:hover .reviews-heading-comment-icon {
    transform: scale(1.12) rotate(-4deg);
}

.reviews-subtitle {
    font-size: 15px;
    color: #cbd5e1;
    font-weight: 500;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

/* --------------------------------------------------------------------------
   Slider Viewport & Track
   -------------------------------------------------------------------------- */
.testimonials-slider-wrap {
    position: relative;
    margin-top: 35px;
}

.testimonials-slider-viewport {
    overflow: hidden;
    width: 100%;
    padding: 6px 2px 14px 2px;
}

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

/* --------------------------------------------------------------------------
   Card Styling (Enlarged Hero-Grade Testimonial Card)
   -------------------------------------------------------------------------- */
.testimonial-card-item {
    background: #ffffff;
    border: 1px solid #E2EBF5;
    border-radius: 12px;
    padding: 13px 14px;
    box-shadow: 0 5px 16px rgba(10, 30, 63, 0.07);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    height: 100%;
}

.testimonial-card-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(10, 30, 63, 0.11);
    border-color: rgba(229, 43, 32, 0.35);
}

/* Left Avatar Circle (Human Icon) */
.testimonial-avatar-badge {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: 50%;
    background-color: #FDE8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(229, 43, 32, 0.12);
}

.testimonial-avatar-badge svg,
.testimonial-avatar-badge i {
    font-size: 1rem;
    color: #D92318;
}

/* Right Content Area */
.testimonial-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    height: 100%;
}

.testimonial-quote-text {
    font-size: 0.88rem;
    color: #1e293b;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 8px;
    font-style: normal;
}

/* Bottom Author & Rating Row */
.testimonial-footer-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.testimonial-author-info {
    min-width: 0;
}

.testimonial-author-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-author-city {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    white-space: nowrap;
}

/* 5 Red Stars */
.testimonial-rating-stars {
    display: flex;
    gap: 3px;
    flex-shrink: 0;
}

.testimonial-rating-stars i {
    color: #D92318;
    font-size: 0.88rem;
}

/* --------------------------------------------------------------------------
   Navigation Arrows & Dots
   -------------------------------------------------------------------------- */
.testimonials-nav-btn {
    display: none !important;
}

.testimonials-slider-wrap,
.video-testimonials-slider-wrap {
    position: relative;
    margin-top: 18px;
    width: 100%;
    padding: 0;
}

.testimonials-prev-btn {
    left: -16px;
}

.testimonials-next-btn {
    right: -16px;
}

.testimonials-dots-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 8px;
}

.testimonials-dot {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.testimonials-dot::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #E2CDD0;
    transition: all 0.25s ease;
}

.testimonials-dot.active::before {
    width: 22px;
    border-radius: 10px;
    background-color: #D92318;
}

.testimonials-dot:hover::before {
    background-color: #D92318;
}

.testimonials-slider-viewport {
    overflow: hidden;
    width: 100%;
    padding: 6px 0 14px 0;
}

.testimonials-slider-track,
.video-slider-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: continuousMarquee 25s linear infinite;
    will-change: transform;
}

.testimonials-slider-wrap:hover .testimonials-slider-track,
.video-testimonials-slider-wrap:hover .video-slider-track {
    animation-play-state: paused;
}

@keyframes continuousMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 8px));
    }
}

.testimonial-slide-col,
.video-slide-col {
    width: 275px;
    min-width: 275px;
    max-width: 275px;
    flex: 0 0 275px;
    box-sizing: border-box;
}

.testimonials-dots-wrap {
    display: none !important;
}

/* --------------------------------------------------------------------------
   Separate Video Testimonials Section (Light Theme)
   -------------------------------------------------------------------------- */
.video-testimonials-clean-section {
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 48px 0 50px 0;
    position: relative;
    overflow: hidden;
}

.video-eyebrow-text {
    color: #000000 !important;
    text-shadow: none !important;
}

.video-reviews-title {
    color: #0f172a !important;
    text-shadow: none !important;
}

.video-reviews-subtitle {
    color: #64748b !important;
    text-shadow: none !important;
}

@media (max-width: 991.98px) {
    .testimonials-clean-section,
    .video-testimonials-clean-section {
        padding: 40px 0 45px 0;
    }
    .reviews-title {
        font-size: 26px;
    }
    .reviews-subtitle {
        font-size: 13px;
    }
    .testimonials-slider-wrap,
    .video-testimonials-slider-wrap {
        margin-top: 20px;
        padding: 0 40px;
    }
    .testimonial-card-item {
        padding: 24px 22px;
        gap: 16px;
        border-radius: 16px;
    }
    .testimonial-quote-text {
        font-size: 1.02rem;
        margin-bottom: 16px;
    }
    .testimonials-prev-btn {
        left: 0;
    }
    .testimonials-next-btn {
        right: 0;
    }
}

@media (max-width: 575.98px) {
    .reviews-title {
        font-size: 22px;
    }
    .reviews-heading-comment-icon svg {
        width: 22px;
        height: 22px;
    }
    .testimonials-slider-wrap {
        padding: 0 38px;
    }
    .testimonial-card-item {
        padding: 20px 16px;
        gap: 14px;
        border-radius: 14px;
    }
    .testimonial-avatar-badge {
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
    }
    .testimonial-avatar-badge svg,
    .testimonial-avatar-badge i {
        font-size: 1.4rem;
    }
    .testimonial-quote-text {
        font-size: 0.95rem;
        line-height: 1.55;
    }
    .testimonials-nav-btn {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
        font-size: 14px;
    }
    }
    .testimonials-prev-btn {
        left: -6px;
    }
    .testimonials-next-btn {
        right: -6px;
    }

/* ========================================================
   Reviews Page Inner Elements
   ======================================================== */
.review-img-clickable {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: transform 0.2s;
}
.review-img-clickable:hover {
    transform: scale(1.05);
}
.admin-reply-box {
    border-left: 3px solid #0056b3 !important;
}
.admin-reply-title {
    color: #0056b3;
    font-size: 0.9rem;
    font-weight: bold;
}
.admin-reply-body {
    font-size: 0.85rem;
    color: #555;
}
.review-author-meta {
    font-size: 0.75rem;
}
.review-lightbox-close {
    opacity: 1 !important;
}
.review-lightbox-img {
    max-height: 85vh;
    object-fit: contain;
    max-width: 100%;
}
.reviews-pagination-list {
    margin-top: 30px !important;
}
.reviews-pagination-current {
    background: #002446 !important;
    border-color: #002446 !important;
    color: #fff !important;
}


/* ========================================
   TRACKING
======================================== */
/* template_modules.css */

html, body {
    overflow-x: clip !important;
    max-width: 100% !important;
}

/* 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;	}
}

/* ========================================================
   Shipment Tracking External Styles
   ======================================================== */
.premium-tracking-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #031b4e, #ff7a16);
}
.premium-tracking-title {
    color: #031b4e;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.premium-tracking-form {
    max-width: 650px;
}
.premium-tracking-input-icon {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff7a16;
    font-size: 1.1rem;
}
.premium-tracking-input {
    padding-left: 55px !important;
    border-radius: 50px !important;
    border: 2px solid #f1f5f9 !important;
    box-shadow: none !important;
    font-size: 16px !important;
    height: 54px !important;
    background-color: #f8fafc !important;
}
.premium-tracking-btn {
    border-radius: 50px !important;
    background-color: #b91c1c !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border: none !important;
    transition: all 0.3s !important;
    height: 54px !important;
    min-width: 150px !important;
}
.premium-tracking-btn:hover {
    background-color: #991b1b !important;
    color: #ffffff !important;
}
.premium-clear-btn {
    width: 54px !important;
    height: 54px !important;
    border: 2px solid #f1f5f9 !important;
    color: #64748b !important;
    transition: all 0.3s !important;
    flex-shrink: 0 !important;
}
.contact-tracking-details-card {
    display: none;
}


/* ========================================
   FOOTER
======================================== */
/* ==========================================================================
   Modern Footer Section CSS
   Pixel-accurate matching to reference design (media_1788862817575.png)
   ========================================================================== */

.footer-modern-section {
  background: #071324;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

.footer-modern-main {
  position: relative;
  padding: 48px 0 0 0;
  z-index: 1;
}

/* ==========================================================================
   Top Trust Bar (4 Features with Circular Blue Borders)
   ========================================================================== */
.footer-top-trust-bar {
  padding-bottom: 36px;
  margin-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.trust-bar-icon-wrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  border: 1.5px solid #0088FF;
  background: rgba(0, 136, 255, 0.06);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  transition: all 0.3s ease;
}

.trust-bar-item:hover .trust-bar-icon-wrap {
  background: #0088FF;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 136, 255, 0.35);
}

.trust-bar-text {
  display: flex;
  flex-direction: column;
}

.trust-bar-title {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 3px 0;
  letter-spacing: 0.2px;
}

.trust-bar-desc {
  color: #8C9FB5;
  font-size: 12.5px;
  line-height: 1.35;
  margin: 0;
}

/* ==========================================================================
   Col 1: Brand, Tagline, Call Card & Social Icons
   ========================================================================== */
.footer-logo-card-wrap {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-card {
  background: #ffffff;
  padding: 8px 18px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  max-width: 240px;
}

.footer-logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

.footer-logo-img {
  height: 50px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.footer-brand-tagline {
  color: #8C9FB5;
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 18px;
  max-width: 290px;
}

/* Call for Free Quote Card */
.footer-call-card {
  background: #0c1c33;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  max-width: 320px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.footer-call-card:hover {
  border-color: rgba(0, 136, 255, 0.4);
  transform: translateY(-2px);
}

.call-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 8px;
  background: #0088FF;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 3px 10px rgba(0, 136, 255, 0.35);
}

.call-card-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.call-card-label {
  font-size: 11.5px;
  color: #A3B8D8;
  font-weight: 500;
  margin-bottom: 1px;
}

.call-card-phone {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.3px;
  line-height: 1.25;
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
}

.call-card-phone:hover {
  color: #0088FF;
}

.call-card-time {
  font-size: 10.5px;
  color: #798EAA;
  margin-top: 3px;
}/* Indian Movers Association Linked Logo + Side Text (Original Shape) */
.footer-assoc-logo-wrap {
  margin-top: 8px;
  margin-bottom: 22px;
}

.footer-assoc-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.25s ease;
  max-width: 100%;
}

.footer-assoc-direct-link:hover {
  transform: translateY(-2px);
}

.footer-assoc-direct-img {
  max-height: 82px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.footer-assoc-direct-link:hover .footer-assoc-direct-img {
  transform: scale(1.04);
}

.footer-assoc-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-assoc-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.3;
  letter-spacing: 0.2px;
}

.footer-assoc-url {
  font-family: 'Outfit', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: #38bdf8;
  word-break: break-all;
  line-height: 1.35;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.footer-assoc-url i {
  font-size: 9.5px;
  opacity: 0.85;
}

.footer-assoc-direct-link:hover .footer-assoc-url {
  color: #93c5fd;
  text-decoration: underline;
}

/* Indian Movers Association & IBA Affiliated Badge Pill (Dark theme integrated) */
.footer-affiliation-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  max-width: 100%;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}

.footer-affiliation-pill:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(0, 136, 255, 0.4);
  transform: translateY(-2px);
}

.affiliation-badge-icon {
  width: 19px;
  height: 19px;
  min-width: 19px;
  border-radius: 50%;
  background: #0284c7;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.35);
}

.affiliation-badge-text {
  font-size: 10px;
  font-weight: 800;
  color: #0284c7;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

/* Social media icons */
.footer-social-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-follow-label {
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2px;
}

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

.footer-social-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social-btn:hover {
  background: #0088FF;
  border-color: #0088FF;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 136, 255, 0.35);
}

/* ==========================================================================
   Col 2 & 3: Columns Headings & Lists (Quick Links & Our Services)
   ========================================================================== */
.footer-col-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.link-chevron {
  color: #0088FF;
  font-weight: 800;
  font-size: 13px;
  margin-right: 6px;
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-links-list li a {
  color: #8C9FB5;
  font-size: 13.5px;
  text-decoration: none;
  line-height: 1.35;
  padding: 3px 0;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
}

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

.footer-links-list li a:hover .link-chevron {
  color: #38b6ff;
  transform: translateX(2px);
}

/* ==========================================================================
   Col 4: Get In Touch (Circular Badges with Blue Border)
   ========================================================================== */
.footer-touch-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-touch-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.touch-icon-wrap {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  border: 1.5px solid #0088FF;
  background: rgba(0, 136, 255, 0.06);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-top: 2px;
  transition: all 0.25s ease;
}

.footer-touch-item:hover .touch-icon-wrap {
  background: #0088FF;
  color: #ffffff;
  transform: scale(1.05);
}

.touch-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.touch-label {
  color: #8C9FB5;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.touch-value-highlight {
  color: #0088FF;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.2s ease;
  display: inline-block;
  padding: 2px 0;
}

.touch-value-highlight:hover {
  color: #38b6ff;
  text-decoration: underline;
}

.touch-value-text {
  color: #cad8eb;
  font-size: 12.5px;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
  padding: 2px 0;
}

a.touch-value-text:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ==========================================================================
   Bottom Copyright Bar
   ========================================================================== */
.footer-modern-bottom {
  margin-top: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  position: relative;
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-right: 50px;
}

.footer-copyright-text {
  color: #839BBF;
  font-size: 13px;
  line-height: 1.5;
}

.footer-policy-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  flex-wrap: wrap;
}

.footer-policy-links a {
  color: #8C9FB5;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 6px;
}

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

.policy-pipe {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
}

/* Scroll to Top Button */
.footer-scroll-top-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  color: #071324;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  z-index: 10;
}

.footer-scroll-top-btn:hover {
  background: #0088FF;
  color: #ffffff;
  transform: translateY(-54%) scale(1.08);
}

/* ==========================================================================
   Responsive Rules
   ========================================================================== */
@media (max-width: 991px) {
  .footer-modern-main {
    padding-top: 40px;
  }
  .footer-top-trust-bar {
    margin-bottom: 30px;
    padding-bottom: 25px;
  }
}

@media (max-width: 575px) {
  .footer-modern-section {
    padding-bottom: 74px; /* clearance for sticky floating bar */
  }
  .footer-top-trust-bar {
    margin-bottom: 25px;
    padding-bottom: 20px;
  }
  .trust-bar-item {
    gap: 8px;
    align-items: flex-start;
  }
  .trust-bar-icon-wrap {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 15px;
    margin-top: 1px;
  }
  .trust-bar-title {
    font-size: 12px;
    margin-bottom: 2px;
    line-height: 1.25;
  }
  .trust-bar-desc {
    font-size: 10px;
    line-height: 1.3;
  }
  .footer-bottom-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-right: 45px;
  }
  .footer-scroll-top-btn {
    top: 24px;
    transform: none;
  }
  .footer-scroll-top-btn:hover {
    transform: scale(1.08);
  }
}

/* ==========================================================================
   Floating Action Buttons: Left (Phone) & Right (WhatsApp)
   ========================================================================== */
.float-action-left {
  position: fixed;
  bottom: 24px;
  left: 18px;
  z-index: 1040;
}

.float-action-right {
  position: fixed;
  bottom: 24px;
  right: 18px;
  z-index: 1040;
}

@media (min-width: 992px) {
  .float-action-left {
    bottom: 30px;
    left: 30px;
  }
  .float-action-right {
    bottom: 30px;
    right: 30px;
  }
}

.float-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.float-action-left .float-group {
  align-items: flex-start;
}

.float-action-right .float-group {
  align-items: flex-end;
}

/* Floating Trigger Buttons */
.float-btn {
  display: flex;
  align-items: center;
  position: relative;
  background: transparent !important;
  border: none;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
}

.float-btn .icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  position: relative;
  z-index: 1;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

@media (min-width: 992px) {
  .float-btn .icon-wrap {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }
}

.float-btn:hover .icon-wrap {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.float-btn .icon-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  animation: floatPulseGPU 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  will-change: transform, opacity;
}

/* Phone (Blue) */
.float-call .icon-wrap {
  background: linear-gradient(135deg, #0d6efd 0%, #0052cc 100%);
}
.float-call .icon-wrap::before {
  background: #0d6efd;
}

/* WhatsApp (Green) */
.float-whatsapp .icon-wrap {
  background: linear-gradient(135deg, #25d366 0%, #1ea952 100%);
}
.float-whatsapp .icon-wrap::before {
  background: #25d366;
}

@keyframes floatPulseGPU {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }
  70% {
    transform: scale(1.38);
    opacity: 0;
  }
  100% {
    transform: scale(1.38);
    opacity: 0;
  }
}

/* Main Button Desktop Hover Tooltip Labels */
.float-main-label {
  display: none;
}

@media (min-width: 992px) {
  .float-main-label {
    display: inline-block;
    position: absolute;
    top: 50%;
    background: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    z-index: 10;
  }

  .float-action-left .float-main-label {
    left: calc(100% + 12px);
    transform: translateY(-50%) translateX(-8px);
    color: #00368a;
  }
  .float-action-left .float-btn:hover .float-main-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }

  .float-action-right .float-main-label {
    right: calc(100% + 12px);
    transform: translateY(-50%) translateX(8px);
    color: #1e874b;
  }
  .float-action-right .float-btn:hover .float-main-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }

  /* Hide simple hover label when 3-number popup menu triggers */
  .float-group:hover .float-main-label,
  .float-group.active .float-main-label {
    opacity: 0 !important;
    visibility: hidden !important;
  }
}

/* ==========================================================================
   3-Number Popup Menus (Matching media_1789036932920.png)
   ========================================================================== */
.float-popup-menu {
  position: absolute;
  bottom: calc(100% + 12px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s;
  pointer-events: none;
  z-index: 1060;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.float-action-left .float-popup-menu {
  left: 0;
  right: auto;
  align-items: flex-start;
}

.float-action-right .float-popup-menu {
  right: 0;
  left: auto;
  align-items: flex-end;
}

/* Hover & Active trigger */
.float-group:hover .float-popup-menu,
.float-group.active .float-popup-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Individual popup item */
.float-popup-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.float-action-left .float-popup-item {
  justify-content: flex-start;
}

.float-action-right .float-popup-item {
  justify-content: flex-end;
}

.float-popup-item:hover {
  transform: scale(1.05);
}

/* Circular icon matching screenshot */
.float-popup-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 992px) {
  .float-popup-icon {
    width: 48px;
    height: 48px;
  }
}

.float-group-call .float-popup-icon {
  background: linear-gradient(135deg, #0d6efd 0%, #0052cc 100%);
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.25), 0 6px 16px rgba(0, 0, 0, 0.28);
}

.float-group-whatsapp .float-popup-icon {
  background: linear-gradient(135deg, #25d366 0%, #1ea952 100%);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.25), 0 6px 16px rgba(0, 0, 0, 0.28);
}

.float-popup-icon i {
  font-size: 19px;
  line-height: 1;
}

/* Dark Navy Number Pill matching screenshot */
.float-popup-pill {
  background: #081938;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
}

@media (min-width: 992px) {
  .float-popup-pill {
    font-size: 14.5px;
    padding: 8px 18px;
  }
}

.float-group-call .float-popup-item:hover .float-popup-pill {
  background: #0e2756;
  border-color: #ffffff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

.float-group-whatsapp .float-popup-item:hover .float-popup-pill {
  background: #062b1b;
  border-color: #25d366;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
}


/* ========================================
   RESPONSIVE / MEDIA QUERIES
======================================== */
/* Responsive & media queries are declared within each modular component above and below */
@media (max-width: 768px) {
    .container { padding-left: 15px; padding-right: 15px; }
}

/* ========================================
   OUR CERTIFICATIONS SECTION STYLES
   ======================================== */
.cert-card {
    border: 1px solid #edf2f7 !important;
    border-radius: 12px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(10, 78, 189, 0.08) !important;
    border-color: #bfdbfe !important;
}

.cert-img-wrapper {
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 8px;
}

.cert-img-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
}

.cert-img {
    max-height: 100%;
    width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.cert-card:hover .cert-img {
    transform: scale(1.03);
}

.cert-icon-floating-wrap {
    position: relative;
    margin-top: -22px;
    margin-bottom: 8px;
    z-index: 2;
}

.cert-floating-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #0a4ebd;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 3px solid #ffffff;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cert-card:hover .cert-floating-icon {
    background-color: #e52b20;
    transform: scale(1.1);
}

.cert-card-body h3 {
    font-family: 'Outfit', sans-serif;
    color: #07193b;
}

.cert-card-body p {
    font-family: 'Outfit', sans-serif;
    color: #475569;
    line-height: 1.45;
}

@media (max-width: 768px) {
    .cert-img-wrapper {
        height: 230px;
    }
}

/* ==========================================================================
   IN THE NEWS WIDGET STYLES
   ========================================================================== */
.news-clean-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f5f9ff 0%, #ebf4ff 100%);
    border-top: 1px solid #e2edfd;
    border-bottom: 1px solid #e2edfd;
    position: relative;
}

.news-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.news-eyebrow .eyebrow-dash {
    display: inline-block;
    width: 24px;
    height: 3px;
    background-color: var(--brand-red, #E52B20);
    border-radius: 2px;
}

.news-eyebrow .eyebrow-text {
    font-size: 13px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.news-header-title {
    font-family: 'Outfit', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #0A1E3F;
    line-height: 1.25;
    letter-spacing: -0.4px;
}

.news-header-title .text-brand-red {
    color: var(--brand-red, #E52B20) !important;
}

.news-subtitle {
    font-size: 15px;
    color: #475569;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .news-clean-section {
        padding: 45px 0;
    }
    .news-section-header {
        margin-bottom: 24px;
    }
    .news-title {
        font-size: 26px;
    }
}

.news-card-wrapper {
    height: 100%;
}

.news-card {
    background: #ffffff;
    border: 1px solid rgba(8, 28, 52, 0.09);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(8, 28, 52, 0.12);
    border-color: rgba(217, 35, 24, 0.35);
}

.news-card-img-container {
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    overflow: hidden;
    background-color: #FAFAFA;
    position: relative;
}

.news-card-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.news-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 28, 52, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 14px;
}

.news-card:hover .news-card-overlay {
    opacity: 1;
}

.news-zoom-badge {
    background: #D92318;
    color: #ffffff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 6px 16px rgba(217, 35, 24, 0.45);
    transform: scale(0.7);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.news-card:hover .news-zoom-badge {
    transform: scale(1);
}

/* Lightbox Modal */
.news-lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.news-lightbox-modal.active {
    display: flex;
}

.news-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 18, 36, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.news-lightbox-dialog {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.news-lightbox-img-wrap {
    max-width: 85vw;
    max-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
}

.news-lightbox-img-wrap img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 10px;
}

.news-lightbox-close-btn {
    position: absolute;
    top: -45px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.news-lightbox-close-btn:hover {
    background: #D92318;
}

.news-lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #081C34;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
    z-index: 3;
}

.news-lightbox-nav-btn:hover {
    background: #D92318;
    color: #ffffff;
}

.news-lightbox-prev-btn {
    left: -24px;
}

.news-lightbox-next-btn {
    right: -24px;
}

.news-lightbox-caption {
    margin-top: 14px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 768px) {
    .news-lightbox-prev-btn {
        left: 5px;
    }
    .news-lightbox-next-btn {
        right: 5px;
    }
    .news-lightbox-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 18px;
        background: rgba(255, 255, 255, 0.85);
    }
    .news-card-img-container {
        height: 200px;
    }
}

/* ==========================================================================
   CUSTOMER VIDEO TESTIMONIALS STYLES
   ========================================================================== */
.testi-video-card {
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s ease;
}

.testi-video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10, 30, 63, 0.14) !important;
}

.testi-video-thumb-wrap {
    overflow: hidden;
    position: relative;
    background: #081C34;
}

.testi-video-thumb-sm {
    height: 230px;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.testi-video-player-wrap:hover .testi-video-thumb-sm {
    transform: scale(1.05);
    opacity: 0.9;
}

.testi-play-btn-sm {
    width: 56px;
    height: 56px;
    font-size: 28px;
    padding-left: 4px;
}

.testi-video-card:hover .testi-play-btn-pulse {
    transform: scale(1.15);
    background: #c62828;
}

@keyframes playPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 43, 32, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(229, 43, 32, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(229, 43, 32, 0);
    }
}

/* ==========================================================================
   ABOUT CTA BANNER SHOWCASE STYLES
   ========================================================================== */
.about-cta-banner {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(8, 28, 52, 0.04);
}

.about-cta-banner-content {
    padding-right: 15px;
}

.about-cta-headline {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    color: #081C34;
}

.about-cta-text {
    font-size: 14.5px;
    color: #475569;
    margin: 12px 0 20px 0;
    line-height: 1.55;
}

.about-cta-img-col {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(8, 28, 52, 0.12);
    border: 1px solid rgba(8, 28, 52, 0.08);
}

.about-cta-mover-img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    max-height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-cta-img-col:hover .about-cta-mover-img {
    transform: scale(1.04);
}

.about-showcase-img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transition: transform 0.35s ease;
}

.about-single-img-card:hover .about-showcase-img {
    transform: scale(1.02);
}

/* ==========================================================================
   Rate Chart Widget CSS (Local Shifting Rate Chart)
   ========================================================================== */
.rate-chart-clean-section {
    background: #f8fafc;
    position: relative;
}

.rate-eyebrow .eyebrow-dash {
    display: inline-block;
    width: 22px;
    height: 3px;
    background-color: #ff3b30;
    margin-right: 8px;
    border-radius: 2px;
}

.rate-eyebrow .eyebrow-text {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #000000;
    text-transform: uppercase;
}

.rate-header-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #0b2b5c;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.rate-subtitle {
    font-size: 15px;
    color: #475569;
    font-weight: 500;
}

.rate-table-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(10, 30, 63, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rate-table-card:hover {
    box-shadow: 0 16px 40px rgba(10, 30, 63, 0.12);
}

.rate-table {
    border-collapse: separate;
    border-spacing: 0;
}

.rate-table thead th {
    background: #f1f5f9;
    color: #0b2b5c;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    padding: 11px 16px;
    border-bottom: 2px solid #cbd5e1;
    white-space: nowrap;
}

.rate-table thead th.th-cost-head {
    line-height: 1.3;
}

.rate-table thead th .th-subhead {
    font-weight: 600;
    color: #475569;
}

.rate-table tbody tr {
    transition: background-color 0.2s ease;
}

.rate-table tbody tr:nth-child(even) {
    background-color: #f8fafc;
}

.rate-table tbody tr:hover {
    background-color: #e0f2fe;
}

.rate-table tbody td {
    padding: 11px 16px;
    font-size: 13.5px;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
    white-space: nowrap;
}

.rate-table tbody tr:last-child td {
    border-bottom: none;
}

.rate-table td.size-col {
    color: #0b2b5c;
    font-size: 14px;
}

.manpower-pill {
    background: #526581;
    color: #ffffff;
    font-weight: 700;
    font-size: 11.5px;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    letter-spacing: 0.2px;
}

.text-total-cost {
    color: #059669 !important;
    font-weight: 800 !important;
    font-size: 14px !important;
}

.rate-subheading-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #ff3b30;
    border-radius: 10px;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    box-shadow: 0 3px 12px rgba(10, 30, 63, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.rate-subheading-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(10, 30, 63, 0.08);
    border-color: rgba(229, 43, 32, 0.4);
    border-left-color: #ff3b30;
}

.subheading-icon-badge {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background-color: #FDE8E8;
    color: #D92318;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 2px 6px rgba(217, 35, 24, 0.12);
    flex-shrink: 0;
}

.rate-chart-subheading {
    font-family: 'Outfit', sans-serif;
    font-size: 16.5px;
    font-weight: 700;
    color: #0b2b5c;
    letter-spacing: -0.2px;
    line-height: 1.25;
}

.subheading-highlight {
    color: #000000;
}

@media (max-width: 768px) {
    .rate-header-title {
        font-size: 24px;
    }
    .rate-subheading-card {
        padding: 8px 12px;
        width: 100%;
    }
    .rate-chart-subheading {
        font-size: 14.5px;
    }
    .subheading-icon-badge {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 13.5px;
    }
    .rate-table tbody td, .rate-table thead th {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* ==========================================================================
   RECOGNITION WIDGET CSS
   ========================================================================== */
.recognization-clean-section {
    background: #ffffff;
    position: relative;
}

.recognization-eyebrow .eyebrow-dash {
    display: inline-block;
    width: 22px;
    height: 3px;
    background-color: #ff3b30;
    margin-right: 8px;
    border-radius: 2px;
}

.recognization-eyebrow .eyebrow-text {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #000000;
    text-transform: uppercase;
}

.recognization-header-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #0b2b5c;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.recognization-subtitle {
    font-size: 15px;
    color: #64748b;
    font-weight: 500;
}

.recognization-card {
    background: #ffffff;
    border: 1px solid rgba(11, 43, 92, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(11, 43, 92, 0.05);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.recognization-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(11, 43, 92, 0.12);
    border-color: rgba(229, 43, 32, 0.35);
}

.recognization-card-img-wrap {
    background: #f8fafc;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 230px;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}

.recognization-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.recognization-card:hover .recognization-img {
    transform: scale(1.05);
}

.recognization-card-caption {
    padding: 14px 16px;
    text-align: center;
    background: #ffffff;
}

.recognization-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0b2b5c;
    line-height: 1.3;
}

.recognization-card-desc {
    font-size: 13px;
    color: #64748b;
    font-weight: 400;
    line-height: 1.45;
}

@media (max-width: 768px) {
    .recognization-header-title {
        font-size: 24px;
    }
    .recognization-card-img-wrap {
        height: 190px;
        padding: 12px;
    }
    .recognization-card-caption {
        padding: 12px 14px 14px;
    }
    .recognization-card-title {
        font-size: 14.5px;
    }
}

.recognization-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    width: 100%;
}

.recognization-standalone-logo {
    max-height: 160px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(10, 30, 63, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.recognization-standalone-logo:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(10, 30, 63, 0.15);
}

/* --------------------------------------------------------------------------
   About Widget Info Box Card Styles
   -------------------------------------------------------------------------- */
.about-info-box {
    background-color: #ffffff;
    border: 1px solid #E2EBF5 !important;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(10, 30, 63, 0.07);
    position: relative;
    overflow: hidden;
}

.about-box-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 5px;
    background-color: #E52B20;
}

.about-box-title {
    color: #0A1E3F;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.about-box-lead {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
    color: #64748b;
}

.about-box-text {
    line-height: 1.6;
    color: #334155;
}

.about-box-highlight {
    line-height: 1.6;
    color: #0f172a;
    font-weight: 600;
}

/* ==========================================================================
   WHY CHOOSE US WIDGET STYLES
   ========================================================================== */
.why-choose-clean-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf5ff 100%);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.why-choose-eyebrow .eyebrow-dash {
    display: inline-block;
    width: 24px;
    height: 3px;
    background-color: #E52B20;
    margin-right: 8px;
    border-radius: 2px;
}

.why-choose-eyebrow .eyebrow-text {
    font-size: 13px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.why-choose-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #0A1E3F;
    line-height: 1.25;
}

.why-choose-intro {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    font-weight: 400;
}

.why-choose-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0A1E3F;
}

.why-choose-card {
    background: #ffffff;
    border: 1.5px solid #E2EBF5;
    border-radius: 50px;
    padding: 8px 20px 8px 10px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 14px rgba(10, 30, 63, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    max-width: 100%;
}

.why-choose-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 43, 32, 0.15);
    border-color: rgba(229, 43, 32, 0.5);
    background: #FFFDFD;
}

.why-card-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    border-radius: 50%;
    background: #FDE8E8;
    color: #E52B20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 6px rgba(229, 43, 32, 0.12);
}

.why-card-text {
    font-size: 14.5px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.3;
}

.why-choose-banner-wrap {
    display: flex;
    justify-content: flex-start;
}

.why-choose-banner {
    background: linear-gradient(135deg, #0A1E3F 0%, #1e3a8a 100%);
    border-radius: 50px;
    padding: 10px 24px;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(10, 30, 63, 0.15);
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
}

.why-banner-badge {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.why-banner-text {
    font-size: 14.5px;
    color: #f1f5f9;
}

@media (max-width: 768px) {
    .why-choose-title {
        font-size: 25px;
    }
    .why-choose-intro {
        font-size: 14px;
    }
    .why-choose-card {
        padding: 6px 16px 6px 8px;
        border-radius: 40px;
    }
    .why-card-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 1rem;
    }
    .why-card-text {
        font-size: 13.5px;
    }
    .why-choose-banner {
        border-radius: 24px;
        padding: 10px 18px;
    }
    .why-banner-text {
        font-size: 13.5px;
    }
}


/* ========================================
   PROCESS SECTION TRUST & PLANNING STYLES
   ======================================== */
.process-trust-card, .process-planning-card {
    background: #ffffff;
    border: 1px solid #E2EBF5;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(10, 30, 63, 0.04);
    transition: all 0.3s ease;
}

.process-trust-card:hover, .process-planning-card:hover {
    box-shadow: 0 8px 30px rgba(10, 30, 63, 0.08);
    border-color: rgba(229, 43, 32, 0.3);
}

.process-trust-title, .process-planning-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #0A1E3F;
}

.process-trust-title {
    font-size: 28px;
    line-height: 1.25;
}

.process-planning-title {
    font-size: 24px;
    line-height: 1.3;
}

.process-trust-subtitle {
    font-size: 17px;
    font-weight: 700;
    color: #b91c1c;
    font-family: 'Outfit', sans-serif;
}

.process-trust-text {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.65;
}

.process-leader-text {
    background: #f8fafc;
    border-left: 4px solid #E52B20;
    font-size: 14.5px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(10, 30, 63, 0.03);
}

.process-contact-chip {
    background: linear-gradient(135deg, #0A1E3F 0%, #1e3a8a 100%);
    border-left: 5px solid #E52B20;
    border-radius: 14px;
    padding: 18px 22px !important;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(10, 30, 63, 0.15);
    line-height: 1.5;
    transition: all 0.3s ease;
}

.process-contact-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(10, 30, 63, 0.22);
}

@media (max-width: 768px) {
    .process-trust-title {
        font-size: 24px;
    }
    .process-planning-title {
        font-size: 21px;
    }
    .process-trust-subtitle {
        font-size: 15px;
    }
    .process-trust-text {
        font-size: 13.5px;
    }
    .process-contact-chip {
        font-size: 14px;
        padding: 14px 18px !important;
    }
}

/* About Page Mission, Vision & Journey Enhancements */
.about-mission-card,
.about-vision-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border-top: 3px solid transparent !important;
}

.about-mission-card {
    border-top-color: #0a4ebd !important;
}

.about-vision-card {
    border-top-color: #E52B20 !important;
}

.about-mission-card:hover,
.about-vision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(10, 30, 63, 0.08) !important;
}

.about-mission-tagline {
    background: linear-gradient(135deg, rgba(10, 78, 189, 0.06) 0%, rgba(10, 30, 63, 0.03) 100%);
    color: #0A1E3F;
    border-left: 3px solid #0a4ebd;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.45;
}

.about-vision-tagline {
    background: linear-gradient(135deg, rgba(229, 43, 32, 0.06) 0%, rgba(229, 43, 32, 0.02) 100%);
    color: #991b1b;
    border-left: 3px solid #E52B20;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.45;
}

.about-journey-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-color: #e2e8f0 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-journey-card:hover {
    box-shadow: 0 12px 28px rgba(10, 30, 63, 0.06) !important;
}

.about-journey-stat-badge {
    background: rgba(229, 43, 32, 0.04);
    border: 1px dashed rgba(229, 43, 32, 0.25);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.about-journey-stat-badge:hover {
    transform: translateY(-2px);
    background: rgba(229, 43, 32, 0.08);
}

.about-card-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* Industry Achievements & Recognition Styling */
.about-achievements-box {
    background: #ffffff;
    border-color: #e2e8f0 !important;
    border-top: 3px solid #E52B20 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-achievements-box:hover {
    box-shadow: 0 12px 28px rgba(10, 30, 63, 0.07) !important;
}

.about-achievements-intro {
    font-size: 14.5px;
    font-weight: 700;
    color: #0A1E3F;
    line-height: 1.5;
}

.about-achievements-list li span {
    font-size: 14px;
    color: #475569;
    line-height: 1.55;
}

.about-achievements-list li i {
    font-size: 16px;
}

.about-achievements-outro {
    background: linear-gradient(135deg, rgba(10, 30, 63, 0.04) 0%, rgba(229, 43, 32, 0.04) 100%);
    border-left: 4px solid #E52B20;
    color: #0A1E3F;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

/* Enhanced Journey Box Styling */
.about-journey-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, rgba(10, 78, 189, 0.02) 100%);
    border-color: #e2e8f0 !important;
    border-top: 3px solid #0a4ebd !important;
    border-left: 4px solid #E52B20 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-journey-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(10, 30, 63, 0.08) !important;
}

.about-journey-stat-badge {
    background: linear-gradient(135deg, rgba(229, 43, 32, 0.05) 0%, rgba(10, 30, 63, 0.03) 100%);
    border: 1px dashed rgba(229, 43, 32, 0.3);
    box-shadow: 0 4px 12px rgba(10, 30, 63, 0.03);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.about-journey-stat-badge:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(229, 43, 32, 0.1) 0%, rgba(10, 30, 63, 0.06) 100%);
    box-shadow: 0 8px 20px rgba(229, 43, 32, 0.12);
}

/* Our Commitment Box Styling */
.about-commitment-box {
    background: #ffffff;
    border-color: #e2e8f0 !important;
    border-top: 3px solid #E52B20 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-commitment-box:hover {
    box-shadow: 0 12px 28px rgba(10, 30, 63, 0.07) !important;
}

.about-commitment-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.about-commitment-brand-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid #e1ebf6;
    border-left: 4px solid #E52B20;
    box-shadow: 0 4px 14px rgba(10, 30, 63, 0.04);
    transition: all 0.3s ease;
}

.about-commitment-brand-card:hover {
    box-shadow: 0 8px 22px rgba(10, 30, 63, 0.08);
    border-color: #cbd5e1;
}

.commitment-pill-red {
    background-color: rgba(229, 43, 32, 0.08);
    color: #E52B20;
    border: 1px solid rgba(229, 43, 32, 0.2);
    font-weight: 600;
    font-size: 11.5px;
    padding: 6px 12px;
    border-radius: 20px;
}

.commitment-pill-blue {
    background-color: rgba(10, 78, 189, 0.07);
    color: #0a4ebd;
    border: 1px solid rgba(10, 78, 189, 0.18);
    font-weight: 600;
    font-size: 11.5px;
    padding: 6px 12px;
    border-radius: 20px;
}

.about-commitment-cta {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

/* Why Choose Us - Moving Partner CTA Box */
.choose-partner-box {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 55%, #f0f7ff 100%);
    border: 1px solid #e2e8f0;
    border-left: 4.5px solid #e52b20;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(10, 30, 63, 0.05);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.choose-partner-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(10, 30, 63, 0.09);
    border-color: #cbd5e1;
    border-left-color: #e52b20;
}

.choose-partner-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #07193b;
    line-height: 1.3;
    margin-bottom: 8px;
}

.choose-partner-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.65;
}

.choose-partner-subcard {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 3.5px solid #0a4ebd;
    box-shadow: 0 2px 8px rgba(10, 30, 63, 0.03);
}

.choose-partner-cta {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.choose-partner-cta-btn {
    background-color: #e52b20;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-journey-card:hover {
    box-shadow: 0 12px 28px rgba(10, 30, 63, 0.06) !important;
}

.about-journey-stat-badge {
    background: rgba(229, 43, 32, 0.04);
    border: 1px dashed rgba(229, 43, 32, 0.25);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.about-journey-stat-badge:hover {
    transform: translateY(-2px);
    background: rgba(229, 43, 32, 0.08);
}

.about-card-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* Industry Achievements & Recognition Styling */
.about-achievements-box {
    background: #ffffff;
    border-color: #e2e8f0 !important;
    border-top: 3px solid #E52B20 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-achievements-box:hover {
    box-shadow: 0 12px 28px rgba(10, 30, 63, 0.07) !important;
}

.about-achievements-intro {
    font-size: 14.5px;
    font-weight: 700;
    color: #0A1E3F;
    line-height: 1.5;
}

.about-achievements-list li span {
    font-size: 14px;
    color: #475569;
    line-height: 1.55;
}

.about-achievements-list li i {
    font-size: 16px;
}

.about-achievements-outro {
    background: linear-gradient(135deg, rgba(10, 30, 63, 0.04) 0%, rgba(229, 43, 32, 0.04) 100%);
    border-left: 4px solid #E52B20;
    color: #0A1E3F;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

/* Enhanced Journey Box Styling */
.about-journey-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, rgba(10, 78, 189, 0.02) 100%);
    border-color: #e2e8f0 !important;
    border-top: 3px solid #0a4ebd !important;
    border-left: 4px solid #E52B20 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-journey-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(10, 30, 63, 0.08) !important;
}

.about-journey-stat-badge {
    background: linear-gradient(135deg, rgba(229, 43, 32, 0.05) 0%, rgba(10, 30, 63, 0.03) 100%);
    border: 1px dashed rgba(229, 43, 32, 0.3);
    box-shadow: 0 4px 12px rgba(10, 30, 63, 0.03);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.about-journey-stat-badge:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(229, 43, 32, 0.1) 0%, rgba(10, 30, 63, 0.06) 100%);
    box-shadow: 0 8px 20px rgba(229, 43, 32, 0.12);
}

/* Our Commitment Box Styling */
.about-commitment-box {
    background: #ffffff;
    border-color: #e2e8f0 !important;
    border-top: 3px solid #E52B20 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-commitment-box:hover {
    box-shadow: 0 12px 28px rgba(10, 30, 63, 0.07) !important;
}

.about-commitment-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.about-commitment-brand-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid #e1ebf6;
    border-left: 4px solid #E52B20;
    box-shadow: 0 4px 14px rgba(10, 30, 63, 0.04);
    transition: all 0.3s ease;
}

.about-commitment-brand-card:hover {
    box-shadow: 0 8px 22px rgba(10, 30, 63, 0.08);
    border-color: #cbd5e1;
}

.commitment-pill-red {
    background-color: rgba(229, 43, 32, 0.08);
    color: #E52B20;
    border: 1px solid rgba(229, 43, 32, 0.2);
    font-weight: 600;
    font-size: 11.5px;
    padding: 6px 12px;
    border-radius: 20px;
}

.commitment-pill-blue {
    background-color: rgba(10, 78, 189, 0.07);
    color: #0a4ebd;
    border: 1px solid rgba(10, 78, 189, 0.18);
    font-weight: 600;
    font-size: 11.5px;
    padding: 6px 12px;
    border-radius: 20px;
}

.about-commitment-cta {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

/* Why Choose Us - Moving Partner CTA Box */
.choose-partner-box {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 55%, #f0f7ff 100%);
    border: 1px solid #e2e8f0;
    border-left: 4.5px solid #e52b20;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(10, 30, 63, 0.05);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.choose-partner-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(10, 30, 63, 0.09);
    border-color: #cbd5e1;
    border-left-color: #e52b20;
}

.choose-partner-box.box-blue,
.choose-partner-box.choose-partner-box-blue {
    border-left-color: #0A4EBD !important;
}

.choose-partner-box.box-blue:hover,
.choose-partner-box.choose-partner-box-blue:hover {
    border-left-color: #0A4EBD !important;
}

.choose-partner-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #07193b;
    line-height: 1.3;
    margin-bottom: 8px;
}

.choose-partner-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.65;
}

.choose-partner-subcard {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 3.5px solid #0a4ebd;
    box-shadow: 0 2px 8px rgba(10, 30, 63, 0.03);
}

.choose-partner-cta {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.choose-partner-cta-btn {
    background-color: #b91c1c;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(229, 43, 32, 0.25);
}

.about-eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px;
    background-color: rgba(220, 38, 38, 0.1);
    color: #991b1b;
    border-radius: 50rem;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.faq-head-eyebrow {
    color: #991b1b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.choose-partner-cta-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: rgba(229, 43, 32, 0.1);
    color: #e52b20;
    flex-shrink: 0;
}

.choose-partner-cta-subtext {
    color: #4b5563;
    display: block;
    font-size: 0.875rem;
}

.eyebrow-red {
    color: #991b1b !important;
    font-weight: 700 !important;
}

.text-dark-muted {
    color: #374151 !important;
}

.news-card-img-container.news-card-compact {
    height: 190px;
}

.about-feature-icon-wrap.icon-size-36 {
    width: 36px;
    height: 36px;
    font-size: 16px;
}

.about-feature-icon-wrap.icon-size-38 {
    width: 38px;
    height: 38px;
    font-size: 16px;
}

/* Service Detail Feature / Info Content Cards */
.service-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #0a4ebd;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 24, 70, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    height: 100%;
}
.service-feature-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 28px rgba(0, 24, 70, 0.08);
    transform: translateY(-2px);
}

/* Blue Accent Variant (Default) */
.service-feature-card.service-card-blue,
.service-feature-card:not(.service-card-red) {
    border-left: 4px solid #0a4ebd;
}
.service-feature-card.service-card-blue .service-feature-card-icon,
.service-feature-card:not(.service-card-red) .service-feature-card-icon {
    background: #eff6ff;
    color: #0a4ebd;
}
.service-feature-card.service-card-blue:hover .service-feature-card-icon,
.service-feature-card:not(.service-card-red):hover .service-feature-card-icon {
    background: #0a4ebd;
    color: #ffffff;
}

/* Red Accent Variant */
.service-feature-card.service-card-red {
    border-left: 4px solid #d92318;
}
.service-feature-card.service-card-red .service-feature-card-icon {
    background: #fef2f2;
    color: #d92318;
}
.service-feature-card.service-card-red:hover .service-feature-card-icon {
    background: #d92318;
    color: #ffffff;
}

.service-feature-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.service-feature-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.service-feature-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #001333;
    margin-bottom: 0;
    line-height: 1.35;
}

@media (max-width: 768px) {
    .service-feature-card {
        padding: 18px 16px;
        border-radius: 12px;
    }
    .service-feature-card-title {
        font-size: 1rem;
    }
}

.choose-partner-cta-btn:hover {
    background-color: #991b1b;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(185, 28, 28, 0.35);
}

.testi-review-btn:hover {
    background-color: #07193b;
    color: #ffffff !important;
    border-color: #07193b;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(7, 25, 59, 0.18);
}

.testi-write-btn {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: #ffffff !important;
    font-size: 14.5px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 14px rgba(229, 43, 32, 0.28);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.testi-cta-desc {
    font-size: 14px;
    color: #374151;
    margin: 0;
}

.testi-cta-btn {
    background-color: #b91c1c;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 14px rgba(185, 28, 28, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s ease;
}

.testi-cta-btn:hover {
    background-color: #991b1b;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(185, 28, 28, 0.4);
}

#testiPrevBtn,
#testiNextBtn {
    border: 1px solid #b91c1c;
    color: #991b1b;
    background-color: transparent;
}
#testiPrevBtn:hover:not(:disabled),
#testiNextBtn:hover:not(:disabled) {
    background-color: #b91c1c;
    color: #ffffff;
}
.testi-page-num-btn {
    width: 36px;
    height: 36px;
    padding: 0;
}
.testi-page-num-btn.btn-outline-secondary {
    color: #374151;
    border-color: #94a3b8;
}
.testi-page-num-btn.btn-danger {
    background-color: #b91c1c;
    border-color: #b91c1c;
}

.testi-video-thumb-sm {
    min-height: 220px;
    max-height: 250px;
}
.testi-video-badge {
    font-size: 11px;
}

.testi-write-btn:hover {
    background: linear-gradient(135deg, #c41f15 0%, #a71810 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 43, 32, 0.42);
}

.testi-write-btn i {
    font-size: 16px;
}

/* Bottom Trust Header */

/* Rates & Charges Subtitle Notice */
.rate-subtitle {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.55;
    font-weight: 500;
}

.rate-chart-clean-section .text-danger,
.rate-subtitle .text-danger {
    color: #b91c1c !important;
}

/* ==========================================================================
   Awards & Recognition Custom Modern Card Container & Border Styling
   ========================================================================== */
.recognization-card {
    background: #ffffff;
    border: 1.5px solid #e9edf3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(11, 43, 92, 0.05);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.recognization-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(11, 43, 92, 0.12);
    border-color: rgba(229, 43, 32, 0.4);
}

.recognization-card-img-wrap {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 240px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #edf2f7;
}

.recognization-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

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

.recognization-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 43, 92, 0.4);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.recognization-card:hover .recognization-card-overlay {
    opacity: 1;
}

.recognization-zoom-badge {
    background: #E52B20;
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 14px rgba(229, 43, 32, 0.45);
    transform: scale(0.7);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.recognization-card:hover .recognization-zoom-badge {
    transform: scale(1);
}

.recog-pill-tag {
    display: inline-flex;
    align-items: center;
    background: #fee2e2;
    color: #991b1b;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border: 1px solid rgba(229, 43, 32, 0.15);
}

.recognization-card-caption {
    padding: 18px 20px 20px;
    text-align: center;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.recognization-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0b2b5c;
    line-height: 1.35;
}

.recognization-card-desc {
    font-size: 13.5px;
    color: #64748b;
    font-weight: 400;
    line-height: 1.45;
}

@media (max-width: 768px) {
    .recognization-header-title {
        font-size: 24px;
    }
    .why-choose-title {
        font-size: 25px;
    }
    .why-choose-intro {
        font-size: 14px;
    }
    .why-choose-list {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        align-items: stretch !important;
    }
    .why-choose-card {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        padding: 8px 12px 8px 8px !important;
        border-radius: 14px !important;
        gap: 8px !important;
    }
    .why-card-icon {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        min-height: 32px !important;
        font-size: 0.95rem !important;
    }
    .why-card-text {
        font-size: 12.5px !important;
        line-height: 1.25 !important;
        word-break: break-word !important;
    }
    .why-choose-banner {
        border-radius: 20px !important;
        padding: 10px 18px !important;
    }
    .why-banner-text {
        font-size: 13.5px !important;
    }
    .recognization-card-img-wrap {
        height: 190px;
        padding: 12px;
    }
    .recognization-card-caption {
        padding: 14px 16px 16px;
    }
    .recognization-card-title {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .why-choose-list {
        gap: 8px !important;
    }
    .why-choose-card {
        padding: 7px 8px 7px 6px !important;
        border-radius: 12px !important;
        gap: 6px !important;
    }
    .why-card-icon {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        min-height: 28px !important;
        font-size: 0.85rem !important;
    }
    .why-card-text {
        font-size: 11.5px !important;
        line-height: 1.2 !important;
    }
    .why-choose-card:last-child:nth-child(odd) {
        grid-column: 1 / -1 !important;
    }
}

/* ==========================================================================
   Payment Page Clean Card & Lightest Blue Box Styling
   ========================================================================== */
.payment-main-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: 0 10px 36px rgba(7, 25, 59, 0.06);
    max-width: 540px;
    margin: 0 auto;
}

.payment-box {
    background-color: #f0f7ff; /* lightest blue */
    border: 1.5px solid #dbeafe;
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: 0 4px 16px rgba(10, 78, 189, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.payment-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 78, 189, 0.07);
}

.payment-box-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #07193b;
    margin-bottom: 20px;
}

.payment-qr-frame {
    background: #ffffff;
    border: 1.5px solid #bfdbfe;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 6px 20px rgba(10, 78, 189, 0.07);
}

.payment-upi-badge {
    background: #ffffff;
    color: #07193b;
    border: 1.5px solid #bfdbfe;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 15.5px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(10, 78, 189, 0.05);
    letter-spacing: 0.3px;
}

.payment-table {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #bfdbfe;
}

.payment-table th {
    background: #f8fafc !important;
    color: #475569;
    font-size: 13.5px;
    font-weight: 600;
    padding: 12px 14px;
    border-color: #e2e8f0;
}

.payment-table td {
    color: #07193b;
    font-size: 14px;
    padding: 12px 14px;
    border-color: #e2e8f0;
}

.payment-security-pill {
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    padding: 12px 16px;
    color: #334155;
    font-size: 13px;
    box-shadow: 0 2px 6px rgba(10, 78, 189, 0.03);
}

/* ==========================================================================
   Service Feature Pills 2-Column Mobile Grid (Home Relocation & All Services)
   ========================================================================== */
@media (max-width: 768px) {
  .pm-city-feature-pills {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .pm-city-pill {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    height: 100% !important;
    padding: 8px 10px !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
    border-radius: 8px !important;
    gap: 6px !important;
  }
  .pm-city-pill i {
    font-size: 14px !important;
    flex-shrink: 0 !important;
  }
}

@media (max-width: 480px) {
  .pm-city-feature-pills {
    gap: 8px !important;
  }
  .pm-city-pill {
    padding: 7px 8px !important;
    font-size: 11.5px !important;
    line-height: 1.2 !important;
    gap: 5px !important;
  }
  .pm-city-pill i {
    font-size: 13px !important;
  }
}

.faq-cta-btn {
  background-color: #b91c1c !important;
  border-color: #b91c1c !important;
  color: #ffffff !important;
}
.faq-cta-btn:hover {
  background-color: #991b1b !important;
  border-color: #991b1b !important;
  color: #ffffff !important;
}

.testi-header-eyebrow {
  color: #991b1b !important;
  font-weight: 800 !important;
}

.testi-verified-pill {
  background-color: #dcfce7 !important;
  color: #166534 !important;
  border: 1px solid #bbf7d0 !important;
  font-weight: 700 !important;
}

.testi-cta-eyebrow {
  color: #991b1b !important;
  font-weight: 800 !important;
}

.testi-cta-dash {
  background-color: #991b1b !important;
}

.testi-cta-btn {
  background-color: #b91c1c !important;
  border-color: #b91c1c !important;
  color: #ffffff !important;
}
.testi-cta-btn:hover {
  background-color: #991b1b !important;
  border-color: #991b1b !important;
  color: #ffffff !important;
}

#testiPrevBtn,
#testiNextBtn {
  border-color: #b91c1c !important;
  color: #991b1b !important;
}
#testiPrevBtn:hover:not(:disabled),
#testiNextBtn:hover:not(:disabled) {
  background-color: #b91c1c !important;
  color: #ffffff !important;
}

.contact-eyebrow {
  color: #991b1b !important;
  font-weight: 800 !important;
}

.contact-title-accent {
  color: #b91c1c !important;
}

.contact-title-bar {
  background-color: #b91c1c !important;
}

.contact-channel-value .contact-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   TRANSIT INSURANCE - CONSIDER FACTORS
   ======================================== */
.insurance-consider-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.insurance-consider-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #edf2f7;
  border-left: 4px solid #b91c1c;
  transition: all 0.3s ease;
}

.insurance-consider-item:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  border-left-color: #991b1b;
  box-shadow: 0 4px 14px rgba(7, 25, 59, 0.05);
  transform: translateX(4px);
}

.insurance-consider-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #fee2e2;
  color: #b91c1c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.insurance-consider-content h3 {
  color: #07193b;
}

.insurance-consider-content p {
  color: #374151 !important;
  line-height: 1.55;
}

.about-advantage-card p {
  color: #374151;
  line-height: 1.65;
}

.about-advantage-card p.lead {
  color: #07193b !important;
  font-size: 1.08rem;
}

.insurance-warning-alert {
  background-color: #fffbeb !important;
  border: none !important;
  border-left: 4px solid #f59e0b !important;
  border-radius: 10px !important;
  padding: 14px 18px !important;
}

.insurance-warning-alert p {
  color: #92400e !important;
  font-weight: 500 !important;
}

/* ========================================
   SERVICE PAGES UTILITIES
   ======================================== */
.service-call-link {
  color: #0a4ebd !important;
}
.service-call-link:hover {
  color: #d92318 !important;
}
.service-step-card-desc {
  color: #374151;
}
.service-guarantee-box h3 {
  color: #0a4ebd;
}
.service-guarantee-box p {
  color: #374151;
}
.service-guarantee-box a {
  color: #0a4ebd;
}
.service-guarantee-box a:hover {
  color: #d92318;
}
.service-category-icon {
  color: #0a4ebd;
}
.pm-city-sidebar-widget-title i {
  color: #0a4ebd;
}
.pm-city-sidebar-widget-desc {
  color: #374151;
}
.pm-city-trust-list small {
  color: #374151;
}






