@import url("https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.2/css/bootstrap.min.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");
:root {
    --navy: #0b1f4d;
    --navy-dark: #0B1F4D;
    --navy-light: #eef2ff;
    --orange: #FF6B00;
    --orange-lt: #fff3e8;
    --white: #ffffff;
    --text-body: #333333;
    --border: #e0e6f0;
    --bg: #F5F5F5;
    --radius: 12px;
    --shadow-sm: 0 2px 10px rgba(11, 31, 77, .08);
    --shadow-md: 0 6px 28px rgba(11, 31, 77, .14);
    --font: 'Poppins', sans-serif;
    --ease: 0.3s ease;
}

/* â”€â”€ Base â”€â”€ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

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

.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='%230b2f75' 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='%23f97316' 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: #f97316 !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: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green)) !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: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green)) !important;
    color: white !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='%230b2f75' 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='%23f97316' 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: #f97316 !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: #3c475d;
    --svc-blue-dark: #3c475d;
    --svc-orange: #f97316;
    --svc-orange-dark: #d95b0d;
    --svc-orange-soft: rgba(249, 115, 22, 0.10);
    --svc-white: #ffffff;
    --svc-light: #f3f7ff;
    --svc-border: #d8e4f8;
    --svc-text: #55607c;
    --svc-shadow: 0 18px 45px rgba(11, 47, 117, 0.08);
    --svc-shadow-lg: 0 28px 60px rgba(11, 47, 117, 0.13);
    background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 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: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    color: white;
    border-color: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(11, 47, 117, 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(--hsx-green-dark), var(--hsx-green)) !important;
    ;
    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(249, 115, 22, 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(249, 115, 22, .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(11, 47, 117, .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(11, 47, 117, .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(249, 115, 22, .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(249, 115, 22, .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(--hsx-green-dark), var(--hsx-green)) !important;
    border-radius: 24px;
    padding: 2rem;
}

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

.svc-bottom-cta-card {
    background: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    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;
    }

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

    .svc-chip-row span {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .svc-shell {
        padding: 2.25rem 0 3rem;
    }

    .svc-side-card,
    .svc-help-card,
    .svc-hero-card,
    .svc-highlight-card,
    .svc-process-card,
    .svc-info-card,
    .svc-feature-card,
    .svc-bottom-cta-card {
        border-radius: 18px;
    }

    .svc-side-link {
        padding: 0.85rem 0.9rem;
        gap: 0.75rem;
        font-size: 0.88rem;
    }

    .svc-highlight-icon {
        width: 52px;
        height: 52px;
        font-size: 1.15rem;
    }

    .svc-hero-card h2,
    .svc-section-head h2,
    .svc-section-head h3,
    .svc-section-head h4,
    .svc-section-head h5 {
        line-height: 1.28;
    }

    .svc-btn-row {
        gap: 0.75rem;
    }

    .svc-faq-item .accordion-button,
    .svc-faq-item .accordion-body {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

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

.jpm-page {
    --jpm-navy: #3c475d;
    --jpm-navy-dark: #3c475d;
    --jpm-navy-mid: #3c475d;
    --jpm-orange: #f97316;
    --jpm-orange-dark: #d95b0d;
    --jpm-orange-light: #fff3e8;
    --jpm-white: #ffffff;
    --jpm-light: #f3f7ff;
    --jpm-border: #dce6f8;
    --jpm-text: #4a5568;
    --jpm-text-dark: #1a2547;
    --jpm-shadow-sm: 0 2px 12px rgba(11, 47, 117, .07);
    --jpm-shadow-md: 0 8px 32px rgba(11, 47, 117, .11);
    --jpm-shadow-lg: 0 20px 56px rgba(11, 47, 117, .14);
    --jpm-radius: 20px;
    --jpm-radius-sm: 12px;
    font-family: 'DM Sans', sans-serif;
    background: linear-gradient(160deg, #f3f7ff 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: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    color: var(--jpm-white);
    border-color: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
}

.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(--hsx-green-dark), var(--hsx-green));
    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(249, 115, 22, .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(135deg, var(--hsx-green-dark), var(--hsx-green));
    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(249, 115, 22, .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;
    }
}

/* Source: assets/css/why-us.css */
.g-5,
.gx-5 {
    --bs-gutter-x: 1.5rem !important;
}

/* ============================================================
   CHOOSE PAGE â€” CSS
   ============================================================ */

/* ---------- CSS Variables ---------- */
.choose-page {
    --cp-blue: #3c475d;
    --cp-blue-dark: #3c475d;
    --cp-orange: #f97316;
    --cp-orange-dark: #d95b0d;
    --cp-white: #ffffff;
    --cp-light: #f3f7ff;
    --cp-border: #d8e4f8;
    --cp-text: #53607d;
    --cp-shadow: 0 18px 48px rgba(11, 47, 117, 0.08);
    --cp-shadow-lg: 0 24px 65px rgba(7, 32, 90, 0.16);

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


/* ============================================================
   SECTION SPACING
   ============================================================ */
.cp-hero,
.cp-section {
    padding: 5rem 0;
}

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

/* ============================================================
   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(249, 115, 22, 0.10);
    border: 1px solid rgba(249, 115, 22, 0.16);
}

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


/* ============================================================
   HERO SECTION
   ============================================================ */
.cp-hero-title {
    color: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    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(--hsx-green-dark), var(--hsx-green));
    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(--hsx-green-dark);
    color: var(--hsx-green-dark);
}

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

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

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


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

.cp-section-title {
    color: var(--hsx-green-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(249, 115, 22, 0.24);
}

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

.cp-feature-card h4 {
    color: var(--hsx-green-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(249, 115, 22, 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;
}

.reviews-shell {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 18px;
    padding: 28px 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.reviews-shell__head {
    margin-bottom: 24px;
}

.reviews-shell__head h3 {
    margin: 0 0 8px;
    font-size: 2rem;
    font-weight: 800;
    color: #183235;
}

.reviews-shell__head p {
    margin: 0;
    color: #5f6f72;
    font-size: 1rem;
}

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

.reviews-empty-state {
    text-align: center;
    background: #fff8ef;
    border: 1px solid #ffd7b0;
    border-radius: 14px;
    padding: 32px 20px;
    margin: 10px 0 20px;
}

.reviews-empty-state h4 {
    margin: 0 0 8px;
    color: #183235;
    font-size: 1.35rem;
    font-weight: 800;
}

.reviews-empty-state p {
    margin: 0;
    color: #5f6f72;
}

/* 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: #0b1f4d;
    --secondary-navy: #3c475d;
    --accent-orange: #f97316;
    --accent-orange-light: #fb923c;
    --accent-orange-dark: #ea580c;
    --light-bg: #f0f4ff;
    --white: #ffffff;
    --text-dark: #3c475d;
    --text-muted: #6b7a99;
    --border-light: #e2e8f0;
    --primary-navy-light: #3c475d;


}



.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: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    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(--hsx-green-dark), var(--hsx-green));
    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: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    border-color: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    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 ========== */



.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  â€”  Home Shifting Packers and Movers
   Bootstrap 5 | Bootstrap Icons | No Inline CSS
   ============================================================ */

/* ============================================================
   about-page.css  â€”  Packers & Movers
   Bootstrap 5 | Bootstrap Icons
   ============================================================ */

/* â”€â”€ Variables â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* About page theme tokens + base page shell */
.about-page {
    --ap-orange: #f97316;
    --ap-orange-dk: #d95b0d;
    --ap-blue: #3c475d;
    --ap-blue-dk: #3c475d;
    --ap-dark: #3c475d;
    --ap-text: #4c5570;
    --ap-light: #f3f7ff;
    --ap-white: #ffffff;
    --ap-border: #dce6f8;
    --ap-radius: 20px;
    --ap-radius-sm: 12px;
    --ap-shadow: 0 16px 48px rgba(11, 47, 117, 0.09);
    --ap-shadow-lg: 0 28px 70px rgba(11, 47, 117, 0.14);
    --ap-transition: all 0.28s ease;
    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(249, 115, 22, 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(249, 115, 22, 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(11, 47, 117, 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(11, 47, 117, 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(249, 115, 22, 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: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    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(249, 115, 22, 0.3);
}

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

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

.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;
        margin-bottom: 40px;

        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;
        margin-bottom: 40px;

    }
}



/* 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: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    border-radius: 2px;
}

.quote-card {
    background: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    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;
}

@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: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    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(135deg, var(--hsx-green-dark), var(--hsx-green));
    padding: 1.5rem 2rem;
    border-bottom: 2px solid #e8621a;
    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-controls {
    background: white !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-controls::placeholder {
    color: #5c7299;
}

.form-controls:focus {
    background: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green)) !important;
    border-color: #e8621a !important;
    box-shadow: 0 0 0 3px rgba(232, 98, 26, 0.18) !important;
    outline: none;
}



.form-control {
    background: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green)) !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: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green)) !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;
}

/* Source: application/modules/services/views/international_country_detail.php */

.intl-country-hero {
    background: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    color: #fff;
}

.intl-country-breadcrumb .breadcrumb-item,
.intl-country-breadcrumb .breadcrumb-item.active,
.intl-country-breadcrumb .breadcrumb-item+.breadcrumb-item::before,
.intl-country-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.intl-country-breadcrumb a {
    text-decoration: none;
}

.intl-country-badge,
.intl-country-section-tag {
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
}

.intl-country-badge {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
}

.intl-country-stat,
.intl-country-panel,
.intl-country-sidebar,
.intl-country-quote-card {
    border-radius: 1.25rem;
}

.intl-country-stat,
.intl-country-panel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 1.25rem;
    backdrop-filter: blur(8px);
}

.intl-country-stat-label {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0.35rem;
}

.intl-country-panel h2 {
    color: #fff;
}

.intl-country-checks li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.intl-country-checks li:last-child {
    margin-bottom: 0;
}

.intl-country-checks i {
    color: #ffb347;
    font-size: 1.05rem;
    margin-top: 0.15rem;
}

.intl-country-content p,
.intl-country-feature-card p {
    color: #5a6473;
    line-height: 1.75;
}

.intl-country-panel p,
.intl-country-quote-copy p {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.75;
}

.intl-country-sidebar {
    background: #f4f7fb;
    padding: 1.5rem;
    border: 1px solid #dbe4ef;
}

.intl-country-destination {
    background: #fff;
    border: 1px solid #d7e3f1;
    border-radius: 0.85rem;
    padding: 0.9rem 1rem;
    text-align: center;
    font-weight: 600;
    color: #123761;
    height: 100%;
}

.intl-country-features {
    background: #f7f9fc;
}

.intl-country-feature-card {
    background: #fff;
    border: 1px solid #dbe4ef;
    border-radius: 1.1rem;
    padding: 1.75rem;
    box-shadow: 0 10px 30px rgba(18, 55, 97, 0.06);
}

.intl-country-feature-icon {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 98, 26, 0.12);
    color: #e8621a;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.intl-country-quote-card {
    overflow: hidden;
    border: 1px solid #dbe4ef;
    box-shadow: 0 18px 45px rgba(18, 55, 97, 0.1);
}

.intl-country-quote-copy {
    background: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    color: #fff;
    padding: 2rem;
}

.intl-country-quote-copy .intl-country-checks span,
.intl-country-quote-copy .intl-country-section-tag {
    color: rgba(255, 255, 255, 0.85);
}

.intl-country-form-wrap {
    background: #fff;
    padding: 2rem;
}

.intl-country-form-wrap .form-label {
    color: #123761;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.intl-country-form-wrap .form-control {
    background: #fff !important;
    color: #1f2937 !important;
    border: 1px solid #cfd8e3 !important;
    padding: 0.9rem 1rem !important;
    box-shadow: none !important;
}

.intl-country-form-wrap .form-control::placeholder {
    color: #8a94a6;
}

.intl-country-form-wrap .form-control:focus {
    border-color: #e8621a !important;
    box-shadow: 0 0 0 0.2rem rgba(232, 98, 26, 0.15) !important;
}

@media (max-width: 991.98px) {

    .intl-country-quote-copy,
    .intl-country-form-wrap {
        padding: 1.5rem;
    }
}

/* .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(135deg, var(--hsx-green-dark), var(--hsx-green)),
}



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

/* ---------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
--------------------------------------------------------------- */
:root {
    --cp-navy: #3c475d;
    --cp-navy-mid: #3c475d;
    --cp-navy-light: #3c475d;
    --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: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    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: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    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. RESPONSIVE OVERRIDES
--------------------------------------------------------------- */
@media (max-width: 767.98px) {
    .cp-why-img {
        min-height: 220px;
    }
}



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

.bread-section {
    position: relative;
    background: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));

    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: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    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;
}



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

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

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







.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(135deg, var(--hsx-green-dark), var(--hsx-green));
    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: #3c475d;
    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: #3c475d;
    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: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    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: #3c475d;
    color: #3c475d;
}

.play-circ {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    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: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    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: #3c475d;
    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: #3c475d;
        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 {
    border-color: #f26522 !important;
    box-shadow: 0 0 0 3px rgba(242, 101, 34, .13) !important;
    outline: none;
}

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


#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: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    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: #3c475d;
    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/footer.php */

:root {
    --bs-navy: #3c475d;
    --bs-orange: #f97316;
}

.bg-navy {
    background-color: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green)) !important;
}

.bg-navy-dark {
    background-color: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green)) !important;
}

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

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

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

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

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

.btn-orange:hover {
    background-color: #d95b0d;
    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: #f97316;
    border-radius: 2px;
}

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

.jpm-footer-links a:hover {
    color: #f97316 !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: #f97316 !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: #f97316;
}

.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: #f97316;
    border-color: #f97316;
}

/* â”€â”€ 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: #3c475d;
    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: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    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: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    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: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    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: #3c475d;
}

/* 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: #3c475d;
    text-decoration: none;
    transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.22s;
}

.portfolio-item:hover .portfolio-arrow {
    background: #3c475d;
    color: #fff;
    border-color: #3c475d;
    transform: rotate(-45deg);
}




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



/* ===== 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: #3c475d;
    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: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    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: #3c475d;
    margin-bottom: 8px;
}

.card-body-custom p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.learn-more-link {
    color: #3c475d;
    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: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    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 100%;
    }
}


/* ===== 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: #3c475d;


    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: #3c475d;
    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;
}

.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: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    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: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    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: #3c475d;
    --accent-orange: #f97316;
    --light-bg: #edf4ff;
    --card-bg: #ffffff;
    --text-dark: #1a1a2e;
    --text-muted: #6b7a99;
    --star-color: #f5a623;
    --icon-bg: #3c475d;
}

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

#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 (Home Shifting)
   ============================== */
:root {
    --navy: #3c475d;
    --navy-dark: #3c475d;
    --navy-mid: #3c475d;
    --orange: #f97316;
    --orange-dark: #d95b0d;
    --orange-light: #ff9a52;
    --white: #ffffff;
    --light-bg: #edf4ff;
    --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(11, 47, 117, 0.09);
    --card-shadow-hover: 0 10px 36px rgba(249, 115, 22, 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(249, 115, 22, 0.12);
    color: var(--orange);
    border: 1.5px solid rgba(249, 115, 22, 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(249, 115, 22, 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(249, 115, 22, 0.12), rgba(249, 115, 22, 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: #0b1f4d;
    --secondary-navy: #3c475d;
    --accent-orange: #f97316;
    --accent-orange-light: #fb923c;
    --accent-orange-dark: #ea580c;
    --light-bg: #f0f4ff;
    --white: #ffffff;
    --text-dark: #3c475d;
    --text-muted: #6b7a99;
    --border-light: #e2e8f0;
}



.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), #3c475d);
    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(--hsx-green-dark), var(--hsx-green));
    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: #0b1f4d;
    --secondary-navy: #3c475d;
    --accent-orange: #f97316;
    --accent-orange-light: #fb923c;
    --accent-orange-dark: #ea580c;
    --light-bg: #f0f4ff;
    --white: #ffffff;
    --text-dark: #3c475d;
    --text-muted: #6b7a99;
    --border-light: #e2e8f0;
}




.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: var(--white);
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 40px rgba(26, 47, 94, 0.08);
    padding: 40px 36px;
}








.contact-form-wrap .form-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary-navy);
    margin-bottom: 6px;
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
    border: 1.5px solid var(--border-light);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--text-dark) !important;
    font-family: 'Nunito', sans-serif;
    transition: border-color 0.25s, box-shadow 0.25s;
    background-color: #fafbff;
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
    background-color: var(--white);
    outline: none;
}

.contact-form-wrap .form-control::placeholder {
    color: #b0b9cc;
    font-size: 0.87rem;
}

.contact-form-wrap textarea.form-control {
    resize: none;
    min-height: 120px;
    background: white !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.3rem;
    color: var(--primary-navy);
    margin-bottom: 6px;
}

.form-section-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* ========== 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(--hsx-green-dark), var(--hsx-green));
    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;
}







.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: #0b1f4d;
    --secondary-navy: #3c475d;
    --accent-orange: #f97316;
    --accent-orange-light: #fb923c;
    --accent-orange-dark: #ea580c;
    --light-bg: #f0f4ff;
    --white: #ffffff;
    --text-dark: #3c475d;
    --text-muted: #6b7a99;
    --border-light: #e2e8f0;
    --primary-navy-light: #3c475d;

}




.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 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(--hsx-green-dark), var(--hsx-green));
    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(--hsx-green-dark), var(--hsx-green));
    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(--hsx-green-dark), var(--hsx-green));
    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 ========== */





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

/* Global navy override */
:root {
    --navy: #0b1f4d !important;
    --navy-dark: #3c475d !important;
    --navy-mid: #3c475d !important;
    --navy-light: #3c475d !important;
    --svc-blue: #3c475d !important;
    --svc-blue-dark: #3c475d !important;
    --jpm-navy: #3c475d !important;
    --jpm-navy-dark: #3c475d !important;
    --jpm-navy-mid: #3c475d !important;
    --cp-blue: #3c475d !important;
    --cp-blue-dark: #3c475d !important;
    --cp-navy: #3c475d !important;
    --cp-navy-mid: #3c475d !important;
    --cp-navy-light: #3c475d !important;
    --primary-navy: #3c475d !important;
    --secondary-navy: #3c475d !important;
    --primary-navy-light: #3c475d !important;
    --ap-blue: #3c475d !important;
    --ap-blue-dk: #3c475d !important;
    --ap-dark: #3c475d !important;
    --jp-blue: #3c475d !important;
    --jp-blue-dark: #3c475d !important;
    --bs-navy: #3c475d !important;
    --primary-blue: #3c475d !important;
    --icon-bg: #3c475d !important;
}

.bg-navy,
.bg-navy-dark,
.fi-blue,
.play-circ,
.trust-bar,
.section-divider,
.portfolio-item:hover .portfolio-arrow,
.card-icon-badge,
.feature-bar,
.step-number-badge,
.svc-ico {
    background: #3c475d !important;
    background-color: #3c475d !important;
    border-color: #3c475d !important;
}

.tagline-badge,
.hero-heading,
.btn-watch:hover,
.hero-ctrl-icon,
.section-header .badge-pill,
.img-badge,
.card-body-custom h5,
.learn-more-link,
.process-label,
.process-main-title,
.cp-text-navy,
.svc-ico,
.portfolio-arrow,
.portfolio-info h4 a:hover {
    color: var(--hsx-green-dark) !important;
}







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

.btn-watch:hover,
.portfolio-item:hover .portfolio-arrow {
    border-color: #3c475d !important;
}

.portfolio-link {
    background: rgba(60, 71, 93, 0.72) !important;
}

.bread-section,
.site-breadcrumb::before,
#breadcrumbs.page_breadcrumbs,
.page_breadcrumbs.ds.parallax {
    background: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green)) !important;
    background-color: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green)) !important;
}

.bread-overlay {
    background: linear-gradient(105deg, rgba(60, 71, 93, 0.22) 0%, rgba(60, 71, 93, 0) 60%) !important;
}

.bread-circle {
    background-color: #ffffff !important;
}

.breadcrumb-title,
.bread-title,
.breadcrumb-menu li.active,
.bread-current,
#breadcrumbs .breadcrumb>.active,
#breadcrumbs .cornered-heading {
    color: #ffffff !important;
}

.breadcrumb-menu li,
.breadcrumb-menu li a,
.bread-link,
#breadcrumbs .breadcrumb li,
#breadcrumbs .breadcrumb li a {
    color: rgba(255, 255, 255, 0.78) !important;
}

.breadcrumb-menu li a:hover,
.bread-link:hover,
#breadcrumbs .breadcrumb li a:hover {
    color: #ffffff !important;
}

.breadcrumb-menu li+li::before,
.bread-list-sep,
#breadcrumbs .breadcrumb>li+li::before {
    color: rgba(255, 255, 255, 0.45) !important;
}

.hero-form-shell .quote-card,
.quote-card {
    background: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green)) !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
    box-shadow: 0 24px 60px rgba(60, 71, 93, 0.34) !important;
}

.q-icon-ring,
#resultquotefrom .alert-success {
    border-color: #3c475d !important;
    color: #3c475d !important;
}

/* Source: shared site refresh styles
   Used by: application/modules/template/views/navigation.php,
   application/modules/template/views/footer.php,
   application/modules/home/views/home.php
*/
:root {
    /* === NEW BRAND PALETTE === */
    --hsx-green: #0B1F4D;
    /* Deep Navy Blue â€” primary brand color */
    --hsx-green-dark: #081640;
    /* Darker Navy for gradients/headers */
    --hsx-orange: #FF6B00;
    /* Bright Orange â€” accents & buttons */
    --hsx-orange-dark: #e05e00;
    /* Darker Orange for hover states */
    --hsx-cream: #F5F5F5;
    /* Light Gray â€” soft section backgrounds */
    --hsx-text: #0B1F4D;
    /* Deep Navy â€” main text */
    --hsx-muted: #333333;
    /* Dark Gray â€” secondary text */
    --hsx-card: #ffffff;
    /* White â€” card backgrounds */
    --hsx-border: #e0e6f0;
    /* Light border */
    --hsx-shadow: 0 20px 50px rgba(11, 31, 77, 0.12);
    /* Aliases for components */
    --accent-orange: #FF6B00;
    --accent-orange-dark: #e05e00;
    --light-bg: #F5F5F5;
    --primary-navy: #0B1F4D;
    --text-muted: #333333;
    --border-light: #e0e6f0;
}



.hsx-topbar {
    background: linear-gradient(90deg, var(--hsx-green-dark), var(--hsx-green));
    color: #fff;
    font-size: 0.93rem;
    padding: 0.75rem 0;
}

.hsx-topbar-link {
    color: rgba(255, 255, 255, 0.92);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
}

.hsx-navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(13, 75, 67, 0.08);
    padding: 0;
    z-index: 9999;
}



.hsx-brand {
    flex-shrink: 0;
}

.hsx-brand img {
    width: auto;
    height: 76px;
}

.hsx-mobile-call {
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 138, 29, 0.14);
    color: var(--hsx-orange-dark);
    text-decoration: none;
}









.hsx-toggler {
    border: none;
    box-shadow: none !important;
    padding: 4px 8px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hsx-toggler i {
    font-size: 22px;
    /* icon size */
    color: #000;
    line-height: 1;
}

/* Cross icon hidden by default */
.hsx-toggler .close-icon {
    display: none;
}

/* When menu opens */
.hsx-toggler[aria-expanded="true"] .menu-icon {
    display: none;
}

.hsx-toggler[aria-expanded="true"] .close-icon {
    display: block;
    font-size: 18px;
    /* cross size smaller */
}

















.hsx-toggler .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='%230d4b43' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 22px;
    height: 22px;
}

.hsx-navbar .nav-link {
    color: var(--hsx-text);
    font-weight: 700;
    padding: 0.85rem 1rem !important;
    position: relative;
}

.hsx-navbar .nav-link.active,
.hsx-navbar .nav-link:hover {
    color: var(--hsx-orange-dark);
}



.hsx-dropdown {
    border: 1px solid rgba(13, 75, 67, 0.08);
    border-radius: 1rem;
    box-shadow: var(--hsx-shadow);
    padding: 0.75rem;
}

.hsx-dropdown .dropdown-item {
    border-radius: 0.75rem;
    padding: 0.5rem 0.8rem;
    font-size: 14px;
    font-weight: 600;
    color: var(--hsx-text);
    display: flex;
    gap: 0.7rem;
}

.hsx-dropdown .dropdown-item:hover {
    background: rgba(11, 31, 77, 0.05);
    color: var(--orange);
}

.hsx-btn {
    border-radius: 1rem;
    padding: 0.9rem 1.35rem;
    font-weight: 800;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

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

.hsx-btn-primary {
    background: linear-gradient(135deg, var(--hsx-orange), var(--hsx-orange-dark));
    color: #fff;
    box-shadow: 0 16px 30px rgba(255, 138, 29, 0.22);
}

.hsx-btn-primary:hover,
.hsx-btn-primary:focus {
    color: #fff;
}

.hsx-btn-dark {
    background: linear-gradient(135deg, var(--hsx-green), var(--hsx-green-dark));
    color: #fff;
}

.hsx-btn-dark:hover,
.hsx-btn-dark:focus {
    color: #fff;
}



.hsx-hero-slide {
    min-height: 710px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hsx-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hsx-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 248, 239, 0.92) 0%, rgba(255, 248, 239, 0.78) 34%, rgba(255, 248, 239, 0.08) 64%, rgba(13, 75, 67, 0.08) 100%),
        linear-gradient(180deg, rgba(13, 75, 67, 0.1), rgba(13, 75, 67, 0.22));
}

.hsx-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 2rem 0;
}

.hsx-eyebrow {
    display: inline-block;
    color: var(--hsx-orange-dark);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.84rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hsx-hero-copy h1 {
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    line-height: 0.98;
    font-weight: 900;
    color: #133539;
    margin-bottom: 1.25rem;
}

.hsx-hero-copy h1 span,
.hsx-section-head h2 span {
    color: var(--hsx-orange-dark);
}

.hsx-hero-copy p {
    max-width: 560px;
    font-size: 1.1rem;
    color: #315056;
    margin-bottom: 1.75rem;
}

.hsx-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}





.hsx-hero-form-shell {
    position: relative;
    z-index: 2;
}

.hsx-hero-form-shell .quote-wrap {
    max-width: 410px;
    margin-left: auto;
}

.hsx-hero-form-shell .quote-card {
    border-radius: 1.6rem;
    padding: 1.6rem;
}

.hsx-hero-form-shell .q-title {
    font-size: 1.2rem;
    letter-spacing: 0.04em;
}

.hsx-hero-form-shell .q-input {
    border-radius: 0.9rem !important;
    min-height: 52px;
}

.hsx-hero-form-shell .btn-submit {
    border-radius: 0.95rem;
}

.hsx-hero-spotlight {
    position: relative;
    z-index: 2;
}

.hsx-spotlight-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.8rem;
    border-radius: 1.75rem;
    box-shadow: var(--hsx-shadow);
}

.hsx-spotlight-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.4rem;
}

.hsx-spotlight-logo img {
    max-width: 220px;
}

.hsx-mini-stat {
    background: #fff;
    border: 1px solid var(--hsx-border);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    height: 100%;
}

.hsx-mini-stat strong {
    color: var(--hsx-green);
    font-size: 1.5rem;
}

.hsx-mini-stat span {
    color: var(--hsx-muted);
    font-size: 0.92rem;
}

.hsx-quote-bar {
    margin-top: -4.6rem;
    position: relative;
    z-index: 4;
    background: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    border-radius: 1.4rem;
    padding: 1.35rem;
    box-shadow: var(--hsx-shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hsx-quote-bar-icon {
    width: 86px;
    height: 86px;
    border: 1px dashed rgba(255, 255, 255, 0.32);
    border-radius: 1.25rem;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--hsx-orange);
    background: rgba(255, 255, 255, 0.04);
}

.hsx-quote-bar-title {
    min-width: 220px;
    color: #fff;
}

.hsx-quote-bar-title h3 {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    font-weight: 800;
}

.hsx-quote-bar-title p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.hsx-input-wrap {
    position: relative;
}

.hsx-input-wrap i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--hsx-green);
    z-index: 2;
}

.hsx-input-wrap .form-control,
.hsx-input-wrap .form-select {
    min-height: 58px;
    border-radius: 1rem;
    padding-left: 2.8rem;
    border: 1px solid rgba(13, 75, 67, 0.1);
    box-shadow: none;
}

.hsx-section {
    padding: 5.5rem 0;
}

.hsx-section-head {
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.hsx-section-head h2,
.hsx-panel-title,
.hsx-why-copy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #123237;
    margin-bottom: 0.8rem;
}

.hsx-section-head p,
.hsx-panel p {
    color: var(--hsx-muted);
    font-size: 1.03rem;
}

.hsx-services {
    background: radial-gradient(circle at top center, rgba(255, 138, 29, 0.09), transparent 28%), #fff;
}

.hsx-service-card {
    background: var(--hsx-card);
    border: 1px solid var(--hsx-border);
    border-radius: 1.35rem;
    padding: 1.7rem 1.2rem;
    text-align: center;
    box-shadow: 0 18px 30px rgba(18, 50, 55, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.hsx-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hsx-shadow);
}

.hsx-service-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 1rem;
    border-radius: 1.4rem;
    background: linear-gradient(145deg, rgba(13, 75, 67, 0.1), rgba(255, 138, 29, 0.12));
    color: var(--hsx-green);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hsx-service-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.hsx-service-card p {
    color: var(--hsx-muted);
    font-size: 0.95rem;
    min-height: 88px;
}

.hsx-service-card a {
    color: var(--hsx-text);
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
}

.hsx-why {
    padding-top: 1rem;
}

.hsx-why-panel {
    border-radius: 1.8rem;
    overflow: hidden;
    box-shadow: var(--hsx-shadow);
}

.hsx-why-copy {
    background: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    color: #fff;
    padding: 2.2rem;
    height: 100%;
}

.hsx-why-copy {
    color: #ffbf7f;
}

.hsx-why-copy h2 {
    color: #fff;
}

.hsx-why-copy ul li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    margin-bottom: 0.9rem;
    font-weight: 600;
}

.hsx-why-copy i {
    color: var(--hsx-orange);
}

@media (max-width: 992px) {
    .hsx-why-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        min-height: 100% !important;
    }

}

@media (max-width: 992px) {
    .img-fluid {
        max-width: 100% !important;
        height: auto;
    }
}


.img-fluid {
    max-width: 199% !important;
    height: auto;
}







.hsx-process {
    background: linear-gradient(180deg, #fff 0%, #f4f8f7 100%);
}

.hsx-process-card {
    background: #fff;
    border: 1px solid var(--hsx-border);
    border-radius: 1.4rem;
    padding: 1.5rem 1.2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 14px 28px rgba(15, 52, 48, 0.06);
}

.hsx-process-no {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--hsx-green);
    color: var(--hsx-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.hsx-process-icon {
    width: 4.5rem;
    height: 4.5rem;
    margin: 1.3rem auto 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 138, 29, 0.12);
    color: var(--hsx-orange-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
}

.hsx-process-card h3 {
    font-size: 1.08rem;
    font-weight: 800;
    margin-bottom: 0.55rem;
}

.hsx-process-card p {
    margin: 0;
    color: var(--hsx-muted);
}

.hsx-metric-card {
    background: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    border-radius: 1.1rem;
    color: #fff;
    padding: 1.25rem;
    text-align: center;
}

.hsx-metric-card strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
}

.hsx-metric-card span {
    color: rgba(255, 255, 255, 0.78);
}

.hsx-panel {
    background: #fff;
    border: 1px solid var(--hsx-border);
    border-radius: 1.6rem;
    padding: 2rem;
    box-shadow: 0 18px 36px rgba(18, 50, 55, 0.06);
    height: 100%;
}

.hsx-review-card {
    background: linear-gradient(180deg, #fff 0%, #fbfcfb 100%);
    border: 1px solid var(--hsx-border);
    border-radius: 1.2rem;
    padding: 1.2rem;
    margin-top: 20px;
}

.hsx-review-head {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    margin-bottom: 0.8rem;
}

.hsx-review-head img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

.hsx-review-head h3 {
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
}

.hsx-stars {
    color: var(--hsx-orange-dark);
    letter-spacing: 0.08em;
}

.hsx-review-card p {
    margin: 0;
    color: var(--hsx-muted);
    font-size: 0.95rem;
}

.hsx-accordion .accordion-item {
    border: 1px solid var(--hsx-border);
    border-radius: 1rem !important;
    overflow: hidden;
    margin-bottom: 0.85rem;
}

.hsx-accordion .accordion-button {
    box-shadow: none !important;
    font-weight: 700;
    color: var(--hsx-text);
    background: #fff;
}

.hsx-accordion .accordion-button:not(.collapsed) {
    color: var(--hsx-green);
    background: rgba(13, 75, 67, 0.06);
}

.hsx-accordion .accordion-body {
    color: var(--hsx-muted);
}





.hsx-footer {
    background: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    padding: 4rem 0 1.5rem;
    color: #fff;
}

.hsx-footer-brand img {
    max-width: 180px;
    margin-bottom: 1rem;
    background-color: white;
    border-radius: 999px;
}

.hsx-footer h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hsx-footer-copy {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

.hsx-footer-links li,
.hsx-footer-contact li {
    margin-bottom: 0.8rem;
}

.hsx-footer-links a,
.hsx-footer-contact a,
.hsx-footer-contact span,
.hsx-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.hsx-footer-links a:hover,
.hsx-footer-contact a:hover,
.hsx-footer-bottom-links a:hover {
    color: #fff;
}

.hsx-footer-contact li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.hsx-footer-contact i {
    color: var(--hsx-orange);
}

.hsx-footer-newsletter {
    display: flex;
    gap: 0.75rem;
}

.hsx-footer-newsletter .form-control {
    min-height: 52px;
    border-radius: 1rem;
    border: 0;
}

.hsx-footer-newsletter .btn {
    min-width: 56px;
    padding-left: 0;
    padding-right: 0;
}

.hsx-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    margin-top: 2.5rem;
    padding-top: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.hsx-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
}

.hsx-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 1199.98px) {
    .hsx-navbar .container {
        min-height: 76px;

    }

    .hsx-navbar.new-navbar .nav-link.active::before,
    .hsx-navbar.new-navbar .nav-link:hover::before {
        display: none;
        /* Hide desktop orange line on mobile */
    }

    .hsx-navbar .navbar-collapse {
        position: fixed;
        top: 76px;
        right: -100%;
        width: min(340px, 92vw);
        height: calc(100vh - 76px);
        background: #fff;
        z-index: 10000;
        padding: 1.5rem 1rem;
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(11, 31, 77, 0.1);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        display: block !important;
        border-radius: 0;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
    }

    .hsx-navbar .navbar-collapse.show {
        right: 0;
        opacity: 1;
        visibility: visible;
    }

    .hsx-navbar .navbar-nav {
        align-items: stretch !important;
        gap: 0.4rem;
    }

    .hsx-navbar.new-navbar .nav-link {
        padding: 0.85rem 1.2rem !important;
        border-bottom: none !important;
        border-radius: 8px;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .hsx-navbar.new-navbar .nav-link:hover,
    .hsx-navbar.new-navbar .nav-link.active {
        background-color: rgba(11, 31, 77, 0.04);
        color: var(--orange) !important;
    }

    .hsx-navbar .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .hsx-navbar .dropdown-toggle::after {
        margin-left: auto;
    }

    .hsx-navbar .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: 0;
        border-radius: 8px;
        padding: 0.5rem;
        margin-top: 0.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
        background: rgba(11, 31, 77, 0.02);
    }

    .hsx-navbar .dropdown-item {
        white-space: normal;
    }

    .hsx-nav-cta {
        padding-top: 1rem;
    }

    .hsx-nav-cta .hsx-btn {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .hsx-navbar .dropdown:hover>.dropdown-menu {
        display: block;
    }


}




/* @media (max-width: 991.98px) {
    .hsx-hero-slide {
        min-height: auto;
        padding: 5rem 0 7rem;
    }

    .hsx-hero-form-shell .quote-wrap {
        margin: 0 auto;
    }

    .hsx-quote-bar {
        margin-top: -2.4rem;
    }

 
} */




@media (max-width: 991.98px) {
    .hsx-hero-slide {
        min-height: auto;
        padding: 3rem 0 3.5rem;
    }

    .hsx-hero-copy h1 {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }

    .hsx-hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(255, 248, 239, 0.88) 0%,
                rgba(255, 248, 239, 0.72) 55%,
                rgba(13, 75, 67, 0.1) 100%);
    }

    .hsx-hero-form-shell .quote-wrap {
        margin: 0 auto;
    }

    .hsx-quote-bar {
        margin-top: -2.4rem;
    }


}








/* 
@media (max-width: 767.98px) {
    .hsx-brand img {
        height: 62px;
    }

    .hsx-hero-copy h1 {
        font-size: 2.5rem;
    }

    .hsx-section {
        padding: 4rem 0;
    }

    .hsx-quote-bar {
        border-radius: 1.1rem;
        padding: 1rem;
    }

    .hsx-service-card p {
        min-height: auto;
    }


    .hsx-footer-newsletter {
        flex-direction: column;
    }
} */



@media (max-width: 767.98px) {
    .hsx-brand img {
        height: 62px;
    }

    .hsx-mobile-call {
        width: 2.65rem;
        height: 2.65rem;
    }

    .hsx-toggler {
        width: 42px;
        height: 42px;
    }

    .hsx-hero-slide {
        min-height: auto;
        padding: 2.5rem 0 3rem;
        align-items: flex-start;
    }

    .hsx-hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(255, 248, 239, 0.93) 0%,
                rgba(255, 248, 239, 0.90) 65%,
                rgba(255, 248, 239, 0.78) 100%);
    }

    .hsx-hero-copy {
        padding: 0;
        max-width: 100%;
    }

    .hsx-eyebrow {
        font-size: 0.75rem;
        margin-bottom: 0.65rem;
    }

    .hsx-hero-copy h1 {
        font-size: clamp(1.75rem, 7vw, 2.2rem);
        line-height: 1.18;
        margin-bottom: 0.85rem;
    }

    .hsx-hero-copy p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .hsx-hero-actions {
        flex-direction: column;
        gap: 0.7rem;
    }

    .hsx-hero-actions .hsx-btn {
        width: 100%;
        justify-content: center;
    }



    .hsx-section {
        padding: 4rem 0;
    }

    .hsx-quote-bar {
        border-radius: 1.1rem;
        padding: 1rem;
    }

    .hsx-service-card p {
        min-height: auto;
    }



    .hsx-footer-newsletter {
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .hsx-navbar .container {
        min-height: 68px;

        gap: 0.75rem;
    }

    .hsx-brand img {
        height: 54px;
    }

    .hsx-navbar .navbar-collapse {
        top: 68px;
        right: -100vw;
        width: 100vw;
        height: calc(100vh - 68px);
        padding: 1rem 0.9rem 1.25rem;
    }

    .hsx-dropdown .dropdown-item {
        font-size: 13px;
        padding: 0.5rem 0.8rem;
    }
}









@media (max-width: 575.98px) {
    .hsx-hero-slide {
        padding: 2rem 0 2.5rem;
    }

    .hsx-hero-copy h1 {
        font-size: 1.7rem;
    }

    .hsx-footer {

        margin-bottom: 40px;
    }



}



:root {
    --teal-light: #0B1F4D;
    --teal-mid: #081640;
    --teal-accent: #0B1F4D;
    --orange: #FF6B00;
    --orange-light: #ff8533;
    --text-light: #e0e6f0;
    --text-muted-teal: #a0aabf;
    --card-bg: #0B1F4D;
    --card-border: #081640;
    --white: #ffffff;
}



.why-section {
    background-color: var(--white);
    padding: 80px 0 90px;
}

.badge-label {
    display: inline-block;
    border: 2px solid var(--orange);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    background-color: var(--orange);
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: 18px;
}

.section-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 14px;
}

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

.section-subtitle {
    color: var(--pm-text-dark);
    font-size: 0.97rem;
    line-height: 1.65;
    max-width: 480px;
    margin-bottom: 0;
}

.feature-card {
    background-color: var(--card-bg);
    border: 1.5px solid var(--card-border);
    border-radius: 14px;
    padding: 28px 26px;
    height: 100%;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(232, 108, 31, 0.15);
}

.icon-box {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 18px;
}

.feature-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.86rem;
    color: var(--white);
    line-height: 1.6;
    margin: 0;
}

.btn-outline-read {
    border: 2px solid var(--orange);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 0.9rem;
    background: var(--orange);
    transition: background 0.2s, color 0.2s, transform 0.15s;
    margin-top: 32px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-outline-read:hover {
    background-color: var(--orange);
    color: var(--white);
    transform: translateX(3px);
}

.img-wrapper {
    position: relative;
}

.truck-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    height: 520px;
    display: block;
}

.stat-card {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
    min-width: 180px;
}

.stat-card.top-left {
    top: -22px;
    left: -28px;
}

.stat-card.bottom-right {
    bottom: -22px;
    right: -28px;
}

.stat-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
}

.stat-num {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

@media (max-width: 991px) {
    .stat-card.top-left {
        top: -16px;
        left: 10px;
    }

    .stat-card.bottom-right {
        bottom: -16px;
        right: 10px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .img-wrapper {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .why-section {
        padding: 64px 0 72px;
    }

    .feature-card {
        padding: 22px 20px;
    }

    .truck-img {
        height: 320px;
    }

    .stat-card {
        position: static;
        width: 100%;
        min-width: 0;
        margin-top: 14px;
    }

    .stat-card.top-left,
    .stat-card.bottom-right {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.92rem;
    }

    .truck-img {
        height: 260px;
    }
}





#reviewCarousel .carousel-control-prev,
#reviewCarousel .carousel-control-next {
    width: 36px;
    height: 36px;
    background: var(--hsx-orange-dark, #e46f00);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    position: absolute;
}

#reviewCarousel .carousel-control-prev {
    left: -18px;
}

#reviewCarousel .carousel-control-next {
    right: -18px;
}

#reviewCarousel .carousel-control-prev-icon,
#reviewCarousel .carousel-control-next-icon {
    width: 16px;
    height: 16px;
}

#reviewCarousel {
    position: relative;
    padding: 0 10px;
}











:root {
    --teal: #0B1F4D;
    --teal-mid: #081640;
    --orange: #FF6B00;
    --orange-dark: #e05e00;
    --orange-light: #ff8533;
    --white: #ffffff;
    --white-10: rgba(255, 255, 255, 0.10);
    --white-18: rgba(255, 255, 255, 0.18);
    --white-30: rgba(255, 255, 255, 0.30);
    --white-55: rgba(255, 255, 255, 0.55);
    --white-65: rgba(255, 255, 255, 0.65);
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --r-modal: 20px;
    --r-input: 10px;
}



/* ===== QUOTE MODAL - Clean Professional Theme ===== */

/* Fix z-index to always appear on top */
#qteModal {
    z-index: 99999 !important;
}

#qteModal .modal-dialog {
    z-index: 99999 !important;
}

.modal-backdrop {
    z-index: 99998 !important;
}

/* Modal wrapper */
.modal-content {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2), 0 8px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
}

/* â”€â”€ HEADER â”€â”€ */
.qte-header {
    background: #fff !important;
    padding: 14px 18px 12px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.qte-icon-badge {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--orange) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff !important;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(232, 93, 4, 0.35);
}

.qte-heading {
    font-size: 16px;
    font-weight: 800;
    color: #111 !important;
    margin: 0;
    line-height: 1.2;
}

.qte-heading span {
    color: var(--orange);
}

.qte-sub {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #999;
    margin: 3px 0 0;
}

/* â”€â”€ CLOSE BUTTON â”€â”€ */
.qte-close-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f5f5f5;
    border: 1.5px solid #e0e0e0;
    color: #555;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.2s;
}

.qte-close-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: rotate(90deg);
}

/* â”€â”€ ORANGE STRIP â”€â”€ */
.qte-strip {
    height: 3px;
    background: var(--orange);
}

/* â”€â”€ BODY â”€â”€ */
.qte-body {
    background: #fff !important;
    padding: 14px 18px;
    position: relative;
}

.qte-body::before,
.qte-body::after {
    display: none;
    /* Remove pseudo-element blobs */
}

/* â”€â”€ SECTION LABELS â”€â”€ */
.qte-section-lbl {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 6px;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.qte-section-lbl i {
    color: var(--orange);
    font-size: 13px;
}

/* â”€â”€ INPUT FIELDS - No Background, Clean Borders â”€â”€ */
.qte-field {
    position: relative;
    margin-bottom: 8px;
}

.qte-field-icon {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    font-size: 12px;
    z-index: 3;
    pointer-events: none;
}

.qte-field.is-textarea .qte-field-icon {
    top: 10px;
    transform: none;
}

.qte-field .form-control {
    background: #ffffff !important;
    /* Force white - no dark tint */
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 8px !important;
    color: #333 !important;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 10px 8px 30px;
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
    z-index: 1;
    box-shadow: none !important;
}

.qte-field .form-control::placeholder {
    color: #bbb !important;
    font-weight: 400;
}

.qte-field .form-control:focus {
    background: #ffffff !important;
    border-color: #e85d04 !important;
    box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.08) !important;
    color: #222 !important;
    outline: none;
}

textarea.form-control {
    resize: none;
}

/* â”€â”€ ROUTE ROW â”€â”€ */
.qte-route-wrap {
    position: relative;
    z-index: 2;
}

.qte-arrow-bubble {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(232, 93, 4, 0.3);
    flex-shrink: 0;
}

/* â”€â”€ FOOTER â”€â”€ */
.qte-footer {
    background: #f8f9fa !important;
    border-top: 1px solid #f0f0f0;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-submit-qte {
    font-weight: 700;
    font-size: 14px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 28px;
    box-shadow: 0 5px 18px rgba(232, 93, 4, 0.35);
    transition: transform 0.18s, box-shadow 0.18s;
    cursor: pointer;
}

.btn-submit-qte:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(232, 93, 4, 0.45);
    color: #fff;
}

.btn-clear-qte {
    font-weight: 600;
    font-size: 13px;
    background: transparent;
    color: #888;
    border: 1.5px solid #ddd;
    border-radius: 50px;
    padding: 10px 20px;
    transition: all 0.18s;
    cursor: pointer;
}

.btn-clear-qte:hover {
    background: #f5f5f5;
    color: #555;
    border-color: #ccc;
}

/* RESULT */
#resultquotemodal {
    position: relative;
    z-index: 2;
}

#resultquotemodal .alert {
    font-size: 0.82rem;
    border-radius: 8px;
    margin: 0.5rem 0 0;
    padding: 0.5rem 0.9rem;
}

/* Source: application/modules/template/views/footer.php */
.hsx-socials {
    display: flex;
    gap: 10px;
}

.hsx-socials a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.hsx-socials a:hover {
    background: #f26522;
    color: #fff;
    transform: translateY(-3px);
}








:root {
    --green-dark: #0d3b2e;
    --green-mid: #155c44;
    --green-light: #1e7a58;
    --orange: #f07b28;
    --cream: #f5f0e8;
    --cream-light: #faf7f2;
    --white: #ffffff;
    --text-dark: #1a2e25;
    --text-muted: #6b7a72;
    --shadow: 0 8px 40px rgba(13, 59, 46, .10);
}

/* Source: application/modules/about/views/testimonials.php */
/* Testimonials page specific styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* â”€â”€ SECTION HEADER â”€â”€ */
.section-badge {
    display: inline-block;
    background: rgba(240, 123, 40, .1);
    color: var(--orange);
    border: 1px solid rgba(240, 123, 40, .3);
    border-radius: 20px;
    padding: 5px 18px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

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

.section-line {
    width: 55px;
    height: 4px;
    background: var(--orange);
    border-radius: 4px;
}

/* â”€â”€ FEATURED CARD â”€â”€ */
.featured-card {
    background: var(--green-dark);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(13, 59, 46, .28);
}

.featured-card .big-quote {
    position: absolute;
    font-size: 240px;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, .04);
    top: -50px;
    left: 10px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.featured-card .orange-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--orange);
}

.featured-card .review-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    line-height: 1.75;
    font-style: italic;
}

.featured-card .stars i {
    color: var(--orange);
}

.featured-card .reviewer-name {
    color: var(--orange);
    font-weight: 700;
}

.featured-card .reviewer-sub {
    color: rgba(255, 255, 255, .55);
    font-size: .82rem;
}

.feat-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.feat-badge {
    background: var(--orange);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    border-radius: 6px;
    padding: 3px 10px;
    letter-spacing: .5px;
}

/* trusted box inside featured */
.trusted-box {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.trusted-box .trust-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--orange);
    font-weight: 800;
}

.trusted-box .trust-lbl {
    color: rgba(255, 255, 255, .6);
    font-size: .82rem;
    margin-top: 2px;
}

/* â”€â”€ WHY US STRIP â”€â”€ */
.why-strip {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.why-item {
    text-align: center;
    padding: 28px 20px;
}

.why-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(240, 123, 40, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.4rem;
    color: var(--orange);
}

.why-title {
    font-weight: 700;
    font-size: .95rem;
    color: var(--text-dark);
}

.why-sub {
    font-size: .8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.why-divider {
    width: 1px;
    background: #e8ede9;
}

/* â”€â”€ TESTI CARDS â”€â”€ */
.testi-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(13, 59, 46, .07);
    padding: 28px;
    height: 100%;
    transition: transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
}

.testi-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #ffa05c);
    border-radius: 0 0 20px 20px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(13, 59, 46, .14);
}

.testi-card:hover::after {
    transform: scaleX(1);
}

.quote-icon {
    color: var(--orange);
    font-size: 2rem;
    line-height: 1;
}

.review-body {
    color: #4e6257;
    font-size: .92rem;
    line-height: 1.78;
}

.stars i {
    color: var(--orange);
    font-size: .88rem;
}

.service-tag {
    display: inline-block;
    background: rgba(13, 59, 46, .07);
    color: var(--green-mid);
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 12px;
    letter-spacing: .4px;
}

.avatar-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .95rem;
    color: #fff;
    flex-shrink: 0;
}

.av-green {
    background: var(--green-mid);
}

.av-orange {
    background: var(--orange);
}

.av-teal {
    background: #2a9d8f;
}

.av-navy {
    background: #264653;
}

.av-rust {
    background: #c1440e;
}

.av-gold {
    background: #e9c46a;
    color: #333;
}

.reviewer-name-sm {
    font-weight: 600;
    font-size: .93rem;
    color: var(--text-dark);
}

.reviewer-city-sm {
    color: var(--text-muted);
    font-size: .78rem;
}

/* â”€â”€ GOOGLE RATING BADGE â”€â”€ */
.rating-showcase {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 36px 32px;
    text-align: center;
}

.big-rating {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
}

.big-stars i {
    color: #facc15;
    font-size: 1.5rem;
}

.rating-bar-wrap {
    font-size: .82rem;
    color: var(--text-muted);
}

.rating-bar {
    height: 7px;
    border-radius: 10px;
    background: #e8e8e8;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--orange), #facc15);
}

/* â”€â”€ VIDEO SECTION â”€â”€ */
.video-section {
    background: var(--green-dark);
}

.video-thumb {
    border-radius: 18px;
    background: var(--green-mid);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .25);
    transition: transform .25s;
}

.video-thumb:hover {
    transform: scale(1.03);
}

.video-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(30, 122, 88, .25), rgba(13, 59, 46, .85));
}

.video-thumb>* {
    position: relative;
    z-index: 1;
}

.play-btn {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 8px 28px rgba(240, 123, 40, .5);
}

.video-name {
    color: #fff;
    font-weight: 600;
    margin-top: 12px;
}

.video-city {
    color: rgba(255, 255, 255, .6);
    font-size: .8rem;
}

/* â”€â”€ CTA â”€â”€ */
.cta-strip {
    background: var(--green-dark);
    border-radius: 24px;
    padding: 52px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(240, 123, 40, .08);
    top: -130px;
    right: -80px;
}

.cta-strip::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .03);
    bottom: -80px;
    left: -60px;
}

.cta-strip>* {
    position: relative;
    z-index: 1;
}

.cta-strip h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 2.1rem;
    font-weight: 800;
}

.cta-strip p {
    color: rgba(255, 255, 255, .68);
}

.btn-cta-main {
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    padding: .75rem 2rem;
    border: none;
    font-size: .98rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s;
}

.btn-cta-main:hover {
    background: #d96a18;
    color: #fff;
}

.btn-cta-out {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .28);
    border-radius: 8px;
    padding: .75rem 2rem;
    font-weight: 600;
    font-size: .98rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color .2s;
}

.btn-cta-out:hover {
    border-color: #fff;
    color: #fff;
}

/* â”€â”€ FOOTER â”€â”€ */

/* â”€â”€ ANIMATIONS â”€â”€ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

.fade-up {
    animation: fadeUp .65s ease both;
}

.d1 {
    animation-delay: .1s;
}

.d2 {
    animation-delay: .2s;
}

.d3 {
    animation-delay: .3s;
}

.d4 {
    animation-delay: .4s;
}

.d5 {
    animation-delay: .5s;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
}





.iba-letter-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--svc-shadow-lg);
    border: 2px solid var(--svc-border);
}

.iba-letter-img {
    width: 100%;
    display: block;
    border-radius: 14px;
}

.iba-letter-badge {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    color: #fff;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(8, 58, 52, .3);
}

/* Source: application/modules/services/views/iba_approved_transport.php */
/* Stats row below description */
.iba-stat-row {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.iba-stat-item {
    flex: 1;
    min-width: 100px;
    background: var(--svc-light);
    border: 1px solid var(--svc-border);
    border-radius: 14px;
    padding: 1rem;
    text-align: center;
}

.iba-stat-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--hsx-green);
    line-height: 1.1;
}

.iba-stat-item span {
    font-size: .78rem;
    color: var(--svc-text);
    margin-top: 4px;
    display: block;
}

/* Accreditation Carousel */
.iba-carousel-wrap {
    position: relative;
    overflow: hidden;
}

.iba-carousel {
    display: flex;
    gap: 1.25rem;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

.iba-letter-card {
    min-width: calc(33.333% - 0.84rem);
    background: #fff;
    border: 1.5px solid var(--svc-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--svc-shadow);
    flex-shrink: 0;
    transition: transform .25s, box-shadow .25s;
}

.iba-letter-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--svc-shadow-lg);
}

.iba-letter-img-box {
    height: 260px;
    overflow: hidden;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--svc-border);
}

.iba-letter-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.iba-letter-card:hover .iba-letter-img-box img {
    transform: scale(1.04);
}

.iba-letter-info {
    padding: 1rem 1.1rem;
}

.iba-bank-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--hsx-orange-dark);
    background: rgba(255, 138, 29, .1);
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 6px;
}

.iba-route {
    font-weight: 700;
    font-size: .97rem;
    color: var(--svc-blue-dark);
    margin: 0;
}

.iba-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.iba-carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: opacity .2s, transform .2s;
    box-shadow: 0 4px 14px rgba(8, 58, 52, .25);
}

.iba-carousel-btn:hover {
    opacity: .88;
    transform: scale(1.07);
}

.iba-carousel-btn:disabled {
    opacity: .35;
    cursor: default;
    transform: none;
}

.iba-carousel-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.iba-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--svc-border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}

.iba-dot.active {
    background: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    transform: scale(1.3);
}

/* Service Tags */
.iba-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: .5rem;
}

.iba-tag {
    display: inline-flex;
    align-items: center;
    padding: .55rem 1.1rem;
    border: 1.5px solid var(--svc-border);
    border-radius: 999px;
    color: var(--svc-blue-dark);
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    background: #fff;
    transition: all .22s ease;
}

.iba-tag:hover {
    background: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(8, 58, 52, .2);
}

/* Video Section */
.iba-video-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--svc-shadow-lg);
    border: 2px solid var(--svc-border);
}

.iba-video-wrap .ratio {
    border-radius: 18px 18px 0 0;
    overflow: hidden;
}

.iba-video-caption {
    background: linear-gradient(135deg, var(--hsx-green-dark), var(--hsx-green));
    color: #fff;
    padding: .85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .88rem;
    font-weight: 600;
}

.iba-video-caption i {
    font-size: 1.3rem;
    color: var(--hsx-orange);
}

/* Responsive */
@media (max-width: 767px) {
    .iba-letter-card {
        min-width: calc(85% - 0.5rem);
    }

    .iba-stat-row {
        gap: .6rem;
    }

    .iba-stat-item strong {
        font-size: 1.2rem;
    }
}

@media (max-width: 575px) {
    .iba-letter-card {
        min-width: 88%;
    }
}

/* Source: application/modules/services/views/international_Packers.php */
.intl-presence-section {
    padding: 60px 0 80px;
    background: #f8f9fb;
}

.intl-kicker {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hsx-orange-dark);
    margin-bottom: 6px;
}

.intl-title {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #1a2535;
    margin-bottom: 32px;
    line-height: 1.25;
}

.intl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.intl-city-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border: 1px solid #e4e8f0;
    border-radius: 10px;
    padding: 14px 16px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.intl-city-card:hover {
    box-shadow: 0 8px 28px rgba(13, 75, 67, 0.12);
    border-color: rgba(13, 75, 67, 0.25);
    transform: translateY(-3px);
    text-decoration: none;
    color: inherit;
}

.intl-city-card:hover .intl-city-name {
    color: var(--hsx-green);
}

.intl-map-thumb {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #d0dae8;
}

.intl-map-thumb svg {
    width: 100%;
    height: 100%;
    display: block;
}

.intl-city-info {
    flex: 1;
    min-width: 0;
}

.intl-city-label {
    display: block;
    font-size: 0.75rem;
    color: #777e8e;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.intl-city-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2535;
    margin: 0;
    transition: color 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 991px) {
    .intl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .intl-grid {
        grid-template-columns: 1fr;
    }

    .intl-presence-section {
        padding: 40px 0 56px;
    }
}




/* Source: application/modules/services/views/iba_approved_packers.php
   Additional styles for the IBA Approved Packers page.
   All base svc-* component styles come from package.css.
*/

/* Feature cards inside the fraud detection section use h5 for card titles.
   The base svc-feature-card does not define h5, so we add it here. */
.svc-feature-card h5 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--svc-blue-dark);
    margin-bottom: .55rem;
    line-height: 1.4;
}

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

/* IBA badge â€” small certification indicator used optionally in content */
.iba-certified-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(249, 115, 22, .08);
    border: 1.5px solid rgba(249, 115, 22, .25);
    border-radius: 999px;
    padding: .4rem 1rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--svc-orange);
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* Responsive â€” chip row stacks tighter on small screens */
@media (max-width: 575px) {
    .svc-chip-row span {
        font-size: .82rem;
    }
}







/* â”€â”€ Sticky Bottom Bar â”€â”€ */
.hsx-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

@media (max-width: 768px) {
    .hsx-sticky-bar {
        display: flex;
    }
}

.hsx-sticky-call,
.hsx-sticky-wa {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
}

.hsx-sticky-call {
    background: var(--orange);
}

.hsx-sticky-wa {
    background: #25d366;
    flex-direction: row;
    gap: 8px;
}

@keyframes shakeIcon {

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

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-10deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(10deg);
    }
}

.hsx-sticky-call i,
.hsx-sticky-wa i {
    animation: shakeIcon 3s infinite ease-in-out;
}

.hsx-sticky-wa-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.hsx-sticky-wa-num {
    display: block;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.2;
}

/* â”€â”€ Navbar Blinking WhatsApp â”€â”€ */
.hsx-nav-wa {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: orange;
    font-size: 22px;
    text-decoration: none;
}

.hsx-nav-wa::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.45);
    animation: wa-pulse 1.4s ease-out infinite;
    pointer-events: none;
}

@keyframes wa-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    70% {
        transform: translate(-50%, -50%) scale(2.4);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}







/* =============================================
   PACKERS & MOVERS â€” Complete Page CSS
   File: assets/css/packers-movers.css
   Theme: Green (#1a6b3a primary) + Orange (#e85d04 accent)
   ============================================= */

/* ---- Base Reset ---- */








/* =============================================
   THEME VARIABLES
   ============================================= */
:root {
    --pm-primary: #0d3b2e;
    --pm-primary-mid: #1a5c42;
    --pm-primary-light: #2e7d52;
    --pm-accent: #f47c20;
    --pm-accent-dark: #d4640e;
    --pm-bg-light: #eef2f7;
    --pm-bg-alt: #f0f6f2;
    --pm-card-bg: #ffffff;
    --pm-border: #ccddd5;
    --pm-text-dark: #0d3b2e;
    --pm-text-body: #4a5568;
    --pm-text-muted: #718096;
}

.pm-section,
.pm-hero,
.pm-faq-section,
.pm-cta {
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 17px;
    /* base font size increased */
}

/* =============================================
   HERO SECTION
   ============================================= */
.pm-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 48px 0 40px;
    border-bottom: 1px solid var(--pm-border);
}

.pm-hero__text {
    flex: 1;
    min-width: 0;
}

.pm-hero__title {
    font-size: 34px;
    /* was 26px */
    font-weight: 700;
    color: var(--pm-primary);
    line-height: 1.35;
    margin: 0 0 18px;
}

.pm-hero__desc {
    font-size: 18px;
    /* was 15px */
    color: var(--pm-text-body);
    line-height: 1.8;
    margin: 0 0 14px;
}

.pm-hero__image {
    flex: 0 0 420px;
    max-width: 420px;
}

.pm-hero__image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

/* =============================================
   BUTTONS
   ============================================= */
.pm-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--pm-accent);
    color: #fff;
    font-size: 17px;
    /* was 15px */
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 10px;
    transition: background 0.2s;
}

.pm-btn:hover {
    background: var(--pm-accent-dark);
    color: #fff;
    text-decoration: none;
}

.pm-btn--primary {
    background: var(--pm-accent);
    color: #fff;
}

.pm-btn--primary:hover {
    background: var(--pm-accent-dark);
}

.pm-btn--outline {
    background: transparent;
    color: var(--pm-accent);
    border: 2px solid var(--pm-accent);
    margin-left: 12px;
}

.pm-btn--outline:hover {
    background: var(--pm-accent);
    color: #fff;
}

/* =============================================
   SECTIONS â€” COMMON
   ============================================= */
.pm-section {
    padding: 52px 0 44px;
    border-bottom: 1px solid #eef2f7;
}

.pm-section--alt {
    background: var(--pm-bg-alt);
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
}

.pm-section__title {
    font-size: 32px;
    /* was 24px */
    font-weight: 700;
    color: var(--pm-primary);
    margin: 0 0 10px;
    line-height: 1.3;
}

.pm-section__subtitle {
    font-size: 18px;
    /* was 15px */
    color: var(--pm-text-muted);
    margin: 0 0 32px;
    line-height: 1.7;
}

/* =============================================
   WHY CHOOSE US â€” 3 CARDS
   ============================================= */
.pm-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pm-why-card {
    background: var(--pm-card-bg);
    border: 1px solid var(--pm-border);
    border-top: 3px solid var(--pm-primary-light);
    border-radius: 10px;
    padding: 28px 22px;
    transition: box-shadow 0.2s;
}

.pm-why-card:hover {
    box-shadow: 0 4px 18px rgba(13, 59, 46, 0.12);
}

.pm-why-card__icon {
    width: 56px;
    height: 56px;
    background: var(--pm-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    /* was 24px */
    margin-bottom: 16px;
}

.pm-why-card h3 {
    font-size: 20px;
    /* was 17px */
    font-weight: 700;
    color: var(--pm-primary);
    margin: 0 0 10px;
}

.pm-why-card p {
    font-size: 16px;
    /* was 14px */
    color: var(--pm-text-body);
    line-height: 1.75;
    margin: 0;
}

/* =============================================
   PROCESS / FEATURE CARDS (4-column like screenshot)
   ============================================= */
.pm-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pm-feature-card {
    background: var(--pm-card-bg);
    border-radius: 14px;
    padding: 28px 20px;
    box-shadow: 0 2px 12px rgba(13, 59, 46, 0.07);
    transition: box-shadow 0.2s, transform 0.2s;
}

.pm-feature-card:hover {
    box-shadow: 0 6px 24px rgba(13, 59, 46, 0.13);
    transform: translateY(-2px);
}

.pm-feature-card__icon {
    width: 58px;
    height: 58px;
    background: var(--pm-accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    /* was 26px */
    margin-bottom: 16px;
    color: #fff;
}

.pm-feature-card h3 {
    font-size: 19px;
    /* was 16px */
    font-weight: 700;
    color: var(--pm-primary);
    margin: 0 0 8px;
}

.pm-feature-card p {
    font-size: 16px;
    /* was 13px */
    color: var(--pm-text-body);
    line-height: 1.75;
    margin: 0;
}

/* =============================================
   SERVICES GRID
   ============================================= */
.pm-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.pm-service-item {
    background: var(--pm-card-bg);
    border: 1px solid var(--pm-border);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.pm-service-item:hover {
    box-shadow: 0 4px 18px rgba(13, 59, 46, 0.12);
}

.pm-service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.pm-service-item__body {
    padding: 18px 18px 20px;
}

.pm-service-item__body h3 {
    font-size: 19px;
    /* was 16px */
    font-weight: 700;
    color: var(--pm-primary);
    margin: 0 0 8px;
}

.pm-service-item__body p {
    font-size: 16px;
    /* was 13px */
    color: var(--pm-text-body);
    line-height: 1.75;
    margin: 0;
}

/* =============================================
   STORY SECTION
   ============================================= */
.pm-story {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    background: var(--pm-bg-alt);
    border: 1px solid #a8d5bc;
    border-radius: 12px;
    padding: 32px;
}

.pm-story__image {
    flex: 0 0 360px;
}

.pm-story__image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

.pm-story__content {
    flex: 1;
    min-width: 0;
}

.pm-story__tag {
    font-size: 14px;
    /* was 12px */
    font-weight: 700;
    color: var(--pm-primary-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.pm-story__content p {
    font-size: 17px;
    /* was 15px */
    color: #444;
    line-height: 1.8;
    margin: 0 0 14px;
}

.pm-story__points {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.pm-story__points li {
    font-size: 16px;
    /* was 14px */
    color: #333;
    padding: 5px 0;
    font-weight: 500;
}

/* =============================================
   PRICING TABLE
   ============================================= */
.pm-pricing-table-wrap {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid var(--pm-border);
    margin-bottom: 14px;
}

.pm-pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    /* was 14px */
    background: var(--pm-card-bg);
}

.pm-pricing-table thead tr {
    background: var(--pm-primary);
    color: #fff;
}

.pm-pricing-table th {
    padding: 16px 20px;
    /* was 14px 18px */
    font-weight: 600;
    text-align: left;
    font-size: 15px;
    /* was 13px */
    letter-spacing: 0.02em;
}

.pm-pricing-table tbody tr {
    border-bottom: 1px solid #edf7f1;
    transition: background 0.15s;
}

.pm-pricing-table tbody tr:hover {
    background: var(--pm-bg-alt);
}

.pm-pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pm-pricing-table td {
    padding: 15px 20px;
    /* was 13px 18px */
    color: #333;
    line-height: 1.5;
    font-size: 16px;
}

.pm-pricing-table td:nth-child(2) {
    font-weight: 700;
    color: var(--pm-accent);
}

.pm-pricing-note {
    font-size: 15px;
    /* was 13px */
    color: #666;
    background: var(--pm-bg-alt);
    border-left: 3px solid var(--pm-primary-light);
    padding: 12px 16px;
    border-radius: 0 6px 6px 0;
}

/* =============================================
   REVIEWS
   ============================================= */
.pm-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.pm-review-card {
    background: var(--pm-card-bg);
    border: 1px solid var(--pm-border);
    border-radius: 10px;
    padding: 24px;
}

.pm-review-card__stars {
    font-size: 22px;
    /* was 18px */
    color: var(--pm-accent);
    margin-bottom: 10px;
}

.pm-review-card__text {
    font-size: 16px;
    /* was 14px */
    color: #444;
    line-height: 1.75;
    margin: 0 0 16px;
    font-style: italic;
}

.pm-review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #edf7f1;
    padding-top: 14px;
}

.pm-review-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--pm-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    /* was 14px */
    flex-shrink: 0;
}

.pm-review-card__author strong {
    display: block;
    font-size: 16px;
    /* was 14px */
    color: var(--pm-primary);
}

.pm-review-card__author span {
    font-size: 14px;
    /* was 12px */
    color: var(--pm-text-muted);
}

/* =============================================
   HOW IT WORKS â€” STEPS
   ============================================= */
.pm-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 36px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.pm-step {
    flex: 1;
    min-width: 180px;
    background: var(--pm-card-bg);
    border: 1px solid var(--pm-border);
    border-radius: 10px;
    padding: 24px 20px;
    position: relative;
}

.pm-step__number {
    font-size: 44px;
    /* was 36px */
    font-weight: 900;
    color: var(--pm-primary-light);
    line-height: 1;
    margin-bottom: 14px;
    font-family: 'Georgia', serif;
}

.pm-step h3 {
    font-size: 19px;
    /* was 16px */
    font-weight: 700;
    color: var(--pm-primary);
    margin: 0 0 10px;
}

.pm-step p {
    font-size: 16px;
    /* was 13px */
    color: var(--pm-text-body);
    line-height: 1.75;
    margin: 0;
}

.pm-step__connector {
    flex: 0 0 28px;
    height: 2px;
    background: var(--pm-accent);
    align-self: center;
    margin-top: -30px;
}

.pm-steps-image {
    margin-top: 0;
}

.pm-steps-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    object-fit: cover;
    max-height: 280px;
}

/* =============================================
   PACKING MATERIALS
   ============================================= */
.pm-materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pm-material-card {
    background: var(--pm-card-bg);
    border: 1px solid var(--pm-border);
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
}

.pm-material-card__icon {
    width: 56px;
    height: 56px;
    background: var(--pm-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    /* was 26px */
    margin: 0 auto 14px;
    color: #fff;
}

.pm-material-card h3 {
    font-size: 18px;
    /* was 15px */
    font-weight: 700;
    color: var(--pm-primary);
    margin: 0 0 8px;
}

.pm-material-card p {
    font-size: 16px;
    /* was 13px */
    color: var(--pm-text-body);
    line-height: 1.7;
    margin: 0;
}

/* =============================================
   TRUST STATS (Dark Section)
   ============================================= */
.pm-section--dark {
    background: var(--pm-primary);
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
}

.pm-trust {
    display: flex;
    align-items: center;
    gap: 48px;
}

.pm-trust__image {
    flex: 0 0 400px;
}

.pm-trust__image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.pm-trust__content {
    flex: 1;
}

.pm-trust__content h2 {
    font-size: 32px;
    /* was 26px */
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px;
}

.pm-trust__content p {
    font-size: 18px;
    /* was 15px */
    color: #a8d5bc;
    line-height: 1.8;
    margin: 0 0 28px;
}

.pm-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.pm-stat {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pm-stat__number {
    font-size: 40px;
    /* was 32px */
    font-weight: 900;
    color: var(--pm-accent);
    line-height: 1;
}

.pm-stat__label {
    font-size: 16px;
    /* was 13px */
    color: #c8e6d4;
    font-weight: 500;
}

/* =============================================
   TIPS SECTION
   ============================================= */
.pm-tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.pm-tip {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--pm-card-bg);
    border: 1px solid var(--pm-border);
    border-radius: 10px;
    padding: 22px 20px;
}

.pm-tip__num {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: var(--pm-accent);
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    /* was 16px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.pm-tip h4 {
    font-size: 18px;
    /* was 15px */
    font-weight: 700;
    color: var(--pm-primary);
    margin: 0 0 6px;
}

.pm-tip p {
    font-size: 16px;
    /* was 13px */
    color: var(--pm-text-body);
    line-height: 1.75;
    margin: 0;
}

/* =============================================
   CTA SECTION
   ============================================= */
.pm-cta {
    background: linear-gradient(135deg, var(--pm-accent) 0%, var(--pm-accent-dark) 100%);
    margin-left: -15px;
    margin-right: -15px;
    padding: 52px 15px;
    text-align: center;
    border-bottom: none;
}

.pm-cta__inner h2 {
    font-size: 36px;
    /* was 28px */
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}

.pm-cta__inner p {
    font-size: 19px;
    /* was 16px */
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 28px;
    line-height: 1.7;
}

.pm-cta .pm-btn--primary {
    background: #fff;
    color: var(--pm-accent);
}

.pm-cta .pm-btn--primary:hover {
    background: #f5f5f5;
}

.pm-cta .pm-btn--outline {
    border-color: #fff;
    color: #fff;
    margin-left: 14px;
}

.pm-cta .pm-btn--outline:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* =============================================
   FAQ SECTION
   ============================================= */
.pm-faq-section {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    padding: 48px 0 40px;
}

.pm-faq-media {
    flex: 0 0 380px;
    max-width: 380px;
    position: sticky;
    top: 100px;
}

.pm-faq-media img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    margin-bottom: 18px;
}

.pm-faq-media__badge {
    background: var(--pm-bg-alt);
    border: 1px solid #a8d5bc;
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pm-faq-media__badge span {
    font-size: 16px;
    /* was 14px */
    color: var(--pm-primary);
    font-weight: 500;
}

.pm-faq-content {
    flex: 1;
    min-width: 0;
}

.pm-faq-content h2 {
    font-size: 30px;
    /* was 24px */
    font-weight: 700;
    color: var(--pm-primary);
    margin: 0 0 24px;
}

.pm-faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* =============================================
   FAQ Accordion
   ============================================= */
.pm-faq-item {
    border: 1px solid #e0ede6;
    border-radius: 10px;
    margin-bottom: 12px;
    padding: 0;
    background: var(--pm-card-bg);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.pm-faq-item:last-child {
    border-bottom: 1px solid #e0ede6;
}

.pm-faq-item.faq-open {
    border-color: var(--pm-primary-light);
    box-shadow: 0 2px 12px rgba(13, 59, 46, 0.10);
    background: var(--pm-bg-alt);
}

.pm-faq-item h3 {
    font-size: 17px;
    /* was 15px */
    font-weight: 700;
    color: var(--pm-primary);
    margin: 0;
    padding: 20px 22px;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pm-faq-item h3::after {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232e7d52' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.3s ease;
}

.pm-faq-item.faq-open h3::after {
    transform: rotate(180deg);
}

.pm-faq-item p {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
    margin: 0;
    font-size: 16px;
    /* was 14px */
    color: var(--pm-text-body);
    line-height: 1.8;
}

.pm-faq-item.faq-open p {
    max-height: 300px;
    padding: 0 22px 20px;
}

/* =============================================
   GOOGLE MAP
   ============================================= */
.city-map-section {
    padding: 40px 0 20px;
}

.city-map-section h2 {
    font-size: 28px;
    /* was 22px */
    font-weight: 700;
    color: var(--pm-primary);
    margin: 0 0 18px;
}

.city-map-frame {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--pm-border);
}

.city-map-frame iframe {
    border: 0;
}

/* =============================================
   RESPONSIVE â€” TABLET
   ============================================= */
@media (max-width: 900px) {
    .pm-hero {
        flex-direction: column;
        gap: 24px;
    }

    .pm-hero__image {
        flex: none;
        max-width: 100%;
    }

    .pm-why-grid,
    .pm-services-grid,
    .pm-materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pm-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pm-steps {
        flex-direction: column;
        gap: 16px;
    }

    .pm-step__connector {
        width: 2px;
        height: 24px;
        align-self: auto;
        margin: 0 0 0 28px;
    }

    .pm-trust {
        flex-direction: column;
        gap: 24px;
    }

    .pm-trust__image {
        flex: none;
        max-width: 100%;
    }

    .pm-faq-section {
        flex-direction: column;
        gap: 24px;
    }

    .pm-faq-media {
        flex: none;
        max-width: 100%;
        position: static;
    }

    .pm-story {
        flex-direction: column;
        gap: 20px;
    }

    .pm-story__image {
        flex: none;
    }

    .pm-reviews-grid {
        grid-template-columns: 1fr;
    }

    .pm-tips-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   RESPONSIVE â€” MOBILE
   ============================================= */
@media (max-width: 600px) {
    .pm-hero__title {
        font-size: 26px;
    }

    /* was 20px */
    .pm-section__title {
        font-size: 24px;
    }

    /* was 20px */
    .pm-cta__inner h2 {
        font-size: 26px;
    }

    .pm-trust__content h2 {
        font-size: 24px;
    }

    .pm-why-grid,
    .pm-services-grid,
    .pm-materials-grid,
    .pm-feature-grid {
        grid-template-columns: 1fr;
    }

    .pm-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pm-cta__buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .pm-btn--outline {
        margin-left: 0;
    }
}


/*form styles*/


:root {
    --dark-green: #1a3c34;
    --mid-green: #204d3f;
    --accent: #f07020;
    --accent-hover: #d45e10;
    --text-light: #ffffff;
    --text-muted: #a8bfb9;
    --input-bg: #ffffff;
    --border-radius-card: 18px;
    --border-radius-btn: 12px;
    --border-radius-field: 12px;
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.35);
}



/* â”€â”€ Quote Card â”€â”€ */
.quote-card {
    background: linear-gradient(160deg, var(--mid-green) 0%, var(--dark-green) 100%);
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-card);
    padding: 1rem 2rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: -20px;
    max-width: 1750px;
}

/* subtle noise texture overlay */
.quote-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
}

/* decorative dashed send-icon trail */
.send-icon {
    position: absolute;
    top: 1.1rem;
    right: 1.5rem;
    opacity: 0.55;
    font-size: 1.6rem;
    color: var(--text-light);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(-10deg);
    }

    50% {
        transform: translateY(-5px) rotate(-10deg);
    }
}

/* decorative icons left side */
.deco-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.deco-icons .deco-icon {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
}

.deco-icons .deco-line {
    width: 1.5px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
}

/* â”€â”€ Card Header â”€â”€ */
.card-heading {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
    margin-bottom: 1.2rem;
    padding-left: 0.25rem;
}

/* â”€â”€ Form Fields â”€â”€ */
.field-box {
    background: var(--input-bg);
    border-radius: var(--border-radius-field);
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border: 2px solid transparent;
    transition: border-color 0.25s, box-shadow 0.25s;
    cursor: pointer;
    height: 100%;
    min-height: 68px;
}

.field-box:hover,
.field-box:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(240, 112, 32, 0.15);
}

.field-icon {
    font-size: 1.4rem;
    color: var(--dark-green);
    flex-shrink: 0;
}

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

.field-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #1a3c34;
    line-height: 1.2;
    margin-bottom: 2px;
}

.field-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    color: #666;
    width: 100%;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

.field-input::placeholder {
    color: #aaa;
}

.field-select {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.field-select option {
    background: #083a34;
    color: #fff;
    font-size: 15px;
}


.field-chevron {
    font-size: 0.9rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* â”€â”€ CTA Button â”€â”€ */
.btn-quote {
    background: var(--accent);
    border: none;
    border-radius: var(--border-radius-btn);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    padding: 0 1.5rem;
    height: 100%;
    min-height: 68px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
    width: 100% !important;
    cursor: pointer;
}

.btn-quote:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(240, 112, 32, 0.45);
}

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

.btn-quote i {
    font-size: 1rem;
}

/* â”€â”€ Responsive Overrides â”€â”€ */
@media (max-width: 991.98px) {
    .quote-card {
        padding: 1.5rem 1.25rem;
    }

    .deco-icons {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .card-heading {
        font-size: 1.05rem;
        margin-bottom: 1rem;
    }

    .field-box,
    .btn-quote {
        min-height: 60px;
    }

    .btn-quote {
        font-size: 1rem;
        padding: 0.85rem;
    }
}


/* =============================================
   citypage BREADCRUMB (Dark Hero Section)
   ============================================= */

.pm-service-breadcrumb {
    position: relative;
    overflow: hidden;
    padding: 72px 0 32px;
    background: lightgreen
}

.pm-service-breadcrumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.84), rgba(15, 23, 42, 0.52));
}

.pm-service-breadcrumb__content,
.pm-service-breadcrumb .quote-card {
    position: relative;
    z-index: 1;
}

.pm-service-breadcrumb__content {
    color: #fff;
}

.pm-service-breadcrumb__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.pm-service-breadcrumb__title {
    margin-bottom: 14px;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
}

.pm-service-breadcrumb__desc {
    max-width: 640px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
}

.pm-service-breadcrumb__nav .breadcrumb {
    margin-bottom: 0;
    padding: 0;
    background: transparent;
}

.pm-service-breadcrumb__nav .breadcrumb-item,
.pm-service-breadcrumb__nav .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.pm-service-breadcrumb__nav .breadcrumb-item.active {
    color: #fff;
}

.pm-service-breadcrumb__nav .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.pm-service-breadcrumb .quote-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
}

.pm-service-breadcrumb #resultquotefrom {
    position: relative;
    z-index: 1;
}

@media (max-width: 991.98px) {
    .pm-service-breadcrumb {
        padding: 56px 0 24px;
    }

    .pm-service-breadcrumb__content {
        margin-bottom: 24px;
    }
}

/* Hero Section Redesign */
.hero-redesign {
    background-color: #fcf4ed;
    position: relative;
    padding: 40px 0 40px;
    background-image: url('../images/slider/slider.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-redesign::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 45%, rgba(255, 255, 255, 0.4) 70%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.hero-small-title {
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
    text-transform: uppercase;
}

.hero-redesign h1 {
    font-size: 38px;
    font-weight: 900;
    color: #111;
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-redesign h1 span {
    color: var(--orange);
}

.hero-redesign p {
    font-size: 14px;
    color: #333;
    max-width: 450px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.hero-feature-item {
    text-align: center;
    background: #fff;
    padding: 10px 5px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    flex: 1;
    max-width: 90px;
}

.hero-feature-item .icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    color: #111;
    font-size: 16px;
}

.hero-feature-item:nth-child(1) .icon {
    color: var(--orange);
}

.hero-feature-item:nth-child(2) .icon {
    color: var(--orange);
}

.hero-feature-item:nth-child(3) .icon {
    color: #111;
}

.hero-feature-item:nth-child(4) .icon {
    color: #111;
}

.hero-feature-item span {
    font-size: 10px;
    font-weight: 700;
    color: #333;
    display: block;
    line-height: 1.2;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-hero-primary {
    background-color: var(--orange);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary:hover {
    background-color: var(--orange-dark, #e05e00);
    color: #fff;
}

.watch-video {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.watch-video .play-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding-left: 2px;
    transition: 0.3s;
}

.watch-video:hover .play-icon {
    background-color: var(--orange);
    color: #fff;
}

.watch-video small {
    display: block;
    color: #666;
    font-size: 11px;
    font-weight: 400;
}

/* Form Container Overlay */
.hero-form-container {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .hero-redesign {
        padding: 15px 0 30px;
    }

    .hero-features {
        background: #fff;
        padding: 12px 8px;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        justify-content: space-between;
        gap: 5px;
        margin-bottom: 15px;
    }

    .stats-redesign {
        margin-top: 20px;
        padding: 20px 0;
        background-color: #fff;
    }

    .hero-feature-item {
        flex: 1;
    }

    .hero-feature-item span {
        font-size: 9px;
    }

    .hero-feature-item .icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin-bottom: 5px;
    }

    .hero-actions {
        flex-direction: row;
        gap: 10px;
        margin-bottom: 15px;
    }

    .hero-actions>* {
        flex: 1;
        justify-content: center;
    }

    .hero-actions .btn-hero-primary {
        padding: 12px 10px;
        text-align: center;
    }

    .hero-actions .watch-video {
        background: #fff;
        padding: 8px;
        border-radius: 30px;
        border: 1px solid #e0e0e0;
    }

    .hero-swoosh,
    .hero-swoosh-orange {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-redesign::before {
        width: 100%;
        height: 100%;
        top: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.4) 100%);
        border-radius: 0;
        opacity: 1;
    }

    .hero-redesign h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .hero-redesign p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .hero-small-title {
        margin-bottom: 8px;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        padding: 0 5px !important;
        color: #111;
    }

    .stat-item .icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
        background-color: #f8f9fa;
        border: 1px solid #eee;
    }

    .stat-item h4 {
        font-size: 16px;
    }

    .stat-item p {
        font-size: 10px;
        color: #555;
    }
}

/* Stats Section */
.stats-redesign {
    background-color: var(--navy);
    /* Deep Navy Blue */
    padding: 15px 0;
    margin-top: -30px;
    /* Overlap hero */
    position: relative;
    z-index: 3;
    border-radius: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.stat-item .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-item h4 {
    color: var(--orange);
    margin: 0;
    font-size: 20px;
    font-weight: 800;
}

.stat-item p {
    margin: 0;
    font-size: 13px;
    color: #eee;
}

/* Services Module Stylesheet */

/* 1. Breadcrumbs Header â€” Premium Redesign */
.service-breadcrumbs {
    background: linear-gradient(120deg, var(--navy) 0%, #112a6b 100%);
    padding: 52px 0 80px 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

/* Subtle dot-grid overlay */
.service-breadcrumbs::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

/* Decorative radial glow top-right */
.service-breadcrumbs::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Breadcrumb nav trail */
.bc-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.bc-nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.25s;
    font-weight: 500;
}

.bc-nav a:hover {
    color: var(--orange);
}

.bc-nav .bc-sep {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    margin: 0 2px;
}

.bc-nav .bc-current {
    color: var(--orange);
    font-weight: 600;
}

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

.bc-title-white {
    color: #ffffff;
}

.bc-title-orange {
    color: var(--orange);
}

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

/* Feature badge strip */
.bc-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    padding-bottom: 20px;
}

.bc-feature-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 10px 16px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.25s, transform 0.2s;
    min-width: 155px;
}

.bc-feature-pill:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.bc-feature-pill .pill-icon {
    width: 34px;
    height: 34px;
    background: rgba(255, 107, 0, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--orange);
    flex-shrink: 0;
}

.bc-feature-pill .pill-text strong {
    display: block;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.bc-feature-pill .pill-text small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    line-height: 1.3;
}

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

.bc-wave-wrap svg {
    display: block;
    width: 100%;
    height: 64px;
}

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

/* Responsive */
@media (max-width: 768px) {
    .service-breadcrumbs {
        padding: 36px 0 70px 0;
    }

    .bc-features {
        gap: 8px;
        padding-bottom: 12px;
    }

    .bc-feature-pill {
        min-width: calc(50% - 8px);
        padding: 8px 12px;
    }

    .bc-wave-wrap svg {
        height: 48px;
    }

    .service-details-section {
        padding-top: 32px;
    }
}

@media (max-width: 480px) {
    .bc-feature-pill {
        min-width: 100%;
    }
}


/* 2. Main Layout Grid */
.service-main-content {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    margin-bottom: 40px;
}

.service-section-title {
    font-weight: 800;
    color: #001846;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.service-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #ff6600;
}

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

.about-service-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
}

/* 3. Reusable Sidebar Widget */
.service-sidebar {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.sidebar-widget {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
}

.sidebar-widget .widget-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #001846;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
    border-bottom: 2px solid #f1f5f9;
}

.sidebar-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #ff6600;
}

/* Services Navigation list */
.sidebar-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-services-list li {
    margin-bottom: 8px;
}

.sidebar-services-list li:last-child {
    margin-bottom: 0;
}

.sidebar-services-list li a {
    color: #475569;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 10px;
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
}

.sidebar-services-list li a:hover {
    background-color: #ff6600;
    color: #ffffff;
    transform: translateX(5px);
    border-color: #ff6600;
}

.sidebar-services-list li a:hover .service-icon,
.sidebar-services-list li a:hover .arrow-icon {
    color: #ffffff;
}

.sidebar-services-list li a.active {
    background-color: #0a4ebd;
    color: #ffffff;
    border-color: #0a4ebd;
}

.sidebar-services-list li a.active .service-icon,
.sidebar-services-list li a.active .arrow-icon {
    color: #ffffff;
}

.sidebar-services-list .service-icon {
    color: #0a4ebd;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.sidebar-services-list .arrow-icon {
    font-size: 0.9rem;
    color: #94a3b8;
    transition: color 0.3s;
}

/* Contact CTA Sidebar Card */
.widget-contact-cta {
    background: linear-gradient(135deg, #0a4ebd 0%, #001846 100%);
    border: none;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.widget-contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.cta-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
    font-weight: 800;
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.cta-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.btn-sidebar-cta {
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

.btn-sidebar-call {
    background-color: #ff6600;
    color: #ffffff;
}

.btn-sidebar-call:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-sidebar-whatsapp {
    background-color: #25d366;
    color: #ffffff;
}

.btn-sidebar-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-sidebar-quote {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-sidebar-quote:hover {
    background-color: #ffffff;
    color: #001846;
    transform: translateY(-2px);
}

/* Trusted Checklist */
.widget-trusted-badges .widget-sub-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #001846;
}

.trusted-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trusted-points-list strong {
    color: #001846;
    font-size: 14px;
}

/* 4. Process Timeline Shifting */
.process-timeline {
    position: relative;
    padding-left: 30px;
    margin-top: 30px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 10px;
    width: 2px;
    height: calc(100% - 20px);
    background-color: #e2e8f0;
}

.process-step {
    position: relative;
    margin-bottom: 25px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: -30px;
    top: 2px;
    width: 22px;
    height: 22px;
    background-color: #ff6600;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 11px;
    display: grid;
    place-items: center;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px #ff6600;
}

.process-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #001846;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* 5. Why Choose Us Checklist */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.choose-item-card {
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s;
}

.choose-item-card:hover {
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
    border-color: #ff6600;
    transform: translateY(-2px);
}

.choose-icon-wrap {
    font-size: 1.4rem;
    color: #ff6600;
    margin-top: 2px;
}

.choose-content h5 {
    font-size: 14px;
    font-weight: 700;
    color: #001846;
    margin-bottom: 4px;
}

.choose-content p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* 6. FAQ Accordion for Service page */
.service-faq-container {
    margin-top: 35px;
}

.service-faq-container .faq-card {
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.service-faq-container .faq-card-header {
    padding: 18px 20px;
    font-weight: 700;
    color: #001846;
    font-size: 15px;
    transition: all 0.3s;
}

.service-faq-container .faq-card-header:not(.collapsed) {
    color: #0a4ebd;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.service-faq-container .faq-card-icon {
    color: #ff6600;
    font-size: 18px;
    margin-right: 12px;
}

.service-faq-container .faq-toggle-icon {
    font-size: 18px;
    color: #94a3b8;
    transition: transform 0.3s;
}

.service-faq-container .faq-card-header:not(.collapsed) .faq-toggle-icon {
    transform: rotate(45deg);
    color: #ff6600;
}

.service-faq-container .faq-card-body {
    padding: 18px 20px;
    background-color: #ffffff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
}

/* 7. Reviews Card Widget */
.service-reviews-slice {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 25px;
    margin: 35px 0;
}

.service-reviews-slice .rating-row {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-reviews-slice .review-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}

.service-reviews-slice .review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-reviews-slice .user-avatar {
    width: 40px;
    height: 40px;
    background-color: #e2e8f0;
    color: #64748b;
    font-weight: 700;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 14px;
}

.service-reviews-slice .user-name h6 {
    margin: 0;
    font-weight: 700;
    color: #001846;
    font-size: 14px;
}

.service-reviews-slice .user-name span {
    font-size: 12px;
    color: #94a3b8;
}

/* Mobile View adjustments */
@media (max-width: 991px) {
    .service-breadcrumbs {
        padding: 40px 0;
        text-align: center;
    }

    .service-breadcrumbs h1 {
        font-size: 2rem;
    }

    .service-main-content {
        padding: 20px;
    }

    .service-sidebar {
        margin-top: 30px;
        position: static;
    }
}

/* Prevent Bootstrap modal from shifting the layout */
body.modal-open {
    padding-right: 0 !important;
    overflow-y: auto !important;
}
.modal-open .sticky-top,
.modal-open .fixed-top {
    padding-right: 0 !important;
}


/* Public page and view styles */
/* Public view styles moved out of PHP templates. */
/* Header error helpers */
.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; }
}

/* Topbar and navbar */
.hsx-topbar.new-topbar {
    background-color: var(--navy-dark, #081640);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}
.hsx-topbar.new-topbar a,
.hsx-topbar.new-topbar span {
    color: #eee;
    text-decoration: none;
}
.hsx-topbar.new-topbar i {
    color: var(--orange);
    margin-right: 5px;
}
.hsx-topbar.new-topbar .hsx-topbar-link {
    display: inline-flex;
    align-items: center;
}
.new-topbar-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--orange);
    color: #fff;
    margin-left: 8px;
    transition: 0.3s;
}
.new-topbar-socials a i {
    color: #fff;
    margin-right: 0;
    font-size: 12px;
}
.new-topbar-socials a:hover {
    background-color: var(--orange-dark, #e05e00);
}
.topbar-scroll {
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.topbar-scroll::-webkit-scrollbar { display: none; }
.topbar-divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 10px;
}
@keyframes phonePulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}
@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}
.mobile-nav-phone {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid var(--orange);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    animation: phonePulse 2s infinite;
}
.mobile-nav-phone i {
    animation: phoneRing 3s infinite ease-in-out;
}
.hsx-navbar .nav-link,
.hsx-navbar .nav-link.active {
    text-decoration: none !important;
    border-bottom: none !important;
}
.hsx-navbar.new-navbar {
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 0;
}
.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}
.hsx-navbar.new-navbar .hsx-brand img {
    height: 70px;
    object-fit: contain;
}
@media (max-width: 991px) {
    .hsx-navbar.new-navbar .hsx-brand img { height: 100px; }
}
.hsx-navbar.new-navbar .nav-link {
    color: #111;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 15px;
    position: relative;
}
.hsx-navbar.new-navbar .nav-link.active,
.hsx-navbar.new-navbar .nav-link:hover {
    color: var(--orange) !important;
    text-decoration: none !important;
    border-bottom: none !important;
    outline: none;
}
.hsx-navbar.new-navbar .nav-link.active::before,
.hsx-navbar.new-navbar .nav-link:hover::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: var(--orange);
    border-radius: 3px;
}
.new-nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}
.call-us-anytime {
    display: flex;
    align-items: center;
    gap: 10px;
}
.call-us-anytime .icon-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.call-us-text { line-height: 1.2; }
.call-us-text small {
    display: block;
    color: #666;
    font-size: 11px;
}
.call-us-text strong {
    color: #111;
    font-size: 15px;
    font-weight: 800;
}
.btn-new-quote {
    background-color: var(--orange);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    border: none;
}
.btn-new-quote:hover {
    background-color: var(--orange-dark, #e05e00);
    color: #fff;
}
.mobile-quote-btn {
    background-color: var(--orange);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    padding: 8px 14px;
    border-radius: 20px;
    text-decoration: none;
    animation: phonePulse 2s infinite;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.mobile-quote-btn:hover { color: #fff; }

/* Footer */
.hsx-footer.new-footer {
    background-color: var(--navy);
    color: #fff;
    padding: 60px 0 20px;
    font-family: inherit;
}
.hsx-footer.new-footer h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.hsx-footer.new-footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--orange);
}
.hsx-footer.new-footer .footer-copy {
    color: #bbb;
    font-size: 13px;
    line-height: 1.6;
    margin-top: 15px;
    margin-bottom: 20px;
}
.hsx-footer.new-footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-right: 8px;
    text-decoration: none;
    transition: 0.3s;
}
.hsx-footer.new-footer .social-icons a:hover { background-color: var(--orange); }
.new-footer-links,
.new-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.new-footer-links li { margin-bottom: 12px; }
.new-footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    display: flex;
    align-items: center;
}
.new-footer-links a i {
    color: var(--orange);
    margin-right: 8px;
    font-size: 12px;
}
.new-footer-links a:hover { color: var(--orange); }
.view-all-branches {
    color: var(--orange) !important;
    font-weight: 600;
    margin-top: 15px;
}
.new-footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    color: #bbb;
    font-size: 14px;
}
.new-footer-contact li .icon-box {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    color: #fff;
}
.new-footer-contact li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}
.new-footer-contact li a:hover { color: #fff; }
.footer-newsletter-box {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin-top: 40px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.newsletter-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.newsletter-icon {
    width: 60px;
    height: 60px;
    background-color: var(--navy-dark, #081640);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--orange);
}
.newsletter-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}
.newsletter-text p {
    color: #bbb;
    margin: 0;
    font-size: 14px;
}
.newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 500px;
}
.newsletter-form input {
    background-color: var(--navy-dark, #081640);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    width: 100%;
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--orange);
}
.newsletter-form button {
    background-color: var(--orange);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
}
.newsletter-form button:hover { background-color: #d15303; }
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
    color: #bbb;
}
.footer-bottom-links {
    display: flex;
    gap: 15px;
}
.footer-bottom-links a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}
.footer-bottom-links a:hover { color: #fff; }
.footer-bottom-payment {
    display: flex;
    align-items: center;
    gap: 12px;
}
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.payment-methods .payment-badge {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 4px 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.payment-methods .payment-badge i { font-size: 16px; }
@media (max-width: 991px) {
    .footer-newsletter-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .newsletter-form {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
    }
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .footer-bottom-payment {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }
    .payment-methods { justify-content: center; }
}

/* Home page compact overrides */
.keywords-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.keywords-list li {
    background: #fff;
    border: 1px solid #ddd;
    color: #444;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    transition: 0.3s;
}
.keywords-list li:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}
.why-section { padding: 50px 0 !important; }
.hsx-section { padding: 3.5rem 0 !important; }
.section-title {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
}
.section-subtitle {
    font-size: 0.95rem !important;
    margin-bottom: 20px !important;
}
.hsx-section-head h2,
.hsx-panel-title,
.hsx-why-copy h2 {
    font-size: 1.8rem !important;
    margin-bottom: 12px !important;
}
.hsx-section-head p,
.hsx-panel p { font-size: 0.95rem !important; }
.hsx-section-head { margin-bottom: 2rem !important; }
.feature-card { padding: 1.2rem !important; }
.feature-card h5,
.hsx-service-card h3,
.hsx-process-card h3 { font-size: 1.1rem !important; }
.feature-card p,
.hsx-service-card p,
.hsx-process-card p { font-size: 0.9rem !important; }
.hsx-service-card { padding: 1.5rem 1rem !important; }
.hsx-metric-card { padding: 1rem !important; }
.hsx-metric-card strong { font-size: 1.6rem !important; }
@media (max-width: 991px) {
    .why-section { padding: 30px 0 !important; }
    .hsx-section { padding: 2.2rem 0 !important; }
    .section-title,
    .hsx-section-head h2,
    .hsx-panel-title,
    .hsx-why-copy h2 { font-size: 1.45rem !important; }
    .section-subtitle,
    .hsx-section-head p,
    .hsx-panel p { font-size: 0.85rem !important; }
    .hsx-section-head { margin-bottom: 1.5rem !important; }
    .feature-card h5,
    .hsx-service-card h3,
    .hsx-process-card h3 { font-size: 1rem !important; }
    .feature-card p,
    .hsx-service-card p,
    .hsx-process-card p { font-size: 0.85rem !important; }
    .hsx-metric-card strong { font-size: 1.35rem !important; }
    .hsx-service-card { padding: 1.2rem 0.8rem !important; }
    .hsx-service-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
        margin-bottom: 0.8rem !important;
    }
    .hsx-process-icon {
        width: 3.5rem !important;
        height: 3.5rem !important;
        font-size: 1.5rem !important;
        margin: 1.2rem auto 0.8rem !important;
    }
}
.feature-card-premium {
    transition: all 0.4s ease-in-out !important;
}
.feature-card-premium:hover {
    border-color: rgba(255, 107, 0, 0.4) !important;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(8, 22, 64, 0.1) !important;
}
.premium-services-section {
    background-color: var(--navy);
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 2px, transparent 2px);
    background-size: 30px 30px;
}
.premium-service-card {
    transition: all 0.3s ease;
    border-color: rgba(0, 0, 0, 0.04) !important;
}
.premium-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(8, 22, 64, 0.08) !important;
    border-color: rgba(255, 107, 0, 0.2) !important;
}
.premium-service-card:hover .premium-service-icon {
    background-color: var(--navy) !important;
    color: #ffffff !important;
    transform: scale(1.05);
}
.premium-service-card:hover .premium-learn-more { color: var(--navy) !important; }
.premium-service-card:hover .premium-learn-more i { transform: translateX(4px); }
.premium-learn-more {
    color: var(--orange);
    font-size: 11px;
}
.premium-learn-more i { transition: transform 0.3s ease; }
.why-choose-premium { background-color: #ffffff; }
.premium-feature-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}
.premium-feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--orange) !important;
    box-shadow: 0 10px 20px rgba(8, 22, 64, 0.08) !important;
}
@media (max-width: 767px) {
    .premium-feature-card h6 { font-size: 11px !important; }
}
.process-step-premium .step-icon-wrapper {
    width: 70px;
    height: 70px;
    border-color: rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease;
}
.process-step-premium:hover .step-icon-wrapper {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.3) !important;
    box-shadow: 0 12px 25px rgba(8, 22, 64, 0.12) !important;
}
.process-step-premium:hover i {
    transform: scale(1.15);
    transition: all 0.3s ease;
}
.premium-accordion .accordion-button:not(.collapsed) {
    color: var(--orange) !important;
    background-color: rgba(255, 107, 0, 0.05) !important;
}
.premium-accordion .accordion-button:focus { border-color: transparent !important; }

/* Contact forms */
.form-redesign { background: transparent; }
.form-redesign-header { margin-bottom: 20px; }
.form-redesign-header h3 {
    font-size: 26px;
    font-weight: 900;
    color: #111;
    margin-bottom: 10px;
}
.form-redesign-header h3 span { color: var(--orange); }
.form-redesign-header p {
    color: #555;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 5px;
}
.form-redesign .field-box-new {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    background: #fff;
    transition: 0.3s;
}
.form-redesign .field-box-new:focus-within {
    border-color: var(--orange);
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.1);
}
.form-redesign .field-box-new i {
    color: #888;
    font-size: 16px;
}
.form-redesign .field-content-new { flex: 1; }
.form-redesign .field-input-new {
    border: none;
    outline: none;
    width: 100%;
    font-size: 13px;
    color: #333;
    background: transparent;
}
.form-redesign .field-input-new::placeholder { color: #999; }
.form-redesign .field-select-new {
    border: none;
    outline: none;
    width: 100%;
    font-size: 13px;
    color: #333;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-redesign .form-row {
    display: flex;
    gap: 15px;
}
.form-redesign .form-col { flex: 1; }
.btn-form-submit {
    width: 100%;
    background-color: var(--orange);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    padding: 14px;
    border: none;
    border-radius: 8px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}
.btn-form-submit:hover { background-color: var(--orange-dark, #e05e00); }
.form-trust-badge {
    text-align: center;
    font-size: 11px;
    color: #666;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.form-trust-badge i {
    color: #28a745;
    font-size: 14px;
}
.message-field-box {
    align-items: flex-start !important;
    padding-top: 15px !important;
}
.message-field-icon { margin-top: 2px; }
.field-textarea { resize: none; }
@media (max-width: 991px) {
    .form-redesign .form-row {
        flex-direction: column;
        gap: 0;
    }
}
#contactForm .form-floating > .form-control {
    background: #fff !important;
    color: #212529 !important;
    border: 1px solid #ced4da !important;
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}
#contactForm .form-floating > .form-control:focus {
    border-color: var(--accent-orange) !important;
    box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.25) !important;
}
#contactForm .form-floating > label { color: #6c757d; }
.contact-message-box { height: 120px !important; }
.hours-note {
    padding-top: 8px;
    font-size: 0.8rem;
    color: var(--accent-orange-dark);
    font-weight: 700;
}

/* City pages */
.hero-redesign-dynamic { background-image: none; }
.hero-background-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-redesign-dynamic .hero-swoosh,
.hero-redesign-dynamic .hero-swoosh-orange,
.hero-redesign-dynamic .stats-layer {
    position: relative;
    z-index: 2;
}
.breadcrumb-compact {
    margin-bottom: 1rem;
    font-size: 13px;
}
.breadcrumb-link-navy {
    color: var(--navy);
    text-decoration: none;
}
.breadcrumb-separator {
    margin: 0 5px;
    color: #666;
}
.breadcrumb-muted { color: #555; }
.breadcrumb-current {
    color: var(--orange);
    font-weight: 600;
}
.stats-layer { z-index: 3; }
.city-details-section {
    background: #f1f5f9;
    padding: 48px 0 60px;
}
.city-content-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8edf4;
}
.city-section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.city-section-title {
    font-size: clamp(1.3rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: #001333;
    line-height: 1.3;
    margin-bottom: 22px;
}
.city-accent { color: var(--orange); }
.city-section-title-sm {
    font-size: 1.15rem;
    font-weight: 800;
    color: #001333;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}
.city-section-title-sm::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 42px;
    height: 2px;
    background: #ff6600;
}
.city-img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 24px;
}
.city-hero-img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    display: block;
}
.city-exp-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.city-exp-badge .exp-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}
.city-exp-badge .exp-label {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}
.city-prose p {
    color: #475569;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
}
.city-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.city-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(11, 31, 77, 0.04);
    border: 1px solid rgba(11, 31, 77, 0.1);
    color: var(--navy);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
}
.city-pill i { font-size: 15px; }
.city-checklist {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 14px 0 18px;
}
.city-checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #334155;
}
.city-checklist li i {
    color: var(--orange);
    font-size: 16px;
    flex-shrink: 0;
}
.city-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--navy);
    border-radius: 14px;
    padding: 20px 10px;
    margin-top: 24px;
    text-align: center;
}
.city-stat {
    padding: 0 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.city-stat:last-child { border-right: none; }
.city-stat .stat-num {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    color: #ffd600;
    line-height: 1;
    margin-bottom: 4px;
}
.city-stat .stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}
.city-review-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--navy);
    border-radius: 12px;
    padding: 18px;
    height: 100%;
}
.city-review-card .review-stars {
    color: #f59e0b;
    font-size: 13px;
    margin-bottom: 10px;
}
.city-review-card p {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 14px;
}
.city-review-card .review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.city-review-card .review-avatar {
    width: 36px;
    height: 36px;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}
.city-review-card .review-author strong {
    display: block;
    font-size: 13px;
    color: #001333;
}
.city-review-card .review-author small {
    font-size: 11px;
    color: #94a3b8;
}
.city-faq-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}
.city-faq-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 14px;
    color: #001333;
    cursor: pointer;
    transition: background 0.2s;
}
.city-faq-btn:hover { background: #f0f6ff; }
.city-faq-btn.active {
    color: var(--navy);
    background: rgba(11, 31, 77, 0.04);
}
.city-faq-btn .faq-q-icon {
    color: var(--orange);
    font-size: 17px;
    flex-shrink: 0;
}
.city-faq-btn .faq-chevron {
    margin-left: auto;
    font-size: 14px;
    color: #94a3b8;
    transition: transform 0.3s;
}
.city-faq-btn[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
    color: var(--orange);
}
.city-faq-btn span { flex: 1; }
.city-faq-body {
    padding: 4px 20px 16px 49px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.7;
}
.city-sticky-col {
    top: 100px;
    height: fit-content;
    z-index: 10;
}
.city-sidebar {
    position: sticky;
    top: 100px;
}
.city-sidebar-widget {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8edf4;
}
.city-sidebar-widget-title {
    font-size: 1rem;
    font-weight: 800;
    color: #001333;
    margin-bottom: 6px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}
.city-sidebar-widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 36px;
    height: 2px;
    background: #ff6600;
}
.city-sidebar-widget-desc {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 16px;
}
.city-cta-card {
    background: linear-gradient(145deg, var(--navy) 0%, #0d2866 100%);
    position: relative;
    overflow: hidden;
    border: none;
    padding: 28px 22px;
}
.city-cta-bg-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 7rem;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    transform: rotate(15deg);
}
.city-cta-inner {
    position: relative;
    z-index: 1;
}
.city-cta-icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05), 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 24px;
    color: var(--orange);
    margin-bottom: 20px;
}
.city-cta-title {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 8px;
}
.city-cta-title span { color: var(--orange); }
.city-cta-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 18px;
    line-height: 1.5;
}
.city-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.city-cta-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}
.city-cta-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #fff;
}
.city-cta-btn > i {
    font-size: 22px;
    color: var(--orange);
    flex-shrink: 0;
}
.city-cta-btn small {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.city-cta-btn strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.badge-live {
    background: #22c55e;
    color: #fff;
    font-size: 9px;
    padding: 1px 5px;
    border-radius: 3px;
    font-weight: 700;
}
.city-cta-action-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 4px;
}
.city-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 10px;
    border-radius: 14px;
    border: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.city-action-btn:hover { transform: translateY(-3px); }
.city-action-btn i { font-size: 20px; }
.city-whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.city-whatsapp-btn:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #fff;
}
.city-quote-btn {
    background: linear-gradient(135deg, var(--orange) 0%, #e05e00 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}
.city-quote-btn:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
    color: #fff;
}
.city-services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.city-service-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    text-decoration: none;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s;
}
.city-service-link:hover {
    background: rgba(11, 31, 77, 0.04);
    color: var(--orange);
    border-color: rgba(11, 31, 77, 0.1);
    transform: translateX(4px);
}
.city-service-link:hover .city-svc-icon,
.city-service-link:hover .city-svc-arrow { color: var(--orange); }
.city-svc-icon {
    font-size: 16px;
    color: var(--orange);
    flex-shrink: 0;
    transition: color 0.25s;
}
.city-svc-name { flex: 1; }
.city-svc-arrow {
    font-size: 13px;
    color: #94a3b8;
    transition: color 0.25s;
}
.city-view-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    border: 2px solid var(--navy);
    border-radius: 10px;
    color: var(--navy);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.25s;
}
.city-view-all-btn:hover {
    background: var(--navy);
    color: #fff;
}
.city-trust-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.city-trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.trust-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(11, 31, 77, 0.04);
    color: var(--navy);
    display: grid;
    place-items: center;
    font-size: 16px;
    flex-shrink: 0;
}
.trust-green { background: #f0fdf4; color: #16a34a; }
.trust-orange { background: #fff7ed; color: #ea580c; }
.trust-red { background: #fef2f2; color: #dc2626; }
.trust-yellow { background: #fefce8; color: #ca8a04; }
.city-trust-list li strong {
    display: block;
    font-size: 13px;
    color: #001333;
    line-height: 1.3;
}
.city-trust-list li small {
    font-size: 11px;
    color: #94a3b8;
}
.city-related-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}
.city-tag {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 6px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: all 0.2s;
}
.city-tag:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}
.city-tag i {
    color: var(--orange);
    transition: color 0.2s;
    font-size: 14px;
}
.city-tag:hover i { color: #fff; }
.city-srv-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #eef2f6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    height: 100%;
    transition: all 0.3s ease;
}
.city-srv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.city-srv-icon-wrap {
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.city-srv-icon-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.city-srv-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.4;
}
.city-srv-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}
.city-srv-link {
    font-size: 0.9rem;
    color: #4ea3fc;
    text-decoration: none;
    font-weight: 400;
}
.city-srv-link:hover {
    color: #073c91;
    text-decoration: underline;
}
.vs-images-scroll-container {
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.vs-images-scroll-container::-webkit-scrollbar { display: none; }
.image-card-wrapper {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    scroll-snap-align: start;
}
@media (min-width: 576px) {
    .image-card-wrapper {
        flex: 0 0 calc(33.333% - 14px);
        max-width: calc(33.333% - 14px);
    }
}
@media (min-width: 992px) {
    .image-card-wrapper {
        flex: 0 0 calc(25% - 15px);
        max-width: calc(25% - 15px);
    }
}
.vs-scroll-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}
.vs-scroll-button-prev,
.vs-scroll-button-next {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #0d6efd;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
    font-size: 16px;
}
.vs-scroll-button-prev:hover,
.vs-scroll-button-next:hover {
    background: #0d6efd;
    color: #fff;
}
.city-slider-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}
@media (max-width: 768px) {
    .city-content-card { padding: 20px 16px; }
    .city-stats-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 0;
    }
    .city-stat {
        padding: 8px 10px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    .city-stat:nth-child(even) { border-right: none; }
    .city-checklist { grid-template-columns: 1fr; }
    .city-hero-img { max-height: 200px; }
}
@media (max-width: 480px) {
    .city-feature-pills { flex-direction: column; }
}
@media (max-width: 991px) {
    .city-sidebar { position: static; }
}

/* Service listing */
.services-lead { max-width: 600px; }
.service-grid-card {
    transition: all 0.3s ease;
}
.service-grid-icon {
    width: 60px;
    height: 60px;
    background-color: #f8f9fa;
    color: var(--navy);
    transition: all 0.3s ease;
}
.service-grid-title { color: var(--navy); }
.service-grid-copy { font-size: 0.85rem; }
.read-more-link {
    color: var(--orange);
    font-size: 0.85rem;
}
.service-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(11, 31, 77, 0.15) !important;
}
.service-grid-card:hover h3 { color: var(--orange) !important; }
.service-grid-card:hover .icon-wrap {
    background-color: var(--navy) !important;
    color: #fff !important;
}
.service-grid-card:hover .read-more-link { color: var(--navy) !important; }
.svc-side-link { font-size: 0.95rem; }

/* Reviews and testimonials */
#reviewsform .form-control {
    background: #fff !important;
    color: #212529 !important;
    border: 1px solid #ced4da !important;
}
#reviewsform .form-control:focus {
    border-color: var(--orange) !important;
    box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.25) !important;
}
#reviewsform .form-control::placeholder { color: #999 !important; }
.rating label:hover,
.rating label:hover ~ label,
.rating input[type="radio"]:checked ~ label { color: var(--orange) !important; }
.rating {
    direction: rtl;
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}
.rating input[type="radio"] { display: none; }
.rating label {
    cursor: pointer;
    color: #ccc;
    font-size: 24px;
}
.review-modal { z-index: 99999; }
.review-modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.review-modal-header {
    background-color: var(--navy-dark, #081640);
    color: white;
    border-bottom: 3px solid var(--orange);
}
.review-modal-title {
    font-weight: 700;
    font-size: 18px;
    margin: 0;
}
.review-modal-body {
    padding: 25px;
    background-color: #fff;
}
.review-input {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #333;
    padding: 10px 15px;
    border-radius: 8px;
}
.review-textarea { resize: none; }
.review-label {
    color: #555;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}
.review-rating-feedback {
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
}
.review-file-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}
.review-file-input {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #dee2e6;
    border-radius: 6px;
}
.review-submit-btn {
    background-color: var(--orange);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
}
.review-clear-btn {
    color: #555;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    border: 1px solid #ccc;
}
.legacy-review-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;
}
.site-breadcrumb-default {
    background-image: url("../img/breadcrumb/01.jpg");
}
.legacy-review-btn {
    background: #f4854a;
    color: white;
    border: none;
    width: 100%;
    font-size: 100%;
    font-weight: bold;
}
.review-author-chip {
    color: white;
    background-color: black;
    padding: 5px;
    border-radius: 5px;
}
.review-float-right { float: right; }
.review-black { color: black; }
.legacy-review-title {
    font-weight: bold;
    color: black;
    margin-top: 5px;
}
.review-email-strong {
    font-weight: bold;
    color: black;
}
.review-date-gold { color: #fab504; }
.review-reply {
    padding-top: 20px;
    color: black;
}
.text-align-right { text-align: right; }
.cream-light-section { background: var(--cream-light); }
.cream-section { background: var(--cream); }
.featured-reviewer-name {
    color: var(--orange);
    font-weight: 700;
}
.featured-reviewer-sub {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
}
.text-orange-inline { color: var(--orange); }
.why-divider-tall { height: 70px; }
.rating-review-count { font-size: 0.85rem; }
.google-logo-muted { opacity: 0.7; }
.verified-review-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.rating-star-label { width: 40px; }
.rating-percent-label {
    width: 36px;
    text-align: right;
}
.rating-fill-88 { width: 88%; }
.rating-fill-9 {
    width: 9%;
    background: linear-gradient(90deg, #f07b28, #fbbf24);
}
.rating-fill-2 {
    width: 2%;
    background: #ccc;
}
.rating-fill-1 {
    width: 1%;
    background: #ccc;
}
.rating-fill-0 {
    width: 0;
    background: #ccc;
}
.video-section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}
.section-title-light { color: #fff; }

/* Shared extracted classes */
.section-kicker {
    font-size: 10px;
    letter-spacing: 1.5px;
}
.section-kicker-wide {
    font-size: 11px;
    letter-spacing: 1px;
}
.section-heading-compact { font-size: 26px; }
.section-heading-tight {
    font-size: 26px;
    line-height: 1.2;
}
.section-copy-compact {
    font-size: 12px;
    line-height: 1.6;
    max-width: 500px;
}
.section-copy-centered {
    max-width: 500px;
    font-size: 12px;
}
.feature-icon-compact { font-size: 20px; }
.feature-title-compact {
    font-size: 14px;
    margin-bottom: 0.5rem;
}
.feature-copy-compact {
    font-size: 11px;
    line-height: 1.5;
}
.btn-copy-compact { font-size: 13px; }
.btn-copy-strong {
    font-size: 13px;
    font-weight: 600;
}
.floating-stat-card {
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.floating-stat-top {
    top: -20px;
    left: -20px;
}
.floating-stat-bottom {
    bottom: -20px;
    right: -20px;
}
.stat-icon-circle {
    width: 35px;
    height: 35px;
}
.stat-number-compact { font-size: 14px; }
.stat-label-compact {
    font-size: 10px;
    text-transform: uppercase;
}
.about-preview-img {
    object-fit: cover;
    height: 450px;
}
.service-icon-compact {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}
.service-card-title { font-size: 15px; }
.service-card-copy {
    font-size: 11px;
    line-height: 1.5;
}
.why-copy-compact {
    font-size: 13px;
    line-height: 1.5;
    max-width: 400px;
    margin: 0 auto;
}
.why-card-title { font-size: 13px; }
.why-card-copy {
    font-size: 11px;
    line-height: 1.4;
}
.process-flow-line {
    height: 2px;
    top: 35px;
    left: 0;
    z-index: 1;
    background: linear-gradient(90deg, transparent 5%, #e9ecef 5%, #e9ecef 95%, transparent 95%);
}
.process-step-badge {
    font-size: 10px;
    z-index: 3;
}
.process-title-compact { font-size: 14px; }
.process-copy-compact {
    font-size: 11px;
    line-height: 1.5;
    max-width: 140px;
}
.soft-border-panel { border-color: rgba(0, 0, 0, 0.04) !important; }
.soft-card-border { border: 1px solid rgba(0, 0, 0, 0.03); }
.quote-mark-large {
    top: 10px;
    right: 20px;
    font-size: 40px;
}
.avatar-img-sm {
    width: 50px;
    height: 50px;
    object-fit: cover;
}
.reviewer-name-compact { font-size: 15px; }
.stars-compact { font-size: 11px; }
.review-copy-compact {
    font-size: 12px;
    line-height: 1.6;
    font-style: italic;
}
.carousel-control-circle {
    width: 35px;
    height: 35px;
}
.faq-question-compact { font-size: 14px; }
.faq-answer-compact {
    font-size: 12px;
    line-height: 1.6;
}
.keyword-icon { color: var(--hs-secondary); }
.keyword-badge {
    font-size: 0.85rem;
    border-color: rgba(0, 0, 0, 0.05) !important;
    color: #4a5568 !important;
    transition: all 0.3s ease;
}
.about-story-img {
    height: 350px;
    object-fit: cover;
    object-position: center;
}
.modal-top-layer { z-index: 99999; }
.blog-empty-note { font-size: 0.88rem; }
.process-lead {
    max-width: 560px;
    margin: 0 auto;
    font-size: 0.95rem;
}
.process-label-soft {
    background: rgba(249, 115, 22, 0.2);
    color: var(--accent-orange-light);
}
.process-white-title { color: var(--white); }
.process-help-copy {
    font-size: 0.92rem;
    line-height: 1.7;
}
.process-help-btn {
    background: var(--hsx-green-dark);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
}
.search-content-space { padding: 70px 20px 200px; }
.quoteform-subtitle {
    font-weight: 400;
    font-size: 13px;
}
.quoteform-call-link {
    color: white;
    float: right;
}
.theme-submit-btn { background-color: #fba707; }
.theme-clear-btn {
    background-color: white;
    color: #a0a0a0;
}
.branch-input-icon-top {
    top: 18px;
    transform: none;
}
.map-frame { border: 0; }
.controller-error-banner { background: red !important; }
.email-query-card {
    padding: 30px;
    background: #e6e6e6;
    font-size: 18px !important;
}

/* Lightweight view utilities used where a one-purpose component class is too heavy. */
.text-size-08 { font-size: 0.8rem; }
.text-size-07 { font-size: 0.7rem; }
.text-size-075 { font-size: 0.75rem; }
.text-size-085 { font-size: 0.85rem; }
.text-size-088 { font-size: 0.88rem; }
.text-size-09 { font-size: 0.9rem; }
.text-size-092 { font-size: 0.92rem; }
.text-size-095 { font-size: 0.95rem; }
.text-size-10 { font-size: 10px; }
.text-size-11 { font-size: 11px; }
.text-size-12 { font-size: 12px; }
.text-size-13 { font-size: 13px; }
.text-size-14 { font-size: 14px; }
.text-size-15 { font-size: 15px; }
.text-size-20 { font-size: 20px; }
.text-size-24 { font-size: 24px; }
.text-size-26 { font-size: 26px; }
.text-size-40 { font-size: 40px; }
.text-size-full { font-size: 100%; }
.tracking-1 { letter-spacing: 1px; }
.tracking-15 { letter-spacing: 1.5px; }
.leading-12 { line-height: 1.2; }
.leading-14 { line-height: 1.4; }
.leading-15 { line-height: 1.5; }
.leading-16 { line-height: 1.6; }
.leading-17 { line-height: 1.7; }
.max-w-140 { max-width: 140px; }
.max-w-300 { max-width: 300px; }
.max-w-400 { max-width: 400px; }
.max-w-500 { max-width: 500px; }
.max-w-560 { max-width: 560px; }
.max-w-600 { max-width: 600px; }
.mx-auto-zero { margin: 0 auto; }
.box-35 { width: 35px; height: 35px; }
.box-40 { width: 40px; height: 40px; }
.box-50 { width: 50px; height: 50px; }
.box-60 { width: 60px; height: 60px; }
.box-70 { width: 70px; height: 70px; }
.height-70 { height: 70px; }
.height-120 { height: 120px !important; }
.height-180 { height: 180px; }
.height-350 { height: 350px; }
.height-450 { height: 450px; }
.object-cover { object-fit: cover; }
.object-center { object-position: center; }
.transition-standard { transition: all 0.3s ease; }
.muted-google-logo { opacity: 0.7; }
.text-orange-force { color: var(--orange); }
.text-white-force { color: #fff; }
.text-black-force { color: black; }
.text-muted-force { color: #555; }
.navy-link-clean {
    color: var(--navy);
    text-decoration: none;
}
.soft-border-force { border-color: rgba(0, 0, 0, 0.05) !important; }
.border-soft-line { border: 1px solid rgba(0, 0, 0, 0.03); }
.display-none { display: none; }
.float-right { float: right; }
.text-align-right { text-align: right; }
.font-weight-400 { font-weight: 400; }
.font-weight-600 { font-weight: 600; }
.font-weight-700 { font-weight: 700; }
.font-weight-bold { font-weight: bold; }
.margin-bottom-half { margin-bottom: 0.5rem; }
.margin-top-2 { margin-top: 2px; }
.margin-top-5 { margin-top: 5px; }
.padding-top-15 { padding-top: 15px; }
.padding-top-20 { padding-top: 20px; }
.top-left-float {
    top: -20px;
    left: -20px;
    z-index: 2;
}
.bottom-right-float {
    bottom: -20px;
    right: -20px;
    z-index: 2;
}
.quote-mark-position {
    top: 10px;
    right: 20px;
}
.process-line-position {
    height: 2px;
    top: 35px;
    left: 0;
    z-index: 1;
}
.process-line-bg {
    background: linear-gradient(90deg, transparent 5%, #e9ecef 5%, #e9ecef 95%, transparent 95%);
}
.white-video-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}
.secondary-color-text { color: var(--hs-secondary); }
.gold-text { color: #fab504; }
.rating-star-option {
    cursor: pointer;
    color: #ccc;
    font-size: 24px;
}
.image-load-hidden {
    display: none !important;
}


/* CodeIgniter error page styles */
::selection {
    background-color: #e13300;
    color: white;
}
::-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-page #container {
    margin: 10px;
    border: 1px solid #d0d0d0;
    box-shadow: 0 0 8px #d0d0d0;
}

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

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

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


/* Admin panel styles */
:root {
    --admin-primary: #ff6b16;
    --admin-navy: #073c91;
}

.admin-login-body {
    background: #f4f7f6;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.admin-login-body .login-card {
    width: 400px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
}
.admin-login-body .btn-primary {
    background: #ff6b16;
    border: none;
}

.admin-body .sidebar {
    min-width: 250px;
    max-width: 250px;
    min-height: 100vh;
    background: var(--admin-navy);
    color: #fff;
}
.admin-body .sidebar .nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.admin-body .sidebar .nav-link:hover,
.admin-body .sidebar .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.admin-body .main-content {
    flex: 1;
    padding: 30px;
    background: #f8fafc;
}
.admin-body .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.admin-body .btn-admin,
.admin-login-body .btn-admin {
    background: var(--admin-primary);
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}
.admin-body .btn-admin:hover,
.admin-login-body .btn-admin:hover {
    background: #e55a00;
    color: #fff;
}

.admin-body .form-label,
.admin-login-body .form-label {
    font-weight: 600;
    color: #475569;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}
.admin-body .form-control,
.admin-login-body .form-control {
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
}
.admin-body .form-control:focus,
.admin-login-body .form-control:focus {
    border-color: var(--admin-primary);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}
.admin-body .modal-content {
    border-radius: 15px;
    border: none;
}
.admin-body .modal-header {
    border-bottom: 1px solid #f1f5f9;
    padding: 1.2rem 1.5rem;
}
.admin-body .modal-footer {
    border-top: 1px solid #f1f5f9;
    padding: 1rem 1.5rem;
}
.admin-body .modal-title {
    font-weight: 700;
    color: var(--admin-navy);
}

.admin-blog-cover {
    height: 180px;
    object-fit: cover;
}
.admin-blog-empty-cover {
    height: 180px;
}
.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-avatar {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
}
.admin-review-message {
    max-width: 300px;
}
.admin-small-date {
    font-size: 0.7rem;
}
.admin-body .bg-success-subtle {
    background: #dcfce7;
}
.admin-body .text-success {
    color: #166534;
}
.admin-body .bg-warning-subtle {
    background: #fef9c3;
}
.admin-body .text-warning {
    color: #854d0e;
}

.text-size-07 {
    font-size: 0.7rem;
}
.text-size-075 {
    font-size: 0.75rem;
}
.leading-14 {
    line-height: 1.4;
}
.max-w-300 {
    max-width: 300px;
}
.box-40 {
    width: 40px;
    height: 40px;
}
.box-50 {
    width: 50px;
    height: 50px;
}
.object-cover {
    object-fit: cover;
}
.timepicker-number-cell {
    width: 50px;
}
.timepicker-meridian-btn {
    padding: 5.5px 6px;
}

/* Runtime form and page helpers */
.cities-bg-location {
    background-image: url("../images/location/location-background.png");
}

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

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

.field-wrap .field-ico,
.field-wrap.top-ico .field-ico {
    top: 14px !important;
}

.field-error-flex-wrap {
    flex-wrap: wrap !important;
}

.ajax-form-loader {
    color: orange;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 10px;
}

.ajax-form-success {
    margin-top: 15px;
}

.ajax-form-success-text {
    color: green;
    font-weight: bold;
    margin-bottom: 0;
}

.ajax-form-error {
    margin-top: 15px;
}

@keyframes fieldErrorFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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