/* ============================================================
   PRINCE DIGI GRAPHICS — MAIN STYLESHEET
   ------------------------------------------------------------
   Author-friendly: change the theme in :root below.
   Sections in order:
   1.  Theme variables (edit here)
   2.  Base / reset
   3.  Reusable buttons & utilities
   4.  Reveal animations
   5.  Top bar
   6.  Navbar + multi-level dropdown
   7.  Home hero
   8.  Marquee ribbon (signature)
   9.  Stats / counters
   10. Home: about, services grid, process, why-us
   11. Testimonial slider
   12. Inner page hero + breadcrumb
   13. Category cards (Template A)
   14. Detail page (Template B) — carousel + form + points
   15. Contact page
   16. Footer
   17. Floating buttons + back to top
   18. Responsive
   ============================================================ */

/* ========== 1. THEME VARIABLES — EDIT THESE ========== */
:root {
    /* Brand accent — change this one value to re-skin the site */
    --color-accent: #FB5725;
    --color-accent-dark: #d8410f;
    --color-accent-soft: #fff2ec;

    /* Neutrals */
    --color-ink: #17130f;
    /* headings / strong text */
    --color-body: #55504a;
    /* paragraph text */
    --color-muted: #8a837b;
    /* captions */
    --color-bg: #ffffff;
    --color-bg-alt: #faf7f3;
    /* subtle warm section bg */
    --color-dark: #14110e;
    /* dark sections + footer */
    --color-line: #ece7e1;
    /* borders */

    /* Type */
    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Rhythm */
    --radius: 14px;
    --radius-sm: 10px;
    --shadow-sm: 0 6px 18px rgba(23, 19, 15, .06);
    --shadow-md: 0 14px 40px rgba(23, 19, 15, .10);
    --shadow-lg: 0 24px 60px rgba(23, 19, 15, .14);
    --container: 1200px;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --section-y: 92px;
}

/* ========== 2. BASE / RESET ========== */
* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: clip;
    /* stop horizontal scroll, keeps sticky working */
}

html {
    scroll-behavior: smooth;
}

/* smooth anchor scrolling */

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-body);
    background: var(--color-bg);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--color-ink);
    line-height: 1.15;
    letter-spacing: -.01em;
    margin: 0 0 .5em;
    font-weight: 700;
}

p {
    margin: 0 0 1rem;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color .25s var(--ease);
}

a:hover {
    color: var(--color-accent-dark);
}

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

.container {
    max-width: var(--container);
}

::selection {
    background: var(--color-accent);
    color: #fff;
}

/* Focus visibility for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

/* Section scaffolding */
.section {
    padding: var(--section-y) 0;
    position: relative;
}

.section--alt {
    background: var(--color-bg-alt);
}

.section--dark {
    background: var(--color-dark);
    color: #cfc9c2;
}

.section--dark h2,
.section--dark h3 {
    color: #fff;
}

/* Section heading kit */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 14px;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--color-accent);
}

.section-title {
    font-size: clamp(1.9rem, 3.4vw, 2.85rem);
    margin-bottom: 16px;
}

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

.section-lead {
    font-size: 1.06rem;
    color: var(--color-body);
    max-width: 640px;
}

.text-center .eyebrow {
    justify-content: center;
}

.text-center .section-lead {
    margin-inline: auto;
}

/* ========== 3. BUTTONS & UTILITIES ========== */
.btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 50px;
    border: 0;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
    box-shadow: 0 10px 24px rgba(251, 87, 37, .28);
}

.btn-solid:hover {
    color: #fff;
    background: var(--color-accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(251, 87, 37, .36);
}

.btn-solid i {
    transition: transform .3s var(--ease);
}

.btn-solid:hover i {
    transform: translateX(4px);
}

.btn-lg-solid {
    padding: 16px 34px;
    font-size: 1.05rem;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--color-ink);
    font-family: var(--font-display);
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 50px;
    border: 1.5px solid var(--color-line);
    transition: border-color .3s var(--ease), color .3s var(--ease), background .3s var(--ease);
}

.btn-ghost:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
    background: var(--color-accent-soft);
}

/* Link-style read-more (matches reference) */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .9rem;
    color: var(--color-accent);
    letter-spacing: .01em;
}

.read-more i {
    transition: transform .3s var(--ease);
}

.read-more:hover {
    color: var(--color-accent-dark);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* ========== 4. REVEAL ANIMATIONS (IntersectionObserver) ========== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: .10s;
}

.reveal-delay-2 {
    transition-delay: .20s;
}

.reveal-delay-3 {
    transition-delay: .30s;
}

/* ========== 5. TOP BAR ========== */
.topbar {
    background: var(--color-dark);
    color: #d9d3cc;
    font-size: .84rem;
    padding: 8px 0;
}

.topbar-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar-tag i {
    color: var(--color-accent);
}

.topbar-contact {
    display: flex;
    gap: 20px;
}

.topbar-contact a {
    color: #d9d3cc;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.topbar-contact a:hover {
    color: #fff;
}

.topbar-contact i {
    color: var(--color-accent);
    font-size: .82rem;
}

/* ========== 6. NAVBAR + MULTI-LEVEL DROPDOWN ========== */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: saturate(160%) blur(8px);
    border-bottom: 1px solid var(--color-line);
    transition: box-shadow .3s var(--ease), padding .3s var(--ease);
}

.site-nav.scrolled {
    box-shadow: var(--shadow-sm);
    padding: 8px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -.02em;
    box-shadow: 0 8px 18px rgba(251, 87, 37, .32);
}

.brand-text {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.22rem;
    color: var(--color-ink);
    letter-spacing: -.01em;
}

.brand-text strong {
    color: var(--color-accent);
    font-weight: 700;
}

.site-nav .nav-link {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--color-ink);
    font-size: .98rem;
    padding: 8px 16px !important;
    position: relative;
}

.site-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 2px;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    color: var(--color-accent);
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after {
    transform: scaleX(1);
}

.site-nav .dropdown-toggle::after {
    margin-left: 6px;
}

.nav-cta-item {
    margin-left: 10px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-ink);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .92rem;
    padding: 10px 20px;
    border-radius: 50px;
    transition: background .3s var(--ease), transform .3s var(--ease);
}

.nav-cta:hover {
    background: var(--color-accent);
    color: #fff;
    transform: translateY(-2px);
}

/* Custom hamburger */
.navbar-toggler {
    border: 0;
    padding: 6px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-bar {
    display: block;
    width: 26px;
    height: 2.5px;
    margin: 5px 0;
    background: var(--color-ink);
    border-radius: 2px;
    transition: .3s var(--ease);
}

/* Dropdown menu look */
.site-nav .dropdown-menu {
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 8px;
    margin-top: 12px;
    min-width: 250px;
}

.site-nav .dropdown-item {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: .95rem;
    color: var(--color-ink);
    border-radius: 8px;
    padding: 10px 14px;
    transition: background .2s var(--ease), color .2s var(--ease), padding-left .2s var(--ease);
}

.site-nav .dropdown-item:hover,
.site-nav .dropdown-item:focus {
    background: var(--color-accent-soft);
    color: var(--color-accent-dark);
    padding-left: 20px;
}

/* Multi-level submenu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -8px;
    margin-left: 2px;
}

.dropdown-submenu>.dropdown-toggle::after {
    border: 0;
    content: "\F285";
    font-family: "bootstrap-icons";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: .8rem;
}

@media (min-width: 992px) {

    /* Open on hover for desktop */
    .site-nav .dropdown:hover>.dropdown-menu,
    .dropdown-submenu:hover>.dropdown-menu {
        display: block;
    }

    .site-nav .dropdown-menu {
        margin-top: 0;
    }

    .has-mega {
        position: relative;
    }
}

/* ========== 7. HOME HERO ========== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 82vh;
    display: flex;
    align-items: center;
    padding: 110px 0;
    background: var(--color-dark);
}

.hero-carousel-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s var(--ease);
}

.hero-carousel-bg.active {
    opacity: 1;
}

.hero::before {
    /* even dark wash for centered text legibility */
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.404) 0%, rgba(0, 0, 0, 0.466) 100%);
}

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

.hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 87, 37, .16);
    color: #ffb59d;
    border: 1px solid rgba(251, 87, 37, .4);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.hero-title {
    color: #fff;
    font-size: clamp(34px, 5vw, 40px);
    line-height: 1.06;
    margin-bottom: 20px;
}

.hero-title .accent {
    color: var(--color-accent);
}

.hero-sub {
    color: #d4cec7;
    font-size: 1.12rem;
    max-width: 560px;
    margin: 0 auto 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.hero .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .28);
}

.hero .btn-ghost:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
    background: rgba(251, 87, 37, .10);
}

/* Floating decorative chips in hero */
.hero-chip {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .82rem;
    padding: 10px 16px;
    border-radius: 12px;
    display: none;
    animation: floaty 6s ease-in-out infinite;
}

.hero-chip i {
    color: var(--color-accent);
    margin-right: 6px;
}

.hero-chip.chip-1 {
    top: 22%;
    right: 8%;
    animation-delay: 0s;
}

.hero-chip.chip-2 {
    top: 52%;
    right: 20%;
    animation-delay: 1.5s;
}

.hero-chip.chip-3 {
    bottom: 14%;
    right: 6%;
    animation-delay: 3s;
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@media (min-width: 1200px) {
    .hero-chip {
        display: inline-flex;
    }
}

/* Hero carousel dots (bottom-centre) */
.hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255, 255, 255, .45);
    transition: background .3s var(--ease), width .3s var(--ease), border-radius .3s var(--ease);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, .85);
}

.hero-dot.active {
    background: var(--color-accent);
    width: 28px;
    border-radius: 6px;
}

/* ========== 8. MARQUEE RIBBON (signature — rAF driven) ========== */
.ribbon-wrap {
    background: var(--color-accent);
    overflow: hidden;
    padding: 16px 0;
    margin: 0;
    position: relative;
    z-index: 5;
}

.ribbon-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    width: max-content;
}

.ribbon-item {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    padding-right: 22px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ribbon-item i {
    color: rgba(255, 255, 255, .7);
    font-size: .7rem;
}

/* ========== 9. STATS / COUNTERS ========== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat {
    text-align: center;
    padding: 26px 14px;
    background: var(--color-bg);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.stat:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.stat-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.9rem);
    color: var(--color-accent);
    line-height: 1;
}

.stat-num .suffix {
    color: var(--color-ink);
}

.stat-label {
    font-size: .92rem;
    color: var(--color-body);
    margin-top: 8px;
    font-weight: 500;
}

/* ========== 10. HOME SECTIONS ========== */
/* About */
.about-media {
    position: relative;
}

.about-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    width: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -26px;
    right: -14px;
    background: var(--color-accent);
    color: #fff;
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    max-width: 210px;
}

.about-badge .n {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.1rem;
    line-height: 1;
}

.about-badge .t {
    font-size: .86rem;
    margin-top: 4px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 28px;
}

.about-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.about-list i {
    color: var(--color-accent);
    font-size: 1.15rem;
    margin-top: 2px;
}

.about-list strong {
    color: var(--color-ink);
    font-family: var(--font-display);
}

/* Services grid (home) — offset accent cards */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.svc-card {
    position: relative;
    background: var(--color-bg);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    padding: 34px 28px;
    overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.svc-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.svc-card:hover::before {
    transform: scaleX(1);
}

.svc-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    background: var(--color-accent-soft);
    color: var(--color-accent);
    margin-bottom: 20px;
    transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}

.svc-card:hover .svc-icon {
    background: var(--color-accent);
    color: #fff;
    transform: rotate(-8deg);
}

.svc-card h3 {
    font-size: 1.28rem;
    margin-bottom: 10px;
}

.svc-card p {
    font-size: .96rem;
    margin-bottom: 18px;
}

.svc-index {
    position: absolute;
    top: 22px;
    right: 26px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.4rem;
    color: var(--color-line);
    line-height: 1;
    transition: color .4s var(--ease);
}

.svc-card:hover .svc-index {
    color: var(--color-accent-soft);
}

/* Process (numbered — real sequence) */
.process-step {
    background: var(--color-bg);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    padding: 30px 26px;
    height: 100%;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.process-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--color-ink);
    color: #fff;
    margin-bottom: 18px;
}

.process-step h3 {
    font-size: 1.16rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: .94rem;
    margin: 0;
}

/* Why-us (dark band) */
.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 6px 0;
}

.why-item .why-ic {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    background: rgba(251, 87, 37, .14);
    color: var(--color-accent);
}

.why-item h3 {
    font-size: 1.14rem;
    margin-bottom: 6px;
}

.why-item p {
    font-size: .95rem;
    margin: 0;
    color: #b8b1a9;
}

/* ========== 11. TESTIMONIAL SLIDER ========== */
.tst-viewport {
    overflow: hidden;
}

.tst-track {
    display: flex;
    transition: transform .6s var(--ease);
}

.tst-slide {
    flex: 0 0 100%;
    padding: 6px;
}

@media (min-width: 768px) {
    .tst-slide {
        flex: 0 0 33.333%;
    }
}

.tst-card {
    background: var(--color-bg);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    padding: 30px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tst-quote-ic {
    font-size: 2.2rem;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 12px;
}

.tst-text {
    color: var(--color-body);
    font-size: .98rem;
    flex: 1;
}

.tst-stars {
    color: #f6b21b;
    margin: 10px 0 16px;
    font-size: .95rem;
}

.tst-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tst-person img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.tst-person .nm {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--color-ink);
    font-size: .98rem;
}

.tst-person .rl {
    font-size: .84rem;
    color: var(--color-muted);
}

.tst-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.tst-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: var(--color-line);
    cursor: pointer;
    transition: .3s var(--ease);
}

.tst-dot.active {
    background: var(--color-accent);
    width: 28px;
    border-radius: 6px;
}

/* ========== 12. INNER PAGE HERO + BREADCRUMB ========== */
.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
    background-color: var(--color-dark);
    background-size: cover;
    background-position: center;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.39), rgba(0, 0, 0, 0.37));
}

.page-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 0;
}

.page-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-bottom: 16px;
}

.breadcrumb-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .9rem;
    padding: 9px 20px;
    border-radius: 50px;
}

.breadcrumb-pill a {
    color: #fff;
}

.breadcrumb-pill a:hover {
    color: rgba(255, 255, 255, .8);
}

.breadcrumb-pill i {
    font-size: .75rem;
    opacity: .85;
}

.breadcrumb-pill .cur {
    opacity: .85;
}

/* ========== 13. CATEGORY CARDS (Template A) ========== */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
}

.cat-card {
    background: var(--color-bg);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
    display: flex;
    flex-direction: column;
}

.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.cat-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 14 / 11;
}

.cat-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

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

.cat-thumb .tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .72rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 50px;
}

.cat-body {
    padding: 24px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cat-body h3 {
    font-size: 1.24rem;
    margin-bottom: 10px;
}

.cat-body p {
    font-size: .95rem;
    margin-bottom: 18px;
    flex: 1;
}

/* ========== 14. DETAIL PAGE (Template B) ========== */
.detail-section {
    padding: var(--section-y) 0;
}

/* Left: image carousel */
.dt-carousel {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--color-bg-alt);
}

.dt-carousel .slides {
    position: relative;
    aspect-ratio: 4 / 3;
}

.dt-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .7s var(--ease);
}

.dt-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--color-bg-alt);
}

.dt-slide.active {
    opacity: 1;
}

.dt-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, .9);
    color: var(--color-ink);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 3;
    box-shadow: var(--shadow-sm);
    transition: background .3s var(--ease), color .3s var(--ease);
}

.dt-arrow:hover {
    background: var(--color-accent);
    color: #fff;
}

.dt-arrow.prev {
    left: 14px;
}

.dt-arrow.next {
    right: 14px;
}

.dt-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 3;
}

.dt-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, .6);
    cursor: pointer;
    padding: 0;
}

.dt-dots button.active {
    background: var(--color-accent);
    width: 22px;
    border-radius: 5px;
}

/* Title + action buttons row (matches reference) */
.dt-titlebar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 26px;
}

.dt-titlebar h2 {
    font-size: 1.6rem;
    margin: 0;
}

.dt-actions {
    display: flex;
    gap: 10px;
}

.dt-actions a {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.05rem;
    transition: transform .3s var(--ease), filter .3s var(--ease);
}

.dt-actions a:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
}

.dt-actions .a-call {
    background: #2b7cff;
}

.dt-actions .a-wa {
    background: #25d366;
}

.dt-actions .a-broch {
    background: var(--color-accent);
    width: auto;
    padding: 0 18px;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .92rem;
}

.dt-content {
    margin-top: 22px;
}

.dt-content p {
    color: var(--color-body);
}

/* Right column: quote form + service category list */
.dt-form-card,
.dt-cat-card {
    background: var(--color-bg);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 26px 24px;
}

.dt-form-card {
    margin-bottom: 26px;
}

.dt-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-ink);
    font-size: 1.12rem;
    margin-bottom: 18px;
}

.dt-card-head i {
    color: var(--color-accent);
}

/* Category list with arrow buttons */
.dt-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dt-cat-list li {
    margin-bottom: 10px;
}

.dt-cat-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-line);
    border-radius: 10px;
    padding: 13px 16px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .95rem;
    color: var(--color-ink);
    transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}

.dt-cat-list a span.arw {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: var(--color-bg);
    border: 1px solid var(--color-line);
    color: var(--color-accent);
    transition: background .3s var(--ease), color .3s var(--ease);
}

.dt-cat-list a:hover {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.dt-cat-list a:hover span.arw {
    background: rgba(255, 255, 255, .2);
    color: #fff;
    border-color: transparent;
}

/* Points list (below form) */
.dt-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dt-points li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: .97rem;
    color: var(--color-body);
}

.dt-points i {
    color: var(--color-accent);
    font-size: 1.15rem;
    margin-top: 2px;
    flex: 0 0 auto;
}

.dt-points strong {
    color: var(--color-ink);
    font-family: var(--font-display);
}

/* Generic form fields */
.form-field {
    margin-bottom: 14px;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    border: 1px solid var(--color-line);
    border-radius: 10px;
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--color-ink);
    background: var(--color-bg);
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: 0;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(251, 87, 37, .14);
}

.form-field textarea {
    resize: vertical;
    min-height: 110px;
}

.form-note {
    font-size: .82rem;
    color: var(--color-muted);
    margin: 8px 0 0;
}

.form-success {
    display: none;
    background: #eafaf0;
    color: #1c7a45;
    border: 1px solid #bfe9cf;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: .92rem;
    margin-bottom: 14px;
}

.form-success.show {
    display: block;
}

/* ========== 15. CONTACT PAGE ========== */
.contact-info-card {
    background: var(--color-bg);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    padding: 26px 24px;
    height: 100%;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.contact-info-card .ic {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--color-accent-soft);
    color: var(--color-accent);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.contact-info-card h3 {
    font-size: 1.12rem;
    margin-bottom: 8px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: .96rem;
    color: var(--color-body);
    margin: 0;
    word-break: break-word;
}

.map-embed {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-line);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
    display: block;
}

/* ========== 16. FOOTER ========== */
.site-footer {
    background: var(--color-dark);
    color: #b3aca4;
    margin-top: 0;
}

.footer-cta {
    background: var(--color-accent);
    margin-top: 0;
    padding: 74px 0 54px;
}

.footer-cta-title {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    margin-bottom: 8px;
}

.footer-cta-sub {
    color: rgba(255, 255, 255, .9);
    margin: 0;
}

.footer-cta .btn-solid {
    background: var(--color-ink);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .25);
}

.footer-cta .btn-solid:hover {
    background: #000;
}

.footer-main {
    padding: 66px 0 40px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-brand .brand-text {
    color: #fff;
}

.footer-about {
    font-size: .94rem;
    color: #a8a199;
    max-width: 330px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .07);
    color: #d6cfc7;
    font-size: 1.05rem;
    transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}

.footer-social a:hover {
    background: var(--color-accent);
    color: #fff;
    transform: translateY(-3px);
}

.footer-head {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    color: #a8a199;
    font-size: .94rem;
    transition: color .3s var(--ease), padding-left .3s var(--ease);
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 6px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: .94rem;
    color: #a8a199;
}

.footer-contact i {
    color: var(--color-accent);
    margin-top: 3px;
    flex: 0 0 auto;
}

.footer-contact a {
    color: #a8a199;
}

.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
    font-size: .88rem;
    color: #8f887f;
}

.footer-bottom .credit {
    color: var(--color-accent);
    font-family: var(--font-display);
    font-weight: 600;
}

/* ========== 17. FLOATING BUTTONS + BACK TO TOP ========== */
.float-btn {
    position: fixed;
    bottom: 26px;
    z-index: 1040;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: transform .3s var(--ease);
}

.float-btn:hover {
    transform: scale(1.08);
    color: #fff;
}

.float-whatsapp {
    left: 22px;
    background: #25d366;
}

.float-call {
    right: 22px;
    background: var(--color-accent);
}

/* Pulse rings */
.float-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

.float-whatsapp::after {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
}

.float-call::after {
    box-shadow: 0 0 0 0 rgba(251, 87, 37, .5);
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .35);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.float-whatsapp::after {
    animation-name: pulse-wa;
}

.float-call::after {
    animation-name: pulse-call;
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-call {
    0% {
        box-shadow: 0 0 0 0 rgba(251, 87, 37, .5);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(251, 87, 37, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(251, 87, 37, 0);
    }
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 92px;
    z-index: 1039;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 0;
    background: var(--color-ink);
    color: #fff;
    font-size: 1.1rem;
    display: grid;
    place-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.back-to-top:hover {
    background: var(--color-accent);
}

/* ========== 18. RESPONSIVE ========== */
@media (max-width: 991.98px) {
    :root {
        --section-y: 64px;
    }

    .site-nav .navbar-collapse {
        background: var(--color-bg);
        border: 1px solid var(--color-line);
        border-radius: var(--radius);
        margin-top: 12px;
        padding: 12px;
        box-shadow: var(--shadow-md);
    }

    .site-nav .nav-link::after {
        display: none;
    }

    .site-nav .dropdown-menu {
        box-shadow: none;
        border: 0;
        border-left: 2px solid var(--color-line);
        border-radius: 0;
        margin: 4px 0 4px 10px;
        padding: 4px 0;
        min-width: auto;
    }

    .dropdown-submenu>.dropdown-menu {
        left: 0;
        margin-left: 12px;
    }

    .dropdown-submenu>.dropdown-toggle::after {
        content: "\F282";
    }

    .nav-cta-item {
        margin: 10px 0 4px;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
    }

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

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

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

    .about-badge {
        position: static;
        margin-top: 20px;
        max-width: none;
        display: inline-block;
    }

    .topbar-contact {
        display: none;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-y: 52px;
    }

    .hero {
        padding: 64px 0 74px;
    }

    .hero-actions .btn-solid,
    .hero-actions .btn-ghost {
        width: 100%;
        justify-content: center;
    }

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

    .svc-grid,
    .cat-grid {
        grid-template-columns: 1fr;
    }

    .ribbon-item {
        font-size: .92rem;
    }

    .footer-cta {
        text-align: center;
    }

    .footer-cta .text-lg-end {
        text-align: center !important;
    }

    .dt-titlebar {
        flex-direction: column;
        align-items: flex-start;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .topbar-tag {
        font-size: .78rem;
    }
}

@media (max-width: 575.98px) {
    .stats-row {
        grid-template-columns: 1fr;
    }

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

/* ========== 19. UTILITY CLASSES (replaces inline styles) ========== */
/* Centered section heading block */
.section-head {
    max-width: 700px;
    margin-inline: auto;
    margin-bottom: 48px;
    text-align: center;
}

.section-head .eyebrow {
    justify-content: center;
}

.section-head .section-lead {
    margin-inline: auto;
}

/* Flush bottom for stacked intro + cards */
.section--flush-bottom {
    padding-bottom: 0;
}

/* Dark-section lead colour */
.section--dark .section-lead {
    color: #b8b1a9;
}

/* Detail-page highlights block */
.dt-highlights {
    margin-top: 26px;
}

.dt-highlights-title {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

/* Full-width button */
.btn-block {
    width: 100%;
    justify-content: center;
}

/* Current item in detail sidebar category list */
.dt-cat-list a.is-current {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.dt-cat-list a.is-current span.arw {
    background: rgba(255, 255, 255, .2);
    color: #fff;
    border-color: transparent;
}

/* ========== 20. PROJECT GALLERY TILES ========== */
.proj-tile {
    position: relative;
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 1 / 1;
}

.proj-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.proj-tile:hover img {
    transform: scale(1.08);
}

.proj-tile figcaption {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    color: #fff;
    background: linear-gradient(180deg, rgba(20, 17, 14, 0) 40%, rgba(20, 17, 14, .82) 100%);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .4s var(--ease), transform .4s var(--ease);
}

.proj-tile:hover figcaption {
    opacity: 1;
    transform: none;
}

.proj-cat {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--color-accent);
    font-family: var(--font-display);
}

.proj-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.02rem;
    margin-top: 2px;
}

/* Clickable project-category tile (always-visible label) */
.proj-cat-tile {
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3;
}

.proj-cat-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.proj-cat-tile:hover img {
    transform: scale(1.07);
}

.proj-cat-tile .pct-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background: linear-gradient(180deg, rgba(20, 17, 14, 0) 40%, rgba(20, 17, 14, .85) 100%);
}

.proj-cat-tile .pct-label span {
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
}

.proj-cat-tile .pct-label i {
    color: var(--color-accent);
    margin-left: 6px;
    transition: transform .3s var(--ease);
}

.proj-cat-tile:hover .pct-label i {
    transform: translateX(5px);
}

/* ========== 21. PRODUCTS COMING-SOON ========== */
.coming-soon {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    padding: 20px 0;
}

.coming-soon .cs-ic {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    margin: 0 auto 24px;
    display: grid;
    place-items: center;
    font-size: 2.4rem;
    background: var(--color-accent-soft);
    color: var(--color-accent);
}

.coming-soon h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin-bottom: 14px;
}

.coming-soon p {
    color: var(--color-body);
    margin-bottom: 26px;
}

/* Contact map fills its column height */
.map-embed {
    height: 100%;
}


/* =====================================================================
   HOME PAGE ADDITIONS  —  paste this whole block at the END of
   assets/css/style.css
   ===================================================================== */

/* ---------- Service category circles ---------- */
.cat-circles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 34px;
}

.cat-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    width: 190px;
}

.cat-circle .cc-img {
    width: 156px;
    height: 156px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease), border-color .4s var(--ease);
}

.cat-circle .cc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.cat-circle:hover .cc-img {
    border-color: var(--color-accent);
    transform: translateY(-6px);
}

.cat-circle:hover .cc-img img {
    transform: scale(1.09);
}

.cat-circle .cc-label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--color-dark);
    text-align: center;
    line-height: 1.3;
    transition: color .3s var(--ease);
}

.cat-circle:hover .cc-label {
    color: var(--color-accent);
}

/* ---------- Category circles: swipeable slider on mobile ---------- */
@media (max-width: 767.98px) {
    .cat-circles {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 22px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 6px 0 18px;
        scroll-padding-left: 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .cat-circles::-webkit-scrollbar {
        display: none;
    }

    .cat-circle {
        flex: 0 0 auto;
        width: 132px;
        scroll-snap-align: start;
    }

    .cat-circle .cc-img {
        width: 108px;
        height: 108px;
    }

    .cat-circle .cc-label {
        font-size: 0.88rem;
    }
}

/* ---------- Brand carousel (auto-scroll, always full colour) ---------- */
.brand-section {
    padding-top: 40px;
}

.brand-marquee {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
}

.brand-item {
    flex: 0 0 auto;
    width: 20vw;
    max-width: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
}

/* logos always in their real colour — NO grayscale, NO hover colour trick */
.brand-item img {
    max-width: 100%;
    max-height: 66px;
    object-fit: contain;
    display: block;
    filter: none;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .brand-item {
        width: 30vw;
    }
}

@media (max-width: 575.98px) {
    .brand-item {
        width: 45vw;
    }
}

/* ---------- About section — big stat + facts ---------- */
.about-bigstat {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 20px 0 22px;
}

.about-bigstat .abs-num {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1;
    font-size: clamp(3.2rem, 7vw, 5rem);
    color: var(--color-accent);
}

.about-bigstat .abs-num .p {
    font-size: .6em;
}

.about-bigstat .abs-side {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    font-size: .95rem;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: .02em;
}

.about-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 22px;
    margin: 22px 0 28px;
}

.about-facts .af {
    display: flex;
    flex-direction: column;
}

.about-facts .af strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-accent);
    line-height: 1;
}

.about-facts .af span {
    font-size: .9rem;
    color: var(--color-body);
    margin-top: 4px;
}

@media (max-width: 575.98px) {
    .about-facts {
        grid-template-columns: 1fr;
    }
}

/* ---------- Roomier gaps on ALL category card grids (home + category pages) ---------- */
.cat-grid {
    gap: 52px 40px;
}

@media (max-width: 991.98px) {
    .cat-grid {
        gap: 40px 30px;
    }
}

/* ============================================================
   19. PRODUCT GALLERY LIGHTBOX  (Our Products page only)
   ------------------------------------------------------------
   Popup image slideshow triggered by the "Read More" links on
   our-products.html. The markup is injected by the inline
   script on that page, so these styles only take effect there.
   ============================================================ */
.pdg-lb-lock {
    overflow: hidden;
}

.pdg-lb {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(20, 17, 14, .62);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s var(--ease);
}

.pdg-lb.is-open {
    opacity: 1;
    visibility: visible;
}

.pdg-lb__dialog {
    width: 100%;
    max-width: 560px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: var(--color-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 22px 22px 24px;
    transform: translateY(16px) scale(.98);
    transition: transform .35s var(--ease);
}

.pdg-lb.is-open .pdg-lb__dialog {
    transform: none;
}

.pdg-lb__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.pdg-lb__eyebrow {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 2px;
}

.pdg-lb__title {
    font-size: 1.5rem;
    margin: 0;
}

.pdg-lb__close {
    flex: none;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: var(--color-bg-alt);
    color: var(--color-ink);
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background .25s var(--ease), color .25s var(--ease);
}

.pdg-lb__close:hover {
    background: var(--color-accent);
    color: #fff;
}

.pdg-lb__stage {
    position: relative;
    background: #14110e;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    /* detail-page carousel jaisa fixed box (sirf yahan bg black hai) */
}

.pdg-lb__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    /* portrait -> agal-bagal black, wide -> upar-niche black; fill image ke ratio se */
    transition: opacity .35s var(--ease);
}

.pdg-lb__img.is-loading {
    opacity: .25;
}

.pdg-lb__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: var(--color-ink);
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    box-shadow: var(--shadow-sm);
    transition: background .25s var(--ease), color .25s var(--ease);
}

.pdg-lb__nav:hover {
    background: var(--color-accent);
    color: #fff;
}

.pdg-lb__nav--prev {
    left: 12px;
}

.pdg-lb__nav--next {
    right: 12px;
}

.pdg-lb__counter {
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: rgba(20, 17, 14, .72);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .8rem;
    padding: 4px 12px;
    border-radius: 50px;
}

.pdg-lb__thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.pdg-lb__thumb {
    flex: none;
    width: 66px;
    height: 60px;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    background: var(--color-bg-alt);
    opacity: .6;
    transition: opacity .25s var(--ease), border-color .25s var(--ease);
}

.pdg-lb__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pdg-lb__thumb:hover {
    opacity: 1;
}

.pdg-lb__thumb.is-active {
    opacity: 1;
    border-color: var(--color-accent);
}

/* Single image: hide arrows, counter and thumbnails */
.pdg-lb.is-single .pdg-lb__nav,
.pdg-lb.is-single .pdg-lb__counter,
.pdg-lb.is-single .pdg-lb__thumbs {
    display: none;
}

@media (max-width: 480px) {
    .pdg-lb__dialog {
        padding: 18px 16px 20px;
        border-radius: 16px;
    }

    .pdg-lb__title {
        font-size: 1.28rem;
    }

    .pdg-lb__nav {
        width: 38px;
        height: 38px;
    }
}
