/* ---- KAP Design tokens & base ---- */
:root {
    --kap-primary: #fca311;
    --kap-primary-dark: #e69500;
    --kap-dark: #0d1b2a;
    --kap-darker: #08131f;
    --kap-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --kap-radius: 1rem;
    --kap-radius-lg: 1.25rem;
    --kap-shadow: 0 8px 28px rgba(13, 27, 42, 0.08);
    --kap-shadow-hover: 0 16px 40px rgba(13, 27, 42, 0.12);
    --kap-bg-start: #f7f9fb;
    --kap-bg-mid: #f3f6f9;
    --kap-bg-warm: #eef2f6;
    --kap-bg-end: #e8eef4;
    --kap-bg-blob-1: rgba(13, 27, 42, 0.05);
    --kap-bg-blob-2: rgba(252, 163, 17, 0.07);
    --kap-bg-blob-3: rgba(13, 27, 42, 0.03);
    --kap-gradient-gold: linear-gradient(135deg, #fca311 0%, #f5b942 55%, #ffc857 100%);
    --kap-gradient-gold-soft: linear-gradient(135deg, rgba(252,163,17,0.14) 0%, rgba(252,163,17,0.05) 100%);
    --kap-gradient-dark: linear-gradient(180deg, #0f172a 0%, #0d1b2a 40%, #08131f 100%);
    --kap-gradient-nav: linear-gradient(135deg, #0d1b2a 0%, #152536 50%, #0f172a 100%);
    --kap-gradient-mesh: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(252, 163, 17, 0.08), transparent),
                         radial-gradient(ellipse 50% 35% at 100% 100%, rgba(13, 27, 42, 0.04), transparent);
    --kap-glass: rgba(15, 23, 42, 0.58);
    --kap-glass-border: rgba(255, 255, 255, 0.10);
    --kap-ink: #0b1220;
    --kap-ink-2: #0f172a;
    --kap-muted: rgba(15, 23, 42, 0.72);
    --kap-muted-2: rgba(15, 23, 42, 0.58);
    --kap-ring: rgba(252, 163, 17, 0.35);
    --kap-surface: #ffffff;
    --kap-border: rgba(13, 27, 42, 0.08);
}

/* Reset: no gap below footer, footer flush to bottom.
   overflow-x: clip (not hidden) avoids creating a scroll container that
   breaks position:fixed — hidden on html forces overflow-y:auto and the
   WhatsApp/Call FAB drops into document flow (white gap + icons under footer). */
html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    min-height: 100%;
    overflow-x: clip;
    box-sizing: border-box;
    /* Match footer-bottom so any sub-pixel gap under the page is not white */
    background-color: #050c12;
}
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    box-sizing: border-box;
    overflow-x: clip;
}

/* ---- Urdu notice card (products page) ---- */
.kap-urdu-notice {
    max-width: 720px;
    margin: 3rem auto 0;
    padding: 2.5rem 2.25rem;
    border-radius: 24px;
    background: radial-gradient(circle at top, #fff8e8 0%, #fff3da 36%, #ffe8c7 100%);
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(148, 81, 3, 0.06);
    border: 1px solid rgba(148, 81, 3, 0.08);
    position: relative;
    text-align: right;
}

.kap-urdu-notice__icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    background: #ffb74a;
    color: #5b3300;
    box-shadow: 0 10px 26px rgba(148, 81, 3, 0.35);
    font-size: 1.2rem;
}

.kap-urdu-notice__text {
    font-family: 'Noto Nastaliq Urdu', system-ui, -apple-system, BlinkMacSystemFont, 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 2.3;
    color: #3b2505;
    margin-bottom: 0.75rem;
}

.kap-urdu-notice__text strong {
    color: #c05621;
}

.kap-urdu-notice__text--last {
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .kap-urdu-notice {
        padding: 1.75rem 1.5rem;
        margin-top: 2.25rem;
    }

    .kap-urdu-notice__text {
        font-size: 1rem;
        line-height: 2.1;
    }
}

html.scroll-smooth {
    scroll-behavior: smooth;
}

/* ---- Stunning light gradient body + stick footer to bottom ---- */
.kap-body {
    font-family: var(--kap-font);
    color: #1a1a1a;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    background: var(--kap-gradient-mesh),
                linear-gradient(165deg,
                    var(--kap-bg-start) 0%,
                    var(--kap-bg-mid) 35%,
                    var(--kap-bg-warm) 70%,
                    var(--kap-bg-end) 100%);
    /* Avoid background-attachment:fixed — Chromium can promote it via
       transforms and trap position:fixed (FAB) inside the document. */
    background-attachment: scroll, scroll;
}
.kap-body main {
    flex: 1 0 auto;
}
.kap-footer {
    flex-shrink: 0;
    margin-top: auto;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
.kap-footer .footer-bottom {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
/* Scroll on the viewport only — never make body a scrollport */
html body.kap-body {
    min-height: 100%;
    min-height: 100dvh;
}
.kap-footer,
.kap-footer *:last-child {
    margin-bottom: 0 !important;
}

/* Soft gradient blobs — no filter (filter creates a fixed containing block) */
.kap-body::before,
.kap-body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
}
.kap-body::before {
    width: 70vmax;
    height: 70vmax;
    top: -25vmax;
    right: -15vmax;
    background: radial-gradient(circle, var(--kap-bg-blob-1) 0%, transparent 70%);
    animation: kapBlobFloat 18s ease-in-out infinite;
}
.kap-body::after {
    width: 55vmax;
    height: 55vmax;
    bottom: -20vmax;
    left: -15vmax;
    background: radial-gradient(circle, var(--kap-bg-blob-2) 0%, transparent 70%);
    animation: kapBlobFloat 22s ease-in-out infinite reverse;
}

@keyframes kapBlobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(3%, -4%) scale(1.05); }
    66% { transform: translate(-2%, 3%) scale(0.98); }
}

/* Content above blobs — FAB stays viewport-fixed above these */
.kap-body .navbar,
.kap-body main,
.kap-body footer,
.kap-body .kap-brands-marquee {
    position: relative;
    z-index: 1;
}

.kap-body .kap-fab {
    z-index: 1050;
}

/* Sections: soft gradient tint so they match the body */
.kap-body section.bg-light {
    background: linear-gradient(180deg, rgba(255,253,250,0.96) 0%, rgba(255,248,242,0.98) 100%) !important;
}

/* ----- AJAX loading bar (top of page) ----- */
#kap-loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--kap-primary), #fbbf24, transparent);
    background-size: 200% 100%;
    z-index: 9999;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
#kap-loading-bar.active {
    opacity: 1;
    transform: scaleX(1);
    animation: kapLoadingBar 0.8s ease-in-out infinite;
}
@keyframes kapLoadingBar {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Main content — SPA-like page transitions */
#main-content {
    transition: opacity 0.28s ease, transform 0.28s ease;
}
#main-content.kap-content-out {
    opacity: 0.4;
    transform: translateY(10px);
}
#main-content.kap-page-enter {
    animation: kapPageEnter 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes kapPageEnter {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Skip to content (a11y) */
.skip-to-content {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    padding: 0.75rem 1.25rem;
    background: var(--kap-primary);
    color: var(--kap-darker);
    font-weight: 600;
    border-radius: 0.5rem;
    transition: left 0.2s, transform 0.2s;
}
.skip-to-content:focus {
    left: 1rem;
    top: 1rem;
    outline: 3px solid var(--kap-darker);
    outline-offset: 2px;
}

/* Focus visible for keyboard users */
*:focus { outline: none; }
*:focus-visible {
    outline: 2px solid var(--kap-primary);
    outline-offset: 2px;
}

/* ---- Navbar ---- */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    max-width: 100%;
    background: var(--kap-gradient-nav) !important;
    border-bottom: 1px solid rgba(252, 163, 17, 0.12);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.navbar-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border-bottom-color: rgba(252, 163, 17, 0.2);
}

.kap-brand-text {
    color: #ffffff;
}

.navbar-nav .nav-link {
    color: #e5e5e5;
}

.navbar-nav .nav-link.active {
    color: #fca311 !important;
    border-bottom: 2px solid #fca311;
}

.navbar-nav .nav-link {
    position: relative;
    padding-bottom: 0.25rem;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--kap-primary);
    transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}
.navbar-nav .nav-link:hover {
    color: #fca311;
}

.navbar-brand img,
.navbar-logo {
    max-height: 45px;
    transition: transform 0.3s ease;
}
.navbar-brand:hover img {
    transform: scale(1.05);
}

/* ---- Footer: premium gradient, no gap at bottom ---- */
.kap-footer {
    background: var(--kap-gradient-dark) !important;
    border-top: 1px solid rgba(252, 163, 17, 0.2);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(252, 163, 17, 0.06);
}
.kap-footer .footer-bottom {
    background: linear-gradient(180deg, #071018 0%, #050c12 100%) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.kap-footer a,
.footer-link,
.footer-links a {
    transition: color 0.25s ease, transform 0.2s ease;
}
footer a:hover,
.kap-footer a:hover,
.footer-link:hover,
.footer-links a:hover {
    color: #fca311 !important;
}
.footer-links a:hover {
    padding-left: 4px;
}
.footer-social {
    transition: transform 0.25s ease, color 0.2s ease;
}
.footer-social:hover {
    color: #fca311 !important;
    transform: scale(1.15);
}

.footer-contact-line {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-contact-line__icon {
    flex: 0 0 1rem;
    width: 1rem;
    margin-top: 0.15rem;
    text-align: center;
}

.footer-phone {
    white-space: nowrap;
    letter-spacing: 0;
    font-variant-numeric: tabular-nums;
}

.btn-whatsapp {
    background-color: transparent !important;
    border: 1px solid #ffffff !important;
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: #ffffff !important;
}
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider .slides {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 320px;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.2s ease-in-out;
    will-change: opacity, transform;
}

.hero-slider .slide.active {
    opacity: 1;
    animation: kapHeroZoomIn 8s ease-out forwards;
}
@keyframes kapHeroZoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

/* Hero text: subtle depth when animated in */
.hero-text {
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(105deg, rgba(13, 27, 42, 0.88) 0%, rgba(13, 27, 42, 0.5) 55%, rgba(13, 27, 42, 0.2) 100%);
    color: #fff;
}

.hero-content {
    text-align: left;
    padding-left: 2rem;
}

.hero-content h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 700;
}

.hero-content p {
    font-size: 1.05rem;
    opacity: 0.9;
}

.btn-cta {
    background: #fca311;
    color: #08131f;
    font-weight: 600;
    border-radius: 40px;
    padding: 0.6rem 1.2rem;
}

.about-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    border-left: 5px solid #fca311;
}

.product-card {
    background: linear-gradient(145deg, #ffffff 0%, #fefcf9 100%);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(252, 163, 17, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(252, 163, 17, 0.15);
    border-color: rgba(252, 163, 17, 0.25);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

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

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--kap-gradient-gold);
    color: #08131f;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(245, 158, 11, 0.4);
}

.product-card-body {
    padding: 1.2rem;
}

.product-card-body h6 {
    color: #08131f;
    font-size: 0.95rem;
}

.why-buy {
    background: #fff;
    border-radius: .8rem;
    padding: 1.25rem;
}

.inquiry-card {
    background: #fff;
    border-radius: .8rem;
}

.inquiry-card .form-control {
    border-radius: .5rem;
}

.list-group-item {
    border: none;
    border-bottom: 1px solid #f1f1f1;
}

@media (max-width: 767px) {
    .product-img-wrapper {
        height: 140px;
    }
}

.blog-card {
    background: #fff;
    border-radius: 0.8rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.08);
}

.hero-buttons .btn-warning {
    background: linear-gradient(90deg, #fca311, #ffb84d);
    border: none;
    box-shadow: 0 6px 18px rgba(252, 163, 17, 0.18);
}

.hero-buttons .btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.product-img-wrapper {
    height: 160px;
}

.product-card-img {
    height: 100%;
}

.product-grid .card {
    border: none;
    transition: transform .18s ease, box-shadow .18s ease;
}

.product-grid .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.12);
}

.product-grid .product-img {
    height: 180px;
    object-fit: cover;
    border-radius: .5rem;
}

.testimonials-section {
    position: relative;
    margin-top: 0;
    padding: 4.5rem 0 5rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 55% 70% at 12% 20%, rgba(252, 163, 17, 0.16), transparent 60%),
        radial-gradient(ellipse 45% 55% at 92% 85%, rgba(251, 191, 36, 0.1), transparent 55%),
        linear-gradient(160deg, #08131f 0%, #0d1b2a 42%, #132536 72%, #0a1628 100%) !important;
}

.testimonials-section__glow {
    position: absolute;
    inset: auto 50% -40% auto;
    width: min(42rem, 90vw);
    height: min(42rem, 90vw);
    transform: translateX(50%);
    background: radial-gradient(circle, rgba(252, 163, 17, 0.12) 0%, transparent 68%);
    pointer-events: none;
}

.testimonials-eyebrow {
    display: inline-block;
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.95rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0d1b2a;
    background: var(--kap-gradient-gold);
    box-shadow: 0 8px 22px rgba(252, 163, 17, 0.28);
}

.testimonials-lead {
    margin: 0 auto;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.6;
}

.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1.75rem 1.65rem 1.5rem;
    border-radius: 1.25rem;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: var(--kap-gradient-gold);
    opacity: 0.85;
}

.testimonial-card--featured {
    border-color: rgba(252, 163, 17, 0.45);
    background:
        linear-gradient(165deg, rgba(252, 163, 17, 0.14) 0%, rgba(255, 255, 255, 0.06) 55%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.32),
        0 0 0 1px rgba(252, 163, 17, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(252, 163, 17, 0.55);
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.36),
        0 0 0 1px rgba(252, 163, 17, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.testimonial-card__quote {
    position: absolute;
    top: 1rem;
    right: 1.15rem;
    font-size: 2.75rem;
    line-height: 1;
    color: rgba(252, 163, 17, 0.28);
    pointer-events: none;
}

.testimonial-header {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--kap-primary);
}

.testimonial-header i {
    color: var(--kap-primary);
    filter: drop-shadow(0 2px 6px rgba(252, 163, 17, 0.35));
}

.testimonial-text {
    flex: 1 1 auto;
    margin: 0 0 1.35rem;
    font-style: italic;
    font-size: 1.02rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-text::before {
    content: '“';
}

.testimonial-text::after {
    content: '”';
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: auto;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial-author__avatar {
    flex: 0 0 auto;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #0d1b2a;
    background: var(--kap-gradient-gold);
    box-shadow: 0 8px 18px rgba(252, 163, 17, 0.3);
}

.testimonial-author__meta {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.testimonial-author__meta strong {
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.25;
}

.testimonial-author__meta span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    line-height: 1.35;
}

@media (max-width: 767.98px) {
    .testimonials-section {
        padding: 3.25rem 0 3.75rem;
    }

    .testimonial-card {
        padding: 1.5rem 1.35rem 1.35rem;
    }
}

/* About page — hero */
.about-hero {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0 5rem;
    color: #fff;
    background:
        radial-gradient(ellipse 70% 80% at 100% 0%, rgba(252, 163, 17, 0.22), transparent 55%),
        radial-gradient(ellipse 50% 60% at 0% 100%, rgba(251, 191, 36, 0.12), transparent 50%),
        linear-gradient(125deg, #0a1628 0%, #0d1b2a 28%, #152a42 52%, #1a3350 78%, #0f1f35 100%);
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.08) 100%);
    pointer-events: none;
}

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

.about-hero__eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(252, 163, 17, 0.45);
    background: rgba(252, 163, 17, 0.12);
    color: #fcd34d;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-hero__title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    background: linear-gradient(135deg, #fff 0%, #fef3c7 40%, #fbbf24 75%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.about-hero__lead {
    font-size: 1.125rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.95);
}

.about-hero__text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0;
}

.about-hero__lead strong,
.about-hero__text strong {
    color: #fcd34d;
    font-weight: 600;
}

.about-hero__image-wrap {
    border-radius: 1.25rem;
    overflow: hidden;
    border: 2px solid rgba(252, 163, 17, 0.35);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 0 40px rgba(252, 163, 17, 0.15);
}

.about-hero__image {
    width: 100%;
    display: block;
    border-radius: 1.1rem;
}

.contact-card {
    background: #fff;
    border-radius: .6rem;
    box-shadow: 0 8px 20px rgba(2, 6, 23, 0.06);
    padding: 1.6rem;
}

.form-control:focus,
.form-input:focus {
    box-shadow: 0 0 0 3px rgba(252, 163, 17, 0.25);
    border-color: #fca311;
    outline: none;
}
.form-select:focus {
    border-color: #fca311;
    box-shadow: 0 0 0 3px rgba(252, 163, 17, 0.2);
    outline: none;
}

@media (max-width: 767px) {
    .hero-slider .slides {
        height: 46vh;
    }

    .product-grid .product-img {
        height: 140px;
    }

    .hero-content {
        padding-left: 1rem;
    }
}

.text-gradient,
.kap-brand-text .text-gradient {
    background: var(--kap-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold {
    color: #d48b00;
    letter-spacing: 1px;
}

/* Page SEO header (title + subtitle) */
.kap-page-header__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--kap-dark);
    background: var(--kap-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kap-page-header__subtitle {
    max-width: 42rem;
    font-size: 1.05rem;
    line-height: 1.65;
}

/* About page — leadership (Niazi-style profile rows, full width) */
.kap-leadership {
    width: 100%;
    max-width: 100%;
    background: #ffffff;
}

.kap-leadership > .container-fluid {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.kap-leadership__header-wrap {
    max-width: 100%;
    padding-bottom: 0.5rem;
}

.kap-leadership__label {
    font-family: 'Inter', var(--kap-font), sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #b45309;
    margin-bottom: 0;
}

.kap-leadership__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--kap-dark);
    margin-top: 1rem;
    margin-bottom: 0;
    line-height: 1.2;
}

.kap-leadership__intro {
    font-family: 'Inter', var(--kap-font), sans-serif;
    max-width: 42rem;
    margin: 1rem auto 0;
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(13, 27, 42, 0.65);
}

.kap-leader {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 2.5rem clamp(1rem, 3vw, 2.5rem);
    border-top: 1px solid rgba(13, 27, 42, 0.06);
}

.kap-leader:first-of-type {
    margin-top: 2rem;
    border-top: none;
}

.kap-leader:nth-child(even) {
    background: linear-gradient(90deg, rgba(250, 248, 244, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
}

@media (min-width: 992px) {
    .kap-leader {
        grid-template-columns: 380px 1fr;
        gap: 2.5rem 3.5rem;
        padding: 3rem clamp(1.5rem, 4vw, 4rem);
    }

    .kap-leader--reverse {
        grid-template-columns: 1fr 380px;
    }

    .kap-leader--reverse .kap-leader__media {
        order: 2;
    }

    .kap-leader--reverse .kap-leader__content {
        order: 1;
    }
}

.kap-leader__media {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 576px) {
    .kap-leader__media {
        max-width: 360px;
    }
}

@media (min-width: 992px) {
    .kap-leader__media {
        width: 380px;
        max-width: 380px;
        margin: 0;
    }
}

.kap-leader__photo {
    width: 100%;
    max-width: 380px;
    height: auto;
    aspect-ratio: 13 / 16;
    min-height: 420px;
    max-height: 500px;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 0;
    box-shadow:
        0 8px 32px rgba(13, 27, 42, 0.12),
        0 20px 48px -16px rgba(245, 158, 11, 0.22);
}

@media (min-width: 992px) {
    .kap-leader__photo {
        min-height: 480px;
        max-height: 540px;
    }
}

.kap-leader__badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    padding: 0.4rem 0.85rem;
    font-family: 'Inter', var(--kap-font), sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fbbf24;
    background: rgba(13, 27, 42, 0.9);
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.kap-leader__content {
    text-align: left;
    max-width: none;
    width: 100%;
}

@media (max-width: 991.98px) {
    .kap-leader__content {
        text-align: center;
    }
}

.kap-leader__role {
    font-family: 'Inter', var(--kap-font), sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #b45309;
    margin-bottom: 0;
}

.kap-leader__person-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--kap-dark);
    margin-top: 0.5rem;
    margin-bottom: 0;
    line-height: 1.2;
}

.kap-leader__tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--kap-dark);
    margin-top: 0.75rem;
    margin-bottom: 0;
    line-height: 1.25;
}

.kap-leader__text {
    font-family: 'Inter', var(--kap-font), sans-serif;
    font-size: 1rem;
    line-height: 1.85;
    color: #4b5563;
    margin-top: 1rem;
    margin-bottom: 0;
}

@media (min-width: 576px) {
    .kap-leader__text {
        font-size: 1.0625rem;
    }
}

.kap-leader__quote {
    margin-top: 1.5rem;
    margin-bottom: 0;
    padding: 1rem 1.25rem;
    border-left: 4px solid #f59e0b;
    background: #faf8f4;
    text-align: left;
}

.kap-leader__quote p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.65;
    color: var(--kap-dark);
    margin-bottom: 0;
}

@media (min-width: 576px) {
    .kap-leader__quote {
        padding: 1.25rem 1.5rem;
    }

    .kap-leader__quote p {
        font-size: 1.2rem;
    }
}

[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

.premium-title {
    font-size: 2.4rem;
    background: linear-gradient(90deg, #ff7f00, #fca311);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.value-card {
    background: linear-gradient(145deg, #ffffff, #f4f4f4);
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.value-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.value-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

.value-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

[data-animate-stagger].visible .value-card,
.value-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.gradient-text {
    background: linear-gradient(90deg, #ff7f00, #fca311);
    -webkit-background-clip: text;
}

.premium-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #fca311;
    text-shadow:
        0 2px 5px rgba(0, 0, 0, 0.15),
        0 0 25px rgba(252, 161, 17, 0.6);
    position: relative;
}

[data-animate] {
    opacity: 0;
    transform: translateX(40px);
    transition: all 1s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateX(0);
}

.img-animate {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1.2s ease;
}

.img-animate.visible {
    opacity: 1;
    transform: scale(1);
}

.gradient-heading {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #ff7f00, #fca311);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 1s ease;
}

.mission-vision-card {
    background: linear-gradient(145deg, #ffffff, #f7f7f9);
    transition: transform 0.5s, box-shadow 0.5s;
    border-radius: 20px;
    height: 100%;
}

.mission-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.icon-wrapper i {
    background: linear-gradient(90deg, #ff7f00, #fca311);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.5s;
}

.mission-vision-card:hover .icon-wrapper i {
    transform: scale(1.2);
}

[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-card {
    border-radius: 30px;
    background: linear-gradient(145deg, #ffffff, #f7f7f9);
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.form-input {
    border-radius: 15px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border: 2px solid #fca311;
    box-shadow: 0 0 10px rgba(252, 163, 17, 0.3);
}

.btn-hover {
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .btn-hover {
        width: 100%;
    }
}

.gradient-text {
    background: linear-gradient(90deg, #ff7f00, #fca311);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    font-weight: 800;
}

.contact-card,
.contact-info {
    transition: all 0.5s ease;
}

.contact-card:hover,
.contact-info:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.btn-shadow {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.btn-shadow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {

    .contact-card,
    .contact-info {
        margin-top: 20px;
    }
}

.why-buy:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.inquiry-card input.form-control {
    border: 1px solid #ddd;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.inquiry-card input.form-control:focus {
    border-color: #ff7f00;
    box-shadow: 0 0 10px rgba(255, 127, 0, 0.2);
    outline: none;
}

.inquiry-card button.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.blog-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.drum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.drum-card img {
    transition: transform 0.3s ease;
}

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

.text-justify {
    text-align: justify;
}

.gradient-text {
    background: linear-gradient(90deg, #ff7f00, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    letter-spacing: 1px;
}

.hover-zoom {
    transition: transform 0.5s ease;
}

.hover-zoom:hover {
    transform: scale(1.05) rotate(0.5deg);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.shadow-hover {
    transition: all 0.3s ease;
}

.shadow-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.about-card,
.about-card .col-lg-6 {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.about-card.visible,
.about-card.visible .col-lg-6 {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ accordion – theme colors */
#faqAccordion .accordion-button:not(.collapsed) {
    color: var(--kap-darker);
    background-color: rgba(252, 163, 17, 0.12);
}
#faqAccordion .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(252, 163, 17, 0.25);
    border-color: transparent;
}
#faqAccordion .accordion-button::after {
    filter: none;
}

/* ---- Premium section backgrounds (gradient) ---- */
.kap-section-gradient {
    background: linear-gradient(165deg, #fffefc 0%, #fff9f3 25%, #fef6ec 50%, #fef8f2 75%, #fdf0e3 100%) !important;
}
.kap-section-warm {
    background: linear-gradient(180deg, #fef8f2 0%, #fff9f3 50%, #fffefc 100%) !important;
}
.kap-section-light {
    background: linear-gradient(180deg, rgba(255,253,250,0.98) 0%, rgba(255,248,242,0.98) 100%) !important;
}

/* ---- Inner pages: white premium background (products, about, contact, faq) ---- */
.kap-body--premium-white {
    background:
        radial-gradient(ellipse 90% 55% at 50% -8%, rgba(248, 250, 252, 0.95), transparent 68%),
        radial-gradient(ellipse 55% 40% at 100% 100%, rgba(241, 245, 249, 0.55), transparent 62%),
        linear-gradient(180deg, #ffffff 0%, #fcfcfd 38%, #f8fafc 72%, #ffffff 100%);
    background-attachment: fixed, fixed, fixed;
}

.kap-body--premium-white::before {
    background: rgba(226, 232, 240, 0.22);
    opacity: 0.45;
}

.kap-body--premium-white::after {
    background: rgba(241, 245, 249, 0.3);
    opacity: 0.4;
}

.kap-body--premium-white .kap-section-gradient,
.kap-body--premium-white .kap-section-warm,
.kap-body--premium-white .kap-section-light {
    background: transparent !important;
}

.kap-body--premium-white .kap-section-warm {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
}

.kap-body--premium-white .kap-section-light {
    background: linear-gradient(180deg, #ffffff 0%, #f4f6f8 100%) !important;
}

.kap-body--premium-white .about-hero {
    color: var(--kap-dark);
    background:
        radial-gradient(ellipse 70% 80% at 100% 0%, rgba(241, 245, 249, 0.95), transparent 55%),
        radial-gradient(ellipse 50% 60% at 0% 100%, rgba(248, 250, 252, 0.9), transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #fafbfc 55%, #f4f6f8 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.kap-body--premium-white .about-hero::before {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.35) 100%);
}

.kap-body--premium-white .about-hero__eyebrow {
    border-color: rgba(245, 158, 11, 0.22);
    background: rgba(245, 158, 11, 0.08);
    color: #b45309;
}

.kap-body--premium-white .about-hero__title {
    background: var(--kap-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kap-body--premium-white .about-hero__lead {
    color: rgba(13, 27, 42, 0.86);
}

.kap-body--premium-white .about-hero__text {
    color: rgba(13, 27, 42, 0.68);
}

.kap-body--premium-white .about-hero__lead strong,
.kap-body--premium-white .about-hero__text strong {
    color: #d97706;
}

.kap-body--premium-white .about-hero__image-wrap {
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8);
}

.kap-body--premium-white .kap-leader:nth-child(even) {
    background: linear-gradient(90deg, #f8fafc 0%, #ffffff 100%);
}

.kap-body--premium-white .kap-urdu-notice {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 55%, #f1f5f9 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.kap-body--premium-white .kap-urdu-notice__icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.25);
}

.kap-body--premium-white .kap-urdu-notice__text {
    color: rgba(13, 27, 42, 0.82);
}

.kap-body--premium-white .kap-urdu-notice__text strong {
    color: #b45309;
}
.kap-section-dark {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2f42 50%, #0f172a 100%) !important;
}

/* Form inputs premium look */
.form-control, .form-select {
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-control:focus, .form-input:focus {
    border-color: var(--kap-primary);
    box-shadow: 0 0 0 4px rgba(252, 163, 17, 0.18);
}
.btn-warning {
    background: var(--kap-gradient-gold) !important;
    border: none !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-warning:hover {
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.45);
    transform: translateY(-2px);
}

/* Toast notification (AJAX form success) */
.kap-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 500;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
.kap-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.kap-toast-success {
    background: var(--kap-gradient-gold);
    color: #0d1b2a;
}
.kap-toast-error {
    background: #dc3545;
    color: #fff;
}

/* Products page — Urdu notice card */
.kap-urdu-notice {
    font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', serif;
    direction: rtl;
    text-align: center;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
    padding: 2.25rem 2rem 2rem;
    border-radius: 1.25rem;
    background: linear-gradient(165deg, #fffefc 0%, #fef9f3 50%, #fdebd4 100%);
    border: 1px solid rgba(252, 163, 17, 0.3);
    box-shadow: 0 12px 40px rgba(13, 27, 42, 0.07),
                0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    position: relative;
    overflow: hidden;
}

.kap-urdu-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--kap-gradient-gold);
}

.kap-urdu-notice::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(252, 163, 17, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.kap-urdu-notice__icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--kap-gradient-gold);
    color: var(--kap-dark);
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
    position: relative;
    z-index: 1;
}

.kap-urdu-notice__text {
    font-size: clamp(1.3rem, 2.6vw, 1.6rem);
    font-weight: 500;
    line-height: 2.45;
    color: #1f2937;
    margin-bottom: 1.1rem;
    position: relative;
    z-index: 1;
}

.kap-urdu-notice__text--last {
    margin-bottom: 0;
    color: var(--kap-dark);
    font-weight: 600;
}

.kap-urdu-notice__text strong {
    color: #b45309;
    font-weight: 700;
}

@media (max-width: 576px) {
    .kap-urdu-notice {
        padding: 1.75rem 1.15rem 1.5rem;
    }
}

/* ---- Trusted brands marquee (above footer, RTL scroll) ---- */
.kap-brands-marquee {
    padding: 2.5rem 0 2.75rem;
    background: linear-gradient(180deg, #fffefc 0%, #f7f5f0 100%);
    border-top: 1px solid rgba(252, 163, 17, 0.12);
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.kap-brands-marquee__title {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--kap-dark);
    margin-bottom: 0.35rem;
}

.kap-brands-marquee__title-accent {
    background: var(--kap-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kap-brands-marquee__subtitle {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 0;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.kap-brands-marquee__viewport {
    margin-top: 1.75rem;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 5%,
        #000 95%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 5%,
        #000 95%,
        transparent 100%
    );
}

.kap-brands-marquee__track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1.5rem;
    width: max-content;
    animation: kap-brands-scroll-rtl 32s linear infinite;
    will-change: transform;
}

.kap-brands-marquee__viewport:hover .kap-brands-marquee__track {
    animation-play-state: paused;
}

.kap-brands-marquee__item {
    flex: 0 0 auto;
}

.kap-brands-marquee__circle {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #f59e0b;
    box-shadow: 0 8px 24px rgba(13, 27, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kap-brands-marquee__item:hover .kap-brands-marquee__circle {
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(245, 158, 11, 0.25);
}

.kap-brands-marquee__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (min-width: 768px) {
    .kap-brands-marquee__circle {
        width: 6.5rem;
        height: 6.5rem;
        padding: 1rem;
    }

    .kap-brands-marquee__track {
        gap: 2rem;
    }
}

@keyframes kap-brands-scroll-rtl {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .kap-brands-marquee__track {
        animation: none;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
        gap: 1.25rem;
        padding: 0 1rem;
    }

    .kap-brands-marquee__viewport {
        mask-image: none;
        -webkit-mask-image: none;
    }
}
/* ---- Redesign utilities (navy brand + consistent CTAs) ---- */
.kap-surface {
    background: var(--kap-surface);
    border: 1px solid var(--kap-border);
    border-radius: var(--kap-radius-lg);
    box-shadow: var(--kap-shadow);
}

.kap-media {
    border-radius: var(--kap-radius);
}

.kap-section-title {
    color: var(--kap-dark);
    letter-spacing: -0.02em;
}

.kap-section-title--on-dark {
    color: #fff;
}

.kap-accent-text {
    color: var(--kap-primary);
}

.kap-body-text {
    line-height: 1.75;
    color: #334155;
}

.kap-muted-text {
    line-height: 1.7;
    color: #64748b;
}

.kap-checklist i {
    color: var(--kap-primary);
}

.hero-slider {
    height: min(78vh, 720px);
    min-height: 420px;
}

.hero-copy {
    max-width: 620px;
    text-align: left;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--kap-primary);
    margin-bottom: 0.75rem;
}

.btn-kap-cta,
.btn-kap-call,
.btn-kap-whatsapp {
    border-radius: 999px !important;
    font-weight: 600 !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-kap-cta {
    background: var(--kap-gradient-gold) !important;
    border: none !important;
    color: var(--kap-dark) !important;
    box-shadow: 0 4px 14px rgba(252, 163, 17, 0.35);
}

.btn-kap-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(252, 163, 17, 0.4);
    color: var(--kap-darker) !important;
}

.btn-kap-call {
    background: #fff !important;
    border: 1px solid rgba(13, 27, 42, 0.18) !important;
    color: var(--kap-dark) !important;
    min-width: 2.5rem;
}

.btn-kap-call:hover {
    background: var(--kap-dark) !important;
    border-color: var(--kap-dark) !important;
    color: #fff !important;
}

.btn-kap-whatsapp {
    background: #128C7E !important;
    border: none !important;
    color: #fff !important;
}

.btn-kap-whatsapp:hover {
    background: #0f7a6d !important;
    color: #fff !important;
}

.kap-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--kap-dark);
}

.kap-feature-list i {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--kap-gradient-gold-soft);
    color: var(--kap-primary-dark);
    flex-shrink: 0;
}

.kap-inline-link {
    color: var(--kap-primary-dark);
    font-weight: 600;
    text-decoration: none;
}

.kap-inline-link:hover {
    text-decoration: underline;
}

.kap-review-card {
    padding: 1.35rem 1.25rem;
}

.kap-stars {
    color: var(--kap-primary);
    letter-spacing: 0.05em;
}

.kap-filter-select {
    border-color: rgba(13, 27, 42, 0.12) !important;
}

.value-card .icon {
    font-size: 1.75rem;
    color: var(--kap-primary);
    margin-bottom: 0.75rem;
}

.value-card .icon i {
    font-size: 1.85rem;
}

.product-card {
    background: #fff;
    border: 1px solid var(--kap-border);
}

.product-img-wrapper {
    height: 180px;
    background: #f8fafc;
}

@media (max-width: 767px) {
    .product-img-wrapper {
        height: 140px;
    }
    .hero-slider {
        min-height: 360px;
        height: 62vh;
    }
}

/* Floating WhatsApp / Call — viewport-fixed (never expands page below footer) */
.kap-fab {
    position: fixed !important;
    inset: auto max(1rem, env(safe-area-inset-right, 0px)) max(1.15rem, env(safe-area-inset-bottom, 0px)) auto !important;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    width: max-content;
    height: max-content;
    margin: 0 !important;
    padding: 0;
    border: 0;
    flex: 0 0 auto;
    align-self: flex-end;
    pointer-events: none;
    transform: none !important;
    filter: none !important;
}

.kap-fab__btn {
    width: 3.25rem;
    height: 3.25rem;
    flex: 0 0 3.25rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1.35rem;
    box-shadow: 0 10px 28px rgba(13, 27, 42, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    pointer-events: auto;
    line-height: 1;
}

.kap-fab__btn:hover {
    transform: translateY(-2px) scale(1.04);
    color: #fff !important;
}

.kap-fab__btn--wa {
    background: #25D366;
}

.kap-fab__btn--call {
    background: var(--kap-dark);
}

@media (max-width: 575.98px) {
    .kap-fab {
        inset: auto max(0.75rem, env(safe-area-inset-right, 0px)) max(0.85rem, env(safe-area-inset-bottom, 0px)) auto !important;
        gap: 0.5rem;
    }

    .kap-fab__btn {
        width: 2.85rem;
        height: 2.85rem;
        flex-basis: 2.85rem;
        font-size: 1.2rem;
    }
}

.kap-brands-marquee {
    background: linear-gradient(180deg, #f7f9fb 0%, #eef2f6 100%);
    border-top: 1px solid rgba(13, 27, 42, 0.06);
}

.kap-section-warm {
    background: transparent !important;
}

