﻿/* ========================================
   TYPOGRAPHY
======================================== */

/* ==========================================================================
   GLOBAL TYPOGRAPHY SYSTEM
   Ensures consistent font sizes, line heights, and weights across the site.
   ========================================================================== */

:root {
  /* Desktop Typography Scale */
  --font-size-h1: 40px;
  --font-size-h2: 32px;
  --font-size-h3: 28px;
  --font-size-h4: 24px;
  --font-size-h5: 20px;
  --font-size-h6: 18px;
  --font-size-p: 16px;
  --font-size-btn: 15px;

  /* Line Heights */
  --line-height-h1: 1.2;
  --line-height-h2: 1.3;
  --line-height-h3: 1.3;
  --line-height-h4: 1.4;
  --line-height-h5: 1.4;
  --line-height-h6: 1.4;
  --line-height-p: 1.6;
}

@media (max-width: 991px) {
  :root {
    /* Mobile Typography Scale */
    --font-size-h1: 32px;
    --font-size-h2: 28px;
    --font-size-h3: 24px;
    --font-size-h4: 20px;
    --font-size-h5: 18px;
    --font-size-h6: 16px;
    --font-size-p: 15px;
    --font-size-btn: 14px;
  }
}

/* --------------------------------------------------------------------------
   Heading & Paragraph Styles
   Important flags used judiciously to override specific modular CSS styles
   that might have stray font-sizes, enforcing the global design system.
   -------------------------------------------------------------------------- */

h1, .h1 {
  font-size: var(--font-size-h1) !important;
  font-weight: 800 !important;
  line-height: var(--line-height-h1) !important;
  margin-bottom: 0.5em;
}

h2, .h2 {
  font-size: var(--font-size-h2) !important;
  font-weight: 700 !important;
  line-height: var(--line-height-h2) !important;
  margin-bottom: 0.5em;
}

h3, .h3 {
  font-size: var(--font-size-h3) !important;
  font-weight: 700 !important;
  line-height: var(--line-height-h3) !important;
  margin-bottom: 0.5em;
}

h4, .h4 {
  font-size: var(--font-size-h4) !important;
  font-weight: 700 !important;
  line-height: var(--line-height-h4) !important;
  margin-bottom: 0.5em;
}

h5, .h5 {
  font-size: var(--font-size-h5) !important;
  font-weight: 600 !important;
  line-height: var(--line-height-h5) !important;
  margin-bottom: 0.5em;
}

h6, .h6 {
  font-size: var(--font-size-h6) !important;
  font-weight: 600 !important;
  line-height: var(--line-height-h6) !important;
  margin-bottom: 0.5em;
}

p, .p-text {
  font-size: var(--font-size-p) !important;
  font-weight: 400;
  line-height: var(--line-height-p) !important;
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   Utility typography classes
   -------------------------------------------------------------------------- */
.text-small, small {
  font-size: calc(var(--font-size-p) - 2px) !important;
  line-height: 1.5 !important;
}

/* Override Bootstrap/Custom scattered btn font sizes if needed */
.btn {
  font-size: var(--font-size-btn) !important;
  font-weight: 700 !important;
  line-height: 1.4;
  padding: 12px 28px !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Global Form Control Usability */
.form-control, .form-select {
  min-height: 50px !important;
  padding: 12px 15px !important;
  border-radius: 8px !important;
  font-size: var(--font-size-p) !important;
}

label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #031633;
}

/* Custom Golden Button Styles (Translucent Outline as default for primary) */
.btn-primary, .btn-outline-primary {
    background-color: rgba(212, 158, 55, 0.1) !important;
    border: 1px solid #d49e37 !important;
    color: #c68b21 !important;
}

.btn-primary:hover, .btn-outline-primary:hover {
    background-color: #d49e37 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(212, 158, 55, 0.2) !important;
}

/* Solid alternative for specific backgrounds where outline isn't ideal */
.btn-solid-gold {
    background-color: #d49e37 !important;
    border: 1px solid #d49e37 !important;
    color: #ffffff !important;
}

.btn-solid-gold:hover {
    background-color: #c68b21 !important;
    border-color: #c68b21 !important;
    color: #ffffff !important;
}

/* =================================================
   GLOBAL TEXT CONTRAST ENFORCEMENT
   ================================================= */
/* Headings: Premium Dark Slate (Slate 900) for maximum punch and readability */
.section-title, .premium-title, .about-title, .modern-process-title, .reviews-section-title, .faq-section-title, .choose-section-title, .service-section-title, .city-section-title, .city-section-title-sm {
    color: #0f172a !important; 
}

/* Paragraphs & Subtitles: Strong Slate (Slate 700) for AAA contrast rating */
.service-desc, .about-desc, .review-text, .faq-card-body p, .modern-process-card p, .premium-subtitle, .choose-item-card p, .process-step p, .text-muted, .about-service-text p, .city-prose p, .city-faq-body {
    color: #334155 !important; 
}

/* Ensure Slider and Footer Text Remains Bright White */
.hero-title, .hero-lead, .footer-brand-copy, .footer-widget-title, .footer-widget ul li a, .footer-bottom p, .footer-contact-item, .footer-contact-item span, .footer-contact-item a {
    color: #ffffff !important;
}



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

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

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

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

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

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

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

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

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

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

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

/* Main Sticky Header */
.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--dark-navy);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.main-header.scrolled .brand-logo {
    filter: invert(1) hue-rotate(180deg) contrast(1.2);
}

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

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

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

.desktop-nav .nav-link {
    position: relative;
    color: #e2e8f0;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.25s ease;
    padding: 28px 0;
    display: flex;
    align-items: center;
}

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

.desktop-nav .nav-link:hover {
    color: var(--accent-gold);
}

/* Active Link State */
.desktop-nav .nav-link.active {
    color: var(--accent-gold);
}

/* Scrolled Nav Link Colors */
.main-header.scrolled .desktop-nav .nav-link {
    color: #1e293b;
}

.main-header.scrolled .desktop-nav .nav-link:hover,
.main-header.scrolled .desktop-nav .nav-link.active {
    color: var(--accent-gold);
}

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

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

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

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

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

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

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

/* Header Actions */
.header-actions {
    gap: 25px;
}

.btn-quote-outline {
    background: transparent;
    color: var(--accent-gold);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--accent-gold);
}

.btn-quote-outline:hover {
    background: var(--accent-gold);
    color: var(--dark-navy);
}

/* Scrolled Button Colors */
.main-header.scrolled .btn-quote-outline {
    border-color: #1e293b;
    color: #1e293b;
}

.main-header.scrolled .btn-quote-outline:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--dark-navy);
}

.header-phone {
    font-weight: 600;
    font-size: 15px;
}

.header-phone a {
    color: var(--white);
    text-decoration: none;
}

.header-phone a:hover {
    color: var(--accent-gold);
}

/* Scrolled Phone Color */
.main-header.scrolled .header-phone a {
    color: #1e293b;
}

.main-header.scrolled .header-phone a:hover {
    color: var(--accent-gold);
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Scrolled Hamburger */
.main-header.scrolled .hamburger span {
    background-color: #1e293b;
}

.hamburger:hover span {
    background-color: var(--accent-gold);
}

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

body.menu-open {
    overflow: hidden;
}

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

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

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

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

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

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

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

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

.mega-brand-card p {
    color: #506176;
    
    
    margin: 0;
}

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

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

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

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

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

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

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

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

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

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

.mobile-nav-link:hover, .mobile-nav-link:focus {
    color: #ff7a16;
}

.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: #ff7a16;
}

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

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

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

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

.mobile-dropdown-menu a:hover {
    color: #ff7a16;
    padding-left: 20px;
    background: #fff4eb;
}

.mobile-dropdown-menu a.active {
    color: #ff7a16;
    background-color: #fff4eb;
    padding-left: 20px;
}

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

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

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

/* Responsive Rules */
@media (max-width: 991px) {
 

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

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

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

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

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

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

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

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

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

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



/* ========================================
   SLIDER
======================================== */

/* --- Home Page Slider Styles --- */

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

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

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

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

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

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

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

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

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

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

/* Form Card styles removed or overridden by new layout styles below */
.hero-quote-card-container {
    display: block;
}

/* Hero Buttons */
.btn-hero-primary {
    background-color: #ffb300;
    color: #030f26;
    border: 1px solid #ffb300;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background-color: #e6a200;
    color: #030f26;
}

.btn-hero-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffb300;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background-color: #ffb300;
    color: #030f26;
}

.btn-hero-secondary i {
    color: #ffb300;
}

.btn-hero-secondary:hover i {
    color: #030f26;
}

/* Hero Features */
.feature-icon, .feature-icon-circle {
    font-size: 28px;
    color: #ffb300;
    margin-top: -4px;
}

.hero-feature-item strong {
    display: block;
    font-size: 14px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 2px;
}

.hero-feature-item span {
    display: block;
    font-size: 12px;
    color: #cbd5e1;
    line-height: 1.4;
}

/* Shape Divider */
.hero-shape-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.hero-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* Vertical Quote Form Styles */
.vertical-quote-card {
    background: #030f26;
    border: 1px solid #ffb300;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    font-family: 'Outfit', sans-serif;
}

.vertical-quote-header {
    margin-bottom: 20px;
}

.vertical-quote-title {
    color: #ffb300;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
}

.vertical-quote-subtitle {
    color: #ffffff;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

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

.input-icon-custom {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #7c8ba1;
    font-size: 14px;
    pointer-events: none;
    z-index: 2;
}

.form-control-custom, .form-select-custom {
    width: 100%;
    height: 48px;
    padding-left: 40px;
    padding-right: 16px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    color: #2d3748;
    background: #ffffff;
    outline: none;
    font-family: 'Outfit', sans-serif;
    position: relative;
    z-index: 1;
}

.form-control-custom:focus, .form-select-custom:focus {
    box-shadow: inset 0 0 0 2px #ffb300;
}

.select-wrap-custom .form-select-custom {
    padding-left: 15px;
}

.textarea-custom {
    height: auto;
    padding-top: 12px;
    padding-left: 15px;
    resize: none;
}

.btn-submit-custom {
    background: #ffb300;
    color: #030f26;
    border: none;
    border-radius: 8px;
    height: 52px;
    font-size: 17px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    outline: none;
    margin-top: 8px;
}

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

.vertical-quote-footer {
    color: #a4b3c6;
    font-size: 11px;
}

@media (max-width: 991px) {
    .vertical-quote-card {
        padding: 15px;
        margin-top: 20px;
    }
}

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

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

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

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

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

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

    .hero-features {
        flex-wrap: nowrap !important;
        gap: 8px !important;
        justify-content: space-between;
    }

    .hero-feature-item {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        flex: 1;
    }

    .hero-feature-item br {
        display: none;
    }

    .hero-feature-item strong {
        font-size: 10px;
        margin-top: 5px;
        line-height: 1.1;
    }

    .hero-feature-item span {
        display: none;
    }

    .feature-icon, .feature-icon-circle {
        font-size: 22px;
        margin-top: 0;
    }

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

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

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

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

.quote-head h3 {
    margin: 0;
    
    
    text-transform: uppercase;
}

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

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

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

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

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

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

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

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

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

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

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

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

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





/* ========================================
   HOME MODULES
======================================== */

/* --- Home Page Modules: Services Grid Section --- */

.services-section {
    background-color: #ffffff;
    padding: 80px 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: 50px 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: 80px 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: 14px;
    font-weight: 800;
    color: #ffb300;
    background-color: transparent;
    padding: 0 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: none;
}

.faq-header-wrap .badge-line {
    height: 1.5px;
    width: 25px;
    background-color: #ffb300;
}

.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: 4px;
    padding: 16px 20px;
    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: #e1ebf6;
    box-shadow: 0 8px 25px rgba(10, 78, 189, 0.04);
}

.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: 15px;
    font-weight: 700;
    color: #031633;
    line-height: 1.4;
    transition: color 0.3s ease;
}

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

.faq-toggle-btn {
    width: 20px;
    height: 20px;
    color: #031633;
    font-size: 16px;
    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(180deg);
    color: #031633;
}

.faq-card-body {
    padding-top: 10px;
    padding-left: 0;
}

.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: 50px 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: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.about-decor-dots {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 80%;
    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='%23ffb300' opacity='0.5'/></pattern><rect width='100' height='100' fill='url(%23dotsA)'/></svg>");
    z-index: 1;
}

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

.about-img-bg-shape {
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 90%;
    height: 90%;
    background-color: #031633;
    border-radius: 20px;
    z-index: 1;
}

.about-img-bg-shape::before {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 50%;
    height: 50%;
    border-bottom: 3px solid #ffb300;
    border-left: 3px solid #ffb300;
    border-bottom-left-radius: 12px;
}

img.about-img {
    border-radius: 20px;
}

.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: 14px;
    font-weight: 800;
    color: #ffb300;
    background-color: transparent;
    padding: 0;
    letter-spacing: 1px;
}

.about-badge-wrap .about-badge-line {
    height: 2px;
    width: 40px;
    background-color: #ffb300;
    margin-left: 12px;
}

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

.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;
}

/* Statistics Row */
.about-stats-row {
    margin-top: 25px;
}

.about-stat-item .stat-icon {
    font-size: 40px;
    color: #ffb300;
    line-height: 1;
}

.about-stat-item .stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #031633;
    line-height: 1.1;
}

.about-stat-item .stat-label {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: #556880;
    font-weight: 600;
}

.stat-divider {
    width: 1.5px;
    height: 40px;
    background-color: #cbd4de;
}

/* 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: linear-gradient(rgba(3, 15, 38, 0.9), rgba(3, 15, 38, 0.9)), url('../images/slider/slider.jpg') no-repeat center center fixed;
    background-size: cover;
    padding: 80px 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: 30px;
    height: 2px;
    background-color: #ffb300;
}

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

.reviews-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.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: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #e2e8f0;
}

/* 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: 60px;
    height: 60px;
    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: 14px;
    font-weight: 700;
    color: #0f172a;
    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: 12px;
    color: #64748b;
    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: 16px;
    color: #e2e8f0;
    line-height: 1.8;
    margin: 8px 0 0;
    position: relative;
    z-index: 2;
}

/* Navigation Arrows & Dots */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #ffb300;
    color: #ffb300;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    box-shadow: none;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: #ffb300;
    color: #030f26;
    transform: translateY(-50%) scale(1.05);
}

.reviews-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.reviews-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reviews-dots .dot.active {
    background-color: #ffb300;
}

.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: flex !important; /* Show arrows on desktop for this design */
    }
    
    /* Move arrows outside the cards */
    .prev-arrow {
        left: -40px;
    }
    
    .next-arrow {
        right: -40px;
    }
    
    .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;
    }
}





/* ========================================
   ABOUT MODULES
======================================== */

.about-z2 {
    z-index: 2 !important;
}

.about-cta-icon {
    font-size: 1.2rem;
}




/* ========================================
   SERVICES / PACKERS & MOVERS
======================================== */

/* Services Module Stylesheet */

/* 1. Breadcrumbs Header â€” Premium Redesign */
.service-breadcrumbs {
    background: #030f26;
    padding: 60px 0 60px 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: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.15) 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: #ffb300; }
.bc-nav .bc-sep {
    color: rgba(255,255,255,0.45);
    font-size: 12px;
    margin: 0 2px;
}
.bc-nav .bc-current {
    color: #ffb300;
    font-weight: 600;
}

/* Main H1 heading */
.service-breadcrumbs h1 {
    
    
    
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.bc-title-white { color: #ffffff; }
.bc-title-orange { color: #ffb300; }

/* Subtitle description */
.bc-desc {
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    line-height: 1.65;
    max-width: 800px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* Feature badge strip */
.bc-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
    position: relative;
    z-index: 1;
    padding-bottom: 20px;
    margin-top: 30px;
}
.bc-feature-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 14px 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.bc-feature-pill:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(255, 102, 0, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.bc-feature-pill .pill-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6600, #ff8c00);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
}
.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;
}

/* Desktop Restyled */
@media (min-width: 992px) {
    .service-breadcrumbs .container {
        display: block;
    }
    .bc-nav { margin-bottom: 18px; }
    .service-breadcrumbs h1 { margin-bottom: 20px; margin-top: 15px; }
    .bc-desc { margin-bottom: 0; max-width: 800px; }
}

/* Responsive */
@media (max-width: 991px) {
    .service-breadcrumbs {
        padding: 50px 0 70px 0;
        text-align: center;
    }
    .bc-nav {
        justify-content: center;
    }
    .service-breadcrumbs h1 {
        
    }
    .bc-desc {
        margin: 0 auto 30px auto;
    }
    .bc-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
@media (max-width: 768px) {
    .bc-wave-wrap svg { height: 48px; }
    .service-details-section { padding-top: 32px; }
}
@media (max-width: 576px) {
    .bc-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .bc-feature-pill {
        padding: 10px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
    .bc-feature-pill .pill-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin-bottom: 4px;
    }
    .bc-feature-pill .pill-text strong {
        font-size: 12px;
    }
    .bc-feature-pill .pill-text small {
        font-size: 10px;
    }
}


/* 2. Main Layout Grid */
.service-main-content {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 50px;
    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: 22px;
    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;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.sidebar-services-list li {
    margin-bottom: 0;
}
.sidebar-services-list li:last-child {
    margin-bottom: 0;
}
.sidebar-services-list li a {
    color: #475569;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 8px;
    background-color: #f8fafc;
    font-weight: 600;
    font-size: 11.5px;
    transition: all 0.2s ease;
    border: 1px solid #eef2f6;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    height: 100%;
    line-height: 1.3;
    gap: 8px;
}
.sidebar-services-list li a:hover {
    color: #030f26;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.sidebar-services-list li a:hover .service-icon {
    color: #030f26;
    transform: scale(1.1);
}
.sidebar-services-list li a.active {
    background-color: #030f26;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(3, 15, 38, 0.15);
    border: 1px solid #030f26;
}
.sidebar-services-list li a.active .service-icon {
    color: #ffb300;
}
.sidebar-services-list .service-icon {
    color: #94a3b8;
    font-size: 1.1rem;
    transition: all 0.2s;
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Contact CTA Sidebar Card */
.widget-contact-cta {
    background: #030f26;
    border: none;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 24px 20px;
}
.widget-contact-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ffb300;
}
.widget-contact-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}
.cta-icon-box {
    width: 46px;
    height: 46px;
    background-color: rgba(255, 179, 0, 0.15);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    font-size: 1.4rem;
    color: #ffb300;
    border: 1px solid rgba(255, 179, 0, 0.3);
}
.cta-title {
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 6px;
}
.cta-desc {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
    line-height: 1.4;
}
.cta-buttons {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px !important;
}
.btn-sidebar-cta {
    padding: 10px 4px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 11.5px;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
}
.btn-sidebar-cta i {
    font-size: 18px;
    margin: 0 !important;
}
.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 {
    
    
    color: #001846;
    margin-bottom: 6px;
}
.process-step p {
    
    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 {
    
    
    color: #001846;
    margin-bottom: 4px;
}
.choose-content p {
    
    color: #64748b;
    margin: 0;
    
}

/* 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;
    
    color: #001846;
    
}
.service-reviews-slice .user-name span {
    font-size: 12px;
    color: #94a3b8;
}

/* Mobile View adjustments */
@media (max-width: 991px) {
    .service-main-content {
        padding: 30px;
    }
    .service-sidebar {
        margin-top: 30px;
        position: static;
    }
}



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



/* ========================================
   CITY LIST
======================================== */

.search-location-section {
    background: #fff;
}

.location-heading h2 {
    display: inline-block;
    color: #e10d0d;
    
    
    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;
}




/* ========================================
   CITY PAGE
======================================== */




/* ========================================
   CONTACT MODULES
======================================== */




/* ========================================
   FOOTER
======================================== */

.footer-section {
  background: #030f26;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
}

.footer-main {
  position: relative;
  padding: 60px 0 40px;
  z-index: 1;
}

.footer-col {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 30px;
}
.footer-col:first-child {
  padding-left: 15px;
}
.footer-col-last {
  padding-left: 30px;
}

@media (max-width: 991px) {
  .footer-col, .footer-col-last {
    border-right: none;
    padding: 0 15px;
    margin-bottom: 40px;
  }
}

.footer-brand {
  padding-right: 10px;
}

.footer-brand-logo {
  display: inline-block;
  text-decoration: none;
}

.footer-brand-copy {
  color: #a4b3c6;
  font-size: 14px;
  line-height: 1.6;
}

.footer-social-icons {
  display: flex;
  gap: 18px;
}

.footer-social-icons a {
  color: #ffb300;
  font-size: 18px;
  transition: transform 0.2s ease, opacity 0.2s;
}

.footer-social-icons a:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.footer-widget .footer-widget-title {
  display: block;
  color: #ffb300;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  margin-bottom: 15px;
}

.footer-widget ul li a {
  color: #a4b3c6;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-widget ul li a:hover {
  color: #ffb300;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #a4b3c6;
  text-decoration: none;
  font-size: 14px;
}

.footer-contact-item:hover {
  color: #ffffff;
}

.footer-contact-item i {
  color: #ffb300;
  font-size: 18px;
  line-height: 1.2;
}

.footer-address-item span {
  line-height: 1.6;
}

.footer-bottom {
  background: #020a1a;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: #a4b3c6;
  
}


/* Floating Actions Sticky Bar */
.floating-actions {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  background: #ffffff;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  z-index: 1040;
}

.float-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 0 6px;
  color: #333;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  border-right: 1px solid #eee;
  transition: background-color 0.3s;
  background: transparent;
  border-top: none;
  border-bottom: none;
  border-left: none;
}
.float-btn:last-child {
  border-right: none;
}

.float-btn .icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 4px;
  color: #fff;
  font-size: 18px;
}

.float-btn span {
  white-space: nowrap;
}

/* Call Now Button */
.float-call .icon-wrap {
  background: #0d47a1;
}
.float-call:hover { color: #0d47a1; background: #f4f8ff; }

/* WhatsApp Button */
.float-whatsapp .icon-wrap {
  background: #25d366;
}
.float-whatsapp:hover { color: #25d366; background: #f0fdf4; }

/* Call Me Back Button */
.float-callback .icon-wrap {
  background: #ffb300;
  color: #030f26; /* dark icon on gold background */
}
.float-callback:hover { color: #d69600; background: #fffdf5; }

@keyframes floatPulseBlue {
  0% { box-shadow: 0 0 0 0 rgba(10, 78, 189, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(10, 78, 189, 0); }
  100% { box-shadow: 0 0 0 0 rgba(10, 78, 189, 0); }
}
@keyframes floatPulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes floatPulseYellow {
  0% { box-shadow: 0 0 0 0 rgba(255, 179, 0, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(255, 179, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 179, 0, 0); }
}

/* Desktop Floating Styles */
@media (min-width: 992px) {
  .floating-actions {
    position: fixed;
    bottom: 30px;
    left: auto;
    right: 30px;
    width: auto;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    background: transparent;
    box-shadow: none;
    border: none;
  }
  .float-btn {
    flex-direction: row;
    align-items: center;
    border: none;
    padding: 0;
    gap: 10px;
    background: transparent !important;
  }
  .float-btn span {
    background: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-size: 14px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    order: -1;
  }
  .float-btn:hover span {
    opacity: 1;
    transform: translateX(0);
  }
  .float-btn .icon-wrap {
    width: 54px;
    height: 54px;
    margin-bottom: 0;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  }
}




/* ========================================
   GLOBAL / RESPONSIVE (from style.css)
======================================== */












/* Premium Spacing for Sections Globally */
section {
    padding-top: 80px;
    padding-bottom: 80px;
}
@media (max-width: 991px) {
    section { padding-top: 60px; padding-bottom: 60px; }
}
@media (max-width: 575px) {
    section { padding-top: 50px; padding-bottom: 50px; }
}

/* Premium Heading Margin */
.section-title-margin {
    margin-bottom: 60px !important;
}
@media (max-width: 991px) {
    .section-title-margin { margin-bottom: 40px !important; }
}




/* ========================================
   Extracted from: C:\xampp\htdocs\urbanmovers\application\modules\about\views\choose.php
======================================== */


.transition-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.transition-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(3, 15, 38, 0.08) !important;
    border-color: #ffb300 !important;
}



/* ========================================
   Extracted from: C:\xampp\htdocs\urbanmovers\application\modules\about\views\faqs.php
======================================== */


.custom-faq-accordion .accordion-item {
    border: 1px solid #eef1f6 !important;
}
.custom-faq-accordion .accordion-button:not(.collapsed) {
    color: #0a4ebd !important;
    background-color: #f4f8fd !important;
    box-shadow: none !important;
}
.custom-faq-accordion .accordion-button:focus {
    box-shadow: none !important;
    border-color: transparent !important;
}



/* ========================================
   Extracted from: C:\xampp\htdocs\urbanmovers\application\modules\about\views\reviews.php
======================================== */


    .review-header { background: #f8fafc; padding: 60px 0; margin-bottom: 50px; text-align: center; border-bottom: 1px solid #e2e8f0; }
    .review-header h1 { font-weight: 800; color: #001846; margin-bottom: 15px; }
    
    .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; }
    .review-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
    .review-rating { color: #f59e0b; margin-bottom: 15px; font-size: 1.1rem; }
    .review-text { font-size: 16px; color: #475569; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
    .review-author { display: flex; align-items: center; gap: 15px; }
    .author-avatar { width: 50px; height: 50px; background: #e2e8f0; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #64748b; }
    .author-info h6 { margin: 0; font-weight: 700; color: #001846; }
    .author-info span { font-size: 13px; color: #94a3b8; }
    
    .form-label { font-weight: 600; font-size: 0.9rem; color: #475569; margin-bottom: 8px; }
    .form-control { border-radius: 10px; border: 1px solid #e2e8f0; padding: 12px 15px; }
    .form-control:focus { border-color: #ff6600; box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.1); }
    
    .rating-select { display: flex; gap: 10px; margin-bottom: 20px; }
    .rating-item { cursor: pointer; font-size: 24px; color: #cbd5e1; transition: 0.2s; }
    .rating-item.active { color: #f59e0b; }
    
    .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; }
    .btn-submit:hover { background: #e65c00; transform: translateY(-2px); color: #fff; }



/* ========================================
   Extracted from: C:\xampp\htdocs\urbanmovers\application\modules\about\views\testimonials.php
======================================== */


.transition-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.transition-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(3, 15, 38, 0.08) !important;
}
.italic-text {
    font-style: italic;
}
.testimonial-card {
    border: 1px solid #eef2f6 !important;
    border-bottom: 3px solid #eef2f6 !important;
}
.testimonial-card:hover {
    border-color: #e2e8f0 !important;
    border-bottom-color: #ffb300 !important;
}



/* ========================================
   Extracted from: C:\xampp\htdocs\urbanmovers\application\modules\contacts\views\quoteform.php
======================================== */


.quote-float-wrap .form-control,
.quote-float-wrap .form-select {
    height: 48px !important;
    padding-top: 18px !important;
    padding-bottom: 4px !important;
    padding-left: 45px !important;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.92);
    box-shadow: none !important;
    color: #031b4e;
}
.quote-float-wrap .form-control:focus {
    border-color: #ff7a16;
    background-color: #fff;
}
.quote-float-wrap .form-select {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.quote-float-wrap label {
    padding-left: 45px !important;
    padding-top: 12px !important;
    font-size: 14px;
    color: #6c757d;
    transition: all 0.2s ease-in-out;
    pointer-events: none;
}
.quote-float-wrap .form-control:focus ~ label,
.quote-float-wrap .form-control:not(:placeholder-shown) ~ label {
    transform: translateY(-8px) scale(0.82);
    padding-top: 6px !important;
    color: #ff7a16;
}
.quote-float-wrap > label::after {
    display: none !important;
    background: transparent !important;
}
.quote-float-wrap .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff7a16;
    font-size: 16px;
    z-index: 10;
}
.quote-card-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.quote-card-header {
    margin-bottom: 20px;
}
.quote-card-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}
.quote-card-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}
.quote-submit-btn {
    background: #ff7a16;
    color: #fff;
    border: none;
    height: 48px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    width: 100%;
    transition: background 0.3s;
}
.quote-submit-btn:hover {
    background: #e66a00;
}
.trust-badges-modern {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
}
.trust-badge-item {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2;
}
.trust-badge-item i {
    display: block;
    font-size: 16px;
    color: #ff7a16;
    margin-bottom: 4px;
}
.trust-badge-item strong {
    display: block;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 2px;
}
@media (max-width: 576px) {
    .trust-badge-item span {
        display: none;
    }
}



/* ========================================
   Extracted from: C:\xampp\htdocs\urbanmovers\application\modules\contacts\views\quotemodal.php
======================================== */


    #quotemodal .form-floating > .form-control {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    #quotemodal .form-floating > .form-control:focus,
    #quotemodal .form-floating > .form-control:not(:placeholder-shown),
    #quotemodal .form-floating > .form-control:-webkit-autofill {
        padding-top: 1.625rem !important;
        padding-bottom: 0.625rem !important;
    }
    #quotemodal .form-floating > textarea.form-control {
        padding-top: 1.625rem !important;
        padding-bottom: 0.625rem !important;
    }



/* ========================================
   Extracted from: C:\xampp\htdocs\urbanmovers\application\modules\contacts\views\review_modal.php
======================================== */


.small-float-wrap .form-control {
    height: 50px !important; /* Smaller height */
    padding-top: 22px !important; /* Forces input text down */
    padding-bottom: 4px !important;
    padding-left: 44px !important; /* Space for icon */
    font-size: 14px !important;
    border-radius: 8px !important;
    box-shadow: none !important;
}
.small-float-wrap label {
    padding-left: 44px !important; /* Align label with input text */
    padding-top: 13px !important; /* Center label vertically when empty */
    font-size: 14px !important;
    color: #6c757d !important;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out !important;
}
.small-float-wrap .form-control:focus ~ label,
.small-float-wrap .form-control:not(:placeholder-shown) ~ label {
    transform: scale(0.8) translateY(-10px) translateX(4px) !important;
    opacity: 0.7 !important;
}
.small-float-wrap .float-icon {
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    z-index: 10;
    font-size: 1.1rem;
}
.small-float-textarea .form-control {
    height: 85px !important;
    padding-top: 24px !important;
}
.small-float-textarea .float-icon {
    top: 14px;
    transform: none;
}



/* ========================================
   Extracted from: C:\xampp\htdocs\urbanmovers\application\modules\home\views\process_widget.php
======================================== */


.modern-process-section {
    padding: 80px 0;
    background: #ffffff;
}

.modern-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #030f26;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 6px;
    margin-bottom: 15px;
}

.modern-process-title {
    font-size: 40px;
    font-weight: 800;
    color: #030f26;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

.modern-process-card {
    position: relative;
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid transparent;
    z-index: 1;
}

.modern-process-card:hover {
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(3, 15, 38, 0.08);
    border-color: rgba(3, 15, 38, 0.05);
    transform: translateY(-8px);
}

.modern-icon-box {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ff6600;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.15);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.modern-process-card:hover .modern-icon-box {
    background: #ff6600;
    color: #ffffff;
    transform: scale(1.05);
}

.watermark-number {
    position: absolute;
    top: -5px;
    right: 10px;
    font-size: 110px;
    font-weight: 900;
    line-height: 1;
    color: #030f26;
    opacity: 0.03;
    z-index: -1;
    transition: all 0.4s ease;
    user-select: none;
    font-family: Arial, Helvetica, sans-serif;
}

.modern-process-card:hover .watermark-number {
    opacity: 0.08;
    color: #ff6600;
    transform: translateY(-5px) scale(1.05);
}

.modern-process-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #030f26;
    margin-bottom: 12px;
}

.modern-process-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Mobile Adjustments (2 in a row) */
@media (max-width: 767px) {
    .modern-process-section {
        padding: 50px 0;
    }
    .modern-process-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    .modern-process-card {
        padding: 20px 15px;
        border-radius: 16px;
    }
    .modern-icon-box {
        width: 44px;
        height: 44px;
        font-size: 20px;
        border-radius: 10px;
        margin-bottom: 16px;
    }
    .watermark-number {
        font-size: 70px;
        top: 0px;
        right: 5px;
    }
    .modern-process-card h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    .modern-process-card p {
        font-size: 12px;
        line-height: 1.4;
    }
}



/* ========================================
   Extracted from: C:\xampp\htdocs\urbanmovers\application\modules\home\views\service_widget.php
======================================== */


.premium-services {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.service-scroll-row {
    overflow-x: auto;
    padding-bottom: 15px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.service-scroll-row::-webkit-scrollbar {
    display: none;
}

.scroll-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #eef2f6;
    color: #030f26;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.2s;
}
.scroll-btn:hover {
    background: #030f26;
    color: #ffb300;
    border-color: #030f26;
}
.scroll-left { left: -15px; }
.scroll-right { right: -15px; }

@media (max-width: 767px) {
    .scroll-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
        opacity: 0.85;
    }
    .scroll-left { left: -10px; }
    .scroll-right { right: -10px; }
}

.premium-label {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(212, 158, 55, 0.12);
    color: #c68b21;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .5px;
    margin-bottom: 8px;
}

.premium-title {
    font-size: 32px;
    font-weight: 800;
    color: #101828;
    margin-bottom: 8px;
}

.premium-subtitle {
    max-width: 620px;
    margin: 0 auto;
    color: #667085;
    font-size: 15px;
}

.premium-card {
    position: relative;
    padding: 24px 20px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, 0.08);
    box-shadow: 0 10px 25px rgba(16, 24, 40, 0.04);
    transition: all .35s ease;
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(16, 24, 40, 0.08);
    border-color: rgba(10, 78, 189, 0.2);
}

.premium-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f6fe;
    color: #0a4ebd;
    font-size: 22px;
    margin-bottom: 20px;
}

.premium-card h4 {
    font-size: 19px;
    font-weight: 800;
    color: #030f26;
    margin-bottom: 12px;
}

.premium-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 20px;
}

.btn-service-readmore {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: none;
    color: #ff6600;
    font-weight: 700;
    text-decoration: none;
    font-size: 13.5px;
    padding: 0;
    transition: all 0.3s ease;
}

.btn-service-readmore:hover {
    color: #0a4ebd;
}

.premium-card {
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px) {
    .premium-title { font-size: 24px; }
    .premium-card { padding: 16px 12px; }
    .premium-icon { width: 40px; height: 40px; font-size: 18px; margin-bottom: 12px; }
    .premium-card h4 { font-size: 15px; margin-bottom: 8px; }
    .premium-card p { font-size: 12px; margin-bottom: 12px; }
    .btn-service-readmore { font-size: 12px; }
}



/* ========================================
   Extracted from: C:\xampp\htdocs\urbanmovers\application\modules\home\views\stat.php
======================================== */


.premium-services {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.service-scroll-row {
    overflow-x: auto;
    padding-bottom: 15px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.service-scroll-row::-webkit-scrollbar {
    display: none;
}

.scroll-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #eef2f6;
    color: #030f26;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.2s;
}
.scroll-btn:hover {
    background: #030f26;
    color: #ffb300;
    border-color: #030f26;
}
.scroll-left { left: -15px; }
.scroll-right { right: -15px; }

@media (max-width: 767px) {
    .scroll-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
        opacity: 0.85;
    }
    .scroll-left { left: -10px; }
    .scroll-right { right: -10px; }
}

.premium-label {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(212, 158, 55, 0.12);
    color: #c68b21;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .5px;
    margin-bottom: 8px;
}

.premium-title {
    font-size: 32px;
    font-weight: 800;
    color: #101828;
    margin-bottom: 8px;
}

.premium-subtitle {
    max-width: 620px;
    margin: 0 auto;
    color: #667085;
    font-size: 15px;
}

.premium-card {
    position: relative;
    padding: 24px 20px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, 0.08);
    box-shadow: 0 10px 25px rgba(16, 24, 40, 0.04);
    transition: all .35s ease;
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(16, 24, 40, 0.08);
    border-color: rgba(10, 78, 189, 0.2);
}

.premium-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f6fe;
    color: #0a4ebd;
    font-size: 22px;
    margin-bottom: 20px;
}

.premium-card h4 {
    font-size: 19px;
    font-weight: 800;
    color: #030f26;
    margin-bottom: 12px;
}

.premium-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 20px;
}

.btn-service-readmore {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: none;
    color: #ff6600;
    font-weight: 700;
    text-decoration: none;
    font-size: 13.5px;
    padding: 0;
    transition: all 0.3s ease;
}

.btn-service-readmore:hover {
    color: #0a4ebd;
}

.premium-card {
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px) {
    .premium-title { font-size: 24px; }
    .premium-card { padding: 16px 12px; }
    .premium-icon { width: 40px; height: 40px; font-size: 18px; margin-bottom: 12px; }
    .premium-card h4 { font-size: 15px; margin-bottom: 8px; }
    .premium-card p { font-size: 12px; margin-bottom: 12px; }
    .btn-service-readmore { font-size: 12px; }
}



/* ========================================
   Extracted from: C:\xampp\htdocs\urbanmovers\application\modules\packers_movers\views\city_list.php
======================================== */


.our-service-page {
    background-attachment: fixed !important;
    background-size: cover;
    position: relative;
    padding: 50px 0 !important;
}

/* Subtle overlay for better readability */
.our-service-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.feature-content-section {
    position: relative;
    z-index: 2;
}

.city-card {
    border: 1px solid #edf2f7 !important;
    border-radius: 12px !important;
    background: #fff !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 4px 12px rgba(0, 24, 70, 0.04) !important;
    overflow: hidden;
    position: relative;
}

.city-card-link:hover .city-card {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 24, 70, 0.12) !important;
    background: #fff !important;
}

.city-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--primary);
    transition: width 0.4s ease;
}

.city-card-link:hover .city-card::after {
    width: 100%;
}

.card-body {
    padding: 10px 15px !important;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start !important;
}

.city-card .icon {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.city-card-link:hover .icon {
    background: rgba(255, 107, 22, 0.1);
    transform: scale(1.05);
}

.city-card .icon i {
    font-size: 1.2rem;
    color: var(--navy);
    transition: color 0.3s ease;
}

.city-card-link:hover .icon i {
    color: var(--primary);
}

.city-name {
    flex: 1;
}

.city-card-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
    line-height: 1.2;
    transition: color 0.3s ease;
    display: block;
}

.city-card-title b {
    display: block;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
    margin-top: 1px;
}

@media (max-width: 991px) {
    .our-service-page {
        padding: 50px 0 !important;
    }
}

@media (max-width: 576px) {
    .card-body {
        padding: 12px 10px !important;
        gap: 10px;
    }
    .city-card .icon {
        width: 35px;
        height: 35px;
        border-radius: 8px;
    }
    .city-card .icon img {
        width: 24px !important;
    }
    .city-card-title {
        font-size: 0.75rem;
    }
    .city-card-title b {
        font-size: 0.8rem;
    }
    .row > div {
        padding-left: 8px;
        padding-right: 8px;
    }
}



/* ========================================
   Extracted from: C:\xampp\htdocs\urbanmovers\application\modules\packers_movers\views\states.php
======================================== */


/* Card Design */
.state-card {
    transition: all 0.35s ease;
    border: 1px solid #eef1f5;
}

.state-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* Image */
.state-img {
    height: 180px;
}

.state-img img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.state-card:hover img {
    transform: scale(1.08);
}

/* Overlay */
.state-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;
}

.state-card:hover .state-overlay {
    opacity: 1;
}

/* Yellow Dash styling */
.yellow-dash {
    display: inline-block;
    width: 24px;
    height: 3px;
    background-color: #ffb800;
    border-radius: 2px;
    flex-shrink: 0;
}

/* Breadcrumb */
.city-breadcrumb .breadcrumb-item a {
    color: #fff;
}

.city-breadcrumb .breadcrumb-item.active {
    color: #ffc107;
}

/* Responsive */
@media(max-width: 767px) {
    .state-img {
        height: 140px;
    }

    .display-4 {
        font-size: 2rem;
    }
}



/* ========================================
   Extracted from: C:\xampp\htdocs\urbanmovers\application\modules\packers_movers\views\city_page_design\city_about.php
======================================== */


  /* =====================================================
   CITY PAGE â€” ABOUT SECTION STYLES
     ===================================================== */
  .city-details-section {
    background: #f1f5f9;
    padding: 50px 0;
  }

  /* Content Card */
  .city-content-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8edf4;
  }

  /* Eyebrow label */
  .city-section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #0a4ebd;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  /* Section headings */
  .city-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #001333;
    line-height: 1.3;

    margin-bottom: 24px;
  }


  .city-accent {
    color: #0a4ebd;
  }

  .city-section-title-sm {
    font-size: 1.35rem;
    font-weight: 800;
    color: #001333;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;

    position: relative;
  }

  .city-section-title-sm::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 42px;
    height: 2px;
    background: #ff6600;
  }

  /* Hero image */
  .city-img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 24px;

  }

  .c ity-hero-img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    display: block;

  }

  .city-exp-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }

  .c ity-exp-badge .exp-num {
    font-size: 2rem;
    font-weight: 900;
    color: #0a4ebd;

    line-height: 1;
  }

  .city-exp-badge .exp-label {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
  }

  /* Prose text */
  .city-prose p {
    color: #475569;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
  }

  /* Feature pills */
  .city-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 18px;
  }

  .c ity-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f6ff;
    border: 1px solid #d4e4ff;
    color: #0a4ebd;
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 14px;

    font-weight: 600;
  }


  .city-pill i {
    font-size: 16px;
  }

  .city-checklist {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;

    margin: 20px 0 24px;
  }

  .c ity-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;

    color: #334155;
  }

  .c ity-checklist li i {
    color: #0a4ebd;
    font-size: 16px;
    flex-shrink: 0;
  }

  /* Stats strip */
  .city-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: linear-gradient(120deg, #001333 0%, #0a4ebd 100%);
    border-radius: 14px;
    padding: 20px 10px;
    margin-top: 24px;
    text-align: center;

  }

  .c ity-stat {
    padding: 0 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);

  }



  .city-stat:last-child {
    border-right: none;
  }

  .city-stat .stat-num {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    color: #ffd600;
    line-height: 1;

    margin-bottom: 4px;
  }

  .c ity-stat .stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
  }

  /* Reviews Scroll Container */
  .r eviews-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;

  }

  .r eviews-scroll-container::-webkit-scrollbar {
    height: 6px;

  }

  .r eviews-scroll-container::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 6px;

  }

  .r eviews-scroll-container::-webkit-scrollbar-track {
    background: #f1f5f9;
  }

  /* Review Cards (Dark Theme) */
  .c ity-review-card {
    background: #030f26;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #ffcc00;
    border-radius: 12px;
    padding: 24px;
    flex: 0 0 320px;
    scroll-snap-align: start;
    display: flex;

    flex-direction: column;
  }

  .city-review-card .review-stars {
    color: #ffcc00;
    font-size: 13px;

    margin-bottom: 10px;
  }

  .city-review-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 18px;

    flex: 1;
  }

  .city-review-card .review-author {
    display: flex;
    align-items: center;
    gap: 10px;

  }

  .c ity-review-card .review-avatar {
    width: 36px;
    height: 36px;
    background: rgba(255, 204, 0, 0.1);
    color: #ffcc00;
    border: 1px solid rgba(255, 204, 0, 0.3);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 14px;

    flex-shrink: 0;
  }

  .city-review-card .review-author strong {
    display: block;
    font-size: 15px;

    color: #ffffff;
  }

  .city-review-card .review-author small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
  }

  /* FAQ */
  .city-faq-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
  }

  .city-faq-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    font-size: 16px;
    color: #001333;
    cursor: pointer;
    transition: background 0.2s;
  }

  .city-faq-btn:hover {
    background: #f0f6ff;
  }

  .city-faq-btn.active {
    color: #0a4ebd;
    background: #f0f6ff;
  }

  .city-faq-btn .faq-q-icon {
    color: #ff6600;
    font-size: 17px;
    flex-shrink: 0;
  }

  .city-faq-btn .faq-chevron {
    margin-left: auto;
    font-size: 14px;
    color: #94a3b8;
    transition: transform 0.3s;
  }

  .city-faq-btn[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
    color: #0a4ebd;
  }

  .city-faq-btn span {
    flex: 1;
  }

  .city-faq-body {
    padding: 4px 24px 20px 56px;
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .city-content-card {
      padding: 20px 16px;
    }

    .city-stats-strip {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px 0;
    }

    .city-stat {
      padding: 8px 10px;
      border-right: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .city-stat:nth-child(even) {
      border-right: none;
    }

    .city-checklist {
      grid-template-columns: 1fr;
    }

    .city-hero-img {
      max-height: 200px;
    }
  }

  @media (max-width: 480px) {
    .city-feature-pills {
      flex-direction: column;
    }
  }



/* ========================================
   Extracted from: C:\xampp\htdocs\urbanmovers\application\modules\packers_movers\views\city_page_design\city_service.php
======================================== */


/* Service Cards */
.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;
}
.city-srv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.city-srv-icon-wrap {
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.city-srv-icon-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.city-srv-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.4;
}
.city-srv-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}
.city-srv-link {
    font-size: 0.9rem;
    color: #4ea3fc;
    text-decoration: none;
    font-weight: 400;
}
.city-srv-link:hover {
    color: #073c91;
    text-decoration: underline;
}



/* ========================================
   Extracted from: C:\xampp\htdocs\urbanmovers\application\modules\packers_movers\views\city_page_design\city_siderbar.php
======================================== */


/* =====================================================
   CITY PAGE â€” SIDEBAR STYLES
   ===================================================== */
.city-sidebar {
  position: sticky;
  top: 100px;
}

/* Generic sidebar widget */
.city-sidebar-widget {
  background: #030f26;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}

.city-sidebar-widget-title {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.city-sidebar-widget-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #ffcc00;
}
.city-sidebar-widget-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

/* ---- CTA Card ---- */
.city-cta-card {
  background: #030f26;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  border: none;
  padding: 32px 24px;
}
.city-cta-bg-icon {
  position: absolute;
  top: -10px;
  right: -20px;
  font-size: 130px;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  transform: rotate(15deg);
}
.city-cta-inner { position: relative; z-index: 1; }

.city-cta-icon-wrap {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffcc00;
  margin-bottom: 12px;
}
.city-cta-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 6px;
}
.city-cta-title span { color: #ffcc00; }
.city-cta-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* CTA Buttons */
.city-cta-buttons { display: flex; flex-direction: column; gap: 10px; }

.city-cta-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  color: #ffffff;
  transition: background 0.25s, transform 0.2s;
}
.city-cta-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  color: #fff;
}
.city-cta-btn > i { font-size: 24px; color: #ffcc00; flex-shrink: 0; }
.city-cta-btn-text {
  display: flex;
  flex-direction: column;
}
.city-cta-btn small {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}
.city-cta-btn strong { display: block; font-size: 18px; font-weight: 800; letter-spacing: 0.5px; }

.badge-live {
  background: #25d366;
  color: #fff;
  font-size: 9px;
  padding: 2px 4px;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
}

.city-cta-action-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 2px;
}
.city-action-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 10px;
  border: none;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}
.city-action-btn:hover { transform: translateY(-3px); opacity: 0.95; }
.city-action-btn i { font-size: 18px; }
.city-whatsapp-btn { background: #25d366; color: #ffffff; }
.city-quote-btn    { background: #ffcc00; color: #001333; }

/* ---- Services List ---- */
.city-services-list { list-style: none; padding: 0; margin: 0 0 10px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.city-service-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid transparent;
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}
.city-service-link:hover {
  background: rgba(255,255,255,0.1);
  color: #ffcc00;
  border-color: rgba(255,204,0,0.3);
  transform: translateX(4px);
}
.city-service-link:hover .city-svc-icon,
.city-service-link:hover .city-svc-arrow { color: #ffcc00; }
.city-svc-icon { font-size: 14px; color: #ffcc00; flex-shrink: 0; transition: color 0.2s; }
.city-svc-name { flex: 1; }
.city-svc-arrow { font-size: 11px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.city-view-all-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255,204,0,0.5);
  border-radius: 8px;
  color: #ffcc00;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: 10px;
}
.city-view-all-btn:hover { background: #ffcc00; color: #030f26; }

/* ---- Trust List ---- */
.city-trust-list { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 16px; }
.city-trust-list li { display: flex; align-items: flex-start; gap: 12px; }
.trust-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #eff6ff;
  color: #0a4ebd;
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}
.trust-green  { background: #f0fdf4; color: #16a34a; }
.trust-orange { background: #fff7ed; color: #ea580c; }
.trust-red    { background: #fef2f2; color: #dc2626; }
.trust-yellow { background: #fefce8; color: #ca8a04; }
.city-trust-list li strong { display: block; font-size: 13px; color: #001333; line-height: 1.3; }
.city-trust-list li small  { font-size: 11px; color: #94a3b8; }

/* ---- Related tags ---- */
.city-related-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.city-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 6px 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: all 0.2s;
}
.city-tag:hover { background: #0a4ebd; color: #fff; border-color: #0a4ebd; }
.city-tag i { color: #0a4ebd; transition: color 0.2s; font-size: 14px; }
.city-tag:hover i { color: #fff; }

/* Responsive */
@media (max-width: 991px) {
  .city-sidebar { position: static; }
}



/* ========================================
   Extracted from: C:\xampp\htdocs\urbanmovers\application\modules\packers_movers\views\city_page_design\city_slider.php
======================================== */


            @media (max-width: 576px) {
              .btn-mobile-fit {
                padding: 10px 14px !important;
                font-size: 13px !important;
              }

              .hero-buttons {
                -ms-overflow-style: none;
                scrollbar-width: none;
              }

              .hero-buttons::-webkit-scrollbar {
                display: none;
              }
            }
          


/* ========================================
   Extracted from: C:\xampp\htdocs\urbanmovers\application\modules\packers_movers\views\city_page_design\testimonial_video.php
======================================== */


    .video-testimonial-section {
        background-color: #f8fafc;
        padding: 60px 0;
    }
    .video-scroll-container {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 20px;
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
        scroll-behavior: smooth;
    }
    .video-scroll-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }
    .video-card-item {
        flex: 0 0 320px; /* Fixed width for each video card */
        border-radius: 12px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        border: 1px solid #e2e8f0;
        transition: transform 0.3s ease;
    }
    .video-card-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }
    .video-iframe-wrapper {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
        height: 0;
        overflow: hidden;
        background: #000;
    }
    .video-iframe-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    .video-scroll-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background-color: #ffffff;
        color: #031b4e;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        border: 1px solid #e2e8f0;
        cursor: pointer;
        transition: all 0.2s ease;
        position: absolute;
        top: 40%;
        transform: translateY(-50%);
        z-index: 10;
    }
    .video-scroll-btn:hover {
        background-color: #ff7a16;
        color: white;
        border-color: #ff7a16;
    }
    .video-scroll-btn-prev {
        left: -15px;
    }
    .video-scroll-btn-next {
        right: -15px;
    }
    @media (max-width: 768px) {
        .video-scroll-btn {
            display: none;
        }
        .video-card-item {
            flex: 0 0 280px;
        }
    }
    


/* ========================================
   Extracted from: C:\xampp\htdocs\urbanmovers\application\modules\reviews\views\review_widget.php
======================================== */


/* Custom scrollbar hiding for horizontal scrolling */
.review-scroll-container {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.review-scroll-container::-webkit-scrollbar {
    display: none;
}
.review-card-main {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.08) !important;
}



/* ========================================
   Extracted from: C:\xampp\htdocs\urbanmovers\application\modules\services\views\index.php
======================================== */


    .service-index-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 30px 24px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.04);
        border: 1px solid #eef2f6;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

    .service-index-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #0a4ebd, #ff6600);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .service-index-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        border-color: transparent;
    }

    .service-index-card:hover::before {
        opacity: 1;
    }

    .service-index-card .card-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(10, 78, 189, 0.08);
        color: #0a4ebd;
        font-size: 26px;
        margin-bottom: 22px;
        transition: all 0.4s ease;
    }

    .service-index-card:hover .card-icon {
        background: #ff6600;
        color: #ffffff;
        transform: scale(1.05);
    }

    .service-index-card h3 {
        font-size: 20px;
        font-weight: 800;
        color: #030f26;
        margin-bottom: 12px;
        transition: color 0.3s ease;
    }

    .service-index-card p {
        color: #64748b;
        font-size: 14.5px;
        line-height: 1.6;
        margin-bottom: 24px;
        flex-grow: 1;
    }

    .service-index-card .btn-read-more {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #ff6600;
        font-weight: 700;
        font-size: 14.5px;
        text-decoration: none;
        transition: all 0.3s ease;
        margin-top: auto;
    }

    .service-index-card .btn-read-more i {
        transition: transform 0.3s ease;
    }

    .service-index-card:hover .btn-read-more {
        color: #0a4ebd;
    }

    .service-index-card:hover .btn-read-more i {
        transform: translateX(5px);
    }

    @media (max-width: 767px) {
        .service-index-card {
            padding: 20px 16px;
        }

        .service-index-card .card-icon {
            width: 46px;
            height: 46px;
            font-size: 22px;
            margin-bottom: 16px;
        }

        .service-index-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .service-index-card p {
            font-size: 13.5px;
            margin-bottom: 18px;
        }

        .service-index-card .btn-read-more {
            font-size: 13.5px;
        }
    }



/* ========================================
   Extracted from: C:\xampp\htdocs\urbanmovers\application\modules\template\views\footer.php
======================================== */


    @media (max-width: 767px) {
        .footer-bottom {
            padding-bottom: 80px !important; /* Ensure space for floating mobile bar */
        }
    }
  


/* ========================================
   Extracted from: C:\xampp\htdocs\urbanmovers\application\modules\template\views\header_error.php
======================================== */


.uk-sticky-fixed {animation-duration: 0.3s;}
.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%);}
.quickqbtn a {color:#fff;font-size: 14px;}
.services-carousel-single-item{padding:5px}
.blinking{animation:blinkingText 1.5s infinite;padding: 10px;border-radius: 10px;}
@keyframes 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;	}
}



/* ========================================
   Extracted from: C:\xampp\htdocs\urbanmovers\application\modules\tracking\views\tracking.php
======================================== */


                .tracking-info-box {
                    background: #f8fafc;
                    border-radius: 12px;
                    padding: 16px;
                    height: 100%;
                    border: 1px solid #e2e8f0;
                    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
                }
                .tracking-info-label {
                    font-size: 0.75rem;
                    text-transform: uppercase;
                    color: #64748b;
                    font-weight: 700;
                    margin-bottom: 5px;
                    letter-spacing: 0.5px;
                }
                .tracking-info-val {
                    font-size: 0.95rem;
                    font-weight: 700;
                    color: #031b4e;
                    margin-bottom: 0;
                }
                
                /* Horizontal Progress Bar (Desktop) */
                .track-progress-wrapper {
                    position: relative;
                    padding: 30px 10px;
                    margin-bottom: 20px;
                }
                .track-progress-bar-bg {
                    position: absolute;
                    top: 47px;
                    left: 10%;
                    width: 80%;
                    height: 6px;
                    background-color: #e2e8f0;
                    z-index: 1;
                    border-radius: 10px;
                }
                .track-progress-bar-fill {
                    position: absolute;
                    top: 47px;
                    left: 10%;
                    height: 6px;
                    background-color: #ff7a16;
                    z-index: 2;
                    border-radius: 10px;
                    transition: width 0.5s ease;
                    width: 0%;
                }
                .track-step-container {
                    display: flex;
                    justify-content: space-between;
                    position: relative;
                    z-index: 3;
                }
                .track-step {
                    text-align: center;
                    width: 120px;
                }
                .track-step-icon {
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    background-color: #e2e8f0;
                    color: #64748b;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin: 0 auto 12px;
                    font-weight: 800;
                    font-size: 1.1rem;
                    border: 4px solid white;
                    transition: all 0.3s ease;
                    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
                }
                .track-step.completed .track-step-icon, .track-step.active .track-step-icon {
                    background-color: #ff7a16;
                    color: white;
                    box-shadow: 0 0 0 5px rgba(255, 122, 22, 0.15);
                }
                .track-step-label {
                    font-weight: 700;
                    font-size: 0.95rem;
                    color: #475569;
                }
                .track-step.completed .track-step-label, .track-step.active .track-step-label {
                    color: #031b4e;
                }
                .track-step-date {
                    font-size: 0.8rem;
                    color: #64748b;
                    margin-top: 4px;
                    min-height: 20px;
                    font-weight: 500;
                }
                
                /* Vertical Progress Bar (Mobile) */
                @media (max-width: 768px) {
                    .track-step-container {
                        flex-direction: column;
                        align-items: flex-start;
                        padding-left: 20px;
                    }
                    .track-step {
                        width: 100%;
                        text-align: left;
                        display: flex;
                        align-items: center;
                        margin-bottom: 25px;
                    }
                    .track-step-icon {
                        margin: 0 20px 0 0;
                    }
                    .track-progress-bar-bg {
                        top: 40px;
                        left: 38px;
                        width: 6px;
                        height: calc(100% - 90px);
                    }
                    .track-progress-bar-fill {
                        top: 40px;
                        left: 38px;
                        width: 6px;
                        height: 0%;
                        transition: height 0.5s ease;
                    }
                    .track-step-date {
                        margin-left: auto;
                        margin-top: 0;
                    }
                }
                



/* Fix gap between navigation and breadcrumbs */
.service-breadcrumbs { margin-top: 0 !important; }
.main-header { margin-bottom: 0 !important; }

