:root {
    --vp-blue: #0b5ea8;
    --vp-blue-dark: #073a6d;
    --vp-blue-light: #e8f2fb;
    --vp-teal: #3197db;
    --vp-blue: #3197db;
    --vp-ink: #000;
    --vp-grey: #000;
    --vp-border: #e2e8ef;
    --vp-radius: 14px;
    --vp-radius-sm: 8px;
    --vp-shadow: 0 10px 30px rgba(10, 40, 70, .08);
    --vp-shadow-hover: 0 16px 40px rgba(10, 40, 70, .14);
}

.vp-services-page section {
    overflow: hidden;
}

.vp-services-page .container {
    max-width: 1240px;
}

/* -------------------------------------------------------------
   Section heading kit
------------------------------------------------------------- */
.vp-sec-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--vp-teal);
    margin-bottom: 14px;
}

.vp-sec-kicker::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--vp-blue);
    display: inline-block;
}

.vp-sec-title {
    font-family: 'Arial', sans-serif;
    font-weight: 800;
    color: var(--vp-ink);
    font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 16px;
}

.vp-sec-sub {
    color: var(--vp-grey);
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 760px;
}

.vp-sec-head-center {
    text-align: center;
    margin: 0 auto 48px;
}

.vp-sec-head-center .vp-sec-kicker::before {
    display: none;
}

.vp-sec-head-center .vp-sec-sub {
    margin: 0 auto;
}

/* -------------------------------------------------------------
   1. OVERVIEW / INTRO (two column)
------------------------------------------------------------- */
.vp-intro {
    padding: 50px 0 50px;
    background: #fff;
}

.vp-intro-img-wrap {
    position: relative;
}

.vp-intro-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: var(--vp-radius);
    box-shadow: var(--vp-shadow);
    display: block;
}

.vp-intro-badge {
    position: absolute;
    /* left: -24px; */
    bottom: -24px;
    background: var(--vp-blue);
    color: #fff;
    border-radius: var(--vp-radius-sm);
    padding: 18px 22px;
    box-shadow: var(--vp-shadow-hover);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 230px;
}

.vp-intro-badge svg {
    width: 30px;
    height: 30px;
    flex: none;
    stroke: #fff;
}

.vp-intro-badge strong {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
    font-family: 'Arial', sans-serif;
}

.vp-intro-badge span {
    font-size: .78rem;
}

.vp-checklist {
    list-style: none;
    margin: 26px 0 32px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.vp-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .96rem;
    color: var(--vp-ink);
    font-weight: 500;
}

.vp-checklist svg {
    width: 20px;
    height: 20px;
    flex: none;
    stroke: var(--vp-teal);
    margin-top: 2px;
}

.vp-dual-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
}

.vp-btn-solid,
.vp-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .94rem;
    text-decoration: none;
    transition: all .25s ease;
    border: 2px solid transparent;
}

.vp-btn-solid {
    background: var(--vp-blue);
    color: #fff;
}

.vp-btn-solid:hover {
    background: var(--vp-blue-dark);
    color: #fff;
    transform: translateY(-2px);
}

.vp-btn-outline {
    border-color: var(--vp-blue);
    color: var(--vp-blue);
}

.vp-btn-outline:hover {
    background: var(--vp-blue);
    color: #fff;
    transform: translateY(-2px);
}

.vp-btn-solid svg,
.vp-btn-outline svg {
    width: 18px;
    height: 18px;
}

/* -------------------------------------------------------------
   2. SERVICES GRID
------------------------------------------------------------- */
.vp-services-grid-section {
    padding: 50px 0;
    background: var(--vp-blue-light);
    position: relative;
}

.vp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.vp-service-card {
    background: #fff;
    border-radius: var(--vp-radius);
    padding: 32px 26px;
    box-shadow: var(--vp-shadow);
    transition: all .3s ease;
    height: 100%;
    border: 1px solid var(--vp-border);
    position: relative;
}

.vp-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--vp-shadow-hover);
    border-color: transparent;
}

.vp-service-num {
    position: absolute;
    top: 22px;
    right: 26px;
    font-family: 'Arial', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: #3197db;
}

.vp-service-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: var(--vp-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vp-service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--vp-blue);
}

.vp-service-card:hover .vp-service-icon {
    background: var(--vp-blue);
}

.vp-service-card:hover .vp-service-icon svg {
    stroke: #fff;
}

.vp-service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--vp-ink);
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

.vp-service-card p {
    font-size: 1rem;
    color: var(--vp-grey);
    line-height: 1.65;
    margin: 0;
}

/* -------------------------------------------------------------
   3. WHY VARI PONTOONS (feature cards)
------------------------------------------------------------- */
.vp-why-section {
    padding: 50px 0;
    background: #fff;
}

.vp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vp-why-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 26px;
    border-radius: var(--vp-radius);
    border: 1px solid var(--vp-border);
    transition: all .3s ease;
    background: #fff;
}

.vp-why-card:hover {
    box-shadow: var(--vp-shadow-hover);
    border-color: transparent;
    background: var(--vp-blue-light);
}

.vp-why-num {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--vp-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    font-weight: 800;
    font-size: 1rem;
}

.vp-why-card h4 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--vp-ink);
    margin-bottom: 6px;
    font-family: 'Arial', sans-serif;
}

.vp-why-card p {
    font-size: 1rem;
    color: var(--vp-grey);
    margin: 0;
    line-height: 1.6;
}

/* -------------------------------------------------------------
   4. WHAT SETS US APART / EXPERTISE GALLERY
------------------------------------------------------------- */
.vp-expertise-section {
    padding: 50px 0;
    background: var(--vp-ink);
    color: #fff;
    position: relative;
}

.vp-expertise-section .vp-sec-title,
.vp-expertise-section .vp-sec-sub {
    color: #fff;
}

.vp-expertise-section .vp-sec-sub {
    color: rgba(255, 255, 255, .72);
}

.vp-expertise-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 44px;
}

.vp-expertise-item {
    position: relative;
    border-radius: var(--vp-radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--vp-shadow);
}

.vp-expertise-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}

.vp-expertise-item:hover img {
    transform: scale(1.08);
}

.vp-expertise-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 20, 35, 0) 45%, rgba(7, 20, 35, .82) 100%);
}

.vp-expertise-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px 18px;
    z-index: 2;
    font-weight: 700;
    font-size: .94rem;
    color: #fff;
}

/* -------------------------------------------------------------
   5. STATS BAR (reuses .vp-stats-row / .count-up / .vp-progress-fill
      hooks already wired up by the inline script in the shared template)
------------------------------------------------------------- */
.vp-stats-section {
    padding: 60px 0;
    background: var(--vp-blue);
}

.vp-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.vp-stat-item {
    color: #fff;
    padding: 10px;
}

.vp-stat-item .count-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.vp-stat-item .count-up {
    font-family: 'Arial', sans-serif;
    font-weight: 800;
    font-size: 2.6rem;
    line-height: 1;
}

.vp-stat-item .count-plus {
    font-size: 1.8rem;
    font-weight: 800;
}

.vp-stat-item .stat-label {
    margin-top: 8px;
    font-size: .9rem;
    opacity: .85;
    font-weight: 500;
}

.vp-progress-track {
    display: none;
}

/* not used on this layout, hook kept for JS compatibility */

/* -------------------------------------------------------------
   6. PROJECT SHOWCASE
------------------------------------------------------------- */
.vp-showcase-section {
    padding: 80px 0;
    background: #fff;
}

.vp-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.vp-showcase-card {
    border-radius: var(--vp-radius);
    overflow: hidden;
    box-shadow: var(--vp-shadow);
    transition: all .3s ease;
    border: 1px solid var(--vp-border);
    background: #fff;
}

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

.vp-showcase-img {
    position: relative;
    overflow: hidden;
    height: 230px;
}

.vp-showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.vp-showcase-card:hover .vp-showcase-img img {
    transform: scale(1.08);
}

.vp-showcase-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--vp-orange);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 6px 12px;
    border-radius: 50px;
}

.vp-showcase-body {
    padding: 22px 24px;
}

.vp-showcase-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--vp-ink);
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
}

.vp-showcase-body p {
    font-size: .88rem;
    color: var(--vp-grey);
    margin-bottom: 14px;
    line-height: 1.6;
}

.vp-showcase-link {
    font-size: .86rem;
    font-weight: 700;
    color: var(--vp-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vp-showcase-link svg {
    width: 16px;
    height: 16px;
    transition: transform .25s ease;
}

.vp-showcase-link:hover svg {
    transform: translateX(4px);
}

/* -------------------------------------------------------------
   7. CTA BAND
------------------------------------------------------------- */
.vp-cta-band {
    padding: 60px 0;
    background: linear-gradient(120deg, var(--vp-blue) 0%, var(--vp-teal) 100%);
    color: #fff;
    text-align: center;
}

.vp-cta-band h2 {
    font-family: 'Arial', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 1.2rem+1.2vw, 2.1rem);
    margin-bottom: 14px;
}

.vp-cta-band p {
    opacity: .9;
    max-width: 620px;
    margin: 0 auto 28px;
}

.vp-cta-band .vp-btn-solid {
    background: #fff;
    color: var(--vp-blue);
}

.vp-cta-band .vp-btn-solid:hover {
    background: var(--vp-ink);
    color: #fff;
}

.vp-cta-band .vp-btn-outline {
    border-color: #fff;
    color: #fff;
}

.vp-cta-band .vp-btn-outline:hover {
    background: #fff;
    color: var(--vp-blue);
}

/* -------------------------------------------------------------
   8. FAQ
------------------------------------------------------------- */
.vp-faq-section {
    padding: 50px 0;
    background: var(--vp-blue-light);
}

.vp-faq-list {
    max-width: 860px;
    margin: 0 auto;
}

.vp-faq-item {
    background: #fff;
    border-radius: var(--vp-radius-sm);
    margin-bottom: 14px;
    border: 1px solid var(--vp-border);
    overflow: hidden;
}

.vp-faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 700;
    color: var(--vp-ink);
    font-size: .98rem;
    cursor: pointer;
}

.vp-faq-q svg {
    width: 20px;
    height: 20px;
    flex: none;
    stroke: var(--vp-blue);
    transition: transform .3s ease;
}

.vp-faq-item.active .vp-faq-q svg {
    transform: rotate(45deg);
}

.vp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.vp-faq-item.active .vp-faq-a {
    max-height: 280px;
}

.vp-faq-a-inner {
    padding: 0 24px 22px;
    color: var(--vp-grey);
    font-size: .92rem;
    line-height: 1.7;
}

/* -------------------------------------------------------------
   9. RELATED VERTICALS STRIP
------------------------------------------------------------- */
.vp-related-section {
    padding: 70px 0 80px;
    background: #fff;
}

.vp-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.vp-related-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid var(--vp-border);
    border-radius: var(--vp-radius-sm);
    text-decoration: none;
    color: var(--vp-ink);
    font-weight: 600;
    font-size: .92rem;
    transition: all .25s ease;
}

.vp-related-chip:hover {
    background: var(--vp-blue);
    color: #fff;
    border-color: var(--vp-blue);
    transform: translateY(-3px);
}

.vp-related-chip svg {
    width: 20px;
    height: 20px;
    flex: none;
    stroke: var(--vp-blue);
    transition: stroke .25s ease;
}

.vp-related-chip:hover svg {
    stroke: #fff;
}

/* =============================================================
   RESPONSIVE BREAKPOINTS
============================================================= */

/* < 576px */
@media (max-width:575.98px) {
    .vp-intro {
        padding: 56px 0 40px;
    }

    .vp-checklist {
        grid-template-columns: 1fr;
    }

    .vp-intro-badge {
        left: 12px;
        bottom: -18px;
        padding: 12px 16px;
        max-width: 190px;
    }

    .vp-services-grid,
    .vp-why-grid,
    .vp-expertise-gallery,
    .vp-showcase-grid {
        grid-template-columns: 1fr;
    }

    .vp-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 12px;
    }

    .vp-stat-item .count-up {
        font-size: 2rem;
    }

    .vp-related-grid {
        grid-template-columns: 1fr;
    }

    .vp-dual-cta {
        flex-direction: column;
    }

    .vp-dual-cta a {
        width: 100%;
        justify-content: center;
    }
}

/* >= 576px */
@media (min-width:576px) and (max-width:767.98px) {

    .vp-services-grid,
    .vp-why-grid,
    .vp-expertise-gallery,
    .vp-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

/* >= 768px */
@media (min-width:768px) and (max-width:991.98px) {

    .vp-services-grid,
    .vp-why-grid,
    .vp-expertise-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .vp-stats-row {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .vp-intro .row {
        flex-direction: column-reverse;
    }
}

/* >= 992px */
@media (min-width:992px) and (max-width:1199.98px) {

    .vp-services-grid,
    .vp-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vp-why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vp-related-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* >= 1200px */
@media (min-width:1200px) and (max-width:1399.98px) {
    .vp-services-page .container {
        max-width: 1140px;
    }
}

/* >= 1400px */
@media (min-width:1400px) {
    .vp-services-page .container {
        max-width: 1170px;
    }
}



/* -----------------------------------------------------------
       Accessories image grid — new pattern, not present in
       newstyle-5.css (existing .vp-service-card is icon-based,
       existing .vp-showcase-card carries a description block we
       don't need here). Built using the same design tokens
       (--vp-blue, --vp-teal, --vp-radius, --vp-shadow, etc.)
    ----------------------------------------------------------- */
.vp-accessories-section {
    padding: 50px 0;
    background: var(--vp-blue-light);
}

.vp-accessory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vp-accessory-card {
    background: #fff;
    border-radius: var(--vp-radius);
    overflow: hidden;
    border: 1px solid var(--vp-border);
    box-shadow: var(--vp-shadow);
    transition: all .3s ease;
}

.vp-accessory-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--vp-shadow-hover);
    border-color: transparent;
}

.vp-accessory-img {
    position: relative;
    overflow: hidden;
    height: 190px;
}

.vp-accessory-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}

.vp-accessory-card:hover .vp-accessory-img img {
    transform: scale(1.08);
}

.vp-accessory-body {
    padding: 14px 16px 18px;
    text-align: center;
    border-top: 3px solid var(--vp-blue);
}

.vp-accessory-body h3 {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    font-size: .96rem;
    color: var(--vp-ink);
    margin: 0;
    line-height: 1.4;
}

/* Responsive — aligned to the site's six standard breakpoints */
@media (max-width:575.98px) {
    .vp-accessory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .vp-accessory-img {
        height: 150px;
    }
}

@media (min-width:576px) and (max-width:767.98px) {
    .vp-accessory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:768px) and (max-width:991.98px) {
    .vp-accessory-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width:992px) and (max-width:1199.98px) {
    .vp-accessory-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}