
/* ── Variables ── */
:root {
    --navy: #1a2e6e;
    --navy-dark: #111e4f;
    --navy-light: #eef1fb;
    --orange: #f5853f;
    --orange-lt: #fff3eb;
    --white: #ffffff;
    --text-body: #4a5568;
    --border: #dde3f5;
    --bg: #f5f7ff;
    --radius: 12px;
    --shadow-sm: 0 2px 10px rgba(26, 46, 110, .08);
    --shadow-md: 0 6px 28px rgba(26, 46, 110, .14);
    --font: 'Poppins', sans-serif;
    --ease: 0.3s ease;
}

/* ── Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

.container.my-5 {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text-body);
    line-height: 1.75;
}

.content-wrapper {
    max-width: 1940px;
    margin: 0 auto;
    padding: 48px 24px 80px;
    animation: fadeUp .5s ease both;
}

/* ============================
   MAIN H2 — Hero Title
============================ */
.content-wrapper>h2:first-of-type {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin: 0 0 24px;
    position: relative;
    padding-bottom: 16px;
}

.content-wrapper>h2:first-of-type::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 56px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
}

/* ============================
   OTHER H2
============================ */
.content-wrapper h2 {
    font-family: var(--font);
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    margin: 48px 0 20px;
    line-height: 1.3;
}

/* ============================
   H3 — Section Headings
============================ */
.content-wrapper h3 {
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 36px 0 14px;
    padding-left: 14px;
    border-left: 4px solid var(--orange);
    line-height: 1.4;
}

/* ============================
   H4 — Sub Headings
============================ */
.content-wrapper h4 {
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 28px 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.content-wrapper h4::before {
    content: '';
    width: 22px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    flex-shrink: 0;
}

/* ============================
   PARAGRAPHS
============================ */
.content-wrapper p {
    font-size: .95rem;
    color: var(--text-body);
    margin-bottom: 14px;
}

.content-wrapper p strong {
    color: var(--navy);
    font-weight: 600;
}

/* ============================
   SERVICES GRID LIST
   (ul inside content, before FAQ)
============================ */
.content-wrapper ul.services-list,
.content-wrapper ul:not(:last-of-type) {
    list-style: none !important;
    padding: 0 !important;
    margin: 16px 0 28px !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)) !important;
    gap: 12px !important;
}

.content-wrapper ul:not(:last-of-type) li {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
    cursor: default;
}

.content-wrapper ul:not(:last-of-type) li::before {
    content: '✓';
    display: grid;
    place-items: center;
    min-width: 24px;
    height: 24px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    font-size: .7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.content-wrapper ul:not(:last-of-type) li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange);
}

/* ============================
   TESTIMONIALS
============================ */
.content-wrapper>strong {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: .09em;
    text-transform: uppercase;
    margin-top: 24px;
    margin-bottom: 5px;
}

.content-wrapper>strong+p {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-left: 4px solid var(--orange);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 14px 20px 14px 20px;
    font-size: .9rem;
    color: var(--text-body);
    box-shadow: var(--shadow-sm);
    margin-bottom: 4px;
    position: relative;
}

/* ============================
   FAQ HEADING (last h2)
============================ */
.content-wrapper>h2:last-of-type {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: var(--navy);
    margin: 56px 0 24px;
    position: relative;
    padding-bottom: 14px;
}

.content-wrapper>h2:last-of-type::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
}

/* ============================
   FAQ ACCORDION LIST (last ul)
============================ */
.content-wrapper ul:last-of-type {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    grid-template-columns: unset !important;
}

.content-wrapper ul:last-of-type li {
    background: var(--white) !important;
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius) !important;
    padding: 0 !important;
    box-shadow: var(--shadow-sm) !important;
    overflow: hidden;
    display: block !important;
    cursor: pointer;
    transition: box-shadow var(--ease), border-color var(--ease) !important;
}

.content-wrapper ul:last-of-type li::before {
    display: none !important;
}

.content-wrapper ul:last-of-type li:hover {
    border-color: var(--navy) !important;
    box-shadow: var(--shadow-md) !important;
    transform: none !important;
}

.content-wrapper ul:last-of-type li.faq-open {
    border-color: var(--navy) !important;
    box-shadow: var(--shadow-md) !important;
}

/* ── FAQ Question (h3 inside li) ── */
.content-wrapper ul:last-of-type li h3 {
    font-family: var(--font) !important;
    font-size: .95rem !important;
    font-weight: 600 !important;
    color: var(--navy) !important;
    margin: 0 !important;
    padding: 18px 22px !important;
    border: none !important;
    animation: none !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 16px !important;
    user-select: none;
    transition: background var(--ease);
}

.content-wrapper ul:last-of-type li.faq-open>h3 {
    background: var(--navy-light) !important;
    color: var(--navy) !important;
}

/* ── Chevron ── */
.content-wrapper ul:last-of-type li h3::after {
    content: '' !important;
    display: inline-block !important;
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231a2e6e' stroke-width='2.2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    transition: transform 0.35s ease !important;
    flex-shrink: 0 !important;
}

.content-wrapper ul:last-of-type li.faq-open>h3::after {
    transform: rotate(180deg) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23f5853f' stroke-width='2.2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") !important;
}

/* ── FAQ Answer (p inside li) ── */
.content-wrapper ul:last-of-type li p {
    font-size: .9rem !important;
    color: var(--text-body) !important;
    padding: 0 22px !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height .4s ease, padding .35s ease !important;
    margin: 0 !important;
}

.content-wrapper ul:last-of-type li.faq-open p {
    max-height: 400px !important;
    padding: 14px 22px 20px !important;
}

.content-wrapper ul:last-of-type li p strong {
    color: #f5853f!important;
    font-weight: 600 !important;
}

.faq-media-section {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 24px;
    align-items: start;
    margin-top: 40px;
}

.faq-media img {
    width: 100%;
    display: block;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
}

.faq-content h2,
.city-map-section h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 24px;
    position: relative;
    padding-bottom: 14px;
}

.faq-content h2::after,
.city-map-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
}

.faq-content .faq-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.faq-content .faq-list li {
    background: var(--white) !important;
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius) !important;
    padding: 0 !important;
    box-shadow: var(--shadow-sm) !important;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow var(--ease), border-color var(--ease) !important;
}

.faq-content .faq-list li::before {
    display: none !important;
}

.faq-content .faq-list li:hover,
.faq-content .faq-list li.faq-open {
    border-color: var(--navy) !important;
    box-shadow: var(--shadow-md) !important;
}

.faq-content .faq-list li h3 {
    font-family: var(--font) !important;
    font-size: .95rem !important;
    font-weight: 600 !important;
    color: var(--navy) !important;
    margin: 0 !important;
    padding: 18px 22px !important;
    border: none !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 16px !important;
    user-select: none;
    transition: background var(--ease);
}

.faq-content .faq-list li.faq-open > h3 {
    background: var(--navy-light) !important;
}

.faq-content .faq-list li h3::after {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231a2e6e' stroke-width='2.2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform .35s ease;
    flex-shrink: 0;
}

.faq-content .faq-list li.faq-open > h3::after {
    transform: rotate(180deg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23f5853f' stroke-width='2.2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
}

.faq-content .faq-list li p {
    font-size: .9rem !important;
    color: var(--text-body) !important;
    padding: 0 22px !important;
    max-height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    transition: max-height .4s ease, padding .35s ease !important;
}

.faq-content .faq-list li.faq-open p {
    max-height: 400px !important;
    padding: 14px 22px 20px !important;
}

.faq-content .faq-list li p strong {
    color: #f5853f !important;
    font-weight: 600 !important;
}

.city-map-section {
    margin-top: 48px;
}

.city-map-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.city-map-frame iframe {
    width: 100%;
    height: 420px;
    display: block;
}

/* ============================
   ANIMATIONS
============================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 600px) {
    .content-wrapper {
        padding: 28px 16px 56px;
    }

    .content-wrapper ul:not(:last-of-type) {
        grid-template-columns: 1fr 1fr !important;
    }

    .faq-content .faq-list li h3 {
        font-size: .88rem !important;
        padding: 15px 16px !important;
    }
}

@media (max-width: 991px) {
    .faq-media-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .content-wrapper ul:not(:last-of-type) {
        grid-template-columns: 1fr !important;
    }
}








/* ── Variables + Base ── */
.svc-standalone {
    --svc-blue: #0a2d8f;
    --svc-blue-dark: #071f63;
    --svc-orange: #f47920;
    --svc-orange-dark: #d9650f;
    --svc-orange-soft: rgba(244, 121, 32, 0.10);
    --svc-white: #ffffff;
    --svc-light: #f5f8ff;
    --svc-border: #dfe8ff;
    --svc-text: #55607c;
    --svc-shadow: 0 18px 45px rgba(10, 45, 143, 0.08);
    --svc-shadow-lg: 0 28px 60px rgba(10, 45, 143, 0.13);
    background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
    font-family: 'Poppins', sans-serif;
}

/* ── Layout ── */
.svc-shell {
    padding: 4.5rem 0 5rem;
}

.svc-sidebar {
    position: sticky;
    top: 110px;
}

/* ── Kicker / Badge ── */
.svc-kicker,
.svc-side-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--svc-orange);
    background: var(--svc-orange-soft);
    padding: .35rem 1rem;
    border-radius: 999px;
    margin-bottom: .85rem;
}

.svc-kicker-light {
    color: var(--svc-white);
    background: rgba(255, 255, 255, .12);
}

/* ── Heading + Body Text ── */
.svc-heading {
    color: var(--svc-blue-dark);
}

.svc-body-text {
    color: var(--svc-text);
    line-height: 1.75;
}

.svc-lead {
    color: var(--svc-text);
    line-height: 1.8;
    font-size: 1rem;
}

/* ── Sidebar — Side Card ── */
.svc-side-card {
    background: var(--svc-white);
    border-radius: 24px;
    box-shadow: var(--svc-shadow);
    padding: 2rem;
}

.svc-side-card h3 {
    color: var(--svc-blue-dark);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: .75rem;
}

/* ── Side Title (doc3,doc7) ── */
.svc-side-title {
    color: var(--svc-blue-dark);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: .75rem;
}

/* ── Side Link ── */
.svc-side-link {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: .95rem 1rem;
    border: 1px solid var(--svc-border);
    border-radius: 16px;
    color: var(--svc-blue-dark);
    text-decoration: none;
    margin-top: .85rem;
    font-size: .9rem;
    transition: all .25s ease;
}

.svc-side-link:hover,
.svc-side-link.is-active {
    background: var(--svc-blue);
    color: var(--svc-white);
    border-color: var(--svc-blue);
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(10, 45, 143, 0.2);
}

/* ── Side Icon (doc7) ── */
.svc-side-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--svc-light);
    color: var(--svc-blue);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all .22s ease;
}

.svc-side-link:hover .svc-side-icon,
.svc-side-link.is-active .svc-side-icon {
    background: rgba(255, 255, 255, .2);
    color: var(--svc-white);
}

/* ── Help Card ── */
.svc-help-card {
    margin-top: 1.5rem;
    background: linear-gradient(135deg, var(--svc-blue-dark), var(--svc-blue));
    border-radius: 24px;
    box-shadow: var(--svc-shadow);
    padding: 2rem;
    color: var(--svc-white);
    position: relative;
    overflow: hidden;
}

.svc-help-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

.svc-help-card h3,
.svc-help-card h4,
.svc-help-card p {
    color: var(--svc-white);
}

.svc-help-card p {
    opacity: .85;
    font-size: .88rem;
    line-height: 1.65;
}

.svc-help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .14);
    color: var(--svc-white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* ── Buttons ── */
.svc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .9rem 1.4rem;
    border-radius: 999px;
    background: var(--svc-orange);
    color: var(--svc-white);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--svc-orange);
    transition: all .25s ease;
}

.svc-btn:hover {
    background: var(--svc-orange-dark);
    border-color: var(--svc-orange-dark);
    color: var(--svc-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 121, 32, 0.35);
}

.svc-btn-outline {
    background: transparent;
    border-color: var(--svc-blue);
    color: var(--svc-blue);
}

.svc-btn-outline:hover {
    background: var(--svc-blue);
    color: var(--svc-white);
    border-color: var(--svc-blue);
}

.svc-btn-light {
    background: transparent;
    border-color: rgba(255, 255, 255, .45);
    color: var(--svc-white);
}

.svc-btn-light:hover {
    background: rgba(255, 255, 255, .12);
    color: var(--svc-white);
}

/* doc7 only */
.svc-btn-white {
    background: var(--svc-white);
    border-color: var(--svc-white);
    color: var(--svc-blue-dark);
    font-weight: 700;
}

.svc-btn-white:hover {
    background: var(--svc-orange);
    border-color: var(--svc-orange);
    color: var(--svc-white);
}

/* ── Button Row ── */
.svc-btn-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
}

/* ── Hero Card ── */
.svc-hero-card {
    background: var(--svc-white);
    border-radius: 28px;
    box-shadow: var(--svc-shadow);
    padding: 2.5rem;
}

.svc-hero-card p {
    color: var(--svc-text);
    line-height: 1.82;
    margin-bottom: .9rem;
}

/* doc3 specific hero headings */
.svc-hero-card h3 {
    color: var(--svc-blue-dark);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: .6rem;
}

.svc-hero-card h4 {
    color: var(--svc-blue-dark);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: .65rem;
    padding-left: .9rem;
    border-left: 3px solid var(--svc-orange);
}

.svc-hero-card h5 {
    color: var(--svc-blue-dark);
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 1rem;
}

.svc-hero-card b {
    display: block;
    color: var(--svc-blue-dark);
    font-weight: 600;
    font-size: .85rem;
    margin-top: .25rem;
}

/* ── Typography Scale (doc3) ── */
.svc-h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--svc-blue-dark);
    line-height: 1.3;
}

.svc-h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--svc-blue-dark);
}

.svc-h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--svc-blue-dark);
}

.svc-h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--svc-blue-dark);
}

/* ── Highlight Card ── */
.svc-highlight-card {
    background: var(--svc-white);
    border-radius: 24px;
    box-shadow: var(--svc-shadow);
    padding: 1.75rem;
    height: 100%;
    border: 1px solid var(--svc-border);
}

.svc-highlight-card h3 {
    color: var(--svc-blue-dark);
    font-weight: 700;
}

.svc-highlight-card p {
    color: var(--svc-text);
    line-height: 1.75;
}

.svc-highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(244, 121, 32, .12);
    color: var(--svc-orange);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* ── Chip Row ── */
.svc-chip-row {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    margin: 1.5rem 0 2rem;
}

.svc-chip-row span {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .85rem 1.1rem;
    border-radius: 14px;
    background: var(--svc-light);
    border: 1px solid var(--svc-border);
    color: var(--svc-blue-dark);
    font-size: .88rem;
    font-weight: 500;
}

.svc-chip-row i {
    color: var(--svc-orange);
}

/* ── Section ── */
.svc-section {
    margin-top: 1.75rem;
}

.svc-section-head {
    margin-bottom: 1.35rem;
}

.svc-section-head h2,
.svc-section-head h3,
.svc-section-head h4,
.svc-section-head h5 {
    color: var(--svc-blue-dark);
    font-weight: 700;
}

.svc-section-head p {
    color: var(--svc-text);
    line-height: 1.75;
}

/* ── Info Card ── */
.svc-info-card {
    background: var(--svc-white);
    border-radius: 24px;
    box-shadow: var(--svc-shadow);
    padding: 1.6rem;
    border: 1px solid var(--svc-border);
    height: 100%;
}

.svc-info-card h3,
.svc-info-card h4 {
    color: var(--svc-blue-dark);
    font-weight: 700;
}

.svc-info-card p {
    color: var(--svc-text);
    line-height: 1.75;
}

.svc-info-card-alt {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

/* ── Process Card ── */
.svc-process-card {
    background: var(--svc-white);
    border-radius: 24px;
    box-shadow: var(--svc-shadow);
    padding: 2rem;
}

.svc-process-card h3,
.svc-process-card h4 {
    color: var(--svc-blue-dark);
    font-weight: 700;
}

.svc-process-card p {
    color: var(--svc-text);
    line-height: 1.75;
}

/* ── Feature Card ── */
.svc-feature-card {
    background: var(--svc-white);
    border-radius: 24px;
    box-shadow: var(--svc-shadow);
    padding: 1.6rem;
    border: 1px solid var(--svc-border);
    height: 100%;
}

.svc-feature-card p {
    color: var(--svc-text);
    font-size: .88rem;
    line-height: 1.75;
}

.svc-feature-card strong {
    color: var(--svc-blue-dark);
}

.svc-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(10, 45, 143, .08);
    color: var(--svc-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* ── List ── */
.svc-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.svc-list li {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    margin-top: .95rem;
    color: var(--svc-text);
}

.svc-list i {
    color: var(--svc-orange);
    flex-shrink: 0;
    margin-top: .1rem;
}

/* ── Icon List — 2-col grid (doc3) ── */
.svc-icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
}

.svc-icon-list li {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .75rem 1rem;
    border-radius: 14px;
    background: var(--svc-light);
    color: var(--svc-blue-dark);
    font-size: .9rem;
    font-weight: 500;
}

.svc-icon-list li i {
    color: var(--svc-orange);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── Icon Orange util ── */
.svc-icon-orange {
    color: var(--svc-orange);
    font-size: 1rem;
}

/* ── List Item (doc2 info card) ── */
.svc-list-item {
    border-color: var(--svc-border) !important;
}

.svc-list-item:last-child {
    border-bottom: none !important;
}

/* ── Divider (doc3, doc7) ── */
.svc-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--svc-border), transparent);
    margin: 2rem 0;
}

/* ── Testimonial Card ── */
.svc-testimonial-card {
    background: var(--svc-white);
    border: 1.5px solid var(--svc-border);
    border-radius: 20px;
    padding: 1.4rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow .22s, border-color .22s;
}

.svc-testimonial-card:hover {
    box-shadow: 0 12px 36px rgba(10, 45, 143, .1);
    border-color: var(--svc-blue);
}

.svc-testimonial-card p {
    font-size: .86rem;
    line-height: 1.75;
    color: var(--svc-text);
    flex-grow: 1;
    margin-bottom: .75rem;
}

.svc-testimonial-card b {
    display: block;
    color: var(--svc-blue-dark);
    font-size: .8rem;
    font-weight: 600;
    padding-top: .75rem;
    border-top: 1px solid var(--svc-border);
    margin-top: auto;
}

/* doc3 variant */
.svc-quote-icon {
    color: var(--svc-orange);
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: .75rem;
}

/* doc3 author block */
.svc-testimonial-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--svc-border);
    padding-top: .75rem;
    margin-top: auto;
}

.svc-testimonial-author strong {
    color: var(--svc-blue-dark);
    font-size: .88rem;
}

.svc-testimonial-author span {
    color: var(--svc-text);
    font-size: .78rem;
    margin-top: .15rem;
}

/* doc7 quote mark */
.svc-quote-mark {
    color: var(--svc-orange);
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: .75rem;
}

/* Reviewer meta ── */
.svc-reviewer-name {
    color: var(--svc-blue-dark);
    font-size: .87rem;
}

.svc-reviewer-date {
    color: var(--svc-text);
    font-size: .78rem;
}

/* ── Review Card (doc2) ── */
.svc-review-card {
    background: var(--svc-white);
    border-radius: 20px;
    box-shadow: var(--svc-shadow);
    padding: 1.4rem;
}

.svc-review-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(244, 121, 32, .1);
    color: var(--svc-orange);
    margin-bottom: .75rem;
}

/* ── FAQ ── */
.svc-faq {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.svc-faq-item {
    border: 1.5px solid var(--svc-border) !important;
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 1rem;
}

.svc-faq-item:has(.accordion-button:not(.collapsed)) {
    border-color: var(--svc-blue) !important;
}

.svc-faq-item .accordion-button {
    font-weight: 600;
    color: var(--svc-blue-dark);
    box-shadow: none;
    padding: 1.1rem 1.3rem;
}

.svc-faq-item .accordion-button:not(.collapsed) {
    background: #eef4ff;
    color: var(--svc-blue);
}

.svc-faq-item .accordion-body {
    color: var(--svc-text);
    line-height: 1.7;
    border-top: 1px solid var(--svc-border);
    padding: .9rem 1.3rem 1.2rem;
}

/* doc7 faq list wrapper */
.svc-faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.svc-faq-list>li {
    margin: 0;
}

/* doc3 accordion alias */
.svc-accordion {}

/* ── Policy / Coverage / Pricing Lists (doc7) ── */
.svc-policy-list {
    list-style: none;
    padding: 0;
    margin: .75rem 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.svc-policy-list li {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: var(--svc-text);
    font-size: .9rem;
    padding: .55rem .9rem;
    background: var(--svc-light);
    border-radius: 10px;
}

.svc-policy-list li i {
    color: var(--svc-orange);
    flex-shrink: 0;
}

.svc-coverage-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.svc-coverage-list>li {
    background: var(--svc-light);
    border: 1.5px solid var(--svc-border);
    border-radius: 18px;
    padding: 1.4rem 1.5rem;
    transition: border-color .22s, box-shadow .22s;
}

.svc-coverage-list>li:hover {
    border-color: var(--svc-orange);
    box-shadow: 0 8px 28px rgba(244, 121, 32, .12);
}

.svc-coverage-list>li h3 {
    font-size: .97rem;
    margin-bottom: .5rem;
    color: var(--svc-blue-dark);
    font-weight: 700;
}

.svc-coverage-list>li p {
    margin-bottom: 0;
    font-size: .88rem;
    color: var(--svc-text);
}

.svc-coverage-list>li p+p {
    margin-top: .6rem;
}

.svc-pricing-grid {
    list-style: none;
    padding: 0;
    margin: .75rem 0 1.25rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
}

.svc-pricing-grid li {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem 1rem;
    background: var(--svc-light);
    border: 1px solid var(--svc-border);
    border-radius: 12px;
    color: var(--svc-blue-dark);
    font-size: .86rem;
    font-weight: 500;
}

.svc-pricing-grid li i {
    color: var(--svc-orange);
    flex-shrink: 0;
}

/* ── CTA Card (doc2) ── */
.svc-cta-card {
    background: linear-gradient(135deg, var(--svc-blue-dark), var(--svc-blue));
    border-radius: 24px;
    padding: 2rem;
}

/* ── Bottom CTA ── */
.svc-bottom-cta {
    margin-top: 1.75rem;
}

.svc-bottom-cta-card {
    background: linear-gradient(135deg, var(--svc-blue-dark), var(--svc-blue));
    border-radius: 28px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--svc-shadow-lg);
}

.svc-bottom-cta-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
}

.svc-bottom-cta-card h2 {
    color: var(--svc-white);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: .5rem;
}

.svc-bottom-cta-card p {
    color: rgba(255, 255, 255, .8);
    font-size: .9rem;
    line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .svc-shell {
        padding: 3rem 0 4rem;
    }

    .svc-sidebar {
        position: static;
    }

    .svc-bottom-cta-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {

    .svc-hero-card,
    .svc-bottom-cta-card {
        padding: 1.5rem;
    }

    .svc-side-card,
    .svc-help-card,
    .svc-process-card {
        padding: 1.4rem;
    }

    .svc-btn-row {
        flex-direction: column;
    }

    .svc-btn {
        width: 100%;
    }

    .svc-icon-list {
        grid-template-columns: 1fr;
    }

    .svc-pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   JPM.CSS — Home Relocation page only (jpm-* prefix)
   (Doc 1 — completely separate design system)
============================================================ */

.jpm-page {
    --jpm-navy: #0d2468;
    --jpm-navy-dark: #071540;
    --jpm-navy-mid: #1a3580;
    --jpm-orange: #f47920;
    --jpm-orange-dark: #d9650f;
    --jpm-orange-light: #fff4ec;
    --jpm-white: #ffffff;
    --jpm-light: #f4f7ff;
    --jpm-border: #e2e9ff;
    --jpm-text: #4a5568;
    --jpm-text-dark: #1a2547;
    --jpm-shadow-sm: 0 2px 12px rgba(13, 36, 104, .07);
    --jpm-shadow-md: 0 8px 32px rgba(13, 36, 104, .11);
    --jpm-shadow-lg: 0 20px 56px rgba(13, 36, 104, .14);
    --jpm-radius: 20px;
    --jpm-radius-sm: 12px;
    font-family: 'DM Sans', sans-serif;
    background: linear-gradient(160deg, #f4f7ff 0%, #ffffff 60%);
}

/* ── Layout ── */
.jpm-wrap {
    padding-top: 3.5rem;
    padding-bottom: 5rem;
}

.jpm-sidebar {
    position: sticky;
    top: 100px;
}

/* ── Nav Card (Sidebar) ── */
.jpm-nav-card {
    background: var(--jpm-white);
    border-radius: var(--jpm-radius);
    box-shadow: var(--jpm-shadow-md);
    padding: 1.75rem;
    border: 1px solid var(--jpm-border);
}

.jpm-nav-eyebrow {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--jpm-orange);
    margin-bottom: .4rem;
}

.jpm-nav-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--jpm-navy-dark);
    margin-bottom: 1.1rem;
    line-height: 1.3;
}

.jpm-nav-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.jpm-nav-link {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .85rem 1rem;
    border-radius: var(--jpm-radius-sm);
    color: var(--jpm-text-dark);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    border: 1.5px solid var(--jpm-border);
    transition: all .22s ease;
}

.jpm-nav-link:hover,
.jpm-nav-link.active {
    background: var(--jpm-navy);
    color: var(--jpm-white);
    border-color: var(--jpm-navy);
}

.jpm-nav-link:hover .jpm-nav-icon,
.jpm-nav-link.active .jpm-nav-icon {
    background: rgba(255, 255, 255, .15);
    color: var(--jpm-white);
}

.jpm-nav-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--jpm-light);
    color: var(--jpm-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
    transition: all .22s ease;
}

.jpm-nav-arrow {
    margin-left: auto;
    font-size: .75rem;
    opacity: .45;
}

/* ── Help Card ── */
.jpm-help-card {
    background: linear-gradient(135deg, var(--jpm-navy-dark), var(--jpm-navy-mid));
    border-radius: var(--jpm-radius);
    box-shadow: var(--jpm-shadow-lg);
    padding: 1.75rem;
    color: var(--jpm-white);
}

.jpm-help-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--jpm-white);
}

.jpm-help-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--jpm-white);
    margin-bottom: .5rem;
}

.jpm-help-text {
    color: rgba(255, 255, 255, .78);
    font-size: .88rem;
    line-height: 1.65;
    margin-bottom: 0;
}

/* ── Content Card ── */
.jpm-content-card {
    background: var(--jpm-white);
    border-radius: var(--jpm-radius);
    box-shadow: var(--jpm-shadow-sm);
    border: 1px solid var(--jpm-border);
    padding: 2rem;
}

/* ── Badge ── */
.jpm-badge {
    display: inline-block;
    background: var(--jpm-orange-light);
    color: var(--jpm-orange);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    padding: .35rem .85rem;
    border-radius: 50px;
    border: 1px solid rgba(244, 121, 32, .2);
}

/* ── Typography ── */
.jpm-section-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--jpm-navy-dark);
    line-height: 1.35;
    margin-bottom: .9rem;
}

.jpm-sub-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--jpm-navy);
}

.jpm-body-text {
    color: var(--jpm-text);
    line-height: 1.75;
    font-size: .94rem;
    margin-bottom: .85rem;
}

/* ── Lists ── */
.jpm-check-list,
.jpm-arrow-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.jpm-check-list li,
.jpm-arrow-list li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    font-size: .9rem;
    color: var(--jpm-text);
    line-height: 1.5;
}

.jpm-check-list i {
    color: var(--jpm-orange);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

.jpm-arrow-list i {
    color: var(--jpm-navy);
    font-size: .95rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

/* ── Highlight + Tip Boxes ── */
.jpm-highlight-box {
    background: var(--jpm-orange-light);
    border-left: 4px solid var(--jpm-orange);
    border-radius: 0 var(--jpm-radius-sm) var(--jpm-radius-sm) 0;
    padding: 1.1rem 1.3rem;
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    font-size: .9rem;
    color: var(--jpm-text-dark);
    line-height: 1.7;
}

.jpm-highlight-icon {
    color: var(--jpm-orange);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: .15rem;
}

.jpm-tip-box {
    background: var(--jpm-light);
    border-radius: var(--jpm-radius-sm);
    border: 1px solid var(--jpm-border);
    padding: 1.1rem 1.3rem;
    font-size: .9rem;
    color: var(--jpm-text);
    line-height: 1.7;
}

/* ── Review Cards ── */
.jpm-review-card {
    background: var(--jpm-white);
    border-radius: var(--jpm-radius);
    box-shadow: var(--jpm-shadow-sm);
    border: 1px solid var(--jpm-border);
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s ease, transform .25s ease;
}

.jpm-review-card:hover {
    box-shadow: var(--jpm-shadow-md);
    transform: translateY(-3px);
}

.jpm-stars {
    display: flex;
    gap: .2rem;
    color: var(--jpm-orange);
    font-size: .9rem;
}

.jpm-review-text {
    font-size: .88rem;
    color: var(--jpm-text);
    line-height: 1.7;
    flex-grow: 1;
}

.jpm-review-author {
    display: flex;
    align-items: center;
    gap: .75rem;
    border-top: 1px solid var(--jpm-border);
    padding-top: .75rem;
    margin-top: auto;
}

.jpm-review-author strong {
    display: block;
    font-size: .88rem;
    color: var(--jpm-navy-dark);
    font-weight: 700;
}

.jpm-review-author span {
    font-size: .76rem;
    color: var(--jpm-text);
}

.jpm-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--jpm-light);
    color: var(--jpm-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ── FAQ Accordion ── */
.jpm-accordion {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.jpm-faq-item {
    border: 1.5px solid var(--jpm-border) !important;
    border-radius: var(--jpm-radius-sm) !important;
    overflow: hidden;
}

.jpm-faq-btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    color: var(--jpm-navy-dark);
    background: var(--jpm-white);
    box-shadow: none !important;
    padding: 1rem 1.25rem;
}

.jpm-faq-btn:not(.collapsed) {
    background: var(--jpm-navy);
    color: var(--jpm-white);
}

.jpm-faq-btn:not(.collapsed)::after {
    filter: invert(1) brightness(2);
}

.jpm-faq-body {
    font-size: .9rem;
    color: var(--jpm-text);
    line-height: 1.7;
    padding: 1rem 1.25rem 1.1rem;
    background: var(--jpm-light);
}

/* ── CTA Card ── */
.jpm-cta-card {
    background: linear-gradient(130deg, var(--jpm-navy-dark) 0%, var(--jpm-navy-mid) 100%);
    border-radius: var(--jpm-radius);
    box-shadow: var(--jpm-shadow-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.jpm-cta-card::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(244, 121, 32, .1);
    top: -90px;
    right: -90px;
    pointer-events: none;
}

.jpm-cta-eyebrow {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--jpm-orange);
    margin-bottom: .5rem;
}

.jpm-cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--jpm-white);
    margin-bottom: .5rem;
    line-height: 1.25;
}

.jpm-cta-text {
    color: rgba(255, 255, 255, .75);
    font-size: .93rem;
    line-height: 1.65;
    margin: 0;
}

/* ── Buttons ── */
.jpm-btn-cta {
    display: inline-flex;
    align-items: center;
    background: var(--jpm-orange);
    color: var(--jpm-white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    padding: .9rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid var(--jpm-orange);
    transition: all .25s ease;
    white-space: nowrap;
}

.jpm-btn-cta:hover {
    background: var(--jpm-orange-dark);
    border-color: var(--jpm-orange-dark);
    color: var(--jpm-white);
    transform: translateY(-2px);
}

.jpm-btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--jpm-white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    padding: .8rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, .4);
    transition: all .22s ease;
}

.jpm-btn-outline-light:hover {
    background: rgba(255, 255, 255, .12);
    color: var(--jpm-white);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .jpm-sidebar {
        position: static;
    }

    .jpm-wrap {
        padding-top: 2rem;
    }
}

@media (max-width: 767px) {
    .jpm-content-card {
        padding: 1.4rem;
    }

    .jpm-cta-card {
        padding: 1.75rem;
    }

    .jpm-cta-title {
        font-size: 1.25rem;
    }

    .jpm-section-heading {
        font-size: 1.1rem;
    }

    .jpm-btn-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Why Us section styles */
.g-5,
.gx-5 {
    --bs-gutter-x: 1.5rem !important;
}

/* ============================================================
   CHOOSE PAGE — CSS
   ============================================================ */

/* ---------- CSS Variables ---------- */
.choose-page {
    --cp-blue: #0a2d8f;
    --cp-blue-dark: #071f63;
    --cp-orange: #f47920;
    --cp-orange-dark: #d9650f;
    --cp-white: #ffffff;
    --cp-light: #f5f8ff;
    --cp-border: #dfe7ff;
    --cp-text: #53607d;
    --cp-shadow: 0 18px 48px rgba(10, 45, 143, 0.08);
    --cp-shadow-lg: 0 24px 65px rgba(7, 31, 99, 0.16);

    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}


/* ============================================================
   SECTION SPACING
   ============================================================ */
.cp-hero,
.cp-section {
    padding: 5rem 0;
}
/* 
.cp-section-alt {
    background: var(--cp-light);
} */


.cp-section-alt {
  background: var(--cp-light);
  padding-top: 0rem;
  padding-bottom: 0rem;
}

/* ============================================================
   BADGE & MINI TITLE
   ============================================================ */
.cp-badge,
.cp-mini-title {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--cp-orange);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cp-badge {
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(244, 121, 32, 0.10);
    border: 1px solid rgba(244, 121, 32, 0.16);
}

.cp-mini-title-dark {
    color: var(--cp-blue-dark);
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.cp-hero-title {
    color: var(--cp-blue-dark);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.14;
}

.cp-hero-subtitle {
    color: var(--cp-blue);
    font-weight: 600;
    font-size: 1.15rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.cp-lead {
    color: var(--cp-text);
    line-height: 1.9;
    margin-bottom: 0.75rem;
}

.cp-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.75rem;
}

/* Hero Panel Card */
.cp-hero-panel-card {
    background: linear-gradient(145deg, #f6f9ff 0%, #ffffff 100%);
    border: 1px solid var(--cp-border);
    border-radius: 24px;
    box-shadow: var(--cp-shadow);
    padding: 2rem;
}

.cp-hero-panel-card h3 {
    color: var(--cp-blue-dark);
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 0.85rem;
}

.cp-hero-panel-card p {
    color: var(--cp-text);
    line-height: 1.9;
    margin-bottom: 0.75rem;
}

.cp-hero-panel-card p:last-child {
    margin-bottom: 0;
}

.cp-panel-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cp-blue-dark) 0%, var(--cp-blue) 100%);
    color: var(--cp-orange);
    font-size: 1.7rem;
    margin-bottom: 1.25rem;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.cp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    border: 2px solid var(--cp-orange);
    background: var(--cp-orange);
    color: var(--cp-white);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.22s ease;
}

.cp-btn:hover {
    color: var(--cp-white);
    background: var(--cp-orange-dark);
    border-color: var(--cp-orange-dark);
    transform: translateY(-2px);
}

.cp-btn-outline {
    background: transparent;
    border-color: var(--cp-blue-dark);
    color: var(--cp-blue-dark);
}

.cp-btn-outline:hover {
    background: var(--cp-blue-dark);
    border-color: var(--cp-blue-dark);
    color: var(--cp-white);
}

.cp-btn-dark {
    background: var(--cp-blue-dark);
    border-color: var(--cp-blue-dark);
    color: var(--cp-white);
}

.cp-btn-dark:hover {
    background: var(--cp-blue);
    border-color: var(--cp-blue);
    color: var(--cp-white);
}


/* ============================================================
   FEATURES SECTION
   ============================================================ */
.cp-section-head {
    margin-bottom: 2.5rem;
}

.cp-section-title {
    color: var(--cp-blue-dark);
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin: 0.7rem 0 0;
    line-height: 1.25;
}

.cp-section-title-sm {
    font-size: 1.5rem !important;
}

.cp-section-copy {
    color: var(--cp-text);
    line-height: 1.9;
    max-width: 760px;
}

/* Feature Cards */
.cp-feature-card {
    background: var(--cp-white);
    border: 1px solid var(--cp-border);
    border-radius: 24px;
    box-shadow: var(--cp-shadow);
    padding: 1.7rem;
    display: flex;
    text-align: center;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.cp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--cp-shadow-lg);
    border-color: rgba(244, 121, 32, 0.24);
}

/* Intro card — full width, no column direction override needed */
.cp-feature-card--intro {
    flex-direction: column;
}

.cp-feature-card h4 {
    color: var(--cp-blue-dark);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.65rem;
    line-height: 1.4;
}

.cp-feature-card p {
    color: var(--cp-text);
    line-height: 1.9;
    margin-bottom: 0.65rem;
}

.cp-feature-card p:last-child {
    margin-bottom: 0;
}

.cp-feature-icon {
    width: 74px;
    height: 74px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(244, 121, 32, 0.08);
    margin-bottom: 1.1rem;
    overflow: hidden;
}

.cp-feature-icon img {
    width: 108px;
    height: 108px;
    object-fit: contain;
}


/* ============================================================
   INFO SECTION
   ============================================================ */
.cp-info-card {
    background: var(--cp-white);
    border: 1px solid var(--cp-border);
    border-radius: 24px;
    box-shadow: var(--cp-shadow);
    padding: 2rem;
}

.cp-info-card-light {
    background: var(--cp-light);
}

.cp-info-card .cp-mini-title {
    display: block;
    margin-bottom: 0;
}

.cp-info-card p {
    color: var(--cp-text);
    line-height: 1.9;
}

.cp-info-subhead {
    color: var(--cp-blue-dark);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.cp-light-copy {
    color: var(--cp-text);
    line-height: 1.9;
}

/* Checklist */
.cp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.cp-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #25314d;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cp-list i {
    color: var(--cp-orange);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}


/* ============================================================
   QUOTE SECTION
   ============================================================ */
.cp-quote-card {
    background: linear-gradient(145deg, #f6f9ff 0%, #ffffff 100%);
    border: 1px solid var(--cp-border);
    border-radius: 24px;
    box-shadow: var(--cp-shadow);
    padding: 2.5rem;
}

.cp-quote-icon {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cp-orange) 0%, #ff9f55 100%);
    color: var(--cp-white);
    font-size: 1.55rem;
    margin-bottom: 1.25rem;
}

.cp-quote-card-title {
    color: var(--cp-blue-dark);
    font-weight: 800;
    font-size: 1.6rem;
    line-height: 1.35;
    margin-bottom: 1rem;
}

.cp-quote-card p {
    color: var(--cp-text);
    line-height: 1.9;
    margin-bottom: 0.75rem;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {

    .cp-hero,
    .cp-section {
        padding: 3.75rem 0;
    }

    .cp-section-title {
        font-size: clamp(1.55rem, 3.5vw, 2rem);
    }
}

@media (max-width: 767.98px) {
    .cp-feature-card h4 {
        font-size: 1rem;
    }

    .cp-section-title-sm {
        font-size: 1.3rem !important;
    }

    .cp-quote-card-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 575.98px) {
    .cp-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cp-btn {
        width: 100%;
        text-align: center;
    }

    .cp-feature-card,
    .cp-info-card,
    .cp-quote-card,
    .cp-hero-panel-card {
        border-radius: 18px;
    }

    .cp-hero-panel-card,
    .cp-quote-card {
        padding: 1.5rem;
    }
}

/* Source: application/modules/reviews/views/reviewmodal.php */



.rating {
    display: flex;
    width: 100%;
    justify-content: center;
    overflow: hidden;
    flex-direction: row-reverse;
    position: relative;
}

.rating>input {
    display: none;
}

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

.rating>input:checked~label,
.rating>input:checked~label~label {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}



/* Source: application/modules/reviews/views/reviews.php */

/* Global Container */
.our-service-page {
    padding: 30px 0;
    color: #000;
}

.fade-in {
    visibility: visible;
    animation: fadeInUp 0.6s ease-in-out;
}

.btn:hover {
    background-color: #000;
    color: white;
}

/* Button Styling */
.write-review-btn {
    background-color: #e21b22;
    color: #fff;
    border: none;
    width: 100%;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    padding: 10px;
}

/* Review Container */
.single-review {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    position: relative;
}

.single-review:hover {
    transform: scale(1.02);
}

.review-icon {
    align-self: center;
    max-width: 70px;
    margin-bottom: 10px;
}

.review-img {
    width: 100%;
    border-radius: 50%;
}

/* Review Content */
.review-content {
    flex-grow: 1;
}

.review-author {
    color: #f4854a;
    font-size: 0.9rem;
}

.author-name {
    background-color: #000;
    padding: 3px;
    border-radius: 5px;
    color: #fff;
}

.review-date {
    color: #555;
    font-size: 0.8rem;
}

.review-rating {
    margin-top: 10px;
}

.rating-value {
    color: #000;
    font-weight: bold;
}

.review-title {
    font-weight: bold;
    color: #000;
    margin-top: 5px;
    font-size: 1.1rem;
}

.review-body {
    color: #000;
    margin: 5px 0;
}

.review-email {
    font-weight: bold;
    color: #555;
}

.no-reviews-text {
    color: #888;
    text-align: center;
    font-size: 1.2rem;
    margin: 20px auto;
}

/* Read More Button */
.read-more-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 0.9rem;
    margin-top: 10px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #0056b3;
}



/* Source: application/modules/reviews/views/single_review.php */

.feature-content-section {
    box-shadow: 15px 15px 25px rgba(0, 0, 0, 0.1);
    color: black;
}

.feature-content-section .single-content {
    padding: 25px 15px;
    transition: .5s;
    margin-bottom: 30px;
    background-color: white;
    border-radius: 12px;
}

.content-text {
    padding: 0 10px 0 0;
}


.feature-content-section .content-text h4 {
    font-size: 20px;
    font-weight: 500;
    color: #444;
    padding: 0px 0 4px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .feature-content-section .content-text h4 {
        font-size: 18px;
    }
}



/* Source: application/modules/blog/views/blog.php */


:root {
    --primary-navy: #1a2f5e;
    --secondary-navy: #0d1f3c;
    --accent-orange: #f97316;
    --accent-orange-light: #fb923c;
    --accent-orange-dark: #ea580c;
    --light-bg: #f0f4ff;
    --white: #ffffff;
    --text-dark: #1a2f5e;
    --text-muted: #6b7a99;
    --border-light: #e2e8f0;
    --primary-navy-light: #23479c;


}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

.breadcrumb-custom {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
}

.breadcrumb-custom a {
    color: var(--accent-orange-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.breadcrumb-custom span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.breadcrumb-custom .current {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
}

/* ========== SECTION LABELS ========== */
.section-label {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-orange-dark);
    border-left: 3px solid var(--accent-orange);
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 0 6px 6px 0;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.25;
    margin-bottom: 14px;
}

.section-title span {
    color: var(--accent-orange);
}

.section-divider {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-orange-light));
    border-radius: 4px;
    margin-bottom: 16px;
}

/* ========== BLOG GRID ========== */
.blog-section {
    padding: 80px 0;
    background: var(--white);
}

.blog-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(26, 47, 94, 0.07);
    transition: box-shadow 0.3s, transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 16px 48px rgba(26, 47, 94, 0.16);
    transform: translateY(-6px);
}

.blog-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
    flex-shrink: 0;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.07);
}

.blog-date-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 10px;
    padding: 8px 14px;
    text-align: center;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.blog-date-badge strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
}

.blog-date-badge span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-category-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-navy);
    color: var(--white);
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.blog-meta-row .meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.blog-meta-row .meta-item i {
    color: var(--accent-orange);
    font-size: 0.85rem;
}

.blog-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card-title a:hover {
    color: var(--accent-orange);
}

.blog-card-excerpt {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-navy), #1e3a7a);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    align-self: flex-start;
}

.btn-read-more:hover {
    background: linear-gradient(135deg, var(--accent-orange-dark), var(--accent-orange));
    transform: translateX(4px);
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.3);
    color: var(--white);
}

.btn-read-more i {
    font-size: 0.8rem;
    transition: transform 0.2s;
}

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

/* ========== FEATURED (first card wide) ========== */
.blog-card-featured .blog-card-img {
    height: 280px;
}

/* ========== PAGINATION ========== */
.pagination-wrap {
    margin-top: 56px;
}

.styled-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.styled-pagination li a,
.styled-pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border: 2px solid var(--border-light);
    color: var(--primary-navy);
    background: var(--white);
    transition: all 0.2s;
}

.styled-pagination li a:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--white);
}

.styled-pagination li a.active,
.styled-pagination li a.rc_first_hr {
    background: var(--primary-navy);
    border-color: var(--primary-navy);
    color: var(--white);
}

/* ========== KEYWORDS STRIP ========== */
.keywords-section {
    background: var(--light-bg);
    padding: 50px 0;
    border-top: 1px solid var(--border-light);
}

.keywords-section h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.keyword-tag {
    display: inline-block;
    background: var(--white);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    margin: 4px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    cursor: default;
}

.keyword-tag:hover {
    background: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
}

/* ========== CTA ========== */
.cta-section {
    background: linear-gradient(135deg, var(--accent-orange-dark) 0%, var(--accent-orange) 50%, var(--accent-orange-light) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 14px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.btn-cta-primary {
    background: var(--white);
    color: var(--accent-orange-dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    color: var(--accent-orange-dark);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

/* No posts state */
.no-posts {
    text-align: center;
    padding: 60px 20px;
}

.no-posts i {
    font-size: 4rem;
    color: var(--border-light);
    margin-bottom: 20px;
}

.no-posts h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-muted);
    font-weight: 600;
}



/* Source: application/modules/about/views/about.php */

/* ============================================================
   about-page.css  —  Jeevanya Packers & Movers
   Bootstrap 5 | Bootstrap Icons | No Inline CSS
   ============================================================ */

/* ============================================================
   about-page.css  —  Packers & Movers
   Bootstrap 5 | Bootstrap Icons
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
.about-page {
    --ap-orange: #f47920;
    --ap-orange-dk: #d9650f;
    --ap-blue: #0a2d8f;
    --ap-blue-dk: #071f63;
    --ap-dark: #0a2d8f;
    --ap-text: #4c5570;
    --ap-light: #f5f7ff;
    --ap-white: #ffffff;
    --ap-border: #e3e9ff;
    --ap-radius: 20px;
    --ap-radius-sm: 12px;
    --ap-shadow: 0 16px 48px rgba(10, 45, 143, 0.09);
    --ap-shadow-lg: 0 28px 70px rgba(10, 45, 143, 0.14);
    --ap-transition: all 0.28s ease;
}

/* ── Base ───────────────────────────────────────────────────── */
.about-page {
    background: #ffffff;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

/* ── Shared Helpers ─────────────────────────────────────────── */
.ap-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(244, 121, 32, 0.12);
    color: var(--ap-orange);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(244, 121, 32, 0.25);
}

.ap-mini-title {
    display: block;
    color: var(--ap-orange);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ap-section-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    color: var(--ap-blue-dk);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.ap-section-sub {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    color: var(--ap-blue);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.ap-hero-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--ap-blue-dk);
    line-height: 1.15;
    margin-bottom: 0.5rem;
}

.ap-lead {
    color: var(--ap-text);
    font-size: 0.97rem;
    line-height: 1.9;
    margin-bottom: 0.75rem;
}

/* ── Sections ───────────────────────────────────────────────── */
.ap-hero {
    padding: 5rem 0 4rem;
    background: linear-gradient(160deg, #f0f4ff 0%, #ffffff 55%);
    position: relative;
    overflow: hidden;
}

.ap-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 45, 143, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.ap-section {
    padding: 5rem 0;
}

.ap-section--alt {
    background: var(--ap-light);
}

/* ── Hero Image Block ───────────────────────────────────────── */
.ap-hero-img-wrap {
    position: relative;
    border-radius: var(--ap-radius);
    overflow: visible;
}

.ap-hero-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--ap-radius);
    box-shadow: var(--ap-shadow-lg);
    display: block;
}

.ap-float-badge {
    position: absolute;
    top: 28px;
    left: -24px;
    background: var(--ap-white);
    border-radius: var(--ap-radius-sm);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 36px rgba(10, 45, 143, 0.14);
    font-size: 0.88rem;
    line-height: 1.4;
    z-index: 2;
    border: 1px solid var(--ap-border);
    min-width: 160px;
}

.ap-float-badge--bottom {
    top: auto;
    bottom: 28px;
    left: auto;
    right: -24px;
}

.ap-float-icon {
    font-size: 1.6rem;
    color: var(--ap-orange);
    flex-shrink: 0;
}

/* ── Side Image Block ───────────────────────────────────────── */
.ap-img-block {
    position: relative;
}

.ap-side-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--ap-radius);
    box-shadow: var(--ap-shadow-lg);
    display: block;
}

.ap-img-overlay-card {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--ap-orange);
    color: var(--ap-white);
    border-radius: var(--ap-radius-sm);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 12px 32px rgba(244, 121, 32, 0.35);
    z-index: 2;
}

.ap-img-overlay-card .bi {
    font-size: 1.4rem;
}

.ap-img-block--right {
    padding-bottom: 0;
}

.ap-quote-card {
    background: var(--ap-blue-dk);
    border-radius: var(--ap-radius);
    padding: 28px 28px 24px;
    margin-top: 24px;
    color: var(--ap-white);
    position: relative;
}

.ap-quote-icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    display: block;
    margin-bottom: 10px;
}

.ap-quote-text {
    font-size: 0.95rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 12px;
}

.ap-quote-author {
    font-size: 0.85rem;
    color: var(--ap-orange);
    font-weight: 700;
}

/* ── Checklist ──────────────────────────────────────────────── */
.ap-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.ap-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--ap-text);
    line-height: 1;
}

.ap-checklist .bi {
    color: var(--ap-orange);
    font-size: 1.2rem;
    margin-top: 1px;
    flex-shrink: 0;
}

/* ── Buttons ────────────────────────────────────────────────── */
.ap-btn {
    align-items: center;
    background: var(--ap-orange);
    color: var(--ap-white);
    border: 2px solid var(--ap-orange);
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--ap-transition);
}

.ap-btn:hover {
    background: var(--ap-orange-dk);
    border-color: var(--ap-orange-dk);
    color: var(--ap-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(244, 121, 32, 0.3);
}

/* ── CTA Section ────────────────────────────────────────────── */
.ap-cta-section {
    padding: 4rem 0 5rem;
    background: var(--ap-white);
}

.ap-cta-card {
    background: linear-gradient(135deg, var(--ap-blue-dk) 0%, var(--ap-blue) 100%);
    border-radius: var(--ap-radius);
    padding: 50px 52px;
    box-shadow: 0 24px 60px rgba(7, 31, 99, 0.22);
    position: relative;
    overflow: hidden;
}

.ap-cta-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.ap-cta-title {
    color: var(--ap-white);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
}

.ap-cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    position: relative;
}

.ap-cta-btn {
    display: inline-flex;
    align-items: center;
    background: var(--ap-orange);
    color: var(--ap-white);
    border: 2px solid var(--ap-orange);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--ap-transition);
    position: relative;
}

.ap-cta-btn:hover {
    background: var(--ap-orange-dk);
    border-color: var(--ap-orange-dk);
    color: var(--ap-white);
    transform: translateY(-2px);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991px) {
    .ap-hero {
        padding: 3.5rem 0 3rem;
    }

    .ap-section {
        padding: 3.5rem 0;
    }

    .ap-cta-card {
        padding: 36px 28px;
        text-align: center;
    }

    .ap-cta-title {
        font-size: 1.5rem;
    }

    .ap-float-badge {
        display: none;
    }

    .ap-img-overlay-card {
        bottom: 10px;
        right: 10px;
    }
}

@media (max-width: 575px) {

    .ap-hero-img,
    .ap-side-img {
        height: 260px;
    }

    .ap-cta-card {
        padding: 28px 20px;
    }
}



/* Source: application/modules/contacts/views/form.php */

.quote-wrap {
    position: absolute;
    top: 18px;
    right: 40px;
    width: 336px;
    z-index: 10;
    max-height: calc(100% - 36px);
    overflow-y: auto;
    scrollbar-width: thin;
}

.quote-wrap::-webkit-scrollbar {
    width: 3px;
}

.quote-wrap::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .25);
    border-radius: 2px;
}

.quote-card {
    background: #1a2d6e;
    border-radius: 16px;
    padding: 20px 18px 16px;
    box-shadow: 0 16px 48px rgba(26, 45, 110, .22);
}

.quote-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.quote-wrap {
    order: 2;
    position: static;
    width: 100%;
    max-height: none;
    overflow: visible;
}

.quote-card {
    border-radius: 0;
}

@media (min-width: 992px) {
    .quote-wrap {
        right: 60px;
    }
}

@media (max-width: 991.98px) {
    .quote-wrap {
        order: 2;
        position: static;
        width: 100%;
        max-height: none;
        overflow: visible;
    }

    .quote-card {
        border-radius: 0;
    }

}

@media (min-width: 1400px) {
    .quote-wrap {
        width: 374px;
        right: 60px;
    }
}

@media (min-width: 1200px) {
    .quote-wrap {
        width: 354px;
        right: 60px;
        top: 22px;
    }
}



/* Source: application/modules/contacts/views/branch.php */

.quote-card {
    background: #1e2e5a;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.card-header-section {
    background: linear-gradient(90deg, #1a2744 0%, #152040 100%);
    padding: 1.5rem 2rem;
    border-bottom: 2px solid #e8621a;
    44 display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icon {
    width: 52px;
    height: 52px;
    border: 2.5px solid #e8621a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e8621a;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.card-header-section h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
    letter-spacing: 0.04em;
}

.card-header-section p {
    color: #8fa3cc;
    font-size: 0.85rem;
    margin: 0;
}

.form-body {
    padding: 2rem;
}

.form-label {
    color: #8fa3cc;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.35rem;
}

.input-group-custom {
    position: relative;
}

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




.form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-family: 'Barlow', sans-serif;
    font-size: 0.92rem;
    padding: 0.6rem 0.85rem 0.6rem 2.4rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control::placeholder {
    color: #5c7299;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: #e8621a !important;
    box-shadow: 0 0 0 3px rgba(232, 98, 26, 0.18) !important;
    outline: none;
}

textarea.form-control {
    padding-top: 0.6rem;
    resize: vertical;
    min-height: 80px;
}

.btn-quote {
    background: linear-gradient(90deg, #e8621a 0%, #f57c3a 100%);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 10px;
    padding: 0.65rem 2rem;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
}

.btn-quote:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    color: #fff;
}

.privacy-note {
    color: #5c7299;
    font-size: 0.78rem;
}

.privacy-note i {
    color: #e8621a;
}

/* Date input fix for dark */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.6);
    cursor: pointer;
}

.row-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 0.5rem 0 1rem;
}



/* Source: application/modules/home/views/search.php */

.imgrows img {
    height: 300px
}

.breadcumb-area {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(<?=base_url("assets")?>/img/truck_ban.jpg) no-repeat center/cover;
}



/* Source: application/modules/packers_movers/views/view_service.php */

/* ---------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
--------------------------------------------------------------- */
:root {
    --cp-navy: #0f2550;
    --cp-navy-mid: #1a3a6e;
    --cp-navy-light: #2b5299;
    --cp-orange: #e8611a;
    --cp-orange-lt: #fef0e7;
    --cp-bg: #eef2fb;
    --cp-white: #ffffff;
    --cp-border: #dae2f5;
    --cp-text: #334466;
    --cp-muted: #6577a0;
    --cp-radius-sm: 0.75rem;
    --cp-radius: 1.25rem;
    --cp-radius-lg: 1.75rem;
    --cp-shadow: 0 12px 40px rgba(15, 37, 80, 0.10);
    --cp-shadow-lg: 0 24px 56px rgba(15, 37, 80, 0.14);
    --cp-transition: 0.2s ease;
}


/* ---------------------------------------------------------------
   2. UTILITY TEXT COLOURS
--------------------------------------------------------------- */
.cp-text-navy {
    color: var(--cp-navy) !important;
}

.cp-text-muted {
    color: var(--cp-muted) !important;
}

.cp-text-white-50 {
    color: rgba(255, 255, 255, 0.55) !important;
}


/* ---------------------------------------------------------------
   3. SECTION WRAPPER
--------------------------------------------------------------- */
.cp-section {
    background: var(--cp-bg);
}


/* ---------------------------------------------------------------
   4. EYEBROW BADGE  (used in CTA card)
--------------------------------------------------------------- */
.cp-eyebrow {
    align-items: center;
    gap: 0.5rem;
    background: var(--cp-orange);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 999px;
}


/* ---------------------------------------------------------------
   5. SECTION LABEL  (orange pill above headings)
--------------------------------------------------------------- */
.cp-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--cp-orange-lt);
    color: var(--cp-orange);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 0.38rem 0.95rem;
    border-radius: 999px;
}


/* ---------------------------------------------------------------
   6. GENERIC WHITE CARD
--------------------------------------------------------------- */
.cp-card {
    background: var(--cp-white);
    border: 1px solid var(--cp-border);
    border-radius: var(--cp-radius);
    box-shadow: var(--cp-shadow);
}


/* ---------------------------------------------------------------
   7. WHY-US IMAGE
--------------------------------------------------------------- */
.cp-why-img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    border-radius: var(--cp-radius);
}


/* ---------------------------------------------------------------
   8. NUMBER ICON  (01 / 02 orange badge)
--------------------------------------------------------------- */
.cp-num-icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.9rem;
    background: var(--cp-orange-lt);
    color: var(--cp-orange);
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
}


/* ---------------------------------------------------------------
   9. SERVICE MINI-BOXES
--------------------------------------------------------------- */
.cp-svc-box {
    background: var(--cp-bg);
    border: 1px solid var(--cp-border);
    border-radius: var(--cp-radius-sm);
    transition: border-color var(--cp-transition), box-shadow var(--cp-transition);
}

.cp-svc-box:hover {
    border-color: var(--cp-orange);
    box-shadow: 0 6px 20px rgba(232, 97, 26, 0.10);
}


/* ---------------------------------------------------------------
   10. SERVICE ICON  (emoji square in core-services)
--------------------------------------------------------------- */
.cp-svc-icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.9rem;
    background: var(--cp-bg);
    color: var(--cp-navy);
    font-size: 1.2rem;
    flex-shrink: 0;
}


/* ---------------------------------------------------------------
   11. STEP ICON  (1 / 2 / 3 navy badge)
--------------------------------------------------------------- */
.cp-step-icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.9rem;
    background: var(--cp-navy);
    color: var(--cp-white);
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
}

.cp-step-card {
    border-top: 3px solid transparent;
    transition: border-color var(--cp-transition), box-shadow var(--cp-transition), transform var(--cp-transition);
}

.cp-step-card:hover {
    border-top-color: var(--cp-orange);
    box-shadow: var(--cp-shadow-lg);
    transform: translateY(-4px);
}


/* ---------------------------------------------------------------
   12. CHECK LIST
--------------------------------------------------------------- */
.cp-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cp-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: var(--cp-text);
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
}

.cp-check-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    background: var(--cp-orange);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.1rem;
}


/* ---------------------------------------------------------------
   13. FAQ / ACCORDION
--------------------------------------------------------------- */
.cp-faq-card .accordion-button {
    color: var(--cp-navy);
    font-weight: 600;
    background: transparent;
    box-shadow: none;
}

.cp-faq-card .accordion-button:not(.collapsed) {
    color: var(--cp-orange);
    background: var(--cp-orange-lt);
    box-shadow: none;
}

.cp-faq-card .accordion-button:focus {
    box-shadow: none;
}

.cp-faq-card .accordion-item {
    border-color: var(--cp-border);
    border-radius: var(--cp-radius-sm) !important;
    margin-bottom: 0.5rem;
    overflow: hidden;
}


/* ---------------------------------------------------------------
   14. NEARBY CITY LINK CARDS
--------------------------------------------------------------- */
.cp-link-card {
    background: var(--cp-white);
    border: 1.5px solid var(--cp-border);
    border-radius: var(--cp-radius-sm);
    transition: border-color var(--cp-transition), box-shadow var(--cp-transition), transform var(--cp-transition);
    position: relative;
    overflow: hidden;
}

.cp-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--cp-orange);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity var(--cp-transition);
}

.cp-link-card:hover {
    border-color: var(--cp-orange);
    box-shadow: 0 8px 24px rgba(232, 97, 26, 0.10);
    transform: translateY(-3px);
}

.cp-link-card:hover::before {
    opacity: 1;
}

.cp-link-card a {
    color: var(--cp-navy);
    text-decoration: none;
    font-weight: 600;
}


/* ---------------------------------------------------------------
   15. CTA CARD
--------------------------------------------------------------- */
.cp-cta-card {
    background: linear-gradient(130deg, var(--cp-navy) 0%, var(--cp-navy-mid) 60%, var(--cp-navy-light) 100%);
    border-radius: var(--cp-radius-lg);
    overflow: hidden;
    position: relative;
}

.cp-cta-card::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(232, 97, 26, 0.15);
    pointer-events: none;
}

.cp-cta-inner {
    position: relative;
    z-index: 1;
}


/* ---------------------------------------------------------------
   16. BUTTONS
--------------------------------------------------------------- */
.btn-cp-white {
    background: var(--cp-white);
    border: 2px solid var(--cp-white);
    color: var(--cp-navy);
    border-radius: 0.75rem;
    font-weight: 700;
    padding: 0.7rem 1.6rem;
    transition: background var(--cp-transition), color var(--cp-transition), box-shadow var(--cp-transition);
}

.btn-cp-white:hover {
    background: var(--cp-orange);
    border-color: var(--cp-orange);
    color: #fff;
}


/* ---------------------------------------------------------------
   17. CITY SERVICE PAGE LAYOUT
--------------------------------------------------------------- */
.cp-city-service {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.cp-city-content {
    padding: 2rem;
}

.cp-city-content .city-content h2 {
    color: var(--cp-navy-mid);
    font-size: clamp(1.8rem, 2.8vw, 3rem);
    line-height: 1.18;
    margin-bottom: 1.4rem;
    font-weight: 500;
}

.cp-city-content .city-content p {
    color: var(--cp-navy);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.45rem;
}

.cp-city-content .city-content p:last-child {
    margin-bottom: 0;
}

.cp-city-content .city-content strong,
.cp-city-content .city-content b {
    color: var(--cp-navy);
    font-weight: 700;
}

.cp-city-sidebar {
    position: sticky;
    top: 110px;
}

@media (min-width: 992px) {
    .cp-city-sidebar-col {
        align-self: stretch;
    }
}

.cp-side-card {
    overflow: hidden;
}

.cp-side-copy {
    color: var(--cp-text);
    line-height: 1.7;
    font-size: 0.96rem;
}

.cp-contact-stack {
    display: grid;
    gap: 0.85rem;
}

.cp-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.95rem 1rem;
    border: 1px solid var(--cp-border);
    border-radius: var(--cp-radius-sm);
    background: #f9fbff;
    text-decoration: none;
    transition: transform var(--cp-transition), border-color var(--cp-transition), box-shadow var(--cp-transition);
}

.cp-contact-item:hover {
    transform: translateY(-2px);
    border-color: var(--cp-orange);
    box-shadow: 0 10px 24px rgba(15, 37, 80, 0.08);
}

.cp-contact-item-static:hover {
    transform: none;
}

.cp-contact-icon {
    width: 2.7rem;
    height: 2.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
    background: var(--cp-orange-lt);
    color: var(--cp-orange);
    font-size: 1rem;
    flex-shrink: 0;
}

.cp-contact-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cp-contact-text strong {
    color: var(--cp-navy);
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.cp-contact-text small {
    color: var(--cp-text);
    font-size: 0.88rem;
    line-height: 1.5;
    word-break: break-word;
}

.cp-side-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform var(--cp-transition), background var(--cp-transition), border-color var(--cp-transition), color var(--cp-transition), box-shadow var(--cp-transition);
}

.cp-side-btn:hover {
    transform: translateY(-2px);
}

.cp-side-btn-primary {
    background: var(--cp-orange);
    border: 2px solid var(--cp-orange);
    color: #fff;
    box-shadow: 0 12px 26px rgba(232, 97, 26, 0.18);
}

.cp-side-btn-primary:hover {
    background: #cf5413;
    border-color: #cf5413;
    color: #fff;
}

.cp-side-btn-outline {
    background: transparent;
    border: 2px solid var(--cp-border);
    color: var(--cp-navy);
}

.cp-side-btn-outline:hover {
    border-color: var(--cp-navy);
    color: var(--cp-navy);
}

.cp-side-points li {
    margin-bottom: 0.95rem;
}

.cp-side-points li:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .cp-city-sidebar {
        position: static;
        top: auto;
    }
}


/* ---------------------------------------------------------------
   18. RESPONSIVE OVERRIDES
--------------------------------------------------------------- */
@media (max-width: 767.98px) {
    .cp-why-img {
        min-height: 220px;
    }

    .cp-city-content .city-content h2 {
        font-size: 1.75rem;
    }

    .cp-city-content .city-content p {
        font-size: 0.96rem;
    }
}



/* Source: application/modules/template/views/dynamic_breadcrumb.php */

.bread-section {
    position: relative;
    background: #1c2c58;

    padding: 64px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}







.bread-bg-circles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bread-circle {
    position: absolute;
    border-radius: 50%;
    background-color: var(--clr-primary);
    opacity: 0.07;
}

.bread-circle-1 {
    width: 340px;
    height: 340px;
    top: -120px;
    left: -80px;
}

.bread-circle-2 {
    width: 220px;
    height: 220px;
    top: -60px;
    right: 12%;
    opacity: 0.05;
}

.bread-circle-3 {
    width: 160px;
    height: 160px;
    bottom: -60px;
    right: 6%;
    opacity: 0.09;
}

.bread-circle-4 {
    width: 80px;
    height: 80px;
    bottom: 20px;
    left: 30%;
    opacity: 0.06;
}

.bread-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(177, 39, 37, 0.12) 0%,
            rgba(33, 31, 31, 0) 60%);
    pointer-events: none;
}

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

.bread-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.bread-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    max-width: 780px;
}

.bread-nav {
    display: inline-flex;
}

.bread-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 7px 18px;
}

.bread-list-item {
    display: flex;
    align-items: center;
}

.bread-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.62);
    letter-spacing: 0.03em;
    transition: color var(--transition-fast);
}

.bread-link i {
    font-size: 0.72rem;
}

.bread-link:hover {
    color: var(--clr-white);
}

.bread-list-sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.55rem;
}

.bread-current {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.03em;
}

@media (max-width: 767.98px) {
    .bread-section {
        padding: 48px 0;
    }

    .bread-circle-1 {
        width: 240px;
        height: 240px;
        top: -80px;
        left: -60px;
    }

    .bread-circle-2 {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .bread-section {
        padding: 40px 0;
    }

    .bread-list {
        padding: 6px 14px;
        gap: 4px;
    }

    .bread-link,
    .bread-current {
        font-size: 0.75rem;
    }
}



/* Source: application/modules/template/views/slider.php */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    background: #fff;
}

.text-orange {
    color: #f26522 !important;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    z-index: 1;
}


/* .container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right:0!important;
    padding-left: 0!important;

} */




.hero-form-shell {
    position: absolute;
    top: 0;
    right: 4rem;
    bottom: 0;
    width: min(100%, 430px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 28px 22px 28px 0;
    z-index: 4;
    pointer-events: none;
}

.hero-form-shell .quote-wrap {
    pointer-events: auto;
    width: 100%;
    max-width: 390px;
    position: static;
    max-height: none;
    overflow: visible;


}

.hero-form-shell .quote-card {
    background: linear-gradient(165deg, rgba(12, 28, 77, .96) 0%, rgba(26, 45, 110, .93) 58%, rgba(10, 23, 67, .98) 100%);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    padding: 24px 22px 18px;
    box-shadow: 0 24px 60px rgba(7, 15, 44, .34);
    backdrop-filter: blur(6px);
}






.hero-slide {
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 44px 0 90px;
    position: relative;
    overflow: hidden;
}



/* DARK OVERLAY */
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}


.slide-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.slide-2 {
    background: linear-gradient(135deg, #f0fdf4 0%, #f8fbff 55%, #edf2ff 100%);
}

.slide-3 {
    background: linear-gradient(135deg, #fffbeb 0%, #f8fbff 55%, #edf2ff 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 0 40px;

}

.tagline-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .92);
    border: 1.5px solid #e0e5ef;
    border-radius: 50px;
    padding: 7px 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .72rem;
    letter-spacing: .4px;
    color: #1a2d6e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
    margin-bottom: 14px;
}

.tagline-badge i {
    font-size: .85rem;
}

.hero-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.9rem, 4.2vw, 3.2rem);
    line-height: 1.08;
    color: #1a2d6e;
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.hero-heading-white {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.9rem, 4.2vw, 3.2rem);
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -1px;
}


.hero-subtext {
    font-size: .99rem;
    color: #eee7e7;
    line-height: 1.75;
    margin-bottom: 22px;
    font-weight: 700;
}

.hero-subtext-white {
    font-size: .99rem;
    color: #ececec;
    line-height: 1.75;
    margin-bottom: 22px;
    font-weight: 700;
}

.features-row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    row-gap: 10px;
    margin-bottom: 8px;
    padding-bottom: 2px;
}

.features-row::-webkit-scrollbar {
    display: none;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .63rem;
    letter-spacing: .4px;
    color: #efeff5;
    padding: 0 10px;
    flex-shrink: 0;
}

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

.feat-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}

.fi-blue {
    background: #1a2d6e;
    color: #fff;
}

.fi-orange {
    background: #f26522;
    color: #fff;
}

.feat-div {
    width: 1px;
    height: 34px;
    flex-shrink: 0;
}

.btn-orange {
    background: #f26522;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .79rem;
    letter-spacing: .5px;
    padding: 13px 26px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all .22s;
}

.btn-orange:hover {
    background: #d9531a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(242, 101, 34, .38);
}

.btn-watch {
    background: transparent;
    padding: 9px 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .79rem;
    color: #1a1a2e;
    text-decoration: none;
    transition: all .22s;
}

.btn-watch:hover {
    border-color: #1a2d6e;
    color: #1a2d6e;
}

.play-circ {
    width: 34px;
    height: 34px;
    background: #1a2d6e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .85rem;
}

.btn-watch-label {
    font-weight: 700;
    color: #e7e4e4;

}

.btn-watch-sub {
    display: block;
    font-weight: 400;
    color: #e7e4e4;
    font-size: .7rem;
}

.carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(26, 45, 110, .3);
    border: none;
    margin: 0 3px;
    transition: all .3s;
}



/* Default indicator dots */
.carousel-indicators button {
    width: 1px;
    height: 10px;
    border-radius: 50%;   /* Perfect circle */
    background-color: #ffffff;
    border: none;
    opacity: 0.5;
    margin: 0 4px;
    transition: all 0.3s ease;
}

/* Active (selected) dot */
.carousel-indicators button.active {
    background-color: #f26522;
    width: 12px;
    height: 12px;
    border-radius: 50%;   /* Keep it circular */
    opacity: 1;
    transform: scale(1.2); /* Slightly larger like an exact dot */
}


/* .hero-carousel .carousel-indicators button.active {
    background: #f26522;
    width: 8px;
    height: 8px;
    border-radius: 50%;
} */



.hero-prev,
.hero-next {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, .92);
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
    transition: background .22s;
    z-index: 2;
}



.hero-prev {
    left: 14px;
}

.hero-next {
    right: 14px;
}

.hero-prev:hover,
.hero-next:hover {
    background: #f26522;
}

.hero-ctrl-icon {
    color: #1a2d6e;
    font-size: 1.05rem;
    font-weight: 700;
}

.hero-prev:hover .hero-ctrl-icon,
.hero-next:hover .hero-ctrl-icon {
    color: #fff;
}

/* .quote-wrap {
        position: absolute;
        top: 18px;
        right: 28px;
        width: 336px;
        z-index: 10;
        max-height: calc(100% - 36px);
        overflow-y: auto;
        scrollbar-width: thin;
    }

    .quote-wrap::-webkit-scrollbar {
        width: 3px;
    }

    .quote-wrap::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, .25);
        border-radius: 2px;
    }

    .quote-card {
        background: #1a2d6e;
        border-radius: 16px;
        padding: 20px 18px 16px;
        box-shadow: 0 16px 48px rgba(26, 45, 110, .22);
    }

    .quote-head {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 14px;
    } */

.q-icon-ring {
    width: 52px;
    height: 52px;
    border: 2px solid #f26522;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f26522;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.q-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: #fff;
    margin: 0;
}

.q-sub {
    font-size: .73rem;
    color: rgba(255, 255, 255, .68);
    margin: 3px 0 0;
    line-height: 1.45;
}

.field-wrap {
    position: relative;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.field-ico {
    position: absolute;
    left: 11px;
    color: #9ca3af;
    font-size: .82rem;
    z-index: 2;
    pointer-events: none;
}

.field-wrap.top-ico {
    align-items: flex-start;
}

.field-wrap.top-ico .field-ico {
    top: 9px;
}

.q-input {
    width: 100%;
    padding: 9px 11px 9px 32px !important;
    border: 1.5px solid #e0e5ef !important;
    border-radius: 8px !important;
    font-size: .81rem !important;
    color: #131212 !important;
    background: #fff !important;
    transition: border-color .2s, box-shadow .2s;
    height: auto !important;
}

.q-input::placeholder {
    color: #adb5bd;
}

.q-input:focus {
    background: #fff !important;
    border-color: #f26522 !important;
    box-shadow: 0 0 0 3px rgba(242, 101, 34, .13) !important;
    outline: none;
}

.q-input:-webkit-autofill,
.q-input:-webkit-autofill:hover,
.q-input:-webkit-autofill:focus,
.q-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #131212 !important;
    background: #fff !important;
    transition: background-color 9999s ease-out 0s;
}

textarea.q-input {
    resize: vertical;
    min-height: 56px;
    color: #131212 !important;
    caret-color: #131212;
}


#resultquotefrom {
  text-align: center;
}

#resultquotefrom .alert {
  display: inline-block;
  width: auto;
  max-width: 360px;   /* 220px, 240px, 280px try kar sakte ho */
  padding: 10px 14px;
  margin-top: 12px;
  font-size: 0.85rem;
}

.btn-submit {
    width: 100%;
    background: #f26522;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .86rem;
    letter-spacing: .5px;
    padding: 13px;
    border-radius: 8px;
    border: none;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .22s;
}

.btn-submit:hover {
    background: #d9531a;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(242, 101, 34, .4);
}

.q-privacy {
    text-align: center;
    margin-top: 9px;
    color: rgba(255, 255, 255, .6);
    font-size: .7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.q-privacy-icon {
    color: #f26522;
}

.trust-bar {
    background: #1a2d6e;
    padding: 13px 0;
    position: relative;
    z-index: 5;
}

.trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .3px;
    padding: 7px 26px;
    line-height: 1.35;
}

.trust-item i {
    font-size: 1.7rem;
}

.trust-icon-orange {
    color: #f26522;
}

.trust-div {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, .22);
}

.svc-bar {
    background: #fff;
    border-bottom: 2.5px solid #e0e5ef;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
}

.svc-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.svc-strip::-webkit-scrollbar {
    display: none;
}

.svc-pill {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 15px 22px;
    text-decoration: none;
    color: #1a1a2e;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .68rem;
    letter-spacing: .4px;
    transition: all .22s;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.35;
}

.svc-pill:hover {
    color: #f26522;
    background: rgba(242, 101, 34, .05);
}

.svc-pill:hover .svc-ico {
    background: #f26522;
    color: #fff;
}

.svc-ico {
    width: 40px;
    height: 40px;
    background: #eef1ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2d6e;
    font-size: 1.05rem;
    transition: all .22s;
    flex-shrink: 0;
}

.svc-div {
    width: 1px;
    height: 48px;
    background: #e0e5ef;
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .hero-section {
        display: flex;
        flex-direction: column;
        overflow: visible;
    }

    .hero-carousel {
        order: 1;
    }

    /* .quote-wrap {
            order: 2;
            position: static;
            width: 100%;
            max-height: none;
            overflow: visible;
        }

        .quote-card {
            border-radius: 0;
        } */

    .hero-slide {
        min-height: auto;
        padding: 24px 0 72px;
    }

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

    .hero-form-shell {
        order: 2;
        position: static;
        top: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        padding: 0;
        display: block;
        z-index: 1;
        pointer-events: auto;
    }

    .hero-form-shell .quote-wrap {
        width: 100%;
        max-width: 680px;
        margin: 0 auto;
    }

    .hero-form-shell .quote-card {
        border-radius: 0;
    }

    .hero-carousel .carousel-indicators {
        bottom: 20px;
        margin-bottom: 0;
        z-index: 3;
    }

    .svc-bar {
        position: relative;
        z-index: 4;
    }
}

@media (max-width: 767.98px) {
    .slide-content {
        padding: 0 16px;
    }

    .slide-max-width {
        max-width: 100%;
    }

    .hero-heading {
        font-size: 1.7rem;
        line-height: 1.14;
        letter-spacing: -.4px;
    }

    .hero-heading-white {
        font-size: 1.7rem;
        line-height: 1.14;
        letter-spacing: -.4px;
    }

    .tagline-badge {
        font-size: .68rem;
        padding: 6px 14px;
    }

    .hero-subtext {
        font-size: .87rem;
    }

    .hero-subtext-white {
        font-size: .87rem;
    }

    .features-row {
        gap: 10px;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .feature-item {
        padding: 0;
    }

    .feat-div {
        display: none;
    }

    .hero-prev,
    .hero-next {
        display: none;
    }

    .svc-strip {
        justify-content: flex-start;
        padding: 8px 10px 12px;
    }

    .svc-pill {
        padding: 13px 14px;
    }

    .trust-item {
        padding: 7px 14px;
        font-size: .67rem;
    }

    .quote-card {
        padding: 16px 14px 12px;
    }

    .hero-form-shell {
        padding: 0;
    }

    .hero-carousel .carousel-indicators {
        bottom: 14px;
    }
}

@media (min-width: 1200px) {
    /* .quote-wrap {
            width: 354px;
            right: 38px;
            top: 22px;
        } */

    .hero-heading {
        font-size: 3.3rem;
    }

    .hero-slide {
        min-height: 590px;
    }
}

@media (min-width: 1400px) {
    /* .quote-wrap {
            width: 374px;
            right: 56px;
        } */

    .hero-slide {
        min-height: 630px;
    }

    .hero-heading {
        font-size: 3.7rem;
    }
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(-22px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-item.active .hero-heading {
    animation: fadeSlide .55s ease;
}

.carousel-item.active .tagline-badge {
    animation: fadeSlide .4s ease;
}

/* .slide-max-width {
        max-width: 560px;
           margin: 0 auto;   
    text-align: center; 
    }  */

.cta-row {
    display: none;
}

@media (min-width: 992px) {
    .cta-row {
        display: flex;
        gap: 1rem;
        align-items: center;
        margin-top: 1.5rem;
    }

    .slide-max-width {
        margin-left: 80px;
        max-width: min(100%, 620px);
        padding-right: 24px;
    }

    /* .quote-wrap {
            right: 80px;
        } */
}



/* Source: application/modules/template/views/navigation.php */

:root {
    --jp-blue: #0a2d8f;
    --jp-blue-dark: #071f63;
    --jp-orange: #f47920;
    --jp-white: #ffffff;
    --jp-light: #f0f4ff;
}

/* ─── TOPBAR ─────────────────────────────────── */
.jp-topbar {
    background: var(--jp-blue-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 0.80rem;
    color: rgba(255, 255, 255, 0.80);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.jp-topbar a {
    color: rgba(255, 255, 255, 0.80);
    text-decoration: none;
    transition: color .2s;
}

.jp-topbar a:hover {
    color: var(--jp-orange);
}

.jp-topbar .tb-divider {
    display: inline-block;
    width: 1px;
    height: 13px;
    background: rgba(255, 255, 255, 0.20);
    margin: 0 12px;
    vertical-align: middle;
}

/* ─── MAIN NAVBAR ────────────────────────────── */
.jp-navbar {
    background: var(--jp-white);
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 3px 20px rgba(10, 45, 143, 0.11);
    padding: 0px;
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: box-shadow .3s;
}

.jp-navbar.scrolled {
    box-shadow: 0 4px 28px rgba(10, 45, 143, 0.18);
}

/* ─── BRAND / LOGO ───────────────────────────── */
.jp-navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    padding: 0;
}

.jp-logo {
    display: block;
    width: auto;
    height: 70px;
    max-width: 220px;
    padding-block: 0;
    object-fit: contain;
    flex-shrink: 0;
}

.jp-logo-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
}



/* ─── NAV LINKS ──────────────────────────────── */
.jp-navbar .navbar-nav .nav-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a1a2e;
    padding: 28px 13px !important;
    position: relative;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: color .2s;
    white-space: nowrap;
}

.jp-navbar .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--jp-orange);
    transition: width .3s ease;
    border-radius: 3px 3px 0 0;
}

.jp-navbar .navbar-nav .nav-link:hover,
.jp-navbar .navbar-nav .nav-link.active {
    color: var(--jp-blue);
}

.jp-navbar .navbar-nav .nav-link:hover::before,
.jp-navbar .navbar-nav .nav-link.active::before {
    width: 70%;
}

/* Dropdown caret */
.jp-navbar .navbar-nav .dropdown-toggle::after {
    border: none;
    content: "\F282";
    font-family: "bootstrap-icons";
    font-size: 0.65rem;
    vertical-align: middle;
    margin-left: 3px;
    transition: transform .25s;
}

.jp-navbar .dropdown:hover .dropdown-toggle::after,
.jp-navbar .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* ─── DROPDOWN MENU ──────────────────────────── */
.jp-navbar .dropdown-menu {
    border: none;
    border-top: 3px solid var(--jp-orange);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 35px rgba(10, 45, 143, 0.13);
    padding: 8px 0;
    min-width: 230px;
    margin-top: 0 !important;
    animation: jpDropIn .2s ease forwards;
}

@keyframes jpDropIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jp-navbar .dropdown-item {
    font-size: 0.83rem;
    font-weight: 500;
    color: #1c1c2e;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .2s;
    border-left: 3px solid transparent;
}

.jp-navbar .dropdown-item i {
    color: var(--jp-orange);
    font-size: 1rem;
    width: 18px;
    flex-shrink: 0;
}

.jp-navbar .dropdown-item:hover {
    background: var(--jp-light);
    color: var(--jp-blue);
    border-left-color: var(--jp-orange);
    padding-left: 24px;
}

.jp-navbar .dropdown-item.active {
    background: var(--jp-light);
    color: var(--jp-blue);
    border-left-color: var(--jp-orange);
    padding-left: 24px;
}

/* ─── HOVER DROPDOWN — Desktop only ─────────── */
@media (min-width: 992px) {
    .jp-navbar .dropdown:hover>.dropdown-menu {
        display: block;
    }
}

/* ─── DESKTOP CALL BUTTON ────────────────────── */
.jp-call-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--jp-orange);
    color: var(--jp-white) !important;
    border-radius: 50px;
    padding: 9px 20px !important;
    font-weight: 700 !important;
    font-size: 0.80rem !important;
    border: 2px solid var(--jp-orange);
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: background .25s, border-color .25s, transform .2s !important;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.jp-call-btn::before,
.jp-call-btn::after {
    display: none !important;
}

.jp-call-btn:hover {
    background: var(--jp-blue) !important;
    border-color: var(--jp-blue) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.jp-call-btn .call-icon {
    background: rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.jp-call-btn .call-text small {
    display: block;
    font-weight: 400;
    font-size: 0.65rem;
    opacity: 0.88;
    line-height: 1;
}

.jp-call-btn .call-text strong {
    display: block;
    font-size: 0.88rem;
    line-height: 1.35;
}

@keyframes jpCallPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.35);
        opacity: 0;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

@keyframes jpCallBob {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes jpCallRing {
    0%,
    100% {
        transform: rotate(0deg);
    }

    8% {
        transform: rotate(16deg);
    }

    16% {
        transform: rotate(-14deg);
    }

    24% {
        transform: rotate(12deg);
    }

    32% {
        transform: rotate(-8deg);
    }

    40% {
        transform: rotate(0deg);
    }
}

/* ─── MOBILE: Phone icon (toggler se pehle) ──── */
.jp-mobile-call {
    display: none;
    /* default hidden */
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--jp-orange);
    color: #fff !important;
    border-radius: 50%;
    font-size: 1.1rem;
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 10px 22px rgba(255, 123, 0, 0.28);
    transition: background .2s, transform .2s, box-shadow .2s;
    margin-right: 6px;
    animation: jpCallBob 2.8s ease-in-out infinite;
}

.jp-mobile-call::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(255, 123, 0, 0.34);
    animation: jpCallPulse 2s ease-out infinite;
}

.jp-mobile-call i {
    position: relative;
    z-index: 1;
    transform-origin: 50% 22%;
    animation: jpCallRing 2.2s ease-in-out infinite;
}

.jp-mobile-call:hover {
    background: var(--jp-blue);
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(10, 45, 143, 0.22);
    transform: scale(1.08);
}

.jp-mobile-call:hover::before {
    border-color: rgba(10, 45, 143, 0.28);
}

@media (prefers-reduced-motion: reduce) {
    .jp-mobile-call,
    .jp-mobile-call::before,
    .jp-mobile-call i {
        animation: none !important;
        transition: none !important;
    }
}

/* ─── MOBILE TOGGLER ─────────────────────────── */
.jp-navbar .navbar-toggler {
    padding: 6px 10px;
    border: none;
}

.jp-navbar .navbar-toggler:focus,
.jp-navbar .navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
}

.jp-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230a2d8f' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ─── MOBILE BREAKPOINT ──────────────────────── */
@media (max-width: 991.98px) {

    /* Phone icon dikhao */
    .jp-mobile-call {
        display: inline-flex;
    }

    /* Desktop call button chhupao */
    .jp-call-btn {
        display: none !important;
    }






    .jp-navbar .container {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: 8px;
        position: relative;
    }

    .jp-navbar .navbar-brand {
        margin-right: auto;
        min-width: 0;
    }

    .jp-mobile-call {
        margin-left: auto;
        margin-right: 0;
    }

    .jp-navbar .navbar-toggler {
        position: relative;
        z-index: 10001;
        margin-left: 0;
        border: none;
        padding: 4px 8px;
        font-size: 2.3rem;
        color: #0d2a6e;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        transition: color .2s;
    }

    .jp-navbar .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }

    .jp-navbar .navbar-toggler .jp-menu-close-icon {
        display: none !important;
    }

    .jp-navbar .navbar-toggler[aria-expanded="true"] .jp-menu-open-icon {
        display: none !important;
    }

    .jp-navbar .navbar-toggler[aria-expanded="true"] .jp-menu-close-icon {
        display: block !important;
    }

    .jp-navbar .navbar-collapse {
        position: fixed;
        top: 0;
        right: -320px;
        width: min(300px, 86vw);
        height: 100vh;
        background: var(--jp-white);
        z-index: 10000;
        padding: 88px 20px 24px;
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(10, 45, 143, 0.16);
        transition: right .3s ease;
        display: block !important;
    }

    .jp-navbar .navbar-collapse.show {
        right: 0;
    }

    /* Nav links */
    .jp-navbar .navbar-nav .nav-link {
        padding: 13px 6px !important;
        border-bottom: 1px solid #eff1f8;
        font-size: 0.85rem;
    }

    .jp-navbar .navbar-nav .nav-link::before {
        display: none;
    }

    /* Mobile dropdown styling */
    .jp-navbar .dropdown-menu {
        border-top: none;
        border-left: 3px solid var(--jp-orange);
        border-radius: 0 0 8px 8px;
        box-shadow: none;
        background: var(--jp-light);
        animation: none;
    }

    .jp-logo {
        height: 100px;
        max-width: 160px;
    }

}



/* Source: application/modules/template/views/footer.php */

:root {
    --bs-navy: #0d2a6e;
    --bs-orange: #f26f21;
}

.bg-navy {
    background-color: #0d2a6e !important;
}

.bg-navy-dark {
    background-color: #091d52 !important;
}

.bg-trust {
    background-color: #f4f6fb !important;
}

.text-orange {
    color: #f26f21 !important;
}

.text-muted-light {
    color: #b8c8e8 !important;
}

.border-orange {
    border-color: #f26f21 !important;
}

.btn-orange {
    background-color: #f26f21;
    color: #fff;
    border: none;
}

.btn-orange:hover {
    background-color: #d95e10;
    color: #fff;
}

/* Widget title orange underline */
.jpm-widget-title {
    position: relative;
    padding-bottom: 10px;
}

.jpm-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: #f26f21;
    border-radius: 2px;
}

/* Footer links hover */
.jpm-footer-links a {
    transition: color 0.2s;
}

.jpm-footer-links a:hover {
    color: #f26f21 !important;
}

/* Email input */
.jpm-email-input {
    background: transparent !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
    color: #fff !important;
}

.jpm-email-input::placeholder {
    color: #b8c8e8;
}

.jpm-email-input:focus {
    border-color: #f26f21 !important;
    box-shadow: none !important;
}

/* Logo white card */
.jpm-logo-card {
    background: #fff;
    border-radius: 10px;
    display: inline-block;
    padding: 8px 14px;
}

.jpm-logo-card img {
    max-width: 180px;
    height: auto;
}

/* ── TRUST BAR ── */
@media (min-width: 992px) {
    .trust-item-wrap:not(:last-child) {
        border-right: 1px solid #d0d9ee;
    }
}

@media (max-width: 767px) {
    .trust-row {
        display: flex;
        flex-wrap: wrap;
    }

    .trust-item-wrap {
        width: 50%;
        padding: 10px 12px;
        border-bottom: 1px solid #d0d9ee;
        box-sizing: border-box;
    }

    .trust-item-wrap:nth-child(odd) {
        border-right: 1px solid #d0d9ee;
    }

    .trust-item-wrap:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

.jpm-acc-header {
    display: none !important;
}

.jpm-acc-body {
    display: block;
}

@media (max-width: 767px) {
    .desktop-title {
        display: block !important;
        margin-bottom: 1rem !important;
    }

    .jpm-acc-body {
        display: block;
        padding: 0;
    }
}

/* ── BOTTOM BAR — desktop: single line ── */
.jpm-bottom-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 12px;
}

.jpm-copy {
    white-space: nowrap;
    font-size: 0.82rem;
    color: #b8c8e8;
    margin: 0;
    flex-shrink: 0;
}

.jpm-mid-links {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.jpm-mid-links a {
    color: #b8c8e8;
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
}

.jpm-mid-links a:hover {
    color: #f26f21;
}

.jpm-mid-links .sep {
    color: #b8c8e8;
}

.jpm-right-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.we-accept-label {
    color: #b8c8e8;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.pay-badges {
    display: flex;
    align-items: center;
    gap: 3px;
}

.pay-badge {
    background: #fff;
    border-radius: 4px;
    padding: 2px 6px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jpm-social-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.jpm-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    font-size: 0.88rem;
    transition: background 0.2s, border-color 0.2s;
}

.jpm-social-icons a:hover {
    background: #f26f21;
    border-color: #f26f21;
}

/* ── BOTTOM BAR — mobile: stacked ── */
@media (max-width: 767px) {
    .jpm-bottom-bar-inner {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        text-align: center;
    }

    .jpm-copy {
        white-space: normal;
    }

    .jpm-mid-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .jpm-right-group {
        flex-wrap: wrap;
        justify-content: center;
    }
}



/* Source: application/modules/packers_movers/views/states.php */

/* ── Breadcrumb Hero ── */
.site-breadcrumb {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
}

.site-breadcrumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 30, 60, 0.72);
}

.site-breadcrumb .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.breadcrumb-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.breadcrumb-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb-menu li {
    color: rgba(255, 255, 255, 0.65);
}

.breadcrumb-menu li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-menu li a:hover {
    color: #fff;
}

.breadcrumb-menu li+li::before {
    content: '/';
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.35);
}

.breadcrumb-menu li.active {
    color: #fff;
    font-weight: 600;
}

/* ── Section ── */
.py-120 {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 40px;
}

.section-header .badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.section-header p {
    color: #6b7280;
    font-size: 15px;
    margin: 0;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: #1d6fce;
    border-radius: 4px;
    margin: 14px 0 0;
}

/* ── Portfolio Card ── */
.portfolio-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #fff;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.portfolio-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
    border-color: #93c5fd;
}

/* Image wrapper */
.portfolio-img {
    position: relative;
    overflow: hidden;
    height: 195px;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.38s ease;
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.07);
}

/* Category badge on image */
.img-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.92);
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

/* Overlay link */
.portfolio-link {
    position: absolute;
    inset: 0;
    background: rgba(15, 60, 120, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.28s ease;
    text-decoration: none;
    z-index: 1;
}

.portfolio-item:hover .portfolio-link {
    opacity: 1;
}

.portfolio-link i {
    color: #fff;
    font-size: 22px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.portfolio-item:hover .portfolio-link i {
    transform: scale(1.1);
}

/* Card content row */
.portfolio-content {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid #f3f4f6;
}

.portfolio-info small {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #9ca3af;
    display: block;
    margin-bottom: 3px;
}

.portfolio-info h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    color: #111827;
}

.portfolio-info h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.portfolio-info h4 a:hover {
    color: #1d6fce;
}

/* Arrow button */
.portfolio-arrow {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d6fce;
    text-decoration: none;
    transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.22s;
}

.portfolio-item:hover .portfolio-arrow {
    background: #1d6fce;
    color: #fff;
    border-color: #1d6fce;
    transform: rotate(-45deg);
}




/* Source: application/modules/home/views/home.php */

/* ===== GLOBAL ===== */
body {
    font-family: 'Nunito', sans-serif;
    background-color: #f8f9fa;
    color: #222;
}

/* ===== SECTION HEADER ===== */
.section-label {
    color: #e8650a;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-label::before,
.section-label::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: #e8650a;
    vertical-align: middle;
    margin: 0 10px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0a1f5c;
    line-height: 1.2;
}

.section-title span {
    color: #e8650a;
}

.dot-divider span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e8650a;
}

.section-subtitle {
    color: #555;
    font-size: 1rem;
    max-width: 520px;
}

/* ===== SERVICE CARD ===== */
.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.card-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #e0e8f0;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .card-img-wrap img {
    transform: scale(1.05);
}

.card-icon-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 52px;
    height: 52px;
    background-color: #0a1f5c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.35rem;
    box-shadow: 0 4px 12px rgba(10, 31, 92, 0.35);
}

.card-body-custom {
    padding: 20px 22px 24px;
}

.card-body-custom h5 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0a1f5c;
    margin-bottom: 8px;
}

.card-body-custom p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.learn-more-link {
    color: #0a1f5c;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease, gap 0.2s ease;
}

.learn-more-link:hover {
    color: #e8650a;
    gap: 10px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background-color: #1a3a8f;
    border-radius: 18px;
    padding: 44px 20px;
}

.trust-bar-inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
}

.trust-icon-wrap {
    width: 76px;
    height: 76px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: #e8650a;
    flex-shrink: 0;
    margin: 0 auto 14px auto;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 0;
    padding: 0 10px;
}

.trust-item h6 {
    font-weight: 800;
    font-size: 0.92rem;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.trust-item p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
    margin: 0;
}

/* .trust-divider {
    width: 1px;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.25);
    align-self: center;
    flex-shrink: 0;
  } */

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .trust-bar-inner {
        flex-wrap: wrap;
        gap: 24px;
    }

    /* 
    .trust-divider {
      display: none;
    } */

    .trust-item {
        flex: 0 0 45%;
    }

    .trust-bar {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .trust-item {
        flex: 0 0 45%;
    }
}


/* ===== WORKING PROCESS SECTION ===== */

.working-process-section {
    background-color: #f4f7fb;
}

.process-label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #003580;


    text-transform: uppercase;
}

.label-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: #FF6B00;
    vertical-align: middle;
}

.process-main-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #003580;
    line-height: 1.2;
}

.text-process-orange {
    color: #FF6B00;
}

.process-subtitle {
    font-size: 1rem;
    color: #6c757d;
}

/* Steps Row */
.process-steps-row {
    align-items: stretch;
}

/* Arrow between steps */
.process-arrow {
    align-items: flex-start;
    justify-content: center;
    padding-top: 60px;
    flex: 0 0 30px;
    max-width: 30px;
}

/* Process Card */
.process-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 16px 20px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 53, 128, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.working-process-section .process-card {
    overflow: visible;
    padding-top: 30px;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 53, 128, 0.15);
}

/* Step Number Badge */
.step-number-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: #003580;
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #f4f7fb;
    z-index: 2;
}

/* Step Icon */
.step-icon-wrap {
    margin: 12px auto 14px;
    width: 72px;
    height: 72px;
    background-color: #eef3fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Step Title */
.step-title {
    font-size: 1rem;
    font-weight: 700;
    color: #FF6B00;
    margin-bottom: 8px;
}

/* Step Description */
.step-desc {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.5;
    min-height: 50px;
    margin-bottom: 14px;
}

/* Step Photo */
.step-img-wrap {
    overflow: hidden;
    border-radius: 10px;
}

.step-photo {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.process-card:hover .step-photo {
    transform: scale(1.04);
}

/* ===== FEATURE BAR ===== */

.feature-bar {
    background-color: #003580;
    padding: 28px 0;
}

.feature-item {
    padding: 6px 0;
}

.feature-icon-wrap {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.feature-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

/* .feature-divider {} */

/* ===== RESPONSIVE ===== */

@media (max-width: 1199px) {
    .process-steps-row {
        justify-content: center;
    }

    .step-desc {
        min-height: auto;
    }
}

@media (max-width: 575px) {
    .process-card {
        padding: 22px 14px 16px;
    }

    .step-photo {
        height: 110px;
    }

    .feature-bar .row {
        gap: 20px !important;
    }
}



:root {
    --primary-blue: #0a2d6e;
    --accent-orange: #f47920;
    --light-bg: #eef2fb;
    --card-bg: #ffffff;
    --text-dark: #1a1a2e;
    --text-muted: #6b7a99;
    --star-color: #f5a623;
    --icon-bg: #0a2d6e;
}

/* ---- Section Wrapper ---- */
.testimonials-section {
    background-color: var(--light-bg);
    padding: 72px 0 56px;
    position: relative;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.testimonials-section::before {
    content: '\201C\201C';
    font-family: Georgia, serif;
    font-size: 220px;
    color: rgba(10, 45, 110, 0.06);
    position: absolute;
    top: -20px;
    right: 40px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* Dot grid decoration */
.dot-grid {
    position: absolute;
    width: 110px;
    height: 110px;
    background-image: radial-gradient(circle, #b5c4e8 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.55;
}

.dot-grid-tl {
    top: 24px;
    left: 24px;
}

.dot-grid-br {
    bottom: 110px;
    right: 24px;
}

/* ---- Section Header ---- */
.section-eyebrow {
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.section-title {
    font-family: 'Nunito', sans-serif;
    font-size: 2.55rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-title span {
    color: var(--accent-orange);
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 0;
}

/* ---- Carousel Wrapper ---- */
.testimonial-carousel-wrap {
    position: relative;
}

/* ---- Review Card ---- */
.review-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 32px 28px 26px;
    height: 100%;
    box-shadow: 0 4px 24px rgba(10, 45, 110, 0.07);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    position: relative;
    border: 1px solid rgba(10, 45, 110, 0.06);
}

.review-card:hover {
    box-shadow: 0 10px 36px rgba(10, 45, 110, 0.13);
    transform: translateY(-4px);
}

.quote-icon {
    font-family: Georgia, serif;
    font-size: 2.4rem;
    line-height: 1;
    color: var(--accent-orange);
    font-weight: 900;
    margin-bottom: 14px;
    display: block;
}

.review-text {
    font-size: 0.91rem;
    color: #3d4a6b;
    line-height: 1.75;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* Stars */
.star-row {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.star-row i {
    color: var(--star-color);
    font-size: 1.05rem;
}

/* Reviewer info */
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 13px;
    border-top: 1px solid #e8edf7;
    padding-top: 16px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d0daf5;
    flex-shrink: 0;
}

.reviewer-name {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 2px;
}

.reviewer-route {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ---- Carousel Arrow Buttons ---- */
.carousel-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #d0daf5;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(10, 45, 110, 0.1);
}

.carousel-nav-btn:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #fff;
}

.carousel-nav-btn.prev-btn {
    left: -22px;
}

.carousel-nav-btn.next-btn {
    right: -22px;
}

/* ---- Stats Bar ---- */
.stats-bar {
    background: #fff;
    border-radius: 14px;
    padding: 22px 0;
    margin-top: 44px;
    box-shadow: 0 2px 16px rgba(10, 45, 110, 0.07);
    border: 1px solid rgba(10, 45, 110, 0.05);
}

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

.stat-item+.stat-item {
    border-left: 1px solid #e0e8f5;
}

.stat-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--icon-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-wrap i {
    color: #fff;
    font-size: 1.3rem;
}

.stat-number {
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

/* ---- Carousel dots ---- */
#testimonialCarousel .carousel-indicators {
    bottom: -36px;
    gap:20px;
}

#testimonialCarousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #b5c4e8;
    border: none;
    opacity: 1;
    margin: 0 4px;
    transition: background 0.2s;
}

#testimonialCarousel .carousel-indicators .active {
    background-color: var(--primary-blue);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .stat-item+.stat-item {
        border-left: none;
        border-top: 1px solid #e0e8f5;
    }

    .stat-item {
        justify-content: center;
    }

    .carousel-nav-btn.prev-btn {
        left: -14px;
    }

    .carousel-nav-btn.next-btn {
        right: -14px;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.85rem;
    }

    .carousel-nav-btn {
        display: none;
    }

    .stats-bar {
        margin-top: 56px;
    }
}



/* Source: application/modules/packers_movers/views/city_list.php */

/* ==============================
   Theme Variables (Jeevanya)
   ============================== */
:root {
    --navy: #1a2451;
    --navy-dark: #111833;
    --navy-mid: #1e2d6b;
    --orange: #f47920;
    --orange-dark: #d4650f;
    --orange-light: #ff9a45;
    --white: #ffffff;
    --light-bg: #eef1f8;
    --text-dark: #1a2451;
    --text-muted: #6b7a9f;
    --card-radius: 12px;
    --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --card-shadow: 0 3px 16px rgba(26, 36, 81, 0.09);
    --card-shadow-hover: 0 10px 36px rgba(244, 121, 32, 0.22);
}

.cities-section {
    position: relative;
    padding: 72px 0 80px;
    background-color: var(--light-bg);
    overflow: hidden;
}

.cities-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.04;
}

/* ==============================
   Section Header
   ============================== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(244, 121, 32, 0.12);
    color: var(--orange);
    border: 1.5px solid rgba(244, 121, 32, 0.35);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}

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

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.4px;
}

.title-highlight {
    color: var(--orange);
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 4px;
    margin: 0 auto 14px;
}

.section-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ==============================
   City Card
   ============================== */
.city-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.city-card {
    background: var(--white);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    border: 1.5px solid transparent;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 15px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.city-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--orange), var(--orange-dark));
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: var(--transition);
}

.city-card:hover {
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(244, 121, 32, 0.3);
    transform: translateY(-5px);
}

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

.city-card-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, rgba(244, 121, 32, 0.12), rgba(244, 121, 32, 0.06));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.city-card-icon i {
    font-size: 20px;
    color: var(--orange);
    transition: var(--transition);
}

.city-card:hover .city-card-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.city-card:hover .city-card-icon i {
    color: var(--white);
}

.city-card-body {
    flex: 1;
    min-width: 0;
}

.city-card-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.city-card-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: var(--transition);
}

.city-card:hover .city-card-name {
    color: var(--orange);
}

.city-card-arrow {
    flex-shrink: 0;
    color: var(--text-muted);
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition);
}

.city-card:hover .city-card-arrow {
    opacity: 1;
    color: var(--orange);
    transform: translateX(0);
}

/* ==============================
   Responsive
   ============================== */
@media (max-width: 576px) {
    .city-card {
        padding: 10px 11px;
        gap: 8px;
    }

    .city-card-icon {
        width: 38px;
        height: 38px;
    }

    .city-card-icon i {
        font-size: 16px;
    }

    .city-card-label {
        display: none;
    }

    .city-card-name {
        font-size: 0.78rem;
    }

    .city-card-arrow {
        display: none;
    }
}



/* Source: application/modules/blog/views/view.php */


:root {
    --primary-navy: #1a2f5e;
    --secondary-navy: #0d1f3c;
    --accent-orange: #f97316;
    --accent-orange-light: #fb923c;
    --accent-orange-dark: #ea580c;
    --light-bg: #f0f4ff;
    --white: #ffffff;
    --text-dark: #1a2f5e;
    --text-muted: #6b7a99;
    --border-light: #e2e8f0;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

.blog-single-section {
    padding: 70px 0;
    background: var(--white);
}

/* ========== ARTICLE CARD ========== */
.article-wrap {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 30px rgba(26, 47, 94, 0.07);
    overflow: hidden;
}

.article-thumb {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    display: block;
}

.article-body {
    padding: 36px 40px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.article-meta .meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--light-bg);
    color: var(--text-muted);
    font-size: 0.83rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid var(--border-light);
}

.article-meta .meta-pill i {
    color: var(--accent-orange);
}

.article-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.35;
    margin-bottom: 24px;
}

.article-content {
    font-size: 0.97rem;
    color: #3d4f6e;
    line-height: 1.85;
}

.article-content p {
    margin-bottom: 18px;
}

.article-content h2,
.article-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-navy);
    margin: 28px 0 14px;
}

.article-content ul,
.article-content ol {
    padding-left: 22px;
    margin-bottom: 18px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 16px 0;
}

.article-content blockquote {
    border-left: 4px solid var(--accent-orange);
    background: var(--light-bg);
    padding: 18px 22px;
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
    font-style: italic;
    color: var(--primary-navy);
    font-weight: 600;
}

/* Share bar */
.share-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.share-bar .share-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-navy);
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.share-btn.fb {
    background: #1877f2;
    color: white;
}

.share-btn.wa {
    background: #25d366;
    color: white;
}

.share-btn.tw {
    background: #000;
    color: white;
}

.share-btn.li {
    background: #0077b5;
    color: white;
}

/* back link */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-bg);
    color: var(--primary-navy);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid var(--border-light);
    transition: background 0.2s, color 0.2s;
    margin-bottom: 28px;
    display: inline-flex;
}

.btn-back:hover {
    background: var(--primary-navy);
    color: var(--white);
    border-color: var(--primary-navy);
}

/* ========== SIDEBAR ========== */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26, 47, 94, 0.06);
}

.widget-header {
    background: linear-gradient(135deg, var(--primary-navy), #1e3a7a);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-header i {
    color: var(--accent-orange-light);
    font-size: 1rem;
}

.widget-header h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    margin: 0;
}

.widget-body {
    padding: 20px 22px;
}

/* Recent Posts */
.recent-post-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.recent-post-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.recent-post-thumb {
    width: 70px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-info h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-navy);
    margin-bottom: 5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-post-info h6 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.recent-post-info h6 a:hover {
    color: var(--accent-orange);
}

.recent-post-info span {
    font-size: 0.77rem;
    color: var(--text-muted);
    font-weight: 600;
}

.recent-post-info span i {
    color: var(--accent-orange);
    margin-right: 4px;
}

/* Social follow */
.follow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.follow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    color: white;
}

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

.follow-btn.fb {
    background: #1877f2;
}

.follow-btn.ig {
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcb045);
}

.follow-btn.yt {
    background: #ff0000;
}

.follow-btn.tw {
    background: #000;
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, var(--primary-navy), #1e3a7a);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
}

.cta-widget i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 14px;
    display: block;
}

.cta-widget h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
}

.cta-widget p {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 18px;
}

.btn-cta-widget {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
    justify-content: center;
}

.btn-cta-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
    color: var(--white);
}

@media (max-width: 768px) {
    .article-body {
        padding: 24px 20px;
    }
}



/* Source: application/modules/contacts/views/contacts.php */


:root {
    --primary-navy: #1a2f5e;
    --secondary-navy: #0d1f3c;
    --accent-orange: #f97316;
    --accent-orange-light: #fb923c;
    --accent-orange-dark: #ea580c;
    --light-bg: #f0f4ff;
    --white: #ffffff;
    --text-dark: #1a2f5e;
    --text-muted: #6b7a99;
    --border-light: #e2e8f0;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}



.breadcrumb-custom {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
}

.breadcrumb-custom a {
    color: var(--accent-orange-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.breadcrumb-custom span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.breadcrumb-custom .current {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
}


.section-label {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-orange-dark);
    border-left: 3px solid var(--accent-orange);
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 0 6px 6px 0;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.25;
    margin-bottom: 14px;
}

.section-title span {
    color: var(--accent-orange);
}

.section-divider {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-orange-light));
    border-radius: 4px;
    margin-bottom: 16px;
}

/* ========== QUICK CONTACT CARDS ========== */
.quick-contact-section {
    background: var(--light-bg);
    padding: 50px 0;
    border-bottom: 1px solid var(--border-light);
}







.quick-card {
    background: var(--white);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    border: 1px solid var(--border-light);
    height: 100%;
    transition: box-shadow 0.3s, transform 0.3s;
    text-decoration: none;
}

.quick-card:hover {
    box-shadow: 0 16px 40px rgba(26, 47, 94, 0.14);
    transform: translateY(-6px);
    text-decoration: none;
}

.quick-card .qc-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.quick-card .qc-icon i {
    font-size: 1.7rem;
    color: var(--white);
}

.quick-card h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 1rem;
    margin-bottom: 6px;
}

.quick-card .qc-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-orange-dark);
    margin-bottom: 4px;
}

.quick-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

/* ========== MAIN CONTACT SECTION ========== */
.main-contact-section {
    padding: 80px 0;
    background: var(--white);
}

/* ========== CONTACT FORM ========== */
.contact-form-wrap {
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    border-radius: 28px;
    border: 1px solid rgba(20, 45, 93, 0.10);
    box-shadow: 0 18px 44px rgba(18, 42, 86, 0.08);
    padding: 42px 38px;
}

.contact-form-intro {
    margin-bottom: 26px;
}

.contact-form-kicker {
    display: inline-block;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.10);
    color: var(--accent-orange-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form-wrap .form-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--primary-navy);
    margin-bottom: 8px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
    border: 1px solid rgba(20, 45, 93, 0.14);
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 0.95rem;
    color: var(--text-dark) !important;
    font-family: 'Nunito', sans-serif;
    transition: border-color 0.25s, box-shadow 0.25s;
    background-color: #ffffff;
    box-shadow: inset 0 1px 2px rgba(18, 42, 86, 0.04);
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.10);
    background-color: var(--white);
    outline: none;
}

.contact-form-wrap .form-control::placeholder {
    color: #97a5bf;
    font-size: 0.92rem;
}

.contact-form-wrap textarea.form-control {
    resize: vertical;
    min-height: 156px;
    line-height: 1.65;
    color: var(--text-dark) !important;
}

.btn-submit {
    background: linear-gradient(135deg, var(--accent-orange-dark), var(--accent-orange));
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: 50px;
    border: none;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    letter-spacing: 0.3px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
    opacity: 0.95;
}

.form-section-head {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.95rem;
    color: var(--primary-navy);
    margin-bottom: 10px;
    line-height: 1.15;
}

.form-section-sub {
    font-size: 0.98rem;
    color: var(--text-muted);
    margin-bottom: 0;
    max-width: 540px;
    line-height: 1.7;
}

.contact-form-wrap .text-muted.fw-normal {
    color: #7f8ca5 !important;
    font-size: 0.78rem;
    letter-spacing: 0;
    text-transform: none;
}

.contact-submit-btn {
    margin-top: 6px;
    padding: 15px 28px;
    border-radius: 16px;
    font-size: 0.98rem;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.22);
}

.contact-submit-btn:hover {
    box-shadow: 0 16px 32px rgba(249, 115, 22, 0.28);
}

/* ========== INFO SIDEBAR ========== */
.info-sidebar {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.info-block {
    background: var(--light-bg);
    border-radius: 18px;
    padding: 26px 24px;
    border: 1px solid var(--border-light);
}

.info-block h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-block h5 i {
    color: var(--accent-orange);
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.contact-detail-item:last-child {
    margin-bottom: 0;
}

.contact-detail-item .cd-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-navy), #1e3a7a);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-item .cd-icon i {
    font-size: 1rem;
    color: var(--accent-orange-light);
}

.contact-detail-item .cd-text strong {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-navy);
}

.contact-detail-item .cd-text span {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.contact-detail-item .cd-text a {
    font-size: 0.88rem;
    color: var(--accent-orange-dark);
    text-decoration: none;
    font-weight: 600;
}

.contact-detail-item .cd-text a:hover {
    text-decoration: underline;
}

/* Hours Table */
.hours-table {
    width: 100%;
}

.hours-table tr td {
    font-size: 0.84rem;
    padding: 5px 0;
    color: var(--text-muted);
}

.hours-table tr td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--primary-navy);
}

.hours-table tr.today td {
    color: var(--accent-orange-dark);
    font-weight: 700;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.social-btn.fb {
    background: #1877f2;
    color: white;
}

.social-btn.tw {
    background: #000;
    color: white;
}

.social-btn.ig {
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcb045);
    color: white;
}

.social-btn.yt {
    background: #ff0000;
    color: white;
}

.social-btn.wa {
    background: #25d366;
    color: white;
}

.social-btn.li {
    background: #0077b5;
    color: white;
}

/* ========== MAP SECTION ========== */
.map-section {
    background: var(--light-bg);
    padding: 70px 0;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(26, 47, 94, 0.12);
    border: 1px solid var(--border-light);
}

.map-container iframe {
    width: 100%;
    height: 420px;
    display: block;
    border: none;
}

/* ========== OFFICE CARDS ========== */
.office-card {
    background: var(--white);
    border-radius: 18px;
    padding: 26px 24px;
    border: 1px solid var(--border-light);
    height: 100%;
    transition: box-shadow 0.3s, transform 0.3s;
}

.office-card:hover {
    box-shadow: 0 12px 32px rgba(26, 47, 94, 0.12);
    transform: translateY(-4px);
}

.office-card .office-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.12);
    color: var(--accent-orange-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.office-card h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.office-card .office-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.87rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.office-card .office-detail i {
    color: var(--accent-orange);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--accent-orange-dark) 0%, var(--accent-orange) 50%, var(--accent-orange-light) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 14px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.btn-cta-primary {
    background: var(--white);
    color: var(--accent-orange-dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    color: var(--accent-orange-dark);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, border-color 0.2s;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    color: var(--white);
}

/* ========== SUCCESS / ERROR ALERT ========== */
.alert-form {
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    display: none;
    padding: 14px 18px;
}

/* ========== FLOATING WHATSAPP ========== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: waPulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 1.7rem;
    color: white;
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .contact-form-wrap {
        padding: 26px 20px;
    }
}



/* Source: application/modules/process/views/process.php */

:root {
    --primary-navy: #1a2f5e;
    --secondary-navy: #0d1f3c;
    --accent-orange: #f97316;
    --accent-orange-light: #fb923c;
    --accent-orange-dark: #ea580c;
    --light-bg: #f0f4ff;
    --white: #ffffff;
    --text-dark: #1a2f5e;
    --text-muted: #6b7a99;
    --border-light: #e2e8f0;
    --primary-navy-light: #354466;

}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ========== HERO BANNER ========== */
.process-hero {
    background: linear-gradient(135deg, var(--primary-navy-light) 55%, var(--secondary-navy) 10%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.process-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.12);
}

.process-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.07);
}

.process-hero .hero-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.2);
    color: var(--accent-orange-light);
    border: 1px solid rgba(249, 115, 22, 0.4);
    border-radius: 50px;
    padding: 6px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.process-hero h1,
.process-hero h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.process-hero h1 span,
.process-hero h2 span {
    color: var(--accent-orange);
}

.process-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    max-width: 580px;
}

.breadcrumb-custom {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
}

.breadcrumb-custom a {
    color: var(--accent-orange-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.breadcrumb-custom span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.breadcrumb-custom .current {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-item .number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
}

.hero-stat-item .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-top: 4px;
}

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

.hero-illustration .icon-box-hero {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.hero-illustration .icon-box-hero i {
    font-size: 5rem;
    color: var(--accent-orange);
}

/* ========== SECTION HEADERS ========== */
.section-label {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-orange-dark);
    border-left: 3px solid var(--accent-orange);
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 0 6px 6px 0;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.25;
    margin-bottom: 14px;
}

.section-title span {
    color: var(--accent-orange);
}

.section-divider {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-orange-light));
    border-radius: 4px;
    margin-bottom: 16px;
}

/* ========== INTRO STRIP ========== */
.intro-strip {
    background: var(--light-bg);
    padding: 50px 0;
    border-bottom: 1px solid var(--border-light);
}

.intro-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid var(--border-light);
    height: 100%;
    transition: box-shadow 0.3s, transform 0.3s;
}

.intro-card:hover {
    box-shadow: 0 12px 32px rgba(26, 47, 94, 0.12);
    transform: translateY(-4px);
}

.intro-card .card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.intro-card .card-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.intro-card h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.intro-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ========== PROCESS STEPS SECTION ========== */
.process-steps-section {
    padding: 80px 0;
    background: var(--white);
}

.step-row {
    margin-bottom: 64px;
    position: relative;
}

.step-row:last-child {
    margin-bottom: 0;
}

.step-number-badge {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-navy);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    border: 3px solid var(--accent-orange);
    z-index: 3;
}

.process-card {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    border: none;
    box-shadow: 0 4px 20px rgba(26, 47, 94, 0.08);
    transition: box-shadow 0.3s, transform 0.3s;
}

.process-card:hover {
    box-shadow: 0 16px 48px rgba(26, 47, 94, 0.16);
    transform: translateY(-6px);
}

.process-card-header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    padding: 32px 28px 24px;
    position: relative;
}

.process-card-header .step-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.07);
    line-height: 1;
}

.process-card-header .icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(249, 115, 22, 0.2);
    border: 2px solid rgba(249, 115, 22, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.process-card-header .icon-wrap i {
    font-size: 1.8rem;
    color: var(--accent-orange-light);
}

.process-card-header h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 6px;
}

.process-card-header .step-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-orange-light);
}

.process-card-body {
    background: var(--white);
    padding: 24px 28px;
}

.process-card-body p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.process-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 10px;
}

.process-feature-list li i {
    color: var(--accent-orange);
    font-size: 1rem;
    margin-top: 1px;
    flex-shrink: 0;
}

/* ========== CONNECTOR ARROWS ========== */
.step-connector {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px 0;
}

.step-connector .arrow-down {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent-orange), rgba(249, 115, 22, 0.2));
    position: relative;
}

.step-connector .arrow-down::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid var(--accent-orange);
}

/* ========== TIMELINE STRIP ========== */
.timeline-strip {
    background: linear-gradient(135deg, var(--secondary-navy) 0%, var(--primary-navy) 100%);
    padding: 70px 0;
}

.timeline-strip .section-title {
    color: var(--white);
}

.timeline-item {
    position: relative;
    text-align: center;
    padding: 0 12px;
}

.timeline-item .tl-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.15);
    border: 2px solid rgba(249, 115, 22, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: background 0.3s, border-color 0.3s;
}

.timeline-item:hover .tl-icon {
    background: rgba(249, 115, 22, 0.3);
    border-color: var(--accent-orange);
}

.timeline-item .tl-icon i {
    font-size: 1.6rem;
    color: var(--accent-orange-light);
}

.timeline-item h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.timeline-item p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.timeline-connector {
    position: absolute;
    top: 35px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.6), rgba(249, 115, 22, 0.1));
}

/* ========== WHY CHOOSE STRIP ========== */
.why-strip {
    background: var(--light-bg);
    padding: 70px 0;
}

.why-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    border: 1px solid var(--border-light);
    height: 100%;
    transition: box-shadow 0.3s, transform 0.3s;
}

.why-card:hover {
    box-shadow: 0 12px 32px rgba(26, 47, 94, 0.12);
    transform: translateY(-5px);
}

.why-card .why-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-navy), #1e3a7a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.why-card .why-icon i {
    font-size: 1.6rem;
    color: var(--accent-orange-light);
}

.why-card h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 1rem;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.87rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.65;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--accent-orange-dark) 0%, var(--accent-orange) 50%, var(--accent-orange-light) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 14px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.btn-cta-primary {
    background: var(--white);
    color: var(--accent-orange-dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    color: var(--accent-orange-dark);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, border-color 0.2s;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    color: var(--white);
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 70px 0;
    background: var(--white);
}

.faq-accordion .accordion-item {
    border: 1px solid var(--border-light);
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary-navy);
    font-size: 0.95rem;
    background: var(--white);
    padding: 18px 22px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--accent-orange-dark);
    background: rgba(249, 115, 22, 0.05);
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    filter: hue-rotate(210deg) saturate(2);
}

.faq-accordion .accordion-body {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    padding: 0 22px 20px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-stats {
        gap: 20px;
    }

    .timeline-connector {
        display: none;
    }

    .timeline-item {
        margin-bottom: 28px;
    }

    .step-number-badge {
        display: none;
    }

    .working-process-section .step-number-badge {
        display: flex;
        width: 34px;
        height: 34px;
        font-size: 12px;
        top: -14px;
    }

    .working-process-section .process-card {
        padding-top: 26px;
    }
}

.home-about-widget {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  }

  .hau-shell {
    background: #ffffff;
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 28px rgba(0, 53, 128, 0.08);
  }

  .hau-media {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    height: 100%;
    min-height: 240px;
    background: #e9eef8;
  }

  .hau-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hau-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 53, 128, 0.92);
    color: #fff;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
  }

  .hau-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #ff6b00;
    margin-bottom: 8px;
  }

  .hau-kicker::before {
    content: "";
    width: 24px;
    height: 2px;
    background: #003580;
  }

  .hau-title {
    font-size: clamp(1.2rem, 2.2vw, 1.9rem);
    line-height: 1.3;
    color: #003580;
    margin-bottom: 10px;
    font-weight: 800;
  }

  .hau-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #50627e;
    margin-bottom: 10px;
  }

  .hau-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0;
  }

  .hau-point {
    background: #f7f9fd;
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: 12px;
    padding: 10px 12px;
  }

  .hau-point strong {
    display: block;
    font-size: 0.86rem;
    color: #0d2f6d;
    margin-bottom: 4px;
  }

  .hau-point span {
    display: block;
    font-size: 0.78rem;
    line-height: 1.5;
    color: #60708a;
  }

  .hau-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
  }

  .hau-btn,
  .hau-btn-alt {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .hau-btn {
    background: #ff6b00;
    color: #fff;
  }

  .hau-btn:hover {
    background: #e86000;
    color: #fff;
  }

  .hau-btn-alt {
    background: #eef3fb;
    color: #003580;
  }

  .hau-btn-alt:hover {
    background: #dfe8f7;
    color: #003580;
  }

  @media (max-width: 767.98px) {
    .home-about-widget {
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
    }

    .hau-shell {
      padding: 14px;
      border-radius: 14px;
    }

    .hau-media {
      min-height: 200px;
    }

    .hau-title {
      font-size: 1.15rem;
    }

    .hau-text {
      font-size: 0.84rem;
      line-height: 1.6;
    }

    .hau-points {
      grid-template-columns: 1fr;
      gap: 8px;
    }

    .hau-point {
      padding: 9px 10px;
    }
  }


/* ==================================================
   MOBILE STICKY CONTACT BAR
================================================== */
.jp-mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
    background: transparent;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 -5px 25px rgba(10, 45, 143, 0.15);
    border-radius: 16px 16px 0 0;
    animation: jpStickySlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.6s;
}

@keyframes jpStickySlideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.jp-sticky-btn-group {
    display: flex;
    width: 100%;
    height: 54px;
    overflow: hidden;
}

.jp-sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    white-space: nowrap;
    transition: background 0.25s ease, filter 0.2s;
}

.jp-sticky-btn:active {
    filter: brightness(0.9);
}

.jp-btn-call {
    background: #f26f21; /* Primary orange */
}

.jp-btn-whatsapp {
    background: #25d366; /* WhatsApp green */
}

.jp-sticky-btn i {
    font-size: 1.15rem;
}

/* Call pulse keyframes & wiggle styling */
.jp-pulse-icon {
    display: inline-block;
    animation: jpIconWiggle 1.5s infinite ease-in-out;
}

@keyframes jpIconWiggle {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    20%, 60% {
        transform: rotate(-12deg) scale(1.2);
    }
    40%, 80% {
        transform: rotate(12deg) scale(1.2);
    }
}

/* WhatsApp pulse keyframes */
.jp-bounce-icon {
    display: inline-block;
    animation: jpIconPulse 1.8s infinite ease-in-out;
}

@keyframes jpIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.22);
    }
}

/* Responsive visibility & page spacing helper */
@media (max-width: 991.98px) {
    body {
        padding-bottom: 54px !important;
    }
}

@media (min-width: 992px) {
    .jp-mobile-sticky-bar {
        display: none !important;
    }
}

/* Extracted view styles: homepage, slider, quote form, and footer */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.jp-navbar .navbar-toggler .jp-menu-close-icon {
    display: none !important;
}

.mobile-review-card {
    max-width: 400px;
}

.hero-section.hero-static .hero-slide {
    min-height: 640px;
    padding: 28px 0 36px;
}

.hero-section.hero-static .hero-slide::before {
    background: linear-gradient(90deg, rgba(7, 18, 48, 0.88) 0%, rgba(7, 18, 48, 0.74) 45%, rgba(7, 18, 48, 0.52) 100%);
}

.hero-section.hero-static .slide-content {
    padding: 0 28px;
}

.hero-section.hero-static .hero-form-shell {
    top: 0;
    bottom: 0;
    align-items: flex-start;
    padding: 18px 22px 18px 0;
}

.hero-section.hero-static .hero-form-shell .quote-card {
    padding: 20px 20px 14px;
}

.hero-section.hero-static .slide-max-width {
    margin-left: 44px;
    max-width: min(100%, 560px);
    padding-right: 12px;
}

.hero-section.hero-static .tagline-badge {
    margin-bottom: 12px;
}

.hero-section.hero-static .hero-heading,
.hero-section.hero-static .hero-subtext,
.hero-section.hero-static .feature-item span {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-section.hero-static .hero-heading {
    margin-bottom: 10px;
}

.hero-section.hero-static .hero-subtext {
    margin-bottom: 16px;
    line-height: 1.6;
}

.hero-section.hero-static .features-row {
    gap: 12px;
    margin-bottom: 0;
}

.hero-section.hero-static .feature-item {
    padding: 0;
}

.hero-section.hero-static .feat-div {
    display: none;
}

.home-why-widget {
    background: #ffffff;
}

.hyw-shell {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 28px rgba(0, 53, 128, 0.08);
}

.hyw-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #ff6b00;
    margin-bottom: 8px;
}

.hyw-kicker::before {
    content: "";
    width: 24px;
    height: 2px;
    background: #003580;
}

.hyw-title {
    font-size: clamp(1.2rem, 2.2vw, 1.9rem);
    line-height: 1.3;
    color: #003580;
    margin-bottom: 10px;
    font-weight: 800;
}

.hyw-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #50627e;
    margin-bottom: 12px;
}

.hyw-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hyw-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: 14px;
    padding: 12px;
    height: 100%;
}

.hyw-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 12px;
    background: #eef3fb;
    color: #ff6b00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.hyw-item h3 {
    font-size: 0.88rem;
    line-height: 1.35;
    color: #0d2f6d;
    margin: 0 0 4px;
    font-weight: 700;
}

.hyw-item p {
    font-size: 0.78rem;
    line-height: 1.55;
    color: #60708a;
    margin: 0;
}

.hyw-media {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    min-height: 100%;
    height: 100%;
    background: #e9eef8;
}

.hyw-media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.hyw-stamp {
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: rgba(0, 53, 128, 0.92);
    color: #fff;
    border-radius: 14px;
    padding: 10px 12px;
    min-width: 132px;
}

.hyw-stamp strong {
    display: block;
    font-size: 0.98rem;
    line-height: 1.2;
}

.hyw-stamp span {
    display: block;
    font-size: 0.74rem;
    opacity: 0.9;
    margin-top: 3px;
}

.home-faq-widget {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hfw-shell {
    background: #ffffff;
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 28px rgba(0, 53, 128, 0.08);
}

.hfw-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #ff6b00;
    margin-bottom: 8px;
}

.hfw-kicker::before {
    content: "";
    width: 24px;
    height: 2px;
    background: #003580;
}

.hfw-title {
    font-size: clamp(1.2rem, 2.2vw, 1.9rem);
    line-height: 1.3;
    color: #003580;
    margin-bottom: 10px;
    font-weight: 800;
}

.hfw-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #50627e;
    margin-bottom: 14px;
}

.hfw-media {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #e9eef8;
    height: 100%;
    min-height: 250px;
}

.hfw-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hfw-chip {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(0, 53, 128, 0.92);
    color: #fff;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 0.72rem;
    font-weight: 600;
}

.hfw-accordion .accordion-item {
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 10px;
    background: #fff;
}

.hfw-accordion .accordion-button {
    background: #fff;
    color: #0d2f6d;
    font-size: 0.86rem;
    font-weight: 700;
    padding: 12px 14px;
    box-shadow: none !important;
}

.hfw-accordion .accordion-button:not(.collapsed) {
    background: #f7f9fd;
    color: #ff6b00;
}

.hfw-accordion .accordion-button:focus {
    box-shadow: none;
}

.hfw-accordion .accordion-body {
    font-size: 0.82rem;
    line-height: 1.65;
    color: #60708a;
    padding: 0 14px 14px;
}

.hfw-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.hfw-btn,
.hfw-btn-alt {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hfw-btn {
    background: #ff6b00;
    color: #fff;
}

.hfw-btn:hover {
    background: #e86000;
    color: #fff;
}

.hfw-btn-alt {
    background: #eef3fb;
    color: #003580;
}

.hfw-btn-alt:hover {
    background: #dfe8f7;
    color: #003580;
}

.jpm-footer-title {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.jpm-footer-mobile-title {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.jpm-footer-chevron {
    font-size: 0.72rem;
}

.jpm-footer-contact-icon {
    width: 40px;
    height: 40px;
}

.jpm-footer-availability {
    font-size: 0.775rem;
}

.jpm-trust-icon {
    width: 46px;
    height: 46px;
    border-color: #0d2a6e !important;
    color: #0d2a6e;
    font-size: 1.2rem;
}

.jpm-trust-title {
    color: #0d2a6e;
    font-size: 0.76rem;
}

.jpm-trust-text {
    font-size: 0.72rem;
}

.jpm-bottom-bar {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.jpm-pay-img {
    height: 18px;
    width: auto;
}

@media (max-width: 991.98px) {
    .hero-section.hero-static .hero-slide {
        min-height: auto;
        padding: 24px 0 30px;
    }

    .hero-section.hero-static .hero-form-shell {
        padding: 0;
        align-items: stretch;
    }

    .hero-section.hero-static .slide-max-width {
        margin-left: 0;
        max-width: 100%;
        padding-right: 0;
    }

    .hyw-media img {
        min-height: 220px;
    }
}

@media (max-width: 767.98px) {
    .hero-section.hero-static .slide-content {
        padding: 0 16px;
    }

    .hero-section.hero-static .hero-subtext {
        margin-bottom: 14px;
    }

    .home-why-widget,
    .home-faq-widget {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .hyw-shell,
    .hfw-shell {
        padding: 14px;
        border-radius: 14px;
    }

    .hyw-title,
    .hfw-title {
        font-size: 1.15rem;
    }

    .hyw-text,
    .hfw-text {
        font-size: 0.84rem;
        line-height: 1.6;
    }

    .hyw-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hyw-item {
        padding: 10px;
    }

    .hyw-media img,
    .hfw-media {
        min-height: 200px;
    }

    .hyw-stamp {
        min-width: 118px;
        padding: 9px 10px;
    }

    .hfw-accordion .accordion-button {
        font-size: 0.82rem;
        padding: 11px 12px;
    }

    .hfw-accordion .accordion-body {
        font-size: 0.79rem;
        padding: 0 12px 12px;
    }
}

/* Extracted global helpers from PHP/JS templates */
.search-results-container {
    padding: 70px 20px 200px;
}

.search-results-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.site-breadcrumb-default {
    background-image: url("../img/breadcrumb/01.jpg");
}

.blog-empty-posts {
    font-size: 0.88rem;
}

.blog-page-subtitle {
    max-width: 560px;
    margin: 0 auto;
    font-size: 0.92rem;
}

.jpmx-text-accent-orange {
    color: var(--accent-orange);
}

.blog-cta-content {
    z-index: 2;
}

.jpmx-form-submit-accent {
    background-color: #fba707;
}

.jpmx-form-clear-muted {
    background-color: white;
    color: #a0a0a0;
}

.jpmx-form-status-danger {
    color: red;
}

.jpmx-form-status-success {
    color: green;
}

.quote-modal-content {
    background: linear-gradient(107.2deg, rgb(150, 15, 15) 10.6%, rgb(247, 0, 0) 91.1%);
}

.quote-modal-title {
    border: none;
    color: white;
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
}

.quote-modal-close {
    border: none;
    color: red;
    font-size: 30px;
    margin-right: 15px;
}

.jpmx-input-icon-textarea {
    top: 18px;
    transform: none;
}

.jpmx-contact-emergency-note {
    padding-top: 8px;
    font-size: 0.8rem;
    color: var(--accent-orange-dark);
    font-weight: 700;
}

.cp-map-frame {
    border: 0;
    min-height: 420px;
}

.review-modal-content {
    background: linear-gradient(135deg, #071f63, #0b2f96);
    border-radius: 15px;
}

.review-modal-title {
    color: white;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
}

.review-modal-close {
    color: white;
    font-size: 24px;
}

.review-modal-field-icon {
    position: absolute;
    top: 14px;
    left: 15px;
    color: #071f63;
}

.review-modal-input {
    padding-left: 45px;
    color: #000;
    background: #fff;
}

.review-modal-label {
    color: white;
    display: block;
}

.review-modal-file {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.review-modal-submit {
    background-color: #fba707;
    border: none;
    color: white;
}

.review-modal-clear {
    background-color: white;
    color: #071f63;
    border: none;
}

.reviews-bg-section {
    min-height: 50vh;
    background-image: url("../images/location/location-background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

.jpmx-review-write-btn-full {
    background: #f4854a;
    color: white;
    border: none;
    width: 100%;
    font-size: 100%;
    font-weight: bold;
}

.jpmx-review-name-badge-dark {
    color: white;
    background-color: black;
    padding: 5px;
    border-radius: 5px;
}

.jpmx-review-float-actions {
    float: right;
}

.jpmx-review-rating-text-dark,
.single-review-title,
.single-review-copy,
.single-review-email,
.single-review-reply {
    color: black;
}

.single-review-title {
    font-weight: bold;
    margin-top: 5px;
}

.single-review-email,
.single-review-reply-title {
    font-weight: bold;
}

.single-review-date {
    color: #fab504;
}

.single-review-reply {
    padding-top: 20px;
}

.single-review-reply-text {
    text-align: right;
}

.process-hero-truck-icon {
    font-size: 5rem;
    color: var(--accent-orange);
}

.process-hero-partner {
    font-size: 1rem;
}

.process-hero-caption {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.process-section-subtitle {
    max-width: 560px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.jpmx-section-label-glance {
    background: rgba(249, 115, 22, 0.2);
    color: var(--accent-orange-light);
}

.jpmx-section-title-white {
    color: var(--white);
}

.process-faq-help {
    font-size: 0.92rem;
    line-height: 1.7;
}

.process-faq-btn {
    background: var(--primary-navy);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
}

.jpmx-guide-sidebar-card {
    top: 100px;
    z-index: 10;
}

.packing-phone-watermark {
    font-size: 8rem;
    line-height: 0;
    transform: translate(20px, 20px);
}

.jpmx-guide-step-circle-lg {
    width: 36px;
    height: 36px;
}

.jpmx-guide-step-circle-sm {
    width: 28px;
    height: 28px;
}

#faq-tabs .nav-link {
    color: #50627e;
    background: transparent;
    transition: all 0.2s ease;
}

#faq-tabs .nav-link.active {
    background-color: rgba(242, 111, 33, 0.1) !important;
    color: #f26f21 !important;
}

#faq-tabs .nav-link:hover:not(.active) {
    background-color: #f0f4f9;
    color: #0d2a6e;
}

.sitemap-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sitemap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 53, 128, 0.1) !important;
}

.sitemap-card-icon {
    width: 46px;
    height: 46px;
}

.sitemap-card-title {
    font-size: 1.15rem;
}

.sitemap-links a {
    transition: all 0.18s ease;
}

.sitemap-links a:hover {
    background-color: rgba(242, 111, 33, 0.08);
    color: #f26f21 !important;
}

.sitemap-links a:hover .chevron-icon {
    transform: translateX(3px);
    color: #f26f21 !important;
}

.chevron-icon {
    font-size: 0.75rem;
    color: #a0aec0;
    transition: transform 0.18s ease, color 0.18s ease;
}

.certificate-badge {
    font-size: 0.85rem;
}

.certificate-intro {
    max-width: 800px;
    font-size: 0.95rem;
}

.certificate-placeholder {
    min-height: 400px;
    border-style: dashed !important;
}

.certificate-note {
    font-size: 0.85rem;
}

.certificate-kicker {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.certificate-copy,
.certificate-list {
    font-size: 0.9rem;
}

.hero-section.hero-static.hero-city .slide-max-width {
    max-width: min(100%, 760px);
}

.hero-section.hero-static.hero-city .hero-heading-top,
.hero-section.hero-static.hero-city .hero-heading-city {
    display: block;
}

.hero-section.hero-static.hero-city .hero-heading-top {
    white-space: nowrap;
}

.ci-error-page::selection {
    background-color: #e13300;
    color: white;
}

.ci-error-page::-moz-selection {
    background-color: #e13300;
    color: white;
}

.ci-error-page {
    background-color: #fff;
    margin: 40px;
    font: 13px/20px normal Helvetica, Arial, sans-serif;
    color: #4f5155;
}

.ci-error-page a {
    color: #003399;
    background-color: transparent;
    font-weight: normal;
}

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

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

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

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

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

.ci-debug-trace {
    margin-left: 10px;
}

.uk-sticky-fixed {
    animation-duration: 0.3s;
}

.quickqbtn {
    position: fixed;
    z-index: 99;
    bottom: 1%;
    left: 1.5%;
    padding: 5px 0 0 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;
    }
}

.admin-page {
    --admin-primary: #ff6b16;
    --admin-navy: #073c91;
}

.admin-page .sidebar {
    min-width: 250px;
    max-width: 250px;
    min-height: 100vh;
    background: var(--admin-navy);
    color: #fff;
}

.admin-page .sidebar .nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-page .sidebar .nav-link:hover,
.admin-page .sidebar .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.admin-page .main-content {
    flex: 1;
    padding: 30px;
    background: #f8fafc;
}

.admin-page .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.admin-page .btn-admin {
    background: var(--admin-primary);
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}

.admin-page .btn-admin:hover {
    background: #e55a00;
    color: #fff;
}

.admin-page .form-label {
    font-weight: 600;
    color: #475569;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.admin-page .form-control {
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
}

.admin-page .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.admin-page .modal-content {
    border-radius: 15px;
    border: none;
}

.admin-page .modal-header {
    border-bottom: 1px solid #f1f5f9;
    padding: 1.2rem 1.5rem;
}

.admin-page .modal-footer {
    border-top: 1px solid #f1f5f9;
    padding: 1rem 1.5rem;
}

.admin-page .modal-title {
    font-weight: 700;
    color: var(--navy);
}

.admin-login-page {
    background: #f4f7f6;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-login-page .login-card {
    width: 400px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.admin-login-page .btn-primary {
    background: #ff6b16;
    border: none;
}

.admin-blog-card-img,
.admin-blog-placeholder {
    height: 180px;
}

.admin-blog-card-img {
    object-fit: cover;
}

.admin-blog-slug {
    font-size: 0.7rem;
}

.admin-blog-desc {
    line-height: 1.4;
}

.admin-blog-date {
    font-size: 0.75rem;
}

.admin-blog-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.admin-page .avatar-sm {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
}

.admin-review-message {
    max-width: 300px;
}

.admin-review-date {
    font-size: 0.7rem;
}

.admin-page .bg-success-subtle {
    background: #dcfce7;
}

.admin-page .text-success {
    color: #166534;
}

.admin-page .bg-warning-subtle {
    background: #fef9c3;
}

.admin-page .text-warning {
    color: #854d0e;
}

.jpmx-mail-message-box {
    padding: 30px;
    background: #e6e6e6;
    font-size: 18px !important;
}

.jpmx-newsletter-error-box {
    background: red !important;
}

.jpmx-input-error-highlight {
    border: 2px solid #ff3333 !important;
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.5) !important;
    transition: all 0.3s ease-in-out !important;
}

.jpmx-field-error-msg {
    color: #ff3333 !important;
    font-size: 0.75rem !important;
    font-weight: bold !important;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
    text-align: left !important;
    padding-left: 10px !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    animation: fieldErrorFadeIn 0.3s ease-out !important;
}

.jpmx-field-error-flex-wrap {
    flex-wrap: wrap;
}

.field-wrap .field-ico,
.field-wrap.top-ico .field-ico {
    top: 14px !important;
}

@keyframes fieldErrorFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jpmx-ajax-status-loading {
    color: orange;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 10px;
}

.jpmx-ajax-success-box {
    margin-top: 15px;
}

.jpmx-ajax-success-text {
    color: green;
    font-weight: bold;
    margin-bottom: 0;
}

.jpmx-ajax-status-error {
    color: red;
    font-weight: bold;
}

@media (max-width: 767.98px) {
    .hero-section.hero-static.hero-city .hero-heading-top {
        white-space: normal;
    }
}

@media (max-width: 991.98px) {
    .hero-section.hero-static.hero-city .slide-max-width {
        margin-left: 0;
        max-width: 100%;
        padding-right: 0;
    }
}
