:root {
    --font-boldonse: "Boldonse", system-ui;
    --font-lobster: "Lobster", cursive;
    --font-oleo-script: "Oleo Script", cursive;
    --font-pacifico: "Pacifico", cursive;
    --font-poppins: "Poppins", sans-serif;

    --scm-pink: #ff4fa3;
    --scm-pink-bright: #ff5cab;
    --scm-pink-dark: #c2185b;
    --scm-pink-deep: #8f0e42;
    --scm-black: #111111;
    --scm-light: #fff7fb;
    --scm-border: #f1bfd4;
    --white: #ffffff;
    --focus-ring: #ffb6d7;

    --header-bg: rgba(255, 255, 255, 0.97);
    --header-border: 5px solid rgba(0, 0, 0, 1);
    --header-shadow: 0 12px 32px rgba(17, 17, 17, 0.08);

    --sloganptone-color: #000000;
    --sloganpttwo-color: #ffffff;

    --btn-hero-bg: #000000;
    --btn-hero-bg-hover: #333333;
    --btn-font-color: #ffffff;
    --btn-font-color-hover: #ffffff;
    --btn-border: 2px solid #898989;
    --btn-border-color-hover: #ffffff;
    --btn-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);

    --btn-services-bg: #F54391;
    --btn-services-bg-hover: #8f0e42;
    --btn-services-font-color: #ffffff;
    --btn-services-font-color-hover: #ffffff;
    --btn-services-border: 4px solid #000000;
    --btn-services-border-color-hover: #ffffff;
    --btn-services-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);

    --slide-show-overlay-bg: rgba(17, 17, 17, 0.82);
    --slide-show-shell-bg: #fff7fb;
    --slide-show-shell-border: 4px solid #000000;
    --slide-show-shell-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
    --slide-show-title-color: #111111;
    --slide-show-kicker-color: #c2185b;
    --slide-show-caption-bg: rgba(17, 17, 17, 0.82);
    --slide-show-caption-color: #ffffff;
    --slide-show-arrow-bg: #f54391;
    --slide-show-arrow-color: #111111;
    --slide-show-arrow-border: 3px solid #000000;
    --slide-show-thumb-border: 3px solid transparent;
    --slide-show-thumb-active-border: 3px solid #f54391;
    --slide-show-close-bg: #111111;
    --slide-show-close-color: #ffffff;

    --left-side-heading-color: #ffffff;
    --why-us-ul-li-color: #ffffff;
    --why-us-heading-color: #c2185b;

    --why-us-right-side-header-color: #fdfdfd;
    --why-us-right-side-p-color: #fffdfd;

    --brand-highlight-color: #f54391;


    --footer-heading-color: #000000;
    --footer-text-color: #ffffff;
    --footer-link-color: #ffffff;
    --footer-link-color-hover: #000000;
    --footer-background-color: #f54391;
    --footer-header-dropshadow: 0 2px 4px rgba(255, 255, 255, 0.601);

}

/* ================================
   BASE ACCESSIBILITY
================================ */
html {
    scroll-padding-top: 6rem;
}

body {
    font-family: var(--font-poppins);
    color: var(--scm-black);
    background: var(--white);
}

main:focus {
    outline: none;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 2000;
    padding: 0.85rem 1.1rem;
    border: 3px solid var(--scm-black);
    border-radius: 999px;
    background: var(--white);
    color: var(--scm-black);
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.16);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

/* Clear, high-contrast keyboard focus without flattening the brand. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible,
.navbar-toggler:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 3px;
    box-shadow: 0 0 0 2px var(--scm-black), 0 0 0 7px rgba(255, 79, 163, 0.35) !important;
}

a,
button,
input,
select,
textarea {
    -webkit-tap-highlight-color: rgba(255, 79, 163, 0.22);
}

img {
    max-width: 100%;
    height: auto;
}

/* ================================
   BRAND HELPERS
================================ */
.section-kicker,
.footer-heading,
.review-stars,
.service-icon {
    color: var(--scm-pink-dark);
}

.footer-heading {
    color: var(--footer-heading-color);
    text-shadow: var(--footer-header-dropshadow);
}

.brand-highlight {
    color: var(--brand-highlight-color);
    font-weight: 800;
}

.service-icon img {
    width: 48px;
    height: 48px;

}

.cta-primary-btn {
    min-height: 48px;
    background-color: var(--scm-pink-dark) !important;
    border: 2px solid var(--scm-black) !important;
    color: var(--white) !important;
    box-shadow: 0 10px 20px rgba(143, 14, 66, 0.2);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease,
        color 0.18s ease;
}

.cta-primary-btn:hover,
.cta-primary-btn:focus-visible {
    background-color: var(--scm-pink-bright) !important;
    color: var(--scm-black) !important;
    box-shadow: 0 14px 26px rgba(255, 79, 163, 0.24);
    transform: translateY(-1px);
}

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

.quote-panel {
    background-color: var(--scm-pink-dark);
    color: var(--white);
}

.review-stars {
    font-size: 1.1rem;
    letter-spacing: 0.08em;
}

.form-control,
.form-select,
.btn,
.nav-link,
.navbar-toggler,
footer a,
.text-decoration-none {
    min-height: 44px;
}

.form-control,
.form-select {
    border: 2px solid #d3d3d3;
    border-radius: 1rem;
    padding: 0.8rem 1rem;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--scm-pink-dark);
}

#leadForm [aria-invalid="true"] {
    border-color: #ff7db4;
    box-shadow: 0 0 0 0.2rem rgba(245, 67, 145, 0.18);
}

.error-msg {
    display: block;
    margin-top: 0.35rem;
    color: #ffb8d7;
    font-size: 0.92rem;
    font-weight: 700;
}

#leadForm.is-submitting {
    opacity: 0.92;
}

#leadForm.is-submitting .form-control,
#leadForm.is-submitting .form-select,
#leadForm.is-submitting textarea {
    background-color: rgba(255, 255, 255, 0.96);
}

.form-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border: 2px solid transparent;
    border-radius: 1rem;
    font-weight: 700;
    line-height: 1.45;
}

.form-status::before {
    flex: 0 0 auto;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 800;
}

.form-status--info {
    background: #fff1f8;
    border-color: #f54391;
    color: #7f1145;
}

.form-status--info::before {
    content: "...";
    background: #f54391;
    color: #ffffff;
}

.form-status--success {
    background: #f4fff9;
    border-color: #31b56d;
    color: #0f6a3b;
}

.form-status--success::before {
    content: "✓";
    background: #31b56d;
    color: #ffffff;
}

.form-status--error {
    background: #fff3f6;
    border-color: #f25f8b;
    color: #8f123f;
}

.form-status--error::before {
    content: "!";
    background: #f25f8b;
    color: #ffffff;
}

#submitBtn {
    gap: 0.65rem;
}

.form-submit-spinner {
    width: 1.05rem;
    height: 1.05rem;
    border: 0.18rem solid rgba(255, 255, 255, 0.45);
    border-top-color: #ffffff;
    border-radius: 999px;
    animation: form-submit-spin 0.8s linear infinite;
}

@keyframes form-submit-spin {
    to {
        transform: rotate(360deg);
    }
}

.footer-links li a {
    color: var(--footer-link-color) !important;
    text-decoration: none;
    list-style: none;

}

.footer-links li a:hover,
.footer-links li a:focus-visible {
    color: var(--footer-link-color-hover) !important;
}

section {
    min-height: auto;
    height: auto;
}

.mobile-quote {
    display: none;
}

/* ================================
   HEADER / NAV
================================ */
.site-header {
    background: var(--header-bg);
    border-bottom: var(--header-border);
    border-top: var(--header-border);
    box-shadow: var(--header-shadow);
    backdrop-filter: blur(12px);
}

.site-nav {
    min-height: 84px;
    max-height: none;
    padding-top: 0.7rem !important;
    padding-bottom: 0.7rem !important;
}

.nav-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

}

.nav-full-logo-text {
    max-height: 150px !important;
    width: auto;
    display: block;

}

.nav-full-logo {
    max-height: 104px !important;
    width: auto;
    display: block;
}

.nav-brand-mobile {
    display: none;
}

.nav-logo-center {
    margin: 0 0.8rem;
    flex-shrink: 0;
}

.nav-bar-links {
    width: 100%;
}

.nav-split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.site-nav .nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.6rem 0.9rem !important;
    background: transparent;
    color: var(--scm-black) !important;
    border: 2px solid transparent;
    border-radius: 999px;
    box-shadow: none;
    font-size: clamp(0.84rem, 0.84vw, 0.98rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    text-shadow: none;
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease,
        transform 0.18s ease, box-shadow 0.18s ease;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus-visible {
    color: var(--scm-pink-deep) !important;
    background: rgba(255, 79, 163, 0.12);
    border-color: rgba(194, 24, 91, 0.35);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(255, 25, 124, 0.14);
}

.site-nav .nav-link:active {
    transform: translateY(0);
    box-shadow: none;
}

.nav-item:last-child .nav-link {
    background: var(--scm-pink-dark);
    color: var(--white) !important;
    border-color: var(--scm-pink-dark);
    box-shadow: 0 12px 22px rgba(194, 24, 91, 0.25);
}

.nav-item:last-child .nav-link:hover,
.nav-item:last-child .nav-link:focus-visible {
    background: var(--scm-pink-bright);
    color: var(--scm-black) !important;
    border-color: var(--scm-pink-bright);
    box-shadow: 0 16px 28px rgba(255, 79, 163, 0.3);
}

.navbar-toggler {
    min-width: 48px;
    min-height: 48px;
    border: 2px solid var(--scm-black);
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(255, 25, 124, 0.2);
    background: var(--scm-pink);
    padding: 0.42rem 0.55rem;
}

.navbar-toggler-icon {
    width: 1.25em;
    height: 1.25em;
    filter: invert(1);
}

/* ================================
   HERO
================================ */
.sloganptone {
    font-family: var(--font-boldonse);
    color: var(--sloganptone-color) !important;
    text-shadow: 0 2px 4px rgba(194, 24, 91, 0.25);
}

.sloganpttwo {
    font-family: var(--font-lobster);
    color: var(--sloganpttwo-color) !important;
    text-shadow: 0 2px 4px rgba(194, 24, 91, 0.25);
}

.logo-mobile {
    display: none;
}

.logo-desktop {
    display: block;
}

section {
    border-bottom: var(--header-border);
}

.btn-request {
    font-family: var(--font-boldonse);
    text-decoration: none;
    background-color: var(--btn-hero-bg) !important;
    color: var(--btn-font-color) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 999px;
    box-shadow: var(--btn-shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    text-align: center;
}

.dropdown-menu {
    font-family: var(--font-boldonse);
    text-decoration: none;
    min-width: 100%;
    background-color: var(--btn-hero-bg) !important;
    color: var(--btn-font-color) !important;
    box-shadow: var(--btn-shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    text-align: center;
}

.btn-contact {
    font-family: var(--font-boldonse);
    text-decoration: none;
    background-color: var(--btn-hero-bg) !important;
    color: var(--btn-font-color) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 999px;
    box-shadow: var(--btn-shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    text-align: center;
}

.dropdown-item {
    font-family: var(--font-boldonse);
    text-decoration: none;
    color: #ffff !important;
}

.dropdown-item:hover,
.dropdown-item:focus-visible {
    color: #000000 !important;
}

.btn-request:hover,
.btn-request:focus-visible {
    background-color: var(--btn-hero-bg-hover) !important;
    color: var(--btn-font-color-hover) !important;
    box-shadow: 0 14px 26px rgba(255, 79, 163, 0.24);
    transform: translateY(-1px);
}

.btn-contact:hover,
.btn-contact:focus-visible {
    background-color: var(--btn-hero-bg-hover) !important;
    color: var(--btn-font-color-hover) !important;
    box-shadow: 0 14px 26px rgba(255, 79, 163, 0.24);
    transform: translateY(-1px);
}

.btn-request:active,
.btn-contact:active {
    transform: translateY(0);
    box-shadow: none;
}

/* ================================
   SERVICES PAGE
================================ */
.services-hero {
    background: linear-gradient(180deg, #f54391 0%, #ff9fca 100%);
}

.services-hero-secondary {
    border: 4px solid #000000;
}

.services-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.25rem;
    color: #000000;
    font-family: var(--font-boldonse);
    font-size: 0.84rem;
}

.services-hero-card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    padding: 1.5rem;
}

.services-hero-card img {
    max-height: 520px;
    width: auto;
}

.services-hero-badge {
    position: absolute;
    right: 0;
    bottom: 1.25rem;
    max-width: 260px;
    padding: 1rem 1.15rem;
    border: 4px solid #000000;
    border-radius: 24px;
    background: #ffffff;
    color: #000000;
    box-shadow: 0 14px 28px rgba(17, 17, 17, 0.16);
    font-family: var(--font-boldonse);
    font-size: 0.88rem;
    line-height: 1.5;
}

.services-section-copy {
    max-width: 760px;
}

.services-overview {
    background: #fffafc;
}

.service-summary-card {
    border-color: rgba(245, 67, 145, 0.2) !important;
    box-shadow: 0 16px 30px rgba(17, 17, 17, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-summary-card .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-summary-card:hover,
.service-summary-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px rgba(17, 17, 17, 0.12);
    border-color: rgba(245, 67, 145, 0.45) !important;
}

.services-why {
    background: #ffffff;
}

.services-why-panel {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 18px 32px rgba(17, 17, 17, 0.12);
}

.services-why-panel p {
    color: #ffffff;
}

.services-why-list li {
    position: relative;
    padding-left: 2rem;
    font-family: var(--font-boldonse);
    line-height: 1.65;
}

.services-why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.05rem;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    background: #f54391;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.84rem;
}

.services-why-list li + li {
    margin-top: 0.85rem;
}

.services-why-media {
    display: flex;
    align-items: stretch;
}

.services-why-media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 18px 32px rgba(17, 17, 17, 0.12);
}

.service-list-heading {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.service-list-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.5rem 1rem;
    border: 3px solid #000000;
    border-radius: 999px;
    background: #f54391;
    color: #ffffff;
    font-family: var(--font-boldonse);
    font-size: 0.78rem;
    text-align: center;
}

/* ================================
   services
================================ */

#services .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.btn-services {
    font-family: var(--font-boldonse);
    text-decoration: none;
    background-color: var(--btn-services-bg) !important;
    color: var(--btn-services-font-color) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: var(--btn-services-border);
    border-radius: 5px;
    min-height: 50px;
    min-width: 160px;
    box-shadow: var(--btn-services-shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    text-align: center;
    margin-top: auto;
}

.btn-services:hover,
.btn-services:focus-visible {

    background-color: var(--btn-services-bg-hover) !important;
    color: var(--btn-services-font-color-hover) !important;
    border-color: var(--btn-services-border-color-hover);
    box-shadow: 0 14px 26px rgba(255, 79, 163, 0.24);
    transform: translateY(-1px);
}


/*==============
Why Choose Us section
================*/
.left-side {
    text-align: center;
    justify-content: center;

}

.left-side h1 {
    font-family: var(--font-boldonse);
    color: var(--left-side-heading-color) !important;
    line-height: 55px;
}

.left-side h2 {
    font-family: var(--font-boldonse);
    color: var(--why-us-heading-color) !important;
    line-height: 55px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
}

.left-side ul li {
    font-family: var(--font-boldonse);
    color: var(--why-us-ul-li-color) !important;
}

.right-side h3 {
    font-family: var(--font-boldonse);
    line-height: 50px;
    color: var(--why-us-right-side-header-color) !important;
}

.right-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.right-side p {

    text-align: left;
    line-height: 30px;
    font-family: var(--font-boldonse);
    color: var(--why-us-right-side-p-color) !important;
}

#about .col-lg-5 {
    display: flex;
}

#about .col-lg-5 img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

#gallery .col-md-4 img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
}

body.slideshow-open {
    overflow: hidden;
}

.slideshow-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.slideshow-overlay.is-open {
    display: flex;
}

.slideshow-backdrop {
    position: absolute;
    inset: 0;
    background: var(--slide-show-overlay-bg);
}

.slideshow-shell {
    position: relative;
    z-index: 1;
    width: min(1040px, 100%);
    max-height: calc(100vh - 2.5rem);
    overflow: auto;
    padding: 1.25rem;
    border: var(--slide-show-shell-border);
    border-radius: 28px;
    background: var(--slide-show-shell-bg);
    box-shadow: var(--slide-show-shell-shadow);
}

.slideshow-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.slideshow-kicker {
    color: var(--slide-show-kicker-color);
    font-family: var(--font-boldonse);
    font-size: 0.9rem;
}

.slideshow-title {
    color: var(--slide-show-title-color);
}

.slideshow-close {
    width: 52px;
    height: 52px;
    border: 3px solid #000000;
    border-radius: 999px;
    background: var(--slide-show-close-bg);
    color: var(--slide-show-close-color);
    font-size: 1.6rem;
    line-height: 1;
}

.slideshow-stage {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
}

.slideshow-figure {
    position: relative;
    overflow: hidden;
    border: 4px solid #000000;
    border-radius: 24px;
    background: #ffffff;
}

.slideshow-image {
    width: 100%;
    height: min(68vh, 620px);
    object-fit: cover;
    object-position: center;
}

.slideshow-caption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 16px;
    background: var(--slide-show-caption-bg);
    color: var(--slide-show-caption-color);
    font-weight: 700;
}

.slideshow-arrow {
    width: 56px;
    height: 56px;
    border: var(--slide-show-arrow-border);
    border-radius: 999px;
    background: var(--slide-show-arrow-bg);
    color: var(--slide-show-arrow-color);
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(17, 17, 17, 0.16);
}

.slideshow-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}

.slideshow-counter {
    font-family: var(--font-boldonse);
    color: var(--slide-show-title-color);
    font-size: 0.9rem;
}

.slideshow-thumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.65rem;
}

.slideshow-thumb {
    padding: 0;
    border: var(--slide-show-thumb-border);
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(17, 17, 17, 0.1);
}

.slideshow-thumb.is-active {
    border: var(--slide-show-thumb-active-border);
}

.slideshow-thumb img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    object-position: center;
}

.checklist-section {
    padding: 4rem 1rem;
    background: #fff7fb;
}

.checklist-header {
    max-width: 850px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.checklist-header h1 {
    color: #111;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
}

.checklist-header p {
    color: #333;
    font-size: 1.125rem;
    line-height: 1.7;
}

.section-label {
    color: #d91f72;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.brand-highlight {
    color: #d91f72;
    font-weight: 800;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.checklist-card {
    background: #fff;
    border: 2px solid #f4c4da;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 14px 28px rgba(17, 17, 17, 0.08);
    overflow: hidden;
}

.service-list-group .row>[class*="col-"] {
    display: flex;
}

.service-list-group .checklist-card {
    width: 100%;
}

.service-list-group .checklist-card .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.checklist-card h2 {
    color: #111;
    font-size: 1.35rem;
    font-weight: 850;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.checklist-card ul {
    padding-left: 0;
    margin-bottom: 0;
    flex: 1 1 auto;
    list-style: none;
}

.checklist-card li {
    position: relative;
    padding-left: 1.8rem;
    color: #333;
    font-size: 1rem;
    line-height: 1.65;
}

.checklist-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 999px;
    background: rgba(245, 67, 145, 0.12);
    color: #b31258;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
}

.checklist-card li+li {
    margin-top: 0.5rem;
}

.services-bottom-cta {
    background: #ffffff;
}

.services-cta-shell {
    padding: 2rem;
    border: 4px solid #000000;
    border-radius: 32px;
    background: #000000;
    box-shadow: 0 20px 36px rgba(17, 17, 17, 0.14);
}

.services-cta-copy {
    opacity: 0.96;
}


/* ================================
   footer
================================ */

footer {
    background-color: var(--footer-background-color);
    color: var(--footer-text-color);
    padding: 3rem 1rem;
}


@media (max-width: 768px) {
    .checklist-section {
        padding: 3rem 1rem;
    }

    .checklist-header {
        text-align: left;
    }

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

    .services-trust-row {
        justify-content: center;
    }

    .service-list-tag {
        width: 100%;
    }

    .services-cta-shell {
        padding: 1.5rem;
        border-radius: 24px;
    }
}

/* ================================
   MOBILE / TABLET NAV
================================ */
@media (max-width: 1199.98px) {
    .nav-full-logo {
        max-height: 150px !important;
    }

    .nav-logo-center {
        margin: 0 0.5rem;
    }

    .site-nav .nav-link {
        padding: 0.55rem 0.78rem !important;
        font-size: 0.9rem;
    }

    .nav-split {
        gap: 0.2rem;
    }
}

@media (max-width: 991.98px) {
    .site-nav {
        min-height: auto;
        max-height: none;
        padding: 0.65rem 1rem !important;
        justify-content: space-between;
        gap: 0.75rem;
        overflow: visible;
    }

    .nav-brand {
        display: none;
    }

    .nav-brand-mobile {
        display: flex;
    }

    .service-icon img {
        width: 160px !important;
        height: 160px !important;
    }

    .nav-logo-center {
        display: none;
    }

    .nav-full-logo {
        max-height: 150px !important;
        max-width: 190px;
    }

    .nav-bar-links {
        width: 100%;
        margin-top: 0.5rem;
        padding: 0.7rem;
        background: var(--white);
        border: 2px solid rgba(194, 24, 91, 0.18);
        border-radius: 24px;
        box-shadow: 0 18px 36px rgba(17, 17, 17, 0.12);
        overflow: visible;
    }

    .nav-split {
        align-items: stretch;
        gap: 0.35rem;
        padding-top: 0;
    }

    .site-nav .nav-link {
        width: 100%;
        min-height: 48px;
        margin: 0;
        padding: 0.85rem 1rem !important;
        border-radius: 16px;
        font-size: 0.96rem;
        justify-content: flex-start;
    }

    .nav-item {
        width: 100%;
    }

    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
    }

    #home .container.py-5,
    #services .container,
    #about .container,
    #gallery .container,
    #quote .container,
    #reviews .container,
    footer .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #home .row.align-items-center.g-5 {
        row-gap: 2rem !important;
    }

    .sloganptone {
        font-size: clamp(1.7rem, 5vw, 2.5rem) !important;
    }

    .sloganpttwo {
        font-size: clamp(3rem, 10vw, 5rem) !important;
        line-height: 0.95;
    }

    .logo-mobile img,
    .logo-desktop img {
        width: min(100%, 360px);
        max-height: 360px !important;
        margin: 0 auto;
    }

    .dropdown {
        width: 100%;
    }

    .btn-contact,
    .btn-request {
        width: 100%;
    }

    .dropdown-menu {
        inset: auto 0 0 auto !important;
        transform: none !important;
        min-width: 100%;
        margin-top: 0.45rem;
    }

    .services-hero-card {
        padding-top: 0;
    }

    .services-hero-card img {
        max-height: 360px;
    }

    .services-hero-badge {
        position: static;
        max-width: none;
        margin-top: 1rem;
    }

    .services-why-media img {
        min-height: 300px;
    }

    .services-cta-shell {
        text-align: center;
    }

    #about .col-lg-3.text-center,
    #gallery .col-lg-3,
    .col-12.text-end,
    .col-lg-4.text-center.text-lg-end {
        text-align: center !important;
    }

    #about .col-lg-5 img,
    #gallery .col-md-4 img {
        width: 100%;
        height: 280px;
    }

    #about .col-lg-5 img {
        aspect-ratio: 1 / 1;
        height: auto;
    }

    .slideshow-shell {
        padding: 1rem;
    }

    .slideshow-stage {
        grid-template-columns: 1fr;
    }

    .slideshow-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
    }

    .slideshow-arrow-prev {
        left: 1.4rem;
    }

    .slideshow-arrow-next {
        right: 1.4rem;
    }

    .slideshow-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .slideshow-thumbs {
        justify-content: center;
    }

    .quote-panel {
        padding: 2rem !important;
    }
}

@media (max-width: 575.98px) {
    .nav-full-logo {
        max-height: 250px !important;
        max-width: 168px;
    }

    .services-hero-card img {
        max-height: 280px;
    }

    .services-why-media img {
        min-height: 240px;
    }

    .services-why-panel,
    .checklist-card,
    .service-summary-card {
        border-radius: 20px !important;
    }

    .site-nav {
        padding: 0.55rem 0.85rem !important;
    }

    .nav-bar-links {
        padding: 0.6rem;
        border-radius: 20px;
    }

    .skip-link {
        left: 0.75rem;
        right: 0.75rem;
        width: auto;
    }

    html {
        scroll-padding-top: 5rem;
    }

    body {
        overflow-x: hidden;
    }

    .container,
    .container-fluid {
        --bs-gutter-x: 1rem;
    }

    .service-icon img {
        width: 160px !important;
        height: 160px !important;
    }

    .site-header {
        border-top-width: 3px;
        border-bottom-width: 3px;
    }

    #home .container.py-5 {
        padding-top: 2.75rem !important;
        padding-bottom: 2.75rem !important;
    }

    .sloganptone {
        font-size: 1.45rem !important;
        line-height: 1.2;
    }

    .sloganpttwo {
        font-size: clamp(2.5rem, 15vw, 4rem) !important;
        margin-bottom: 1rem !important;
    }

    #home .fs-5 {
        font-size: 1rem !important;
        line-height: 1.5;
    }

    .logo-mobile {
        margin-bottom: 1.5rem !important;
    }

    .logo-mobile img,
    .logo-desktop img {
        max-height: 380px !important;
    }

    .btn-request,
    .btn-contact,
    #home .dropdown,
    #home .d-flex.flex-column.flex-sm-row.gap-3>a,
    #home .d-flex.flex-column.flex-sm-row.gap-3>div {
        width: 100%;
    }

    .dropdown-menu {
        width: 100%;
    }

    #gallery .col-md-4 img {
        height: 240px;
    }

    #about .col-lg-5 img {
        aspect-ratio: 1 / 1;
        height: auto;
    }

    .slideshow-overlay {
        padding: 0.75rem;
    }

    .slideshow-shell {
        border-width: 3px;
        border-radius: 22px;
    }

    .slideshow-header {
        align-items: flex-start;
    }

    .slideshow-image {
        height: 48vh;
    }

    .slideshow-caption {
        position: static;
        border-radius: 0;
    }

    .slideshow-arrow {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .slideshow-arrow-prev {
        left: 1rem;
    }

    .slideshow-arrow-next {
        right: 1rem;
    }

    .slideshow-thumb img {
        width: 60px;
        height: 60px;
    }

    .quote-panel .col-4 {
        width: 100%;
    }

    .quote-panel .row.text-center.mt-4.g-3 {
        row-gap: 0.75rem !important;
    }

    .form-control,
    .form-select {
        font-size: 16px;
    }

    .card-body {
        padding: 1rem;
    }

    .row-desktop {
        display: none;
    }

    .quote-panel {
        margin: 2px auto;
        max-width: 370px;
        text-align: center;
    }

    .mobile-quote {
        display: block;

    }

    footer img {
        margin-left: auto;
        margin-right: auto;
    }
}
