/* =====================================================================
   V Touch Solutions — Service Pages Stylesheet
   Reusable across all inner service pages (promotional-bulk-sms, etc.)
   Built on the same design tokens as assets/css/style.css
   (--primary #4f46e5 indigo / --secondary teal / Barlow + Barlow Condensed)
   Load AFTER style.css:
     <link href="assets/css/style.css" rel="stylesheet">
     <link href="assets/css/service-pages.css" rel="stylesheet">
   ===================================================================== */

:root {
    --svc-banner-1: #1e1b4b;
    --svc-banner-2: #312e81;
    --svc-accent: #2dd4bf;
    /* teal highlight for dark backgrounds */
}

/* ---------------------------------------------------------------------
   1. PAGE BANNER  (replaces the homepage video hero on inner pages)
   --------------------------------------------------------------------- */
.svc-banner {
    position: relative;
    background:
        radial-gradient(900px 380px at 85% -10%, rgba(45, 212, 191, .18), transparent 60%),
        linear-gradient(135deg, var(--svc-banner-1) 0%, var(--svc-banner-2) 100%);
    color: #fff;
    padding: 56px 0 64px;
    overflow: hidden;
}

.svc-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: .6;
    pointer-events: none;
}

.svc-banner .container {
    position: relative;
    z-index: 1;
}

.svc-breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    margin: 0 0 18px;
    font-size: 13px;
    font-weight: 500;
}

.svc-breadcrumb li {
    color: rgba(255, 255, 255, .65);
}

.svc-breadcrumb li+li::before {
    content: "/";
    margin-right: 6px;
    color: rgba(255, 255, 255, .35);
}

.svc-breadcrumb a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    transition: color .2s;
}

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

.svc-banner-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 212, 191, .14);
    border: 1px solid rgba(45, 212, 191, .35);
    color: var(--svc-accent);
    font-family: var(--font-head);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
    padding: 7px 16px;
    border-radius: 40px;
    margin-bottom: 18px;
}

.svc-banner h1 {
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.08;
    font-size: clamp(2rem, 5.2vw, 3.4rem);
    margin: 0 0 16px;
    color: #fff;
}

.svc-banner h1 .hl {
    color: var(--svc-accent);
    -webkit-text-fill-color: var(--svc-accent);
    /* override any gradient .hl from style.css on dark bg */
}

.svc-banner-desc {
    color: rgba(255, 255, 255, .82);
    font-size: 16.5px;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 0 28px;
}

.svc-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
}

.svc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: 14px;
    padding: 13px 28px;
    border-radius: 40px;
    transition: transform .25s, box-shadow .25s, background .25s, color .25s;
    border: 1.5px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.svc-btn-primary {
    background: var(--svc-accent);
    color: #06283d;
}

.svc-btn-primary:hover {
    background: #5eead4;
    color: #06283d;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(45, 212, 191, .3);
}

.svc-btn-ghost {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .4);
    color: #fff;
}

.svc-btn-ghost:hover {
    background: rgba(255, 255, 255, .14);
    color: #fff;
    transform: translateY(-2px);
}

.svc-banner-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 30px;
    align-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 16px 26px;
    width: fit-content;
    max-width: 100%;
}

.svc-stat-num {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.7rem;
    line-height: 1;
    color: #fff;
}

.svc-stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .6);
    margin-top: 4px;
}

/* glassy side card */
.svc-banner-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 22px;
    padding: 30px 28px;
    backdrop-filter: blur(6px);
}

.svc-banner-card .ic {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--svc-accent);
    color: #06283d;
    font-size: 24px;
    margin-bottom: 18px;
}

.svc-banner-card h3 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
}

.svc-banner-card p {
    color: rgba(255, 255, 255, .78);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.svc-banner-card .pts {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.svc-banner-card .pts li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    padding: 6px 0;
}

.svc-banner-card .pts i {
    color: var(--svc-accent);
}

/* ---------------------------------------------------------------------
   2. SECTION SPACING + INTRO PROSE
   --------------------------------------------------------------------- */
.svc-section {
    padding: 70px 0;
}

.svc-section.alt {
    background: #fff;
}

.svc-section.tint {
    background: var(--bg-body);
}

.svc-prose {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.85;
}

.svc-prose p {
    margin-bottom: 16px;
}

.svc-prose strong {
    color: var(--dark);
}

/* ---------------------------------------------------------------------
   3. FEATURE CARDS  (Key features / Why choose us)
   --------------------------------------------------------------------- */
.svc-card {
    height: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px -18px rgba(79, 70, 229, .35);
    border-color: rgba(79, 70, 229, .4);
}

.svc-card .ic {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 22px;
    color: #fff;
    background: var(--primary);
    margin-bottom: 18px;
}

.svc-card .ic.teal {
    background: var(--secondary);
}

.svc-card .ic.cyan {
    background: var(--accent);
}

.svc-card .ic.amber {
    background: #f59e0b;
}

.svc-card h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 19px;
    color: var(--dark);
    margin-bottom: 8px;
}

.svc-card p {
    color: var(--gray);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}

/* simple benefit list with check icons */
.svc-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-checklist li {
    position: relative;
    padding: 9px 0 9px 34px;
    color: var(--dark);
    font-size: 15.5px;
    line-height: 1.55;
    border-bottom: 1px dashed var(--border);
}

.svc-checklist li:last-child {
    border-bottom: 0;
}

.svc-checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 9px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 10px;
    color: var(--secondary);
    background: rgba(13, 148, 136, .12);
}

/* industry chips */
.svc-industry {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
    height: 100%;
    transition: border-color .2s, transform .2s;
}

.svc-industry:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.svc-industry i {
    font-size: 20px;
    color: var(--primary);
    width: 28px;
    text-align: center;
}

.svc-industry span {
    font-weight: 600;
    color: var(--dark);
    font-size: 15px;
}

/* ---------------------------------------------------------------------
   4. PROCESS / HOW IT WORKS
   --------------------------------------------------------------------- */
.svc-step {
    position: relative;
    height: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 34px 24px 26px;
    text-align: center;
}

.svc-step .num {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 19px;
    color: #fff;
    background: var(--primary);
    box-shadow: 0 8px 18px rgba(79, 70, 229, .35);
}

.svc-step h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 18px;
    color: var(--dark);
    margin: 10px 0 8px;
}

.svc-step p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ---------------------------------------------------------------------
   5. COMPARISON TABLE  (Promotional vs Transactional)
   --------------------------------------------------------------------- */
.svc-compare {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.svc-compare th,
.svc-compare td {
    padding: 15px 18px;
    text-align: left;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.svc-compare thead th {
    background: var(--dark);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: 13.5px;
}

.svc-compare thead th:first-child {
    background: var(--dark-light);
}

.svc-compare td:first-child {
    font-weight: 600;
    color: var(--dark);
    background: var(--bg-body);
    width: 34%;
}

.svc-compare tbody tr:last-child td {
    border-bottom: 0;
}

/* ---------------------------------------------------------------------
   6. PRICING
   --------------------------------------------------------------------- */
.svc-price {
    position: relative;
    height: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 26px;
    transition: transform .25s, box-shadow .25s;
}

.svc-price:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px -22px rgba(15, 23, 42, .3);
}

.svc-price.popular {
    border: 2px solid var(--primary);
    box-shadow: 0 22px 44px -20px rgba(79, 70, 229, .35);
}

.svc-price .badge-pop {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    padding: 6px 16px;
    border-radius: 40px;
    white-space: nowrap;
}

.svc-price .plan {
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    color: var(--primary);
}

.svc-price .plan-note {
    font-size: 12.5px;
    color: var(--gray);
    margin-bottom: 14px;
}

.svc-price .price {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 2.6rem;
    color: var(--dark);
    line-height: 1;
}

.svc-price .price sup {
    font-size: 1.1rem;
    top: -1.1rem;
    margin-right: 2px;
}

.svc-price .price-period {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 18px;
}

.svc-price ul {
    list-style: none;
    padding: 18px 0 0;
    margin: 18px 0 22px;
    border-top: 1px solid var(--border);
}

.svc-price ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: var(--dark);
    padding: 7px 0;
}

.svc-price ul li i.yes {
    color: var(--secondary);
}

.svc-price ul li.off {
    color: var(--gray-light);
}

.svc-price ul li.off i {
    color: var(--gray-light);
}

.svc-price .buy {
    display: block;
    text-align: center;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: 14px;
    padding: 12px;
    border-radius: 40px;
    transition: all .25s;
    text-decoration: none;
}

.svc-price .buy.solid {
    background: var(--primary);
    color: #fff;
}

.svc-price .buy.solid:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.svc-price .buy.outline {
    border: 1.5px solid var(--border);
    color: var(--dark);
}

.svc-price .buy.outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ---------------------------------------------------------------------
   7. FAQ right-rail help box  (accordion uses Bootstrap, lightly themed)
   --------------------------------------------------------------------- */
.svc-faq-box {
    background: linear-gradient(160deg, var(--svc-banner-1), var(--svc-banner-2));
    color: #fff;
    border-radius: 20px;
    padding: 30px 26px;
    text-align: center;
    position: sticky;
    top: 20px;
}

.svc-faq-box .main-ic {
    font-size: 40px;
    color: var(--svc-accent);
    margin-bottom: 14px;
}

.svc-faq-box h4 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 8px;
}

.svc-faq-box p {
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.svc-faq-box .b {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 40px;
    font-weight: 700;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: 13.5px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: transform .2s;
}

.svc-faq-box .b:hover {
    transform: translateY(-2px);
}

.svc-faq-box .b.call {
    background: var(--svc-accent);
    color: #06283d;
}

.svc-faq-box .b.wa {
    background: #25d366;
    color: #fff;
}

/* Bootstrap accordion brand tweaks */
.svc-acc .accordion-item {
    border: 1px solid var(--border);
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.svc-acc .accordion-button {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 17px;
    color: var(--dark);
    background: var(--card-bg);
}

.svc-acc .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: rgba(79, 70, 229, .05);
    box-shadow: none;
}

.svc-acc .accordion-button:focus {
    box-shadow: none;
    border-color: var(--border);
}

.svc-acc .accordion-body {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
}

/* ---------------------------------------------------------------------
   8. CONTACT / ENQUIRY FORM
   --------------------------------------------------------------------- */
.svc-contact-info {
    background: var(--dark);
    color: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
}

.svc-contact-info h3 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 8px;
}

.svc-contact-info>p {
    color: rgba(255, 255, 255, .72);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.svc-ci {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.svc-ci:last-of-type {
    border-bottom: 0;
}

.svc-ci .ic {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    color: var(--svc-accent);
    font-size: 16px;
    flex-shrink: 0;
}

.svc-ci .lbl {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .55);
}

.svc-ci .val {
    font-weight: 600;
    font-size: 15px;
}

.svc-ci .val a {
    color: #fff;
    text-decoration: none;
}

.svc-form-wrap {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px 28px;
}

.svc-label {
    display: block;
    font-weight: 600;
    font-size: 13.5px;
    color: var(--dark);
    margin-bottom: 6px;
}

.svc-input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 14px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--dark);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}

.svc-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, .12);
}

.svc-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 40px;
    transition: background .2s, transform .2s;
}

.svc-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ---------------------------------------------------------------------
   9. RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 991.98px) {
    .svc-banner {
        padding: 44px 0 50px;
    }

    .svc-section {
        padding: 52px 0;
    }

    .svc-faq-box {
        position: static;
        margin-top: 24px;
    }
}

@media (max-width: 575.98px) {
    .svc-banner-stats {
        gap: 12px 22px;
        padding: 14px 18px;
    }

    .svc-stat-num {
        font-size: 1.4rem;
    }

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

/* ---------------------------------------------------------------------
   10. BANNER LEAD-FORM "QUOTE CARD"  (white card on the dark banner)
   vt-* helpers are scoped here so they never clash with global form CSS
   --------------------------------------------------------------------- */
.svc-quote-card {
    background: #fff;
    border-radius: 22px;
    padding: 24px 22px;
    border: 1px solid rgba(255, 255, 255, .5);
    box-shadow: 0 30px 60px -25px rgba(0, 0, 0, .55);
}

.svc-quote-head {
    text-align: center;
    margin-bottom: 16px;
}

.svc-quote-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(79, 70, 229, .1);
    color: var(--primary);
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    padding: 5px 14px;
    border-radius: 40px;
    margin-bottom: 10px;
}

.svc-quote-card h3 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 24px;
    color: var(--dark);
    margin: 0 0 4px;
}

.svc-quote-head p {
    color: var(--gray);
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0;
}

.svc-quote-card .form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.svc-quote-card .vt-required {
    color: #e11d48;
}

.svc-quote-card .form-control,
.svc-quote-card .form-select {
    border-radius: 10px;
    border: 1.5px solid var(--border);
    font-size: 14px;
    padding: 9px 12px;
    color: var(--dark);
}

.svc-quote-card .form-control:focus,
.svc-quote-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, .12);
}

.svc-quote-card .vt-message-box {
    resize: vertical;
}

.svc-quote-card .vt-char-count {
    font-size: 11px;
    color: var(--gray-light);
    text-align: right;
    margin-top: 4px;
}

.svc-quote-card .vt-human-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--dark);
}

.svc-quote-card .vt-human-check .form-check-input {
    margin: 0;
    cursor: pointer;
}

.svc-quote-card .vt-human-check .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.svc-quote-card .vt-submit-btn {
    background: var(--primary);
    border: none;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: 15px;
    border-radius: 40px;
    padding: 12px;
    transition: background .2s, transform .2s;
}

.svc-quote-card .vt-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.svc-quote-card .vt-small-note {
    font-size: 11px;
    color: var(--gray);
    text-align: center;
    margin-top: 10px;
    line-height: 1.45;
}

/* ---------------------------------------------------------------------
   11. LEAD-FORM WORKING  (char-count states, success modal, error toast)
   Functional styling only — uses site palette, does not alter the form design
   --------------------------------------------------------------------- */
.svc-quote-card .vt-char-count.limit-near {
    color: #d97706;
}

.svc-quote-card .vt-char-count.limit-full {
    color: #dc3545;
}

/* success modal */
.vt-success-modal .modal-content {
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(15, 23, 42, .28);
}

.vt-success-top {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 34px 28px 26px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.vt-success-top::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    right: -70px;
    top: -70px;
}

.vt-check-circle {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
    position: relative;
    z-index: 2;
    animation: vtPop .45s ease;
}

.vt-check-circle svg {
    width: 42px;
    height: 42px;
}

.vt-success-top h3 {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 6px;
    position: relative;
    z-index: 2;
}

.vt-success-top p {
    margin: 0;
    opacity: .9;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.vt-success-body {
    padding: 26px;
    text-align: center;
    background: #fff;
}

.vt-success-body h4 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.vt-success-body p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.vt-success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.vt-success-actions .btn {
    border-radius: 999px;
    padding: 11px 22px;
    font-weight: 700;
    font-size: 14px;
}

/* error toast (display:none → .show makes it visible — this CSS is required for it to work) */
.vt-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 99999;
    background: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    min-width: 280px;
    max-width: 360px;
    box-shadow: 0 20px 55px rgba(15, 23, 42, .18);
    border-left: 5px solid #dc3545;
    display: none;
}

.vt-toast.show {
    display: block;
    animation: vtSlide .25s ease;
}

.vt-toast strong {
    display: block;
    color: var(--dark);
    margin-bottom: 4px;
    font-size: 14px;
}

.vt-toast span {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.5;
}

@keyframes vtPop {
    0% {
        transform: scale(.65);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes vtSlide {
    from {
        transform: translateX(20px);
        opacity: 0;
    }

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

@media (max-width: 575px) {
    .vt-toast {
        left: 16px;
        right: 16px;
        top: 16px;
        min-width: auto;
    }
}

/* SEO-friendly counter typography for service pages using div instead of heading tags */
.counter-item .counter-title {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
    line-height: 1;
}

@media (max-width: 767px) {
    .counter-item .counter-title {
        font-size: 2.15rem;
    }
}

/* ---------------------------------------------------------------------
   RELATED SERVICE LINKS  —  city / country location-page grid
   Restyles the Bootstrap pill links into a tidy, responsive link-card
   grid that matches the site's card language (indigo accent, hover lift,
   sliding arrow). Scoped to .related-service-links so the global
   .badge / .svc-btn-ghost styles are left untouched.
   --------------------------------------------------------------------- */
.related-service-links .bg-white {
    padding: 28px !important;
}

/* each group (cities, then countries) becomes an auto-fill grid */
.related-service-links .bg-white>.mb-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 12px;
    margin-bottom: 0 !important;
}

/* clear separation between the city block and the country block */
.related-service-links .bg-white>.mb-3+.mb-3 {
    margin-top: 26px !important;
    padding-top: 26px;
    border-top: 1px dashed var(--border);
}

/* the link itself: reset the pill, build a clean link-card */
.related-service-links .badge {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin: 0 !important;
    padding: 13px 16px !important;
    text-align: left;
    white-space: normal;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--dark) !important;
    background: #fff !important;
    border: 1px solid var(--border) !important;
    border-radius: 12px !important;
    transition: transform .2s ease, box-shadow .2s ease,
        border-color .2s ease, background .2s ease, color .2s ease;
}

.related-service-links .badge:hover {
    color: var(--primary) !important;
    border-color: var(--primary);
    background: rgba(79, 70, 229, .04) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px -14px rgba(79, 70, 229, .45);
}

.related-service-links .badge:focus-visible {
    outline: none;
    border-color: var(--primary);
    color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, .35);
}

/* trailing arrow */
.related-service-links .badge i {
    flex: 0 0 auto;
    margin: 0 !important;
    font-size: 12px;
    color: var(--primary);
    transition: transform .2s ease;
}

.related-service-links .badge:hover i {
    transform: translateX(4px);
}

/* "View Complete Sitemap": the ghost variant is built for dark banners,
   so on this white card it rendered white-on-white (invisible). Make it
   a solid, visible button here only. */
.related-service-links .svc-btn-ghost {
    display: inline-flex;
    margin-top: 28px !important;
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.related-service-links .svc-btn-ghost:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px -12px rgba(79, 70, 229, .5);
}

@media (max-width: 575.98px) {
    .related-service-links .bg-white>.mb-3 {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------------------
   12. LEGACY SUB-PAGE UI NORMALIZATION
   Fixes location/country/package sub pages that were generated with
   older class names: feature-card, industry-card, process-card,
   svc-check-list and plain Bootstrap accordion.
   This keeps their content/SEO intact while matching the modern service UI.
   --------------------------------------------------------------------- */
.feature-card {
    position: relative;
    height: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .03);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px -18px rgba(79, 70, 229, .35);
    border-color: rgba(79, 70, 229, .4);
}

.feature-card .feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
    font-size: 20px;
    margin: 0 0 18px;
    background: var(--primary);
    color: #fff;
}

.feature-card .feature-icon.vts-theme-green,
.feature-card .feature-icon.vts-theme-blue,
.feature-card .feature-icon.vts-theme-purple,
.feature-card .feature-icon.vts-theme-orange,
.feature-card .feature-icon.vts-theme-red {
    background: var(--primary);
    color: #fff;
}

.feature-card:nth-child(2n) .feature-icon,
.row>[class*="col-"]:nth-child(2n) .feature-card .feature-icon {
    background: var(--secondary);
}

.row>[class*="col-"]:nth-child(3n) .feature-card .feature-icon {
    background: var(--accent);
}

.row>[class*="col-"]:nth-child(4n) .feature-card .feature-icon {
    background: #f59e0b;
}

.feature-card h3,
.feature-card h4,
.feature-card h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 19px;
    line-height: 1.3;
    color: var(--dark);
    margin: 0 0 8px;
}

.feature-card p {
    color: var(--gray);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}

.industry-card {
    position: relative;
    height: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 22px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.industry-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px -20px rgba(79, 70, 229, .28);
    border-color: rgba(79, 70, 229, .35);
}

.industry-card i {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 15px;
    color: var(--primary);
    background: rgba(79, 70, 229, .09);
    font-size: 18px;
}

.industry-card h3,
.industry-card h4,
.industry-card h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.25;
    color: var(--dark);
    margin: 0 0 8px;
}

.industry-card p {
    color: var(--gray);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}

.process-card {
    position: relative;
    height: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 24px 26px;
    text-align: center;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px -18px rgba(79, 70, 229, .30);
    border-color: rgba(79, 70, 229, .35);
}

.process-card .process-num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: -58px auto 18px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 17px;
    color: #fff;
    background: var(--primary);
    box-shadow: 0 8px 18px rgba(79, 70, 229, .35);
}

.process-card h3,
.process-card h4,
.process-card h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.35;
    color: var(--dark);
    margin: 0 0 8px;
}

.process-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.svc-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-check-list li {
    position: relative;
    padding: 9px 0 9px 34px;
    color: var(--dark);
    font-size: 15.5px;
    line-height: 1.55;
    border-bottom: 1px dashed var(--border);
}

.svc-check-list li:last-child {
    border-bottom: 0;
}

.svc-check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 9px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 10px;
    color: var(--secondary);
    background: rgba(13, 148, 136, .12);
}

.svc-section .accordion-item {
    border: 1px solid var(--border);
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--card-bg);
}

.svc-section .accordion-button {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 17px;
    color: var(--dark);
    background: var(--card-bg);
}

.svc-section .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: rgba(79, 70, 229, .05);
    box-shadow: none;
}

.svc-section .accordion-button:focus {
    box-shadow: none;
    border-color: var(--border);
}

.svc-section .accordion-body {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
}

.related-service-links .badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 9px 13px;
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--dark) !important;
    text-decoration: none;
    transition: transform .2s, border-color .2s, color .2s;
}

.related-service-links .badge:hover {
    transform: translateY(-2px);
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

/* Keep cards balanced on smaller screens */
@media (max-width: 767.98px) {

    .feature-card,
    .industry-card,
    .process-card {
        padding: 24px 20px;
    }

    .process-card .process-num {
        margin-top: 0;
    }
}

/* refine legacy process numbers to match modern svc-step badges */
.process-card .process-num {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

@media (max-width: 767.98px) {
    .process-card .process-num {
        position: static;
        transform: none;
        margin: 0 auto 16px;
    }
}

/* Common service banner background system */
.svc-banner.has-bg {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(90deg,
            rgba(18, 17, 64, 0.96) 0%,
            rgba(36, 32, 109, 0.93) 48%,
            rgba(28, 69, 135, 0.88) 100%),
        var(--svc-banner-bg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.svc-banner.has-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.35;
}

.svc-banner.has-bg::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -160px;
    width: 520px;
    height: 520px;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle, rgba(45, 211, 203, 0.22), transparent 65%);
    filter: blur(6px);
}

.svc-banner.has-bg .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 575px) {
    .svc-banner.has-bg {
        background:
            linear-gradient(180deg,
                rgba(18, 17, 64, 0.97) 0%,
                rgba(35, 31, 105, 0.95) 55%,
                rgba(25, 57, 118, 0.92) 100%),
            var(--svc-banner-bg);
        background-size: cover;
        background-position: center center;
    }
}

/* Amazon master service-page visual sync: reusable hero + media cards */
.svc-banner.service-master-hero {
    background:
        linear-gradient(90deg, rgba(13, 13, 48, .96) 0%, rgba(22, 20, 72, .90) 45%, rgba(23, 72, 140, .40) 100%),
        url("../images/bg/service-banner-bg.webp");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}
.svc-media-card {
    margin: 0;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 22px 52px -28px rgba(15, 23, 42, .28);
}
.svc-media-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 17px;
    object-fit: cover;
}
.svc-media-card figcaption {
    margin: 12px 4px 2px;
    color: var(--gray);
    font-size: 13.5px;
    line-height: 1.5;
}
@media (max-width: 991.98px) {
    .svc-banner.service-master-hero {
        background:
            linear-gradient(180deg, rgba(13, 13, 48, .97) 0%, rgba(22, 20, 72, .93) 62%, rgba(23, 72, 140, .65) 100%),
            url("../images/bg/service-banner-bg.webp");
        background-size: cover;
        background-position: center;
    }
}

/* VTS FIX: SIMPLE RELATED LINKS UI
   Simple compact pill/grid styling for all related-service-links sections. */
.related-service-links {
    background: #f8fafc;
}

.related-service-links .related-link-panel,
.related-service-links .bg-white {
    padding: 22px !important;
    border-radius: 18px !important;
    border: 1px solid #e5e7eb !important;
    background: #fff !important;
    box-shadow: 0 12px 30px -24px rgba(15, 23, 42, .35) !important;
    overflow: hidden;
}

.related-service-links .related-link-group,
.related-service-links .bg-white > .related-link-group.mb-3,
.related-service-links .bg-white > .related-link-group {
    display: block !important;
    margin: 0 0 18px !important;
    padding: 0 !important;
}

.related-service-links .related-link-group + .related-link-group {
    padding-top: 18px !important;
    border-top: 1px solid #eef2f7;
}

.related-service-links .related-link-group h3,
.related-service-links .related-link-group .h6 {
    display: block !important;
    margin: 0 0 10px !important;
    font-family: var(--font-head);
    font-size: 15px !important;
    font-weight: 800 !important;
    color: var(--dark);
    letter-spacing: -.01em;
}

.related-service-links .related-links-grid,
.related-service-links .related-link-group > div,
.related-service-links .bg-white > div.mb-3:not(.related-link-group) {
    display: flex !important;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 9px;
    width: 100%;
}

.related-service-links .badge,
.related-service-links .related-link-card {
    display: inline-flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    flex: 0 1 auto;
    width: auto;
    min-height: 36px;
    margin: 0 !important;
    padding: 8px 12px !important;
    white-space: normal !important;
    text-align: left;
    border-radius: 999px !important;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    color: #111827 !important;
    background: #f9fafb !important;
    border: 1px solid #e5e7eb !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.related-service-links .badge i,
.related-service-links .related-link-card i {
    flex: 0 0 auto;
    margin: 0 !important;
    color: var(--primary);
    font-size: 11px;
}

.related-service-links .badge:hover,
.related-service-links .related-link-card:hover {
    color: var(--primary) !important;
    border-color: rgba(79, 70, 229, .35) !important;
    background: rgba(79, 70, 229, .05) !important;
    transform: none !important;
    box-shadow: none !important;
}

.related-service-links .badge:hover i,
.related-service-links .related-link-card:hover i {
    transform: translateX(2px);
}

.related-service-links .related-sitemap-btn,
.related-service-links .svc-btn-ghost {
    display: inline-flex !important;
    width: auto !important;
    min-height: 40px;
    margin-top: 4px !important;
    padding: 10px 16px !important;
    border-radius: 999px !important;
}

@media (max-width: 767.98px) {
    .related-service-links .related-link-panel,
    .related-service-links .bg-white {
        padding: 18px !important;
    }

    .related-service-links .badge,
    .related-service-links .related-link-card {
        flex: 1 1 100%;
        width: 100%;
        border-radius: 12px !important;
    }
}
/* Purani CSS ko hata kar isko paste karein */

/* Ab pure background ka white space khatam karke ek soft premium dark block bana diya */
.enquiry-section-dark {
  background-color: #0d1b2a; /* Premium Dark Navy/Black (Aapki theme ke hisab se) */
  padding: 10px 0;
  font-family: sans-serif;
}

/* Central Card ab full white aur popping dikhega */
.enquiry-card-white {
  background: #ffffff; 
  border-radius: 16px; 
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); /* Deep shadow taaki card standout kare */
}
.enquiry-section-dark {
  background-color: #0d1b2a;
  padding: 15px 0 !important;
}

.enquiry-card-white {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 15px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.text-secondary.small-text {
  color: #555555;
  font-size: 0.9rem;
  margin-bottom: 15px !important;
}

.btn-contact {
  background-color: #0056b3;
  color: #ffffff !important;
  border: 2px solid #0056b3;
  border-radius: 6px;
  padding: 8px 25px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease-in-out;
}

.btn-contact:hover {
  background-color: #111111;
  border-color: #111111;
  color: #ffffff !important;
}

/* Text & Label Colors */
.bg-light-blue {
  background-color: #e6f0fa; 
}

.text-primary {
  color: #0056b3 !important; 
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.text-dark {
  color: #111111 !important; 
  font-weight: 700;
}

.text-secondary.small-text {
  color: #555555; 
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Premium Blue Button */
.btn-contact {
  background-color: #0056b3; 
  color: #ffffff !important; 
  border: 2px solid #0056b3;
  border-radius: 8px;
  padding: 12px 35px; 
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.15);
  transition: all 0.3s ease-in-out; 
}

/* Hover Effect: Premium Dark Black */
.btn-contact:hover {
  background-color: #111111; 
  border-color: #111111;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.2);
  transform: translateY(-1px);
}
.enquiry-section-dark {
  background-image: linear-gradient(rgba(13, 27, 42, 0.35), rgba(13, 27, 42, 0.55)), url('../images/mybg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 15px 0 !important;
}

.enquiry-card-white {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 15px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.text-secondary.small-text {
  color: #555555;
  font-size: 0.9rem;
  margin-bottom: 15px !important;
}

.btn-contact {
  background-color: #0056b3;
  color: #ffffff !important;
  border: 2px solid #0056b3;
  border-radius: 6px;
  padding: 8px 25px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease-in-out;
}

.btn-contact:hover {
  background-color: #111111;
  border-color: #111111;
  color: #ffffff !important;
}
