/* =========================================================
   Ironik / LAX Oil — Modern design system
   Design tokens + component styles for header, footer and
   the homepage. Loaded alongside the legacy stylesheets so
   pages not yet migrated keep working; this file wins on
   the elements it targets.
   ========================================================= */

:root {
    /* Brand */
    --c-primary: #33383d;
    /* charcoal grey */
    --c-primary-dark: #1f2225;
    --c-primary-light: #4a5058;
    --c-accent: #d9922c;
    /* warm amber */
    --c-accent-dark: #b97618;
    --c-accent-light: #f2b25c;

    /* Neutrals */
    --c-ink: #17212b;
    --c-body: #46525c;
    --c-muted: #7c8894;
    --c-line: #e4e9ed;
    --c-surface: #ffffff;
    --c-surface-alt: #f5f7f9;

    /* Type */
    --font-base: "Manrope", sans-serif;
    --fs-h1: clamp(2.1rem, 1.6rem + 2vw, 3.4rem);
    --fs-h2: clamp(1.6rem, 1.35rem + 1vw, 2.35rem);
    --fs-h3: 1.25rem;
    --fs-body: 1rem;
    --fs-small: 0.875rem;

    /* Spacing / shape */
    --space-section: clamp(3.5rem, 3rem + 2vw, 6rem);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 2px 10px rgba(51, 56, 61, 0.06);
    --shadow-md: 0 12px 32px rgba(51, 56, 61, 0.12);
    --container: 1400px;
}

/* ---------- Base ---------- */
/* Smooth scrolling is handled by Lenis (see main.js), which drives its
   own frame-by-frame scroll physics. bootstrap.min.css separately sets
   `:root{scroll-behavior:smooth}` — leaving that on fights Lenis for
   control of the scroll position every frame, which is what makes
   scrolling feel heavy/stuttery. Force it off so only Lenis controls it. */
html {
    scroll-behavior: auto !important;
    scroll-padding-top: 110px;
}

/* Lenis' own recommended resets */
html.lenis,
html.lenis body {
    height: auto;
}

html.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

html.lenis-stopped {
    overflow: hidden;
}

.mw {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
}

.eyebrow {
    display: inline-block;
    color: var(--c-accent-dark);
    font-weight: 700;
    font-size: var(--fs-small);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.section-head {
    max-width: 640px;
    margin-bottom: clamp(2rem, 1.6rem + 1vw, 3rem);
}

.section-head.center {
    max-width: 620px;
    margin-inline: auto;
    text-align: center;
}

.section-title {
    font-size: var(--fs-h2);
    font-weight: 800;
    color: var(--c-ink);
    line-height: 1.15;
    margin: 0;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--c-accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--c-accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--c-primary);
    border-color: var(--c-line);
}

.btn-outline:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
    transform: translateY(-2px);
}

.btn-outline.on-dark {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline.on-dark:hover {
    border-color: #fff;
}

/* Scroll reveal (replaces WOW.js). Content is visible by default —
   JS only ever ADDS the "reveal-armed" class right before it starts
   observing, so a JS failure never hides real content. */
.reveal {
    opacity: 1;
    transform: none;
}

.reveal.reveal-armed {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity .7s cubic-bezier(0.22, 1, 0.36, 1), transform .7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Directional slide-in variants — pair with .reveal on elements that sit
   side by side (e.g. an image and its text column) for a left/right move-in. */
.reveal-left.reveal-armed {
    transform: translateX(-60px);
}

.reveal-right.reveal-armed {
    transform: translateX(60px);
}

.reveal-down.reveal-armed {
    transform: translateY(-48px);
}

.reveal-left.reveal-armed.is-visible,
.reveal-right.reveal-armed.is-visible,
.reveal-down.reveal-armed.is-visible {
    transform: none;
}

/* Optional stagger utilities: add alongside .reveal to cascade a group
   of elements in one after another instead of all at once. */
.reveal-1.reveal-armed {
    transition-delay: .05s;
}

.reveal-2.reveal-armed {
    transition-delay: .15s;
}

.reveal-3.reveal-armed {
    transition-delay: .25s;
}

.reveal-4.reveal-armed {
    transition-delay: .35s;
}

.reveal-5.reveal-armed {
    transition-delay: .45s;
}

@media (prefers-reduced-motion: reduce) {

    .reveal.reveal-armed {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .inner-aboutus-img-wrap:hover img,
    .expertise-card:hover .expertise-icon img,
    .vm-card:hover .vm-icon img {
        transform: none;
    }
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--c-primary-dark);
}

.topbar {
    background: var(--c-accent);
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--fs-small);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.topbar .mw {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.2rem;
}

.topbar-contacts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.75rem;
    margin-bottom: 0;
    list-style: none;
    padding: 0;
}

.topbar-contacts li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.topbar-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #fff;
}

.topbar-contacts a,
.topbar-contacts span {
    font-weight: 400;
    font-size: 0.90rem;
    line-height: 1.2;
    color: #fff;
}

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

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.topbar-brochure a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

.topbar-brochure a:hover {
    color: var(--c-accent-light);
}

.topbar-brochure img {
    width: 14px;
    filter: brightness(0) invert(1);

}

.topbar-call {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.topbar-call-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    color: #fff;
}

.topbar-call-icon svg {
    width: 18px;
    height: 18px;
}

.topbar-call-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.topbar-call a {
    display: block;
    color: #fff;
    font-weight: 400;
    font-size: 0.90rem;
    line-height: 1.2;
    white-space: nowrap;
}

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

.topbar-social {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.topbar-social img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.topbar-social a:hover img {
    opacity: 1;
}

.main-nav {
    background: var(--c-primary-dark);
}

.main-nav .mw {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-block: 0.85rem;
}

.brand {

    display: inline-flex;
    align-items: center;

    border-radius: 999px;
}

.brand img {
    height: 100px;
    width: auto;
    display: block;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list>li {
    position: relative;
}

.nav-list a.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 0.6rem 0.85rem;
    border-radius: 999px;
    text-decoration: none;
    transition: color .15s ease, background-color .15s ease;
}

.nav-list a.nav-link:hover,
.nav-list a.nav-link.active {
    color: var(--c-accent);
    background: transparent;
}

.nav-caret {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

.nav-dropdown {
    list-style: none;
    margin: 0;
    padding: 0.75rem 1rem 1rem;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    min-width: 420px;
    max-width: min(560px, 90vw);
    max-height: 75vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    align-content: start;
    gap: 0.15rem 0.5rem;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--c-line);
    border-top: 3px solid var(--c-accent);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    z-index: 20;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-dropdown-heading {
    grid-column: 1 / -1;
    color: var(--c-accent-dark);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.75rem 0.6rem;
    margin-bottom: 0.35rem;
    border-bottom: 1px solid var(--c-line);
}

.nav-dropdown a {
    position: relative;
    display: block;
    padding: 0.6rem 0.75rem 0.6rem 1.4rem;
    border-radius: var(--radius-sm);
    color: var(--c-body);
    font-size: 0.92rem;
    line-height: 1.3;
    text-decoration: none;
    transition: color .15s ease, transform .15s ease;
}

.nav-dropdown a::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--c-accent);
    opacity: 0.55;
    transform: translateY(-50%) scale(1);
    transition: opacity .15s ease, transform .15s ease;
}

.nav-dropdown a:hover {
    background: var(--c-surface-alt);
    color: var(--c-primary);
    transform: translateX(3px);
}

.nav-dropdown a:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.4);
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    background: var(--c-accent);
    color: var(--c-primary-dark);
    font-family: inherit;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color .18s ease, transform .18s ease;
}

.btn-quote:hover {
    background: var(--c-accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle span::before {
    position: absolute;
    top: -6px;
}

.nav-toggle span::after {
    position: absolute;
    top: 6px;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 22, 33, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s;
    z-index: 90;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1200px) {
    .topbar-contacts {
        display: none;
    }
}

@media (max-width: 767px) {

    .topbar-brochure,
    .topbar-social {
        display: none;
    }

    .btn-quote {
        padding: 0.7rem 1.1rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 991px) {
    .nav-toggle {
        display: inline-flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(320px, 85vw);
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 5rem 1.25rem 2rem;
        transform: translateX(100%);
        transition: transform .3s ease;
        overflow-y: auto;
        z-index: 95;
        box-shadow: var(--shadow-md);
    }

    .nav-list.open {
        transform: none;
    }

    .nav-list a.nav-link {
        width: 100%;
        color: var(--c-ink);
        border-radius: var(--radius-sm);
    }

    .nav-list a.nav-link:hover,
    .nav-list a.nav-link.active {
        background: var(--c-surface-alt);
    }

    .nav-caret {
        color: var(--c-muted);
    }

    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        display: none;
        margin-left: 0.5rem;
    }

    .has-dropdown.open .nav-dropdown {
        display: block;
    }

    .nav-menu-close {
        display: block;
        position: absolute;
        top: 1.1rem;
        right: 1.1rem;
    }
}

.nav-menu-close {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--c-muted);
    cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    display: none;
    position: relative;
}

.hero-slide.active {
    display: block;
}

.hero-slide img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
    .hero-slide img {
        height: 320px;
    }
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(31, 34, 37, 0.92) 0%, rgba(31, 34, 37, 0.78) 45%, rgba(31, 34, 37, 0.45) 100%);
}

.hero-caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.hero-caption .mw {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-caption .hero-eyebrow,
.hero-caption .hero-heading,
.hero-caption .hero-desc,
.hero-caption .hero-actions {
    opacity: 0;
    transform: translateY(24px);
}

.hero-slide.active .hero-caption .hero-eyebrow {
    animation: heroCaptionIn .7s ease forwards;
    animation-delay: .15s;
}

.hero-slide.active .hero-caption .hero-heading {
    animation: heroCaptionIn .7s ease forwards;
    animation-delay: .3s;
}

.hero-slide.active .hero-caption .hero-desc {
    animation: heroCaptionIn .7s ease forwards;
    animation-delay: .45s;
}

.hero-slide.active .hero-caption .hero-actions {
    animation: heroCaptionIn .7s ease forwards;
    animation-delay: .6s;
}

@keyframes heroCaptionIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {

    .hero-caption .hero-eyebrow,
    .hero-caption .hero-heading,
    .hero-caption .hero-desc,
    .hero-caption .hero-actions {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--c-accent-light);
    margin-bottom: 1rem;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--c-accent);
}

.hero-heading {
    color: #fff;
    font-size: var(--fs-h1);
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
}

.hero-heading span {
    position: relative;
    display: inline-block;
    color: var(--c-accent);
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.1em;
}

.hero-heading span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.12em;
    width: 100%;
    height: 2px;
    background: var(--c-accent);
    transform: scaleX(0);
    transform-origin: left;
}

.hero-slide.active .hero-heading span::after {
    animation: heroUnderlineIn .7s ease forwards;
    animation-delay: .85s;
}

@keyframes heroUnderlineIn {
    to {
        transform: scaleX(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-heading span::after {
        transform: scaleX(1);
        animation: none;
    }
}

.hero-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 480px;
    margin: 1.5rem auto 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-arrow {
    transition: transform .18s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(3px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(11, 22, 33, 0.35);
    cursor: pointer;
    transition: background-color .18s ease, border-color .18s ease;
}

.hero-arrow:hover {
    background: var(--c-accent);
    border-color: var(--c-accent);
}

.hero-arrow-prev {
    left: 24px;
}

.hero-arrow-next {
    right: 24px;
}

.hero-arrow span {
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.hero-arrow-prev span {
    transform: rotate(-135deg) translate(1px, -1px);
}

.hero-arrow-next span {
    transform: rotate(45deg) translate(-1px, -1px);
}

@media (max-width: 767px) {
    .hero-arrow {
        width: 38px;
        height: 38px;
    }

    .hero-arrow-prev {
        left: 12px;
    }

    .hero-arrow-next {
        right: 12px;
    }
}

/* ---------- Brand marquee ---------- */
.brand-strip {
    padding-block: clamp(2.5rem, 2rem + 1.5vw, 4rem);
    border-bottom: 1px solid var(--c-line);
}

.brand-track-wrap {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-track {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 1.6rem + 2vw, 4rem);
    width: max-content;
}

.brand-track.is-marquee {
    animation: brand-marquee 28s linear infinite;
}

.brand-track.is-marquee:hover {
    animation-play-state: paused;
}

@keyframes brand-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .brand-track.is-marquee {
        animation: none;
    }
}

.brand-track img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(0.6);
    transition: filter .2s ease;
}

.brand-track img:hover {
    filter: none;
}

/* ---------- Section watermark ----------
   Oversized ghost label sat behind a section's content, bleeding off
   the edge. Position varies per section (see modifiers below) so they
   don't all stack in the same corner. Drifts sideways on scroll via
   main.js. */
.section-watermark {
    position: absolute;
    left: -0.02em;
    bottom: -0.08em;
    z-index: 0;
    display: block;
    font-size: clamp(4.5rem, 3rem + 9vw, 11rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--c-ink);
    opacity: 0.05;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    will-change: transform;
}

.section-watermark.on-dark {
    color: #fff;
    opacity: 0.06;
}

/* Position modifiers — pick one per section for visual variety */
.section-watermark--bottom-left {
    top: auto;
    right: auto;
    bottom: -0.08em;
    left: -0.02em;
}

.section-watermark--top-left {
    top: -0.08em;
    right: auto;
    bottom: auto;
    left: -0.02em;
}

.section-watermark--top-right {
    top: -0.08em;
    right: -0.02em;
    bottom: auto;
    left: auto;
}

.section-watermark--bottom-right {
    top: auto;
    right: -0.02em;
    bottom: -0.08em;
    left: auto;
}

@media (prefers-reduced-motion: reduce) {
    .section-watermark {
        transform: none !important;
    }
}

/* ---------- About ---------- */
.about-section {
    position: relative;
    overflow: hidden;
    background: var(--c-surface-alt);
}

/* Soft brand-colored glows, low opacity so the section stays light */
.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 92% 6%, rgba(217, 146, 44, 0.16), transparent 40%),
        radial-gradient(circle at 3% 98%, rgba(51, 56, 61, 0.12), transparent 42%);
    pointer-events: none;
    z-index: 0;
}

/* Small dotted-grid vector tucked in a corner for texture */
.about-section::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 260px;
    height: 260px;
    background-image: radial-gradient(rgba(51, 56, 61, 0.16) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    -webkit-mask-image: radial-gradient(circle at 100% 0%, #000 0%, transparent 72%);
    mask-image: radial-gradient(circle at 100% 0%, #000 0%, transparent 72%);
    pointer-events: none;
    z-index: 0;
}

.about-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 1.5rem + 2vw, 5rem);
    align-items: start;
}

.eyebrow-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--c-surface);
    color: var(--c-ink);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.55rem 1rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.eyebrow-tag i {
    width: 8px;
    height: 8px;
    background: var(--c-accent);
    flex-shrink: 0;
}

.eyebrow-tag.on-dark {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.about-heading {
    font-size: clamp(2rem, 1.5rem + 2.2vw, 3.1rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--c-ink);
    margin: 0 0 2.5rem;
}

/* -- Mosaic image treatment: small squares "cut" out of the photo,
   matching the section background, to read as a broken puzzle frame -- */
.mosaic-cutout {
    position: relative;
    overflow: visible;
}

.mosaic-cutout img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.mosaic-cutout .cut {
    position: absolute;
    background: var(--c-surface-alt);
    z-index: 2;
}

.about-media-block {
    position: relative;
}

.mosaic-cutout--left img {
    height: 380px;
}

.mosaic-cutout--left .cut-1 {
    top: -28px;
    left: -28px;
    width: 64px;
    height: 64px;
}

.mosaic-cutout--left .cut-2 {
    top: 90px;
    left: -34px;
    width: 48px;
    height: 48px;
}

.mosaic-cutout--left .cut-3 {
    bottom: 60px;
    left: -22px;
    width: 40px;
    height: 40px;
}

.about-stat-badge {
    position: absolute;
    right: -1.5rem;
    bottom: -1.5rem;
    background: var(--c-accent);
    padding: 1.75rem 1.75rem 2.25rem;
    min-width: 190px;
}

.about-stat-badge .stat-number {
    display: block;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    color: var(--c-ink);
    margin-bottom: 0.75rem;
}

.about-stat-badge .stat-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--c-primary-dark);
    line-height: 1.4;
}

.mosaic-cutout--top {
    margin-bottom: 2.5rem;
}

.mosaic-cutout--top img {
    height: 320px;
    border-radius: var(--radius-sm);
}

.mosaic-cutout--top .cut-1 {
    top: -24px;
    left: 50px;
    width: 56px;
    height: 56px;
}

.mosaic-cutout--top .cut-2 {
    top: -18px;
    right: 90px;
    width: 42px;
    height: 42px;
}

.mosaic-cutout--top .cut-3 {
    top: 40px;
    right: -24px;
    width: 48px;
    height: 100px;
}

.about-welcome {
    /* Temporary: trying out Quicksand for this heading — swap back to
       var(--font-base) if it doesn't end up working for the brand. */
    font-family: "Quicksand", var(--font-base);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--c-ink);
    line-height: 1.4;
    margin: 0 0 1.25rem;
}

.about-desc {
    color: var(--c-body);
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

.about-checklist {
    list-style: none;
    margin: 0 0 2.25rem;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.about-checklist li {
    position: relative;
    padding-left: 1.75rem;
    font-weight: 700;
    color: var(--c-ink);
    font-size: 0.95rem;
}

.about-checklist li::before {
    content: '+';
    position: absolute;
    left: 0;
    top: -0.05em;
    color: var(--c-accent-dark);
    font-weight: 800;
    font-size: 1.1rem;
}

.btn-dark-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--c-ink);
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 1.75rem;
    border-radius: var(--radius-sm);
    transition: background-color .18s ease, transform .18s ease;
}

.btn-dark-cta:hover {
    background: var(--c-accent-dark);
    transform: translateY(-2px);
}

.cta-arrow {
    font-size: 1rem;
    line-height: 1;
}

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

    .about-stat-badge {
        right: 0.5rem;
        bottom: -1.25rem;
        min-width: 150px;
        padding: 1.25rem 1.25rem 1.75rem;
    }

    .about-stat-badge .stat-number {
        font-size: 2rem;
    }

    .about-right {
        margin-top: 3rem;
    }
}

/* ---------- Service panel ---------- */
.service-panel {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 1.6rem + 2vw, 3.5rem);
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(2rem, 1.5rem + 2vw, 4rem);
    align-items: center;
}

.service-panel-copy p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.service-track-wrap {
    position: relative;
}

.service-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.service-track::-webkit-scrollbar {
    display: none;
}

.service-mini-card {
    scroll-snap-align: start;
    flex: 0 0 220px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: background-color .2s ease, transform .2s ease;
}

.service-mini-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    color: #fff;
}

.service-mini-card .num {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--c-accent-light);
}

.service-mini-card h3 {
    font-size: 1.02rem;
    font-weight: 700;
    margin: 0;
}

.service-mini-card .link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-accent-light);
    margin-top: auto;
}

.service-track-nav {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

.service-track-nav button {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 1.1rem;
}

.service-track-nav button:hover {
    background: var(--c-accent);
    border-color: var(--c-accent);
}

@media (max-width: 900px) {
    .service-panel {
        grid-template-columns: 1fr;
    }
}

/* ---------- Why choose us ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    background: var(--c-surface-alt);
    position: relative;
}

.why-card .why-num {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--c-muted);
}

.why-card .why-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--c-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-ink);
    margin: 0 0 0.5rem;
}

.why-card p {
    color: var(--c-body);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- How it works ---------- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.step-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    position: relative;
}

.step-card .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--c-accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-ink);
    margin: 0 0 0.5rem;
}

.step-card p {
    color: var(--c-body);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Insights / blog ---------- */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.insight-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    display: block;
    transition: transform .25s ease, box-shadow .25s ease;
}

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

.insight-card .thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.insight-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-card .body {
    padding: 1.25rem 1.4rem 1.5rem;
}

.insight-card .date {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--c-accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.insight-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-ink);
    margin: 0.5rem 0 0;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- CTA banner ---------- */
.cta-banner {
    background: linear-gradient(135deg, var(--c-primary-dark) 0%, var(--c-primary) 100%);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 1.6rem + 2vw, 3.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-banner h2 {
    color: #fff;
    font-size: var(--fs-h2);
    font-weight: 800;
    margin: 0 0 0.5rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

/* ---------- Stats ---------- */
.stats-section {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    color: #fff;
    padding: 1.5rem 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card img {
    width: 40px;
    margin-bottom: 0.9rem;
    filter: brightness(0) invert(1);
}

.stat-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
    color: var(--c-accent-light);
}

.stat-card p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------- Products ---------- */
.products-section {
    position: relative;
    overflow: hidden;
}

/* Same quiet glow treatment as the About section, so the two read as
   one design system rather than the Products block looking like an
   older leftover sandwiched between About and Industries. */
.products-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 96% 4%, rgba(217, 146, 44, 0.10), transparent 38%),
        radial-gradient(circle at 2% 100%, rgba(51, 56, 61, 0.06), transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.products-section>.mw {
    position: relative;
    z-index: 1;
}

.products-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: clamp(2rem, 1.6rem + 1vw, 3rem);
}

.products-heading {
    font-size: clamp(2rem, 1.5rem + 2.2vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.08;
    color: var(--c-ink);
    margin: 1.1rem 0 0;
}

.products-head-cta {
    white-space: nowrap;
}

@media (max-width: 600px) {
    .products-head {
        align-items: flex-start;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--c-surface-alt);
    border: 1px solid var(--c-line);
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
}

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

.product-card:focus-visible {
    outline: 2px solid var(--c-accent);
    outline-offset: 3px;
}

.product-card .thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

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

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

.product-tag {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 1;
    display: inline-block;
    background: var(--c-surface);
    color: var(--c-accent-dark);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.thumb-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(23, 33, 43, 0) 40%, rgba(23, 33, 43, 0.55) 100%);
    opacity: 0;
    transition: opacity .25s ease;
}

.product-card:hover .thumb-overlay {
    opacity: 1;
}

.product-card .body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.15rem 1.25rem 1.4rem;
}

.product-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-ink);
    margin: 0 0 0.5rem;
    transition: color .2s ease;
}

.product-card:hover h3 {
    color: var(--c-accent-dark);
}

.product-excerpt {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--c-muted);
    margin: 0 0 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--c-accent-dark);
    margin-top: auto;
}

.product-card .link .arrow {
    display: inline-block;
    transition: transform .2s ease;
}

.product-card:hover .link .arrow {
    transform: translateX(3px);
}

@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Industries: pinned card-cover stack ----------
   .industries-pin-wrap is made tall by main.js (enough scroll distance
   to hold each card + slide the next one in). .industries-sticky pins
   to the viewport for that whole distance. All three .industry-card
   elements sit stacked directly on top of each other (absolute,
   inset:0) inside it; card 1 never moves, cards 2/3 are translated
   from translateY(100%) (hidden below) to translateY(0) (fully
   covering the previous card) as main.js scrubs their transform in
   proportion to scroll — with a "hold" pause before/after so each
   card's content is fully readable, not just glimpsed mid-slide. */
.industries-section {
    /* No overflow:hidden here — an ancestor with overflow other than
       visible breaks position:sticky for the pinned stack below.
       Horizontal bleed from the watermark is caught by the global
       html{overflow-x:hidden} in style.css instead. */
    position: relative;
    background-color: var(--c-primary-dark);
    background-image: url('../images/industry-we-serve/industryback.jpg');
    background-size: cover;
    background-position: center;
}

/* Fixed attachment keeps the photo static behind both the intro text
   and the pinned card stack below it, instead of scrolling underneath
   them — skipped on touch/mobile where fixed backgrounds are unreliable
   and the pin effect itself is already disabled. */
@media (min-width: 901px) {
    .industries-section {
        background-attachment: fixed;
    }
}

.industries-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(31, 34, 37, 0.72);
    z-index: 0;
}

.industries-intro {
    position: relative;
    z-index: 1;
    padding-block: clamp(4rem, 3rem + 4vw, 7rem);
}

.industries-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: end;
}

.industries-intro-heading {
    font-size: clamp(2.2rem, 1.6rem + 3.5vw, 4.4rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.05;
    color: #fff;
    margin: 1.25rem 0 0;
}

.industries-intro-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.industries-intro-right p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin: 0 0 1.5rem;
    max-width: 440px;
}

.industries-intro-right mark {
    background: var(--c-accent);
    color: var(--c-primary-dark);
    padding: 0 0.3em;
    border-radius: 4px;
    font-weight: 700;
}

.industries-container {
    position: relative;
    z-index: 1;
    padding-bottom: clamp(3rem, 2rem + 3vw, 5rem);
}

.industries-pin-wrap {
    position: relative;
}

.industries-sticky {
    /* Still pins for a full 100vh of scroll distance (main.js's scroll
       math depends on that) but the visible card block itself is
       shorter and sits nudged below dead-center within that pinned
       viewport — see .industries-stack-inner. */
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industries-stack-inner {
    position: relative;
    width: 100%;
    height: clamp(400px, 54vh, 540px);
    margin-top: 6vh;
}

.industry-card {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--c-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 -30px 60px rgba(31, 34, 37, 0.35);
    will-change: transform;
}

.industry-card:nth-child(1) {
    z-index: 1;
}

.industry-card:nth-child(2) {
    z-index: 2;
}

.industry-card:nth-child(3) {
    z-index: 3;
}

.industry-card--alt {
    background: var(--c-surface-alt);
}

.industry-card-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.75rem, 1.4rem + 2vw, 3.25rem);
    overflow-y: auto;
}

.industry-card-copy .panel-index {
    display: block;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--c-accent-dark);
    margin-bottom: 0.6rem;
}

.industry-card-copy h2 {
    font-size: clamp(1.6rem, 1.3rem + 1.6vw, 2.4rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--c-ink);
    margin: 0 0 1.1rem;
}

.industry-card-list {
    list-style: none;
    margin: 0 0 1.1rem;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.industry-card-list li {
    position: relative;
    padding-left: 1.6rem;
    font-weight: 700;
    color: var(--c-ink);
    font-size: 0.95rem;
}

.industry-card-list li::before {
    content: '+';
    position: absolute;
    left: 0;
    top: -0.05em;
    color: var(--c-accent-dark);
    font-weight: 800;
    font-size: 1.05rem;
}

.industry-card-copy p {
    color: var(--c-body);
    line-height: 1.7;
    max-width: 420px;
    margin: 0 0 2rem;
}

.industry-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--c-ink);
    text-decoration: none;
    width: fit-content;
}

.industry-more-link span {
    display: inline-block;
    transition: transform .18s ease;
}

.industry-more-link:hover {
    color: var(--c-accent-dark);
}

.industry-more-link:hover span {
    transform: translate(2px, -2px);
}

.industry-card-media {
    position: relative;
    overflow: hidden;
}

.industry-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Pinned card-cover scrubbing is a desktop-only trick (main.js skips
   the JS below this breakpoint) — fall back to plain stacked cards. */
@media (max-width: 900px) {
    .industries-intro-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .industries-intro-right {
        align-items: flex-start;
        text-align: left;
    }

    .industries-intro-right p {
        max-width: none;
    }

    .industries-pin-wrap {
        height: auto !important;
    }

    .industries-sticky {
        position: static;
        height: auto;
        overflow: visible;
        display: block;
        padding: clamp(2rem, 1.6rem + 2vw, 3rem) 0;
    }

    .industries-stack-inner {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .industry-card {
        position: relative;
        inset: auto;
        height: auto;
        grid-template-columns: 1fr;
        box-shadow: none;
        transform: none !important;
    }

    .industry-card-media {
        height: 45vh;
        order: -1;
    }

    .industry-card-copy {
        padding: 2rem 1.5rem;
    }
}

/* ---------- Testimonials ---------- */
.testimonial-card {
    background: var(--c-surface-alt);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testimonial-card .quote-icon {
    width: 32px;
    opacity: 0.4;
}

.testimonial-card p {
    color: var(--c-body);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.testimonial-name {
    font-weight: 700;
    color: var(--c-ink);
}

.testimonials-section .swiper-pagination {
    position: static;
    margin-top: 2rem;
}

.testimonials-section .swiper-pagination-bullet {
    background: var(--c-primary);
    opacity: 0.25;
}

.testimonials-section .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--c-accent);
}

/* ---------- Footer ---------- */
.site-footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #0d1319 0%, var(--c-primary-dark) 45%, #202b36 100%);
    color: rgba(255, 255, 255, 0.75);
}

/* soft accent glows the glass panel below can blur against */
.site-footer::before,
.site-footer::after {
    content: '';
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.site-footer::before {
    width: 380px;
    height: 380px;
    top: -140px;
    left: -100px;
    background: rgba(217, 146, 44, 0.35);
}

.site-footer::after {
    width: 440px;
    height: 440px;
    bottom: -180px;
    right: -120px;
    background: rgba(74, 80, 88, 0.45);
}

.footer-main {
    position: relative;
    z-index: 1;
    margin-block: clamp(2.5rem, 2rem + 2vw, 4.5rem) 2rem;
    padding: clamp(2rem, 1.5rem + 1.5vw, 3rem);
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 2.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 100px;
    margin-bottom: 1.25rem;

}

.footer-about p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.social-links {
    display: flex;
    gap: 0.6rem;
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background-color .18s ease, border-color .18s ease;
}

.social-links a:hover {
    background: var(--c-accent);
    border-color: var(--c-accent);
}

.social-links img {
    width: 16px;
    filter: brightness(0) invert(1);
}

.f-title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
}

.f-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.f-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.94rem;
}

.f-links a:hover {
    color: var(--c-accent-light);
}

.f-con-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.f-con-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.f-con-info img {
    width: 18px;
    margin-top: 3px;
    filter: brightness(0) invert(1) opacity(0.8);
}

.f-con-info a,
.f-con-info p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.94rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-block: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
}

.footer-credit {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-credit img {
    height: 18px;
}

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
}

/* ---------- Inquiry popup ---------- */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(31, 34, 37, 0.55);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s;
    z-index: 199;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.sidebar-open {
    overflow: hidden;
}

.sidebar-contact {
    position: fixed;
    top: 50%;
    left: 50%;
    width: min(480px, 92vw);
    height: auto;
    background: var(--c-surface, #fff);
    box-shadow: var(--shadow-md), 0 24px 60px rgba(31, 34, 37, 0.25);
    border-radius: var(--radius-lg);
    z-index: 200;
    padding: 0 0 2.5rem;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%);
    transition: opacity .3s ease, transform .3s cubic-bezier(.4, 0, .2, 1), visibility .3s;
}

.sidebar-contact.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.sidebar-contact-head {
    position: relative;
    background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
    color: #fff;
    padding: 2.25rem 2.25rem 1.75rem;
    margin-bottom: 2rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.sidebar-form-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 .5rem;
}

.sidebar-form-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    max-width: 85%;
}

.sidebar-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: background-color .18s ease, transform .18s ease;
}

.sidebar-close-btn:hover {
    background: var(--c-primary-dark);
    transform: rotate(90deg);
}

.sidebar-close-btn img {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
}

.sidebar-contact .scroll {
    padding: 0 2.25rem;
    max-height: none;
    overflow: visible;
}

.sidebar-contact .wpcf7-form p {
    margin-bottom: 0.85rem;
}

/* Force one field per line even if the form markup uses a Bootstrap
   row/col grid — those breakpoints key off viewport width, not the
   narrow panel, so without this override fields pair up side by side. */
.sidebar-contact .wpcf7-form .row {
    display: block;
    margin: 0;
}

.sidebar-contact .wpcf7-form [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0;
}

.sidebar-contact .wpcf7-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--c-body);
    margin-bottom: 0.3rem;
}

.sidebar-contact .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.sidebar-contact .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]) {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--c-border, #e1e6ea);
    border-radius: 8px;
    background: var(--c-surface-alt, #f6f8fa);
    font-size: 0.85rem;
    color: var(--c-ink);
    transition: border-color .18s ease, background-color .18s ease;
}

.sidebar-contact .wpcf7-form-control:not([type="submit"]):focus {
    outline: none;
    border-color: var(--c-accent);
    background: #fff;
}

.sidebar-contact textarea.wpcf7-form-control {
    min-height: 90px;
    resize: vertical;
}

.sidebar-contact input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--c-primary);
    color: #fff;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: none;
    padding: 1.4rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color .18s ease, transform .18s ease;
}

.sidebar-contact input[type="submit"]:hover {
    background: var(--c-primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.sidebar-contact .wpcf7-spinner {
    display: block;
    margin: .75rem auto 0;
}

.sidebar-contact .wpcf7-not-valid-tip {
    font-size: 0.8rem;
    margin-top: .25rem;
}

section {
    padding-block: var(--space-section);
}

/* ---------- Blog & News ---------- */
.blog-section {
    background: var(--c-surface-alt);
}

.eyebrow-tag.center-tag {
    margin-inline: auto;
}

.blog-heading {
    font-size: clamp(2rem, 1.4rem + 2.8vw, 3.4rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--c-ink);
    margin: 0;
}

.blog-carousel {
    position: relative;
}

.blog-swiper {
    overflow: hidden;
    padding: 0.25rem 0.25rem 0.5rem;
}

.blog-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.blog-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--c-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--c-line);
    box-shadow: var(--shadow-sm);
    padding: 1rem;
    transition: transform .3s ease, box-shadow .3s ease;
}

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

.blog-card-media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius-sm);
    margin-bottom: 1.1rem;
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.blog-card:hover .blog-card-media img {
    transform: scale(1.06);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
}

.blog-tag,
.blog-date {
    position: static;
    display: inline-block;
    background: var(--c-surface-alt);
    color: var(--c-accent-dark);
    font-weight: 700;
    font-size: 0.78rem;
    margin: 0;
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.blog-date {
    color: var(--c-muted);
}

.blog-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0 0 1rem;
}

.blog-card-title a {
    color: var(--c-ink);
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--c-accent-dark);
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--c-ink);
    text-decoration: none;
    margin-top: auto;
}

.blog-card-link span {
    transition: transform .2s ease;
}

.blog-card:hover .blog-card-link span {
    transform: translate(2px, -2px);
}

.blog-empty {
    text-align: center;
    color: var(--c-muted);
}

/* ---------- Blog listing page (grid of equal-size .blog-card) ---------- */
.blog-listing-section {
    padding-block: var(--space-section);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    align-items: stretch;
}

.blog-grid .blog-card {
    height: 100%;
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.6rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-line);
    background: var(--c-surface);
    color: var(--c-ink);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.blog-pagination .page-numbers:hover {
    background: var(--c-surface-alt);
    border-color: var(--c-accent);
}

.blog-pagination .page-numbers.current {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: #fff;
}

.blog-pagination .page-numbers.dots {
    border: none;
    background: none;
}

/* ---------- Blog detail page ---------- */
.blog-detail-section {
    padding-block: var(--space-section);
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 3rem;
    align-items: start;
}

.blog-detail-media {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.blog-detail-media img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    display: block;
}

.blog-detail-media-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--c-accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.blog-detail-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--c-muted);
    font-size: 0.88rem;
    font-weight: 600;
}

.blog-detail-meta-item svg {
    color: var(--c-accent);
    flex-shrink: 0;
}

.blog-detail-title {
    font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.2rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--c-ink);
    margin-bottom: 1.5rem;
}

.blog-detail-desc {
    color: var(--c-body);
    font-size: 1rem;
    line-height: 1.8;
}

.blog-detail-desc p {
    margin-bottom: 1.25rem;
}

.blog-detail-desc h1,
.blog-detail-desc h2,
.blog-detail-desc h3,
.blog-detail-desc h4,
.blog-detail-desc h5,
.blog-detail-desc h6 {
    color: var(--c-ink);
    font-weight: 800;
    margin: 1.75rem 0 1rem;
}

.blog-detail-desc img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.blog-detail-desc ul,
.blog-detail-desc ol {
    margin: 0 0 1.25rem;
    padding-left: 1.25rem;
}

.blog-detail-desc li {
    margin-bottom: 0.5rem;
}

.blog-detail-desc a {
    color: var(--c-accent-dark);
    text-decoration: underline;
}

/* ---------- Sidebar: Recent Posts ---------- */
.blog-detail-sidebar {
    position: sticky;
    top: 100px;
}

.recent-posts-card {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
}

.recent-posts-heading {
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--c-ink);
    margin: 0 0 1.25rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--c-line);
}

.recent-posts-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.recent-post-thumb {
    flex-shrink: 0;
    display: block;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.recent-post-item:hover .recent-post-thumb img {
    transform: scale(1.08);
}

.recent-post-body {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}

.recent-post-title {
    color: var(--c-ink);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-post-title:hover {
    color: var(--c-accent-dark);
}

.recent-post-date {
    color: var(--c-muted);
    font-size: 0.78rem;
}

.recent-post-empty {
    color: var(--c-muted);
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .blog-detail-sidebar {
        position: static;
    }
}

/* ---------- Service / product detail page ---------- */
.service-detail-section {
    padding-block: var(--space-section);
}

.service-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 3rem;
    align-items: start;
}

.service-detail-media {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--c-surface-alt);
    margin-bottom: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.service-detail-media img {
    width: 100%;
    max-height: 380px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    padding: 1.5rem;
}

.service-detail-media-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--c-accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.service-detail-title {
    font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.2rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--c-ink);
    margin-bottom: 1.25rem;
}

.service-detail-desc {
    color: var(--c-body);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-detail-desc p {
    margin-bottom: 1.25rem;
}

.service-detail-desc h1,
.service-detail-desc h2,
.service-detail-desc h3,
.service-detail-desc h4,
.service-detail-desc h5,
.service-detail-desc h6 {
    color: var(--c-ink);
    font-weight: 800;
    margin: 1.75rem 0 1rem;
}

.service-detail-desc ul,
.service-detail-desc ol {
    margin: 0 0 1.25rem;
    padding-left: 1.25rem;
}

.service-detail-desc li {
    margin-bottom: 0.5rem;
}

.service-detail-desc a {
    color: var(--c-accent-dark);
    text-decoration: underline;
}

.service-detail-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    background: var(--c-surface-alt);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.75rem;
}

.service-detail-cta h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--c-ink);
    margin: 0 0 0.3rem;
}

.service-detail-cta p {
    color: var(--c-muted);
    font-size: 0.9rem;
    margin: 0;
}

.service-detail-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.related-services-card,
.sidebar-inquiry-card {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
}

.related-services-heading {
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--c-ink);
    margin: 0 0 1.1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--c-line);
}

.related-services-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.related-service-item a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.5rem;
    border-radius: var(--radius-sm);
    color: var(--c-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s ease, color .15s ease, transform .15s ease;
}

.related-service-item a:hover {
    background: var(--c-surface-alt);
    color: var(--c-accent-dark);
    transform: translateX(3px);
}

.related-service-dot {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-accent);
    opacity: 0.6;
}

.related-service-item a:hover .related-service-dot {
    opacity: 1;
}

.related-service-empty {
    color: var(--c-muted);
    font-size: 0.9rem;
}

.sidebar-inquiry-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--c-ink);
    margin: 0 0 0.5rem;
}

.sidebar-inquiry-card p {
    color: var(--c-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0 0 1.1rem;
}

.sidebar-inquiry-card .btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 991px) {
    .service-detail-layout {
        grid-template-columns: 1fr;
    }

    .service-detail-sidebar {
        position: static;
    }
}

/* =========================================================
   Inner pages — shared banner + About Us + Contact Us
   These override the legacy style.css rules of the same name
   (modern-style is enqueued after main-style, see functions.php)
   so every inner template picks up the new look automatically.
   ========================================================= */

/* ---------- Shared inner page banner ---------- */
.inner-banner-section {
    position: relative;
    padding: clamp(3.5rem, 2.8rem + 3vw, 6rem) 0;
    background: #1c1b1a;
    overflow: hidden;
    z-index: 1;
}

.inner-banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 90% at 65% 15%, rgba(217, 146, 44, 0.28) 0%, rgba(217, 146, 44, 0) 60%),
        radial-gradient(ellipse 55% 85% at 35% 100%, rgba(242, 178, 92, 0.16) 0%, rgba(242, 178, 92, 0) 65%),
        linear-gradient(160deg, #1c1b1a 0%, #262420 100%);
    background-repeat: no-repeat;
    animation: heroGradientDrift 16s ease-in-out infinite alternate;
    z-index: -1;
}

/* Softly drifting glow orbs — decorative, purely CSS */
.inner-banner-section .hero-fx {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.inner-banner-section .hero-fx span {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.55;
    background: radial-gradient(circle at 30% 30%, rgba(242, 178, 92, 0.9), rgba(217, 146, 44, 0) 70%);
    animation: heroOrbFloat 12s ease-in-out infinite;
}

.inner-banner-section .hero-fx span:nth-child(1) {
    width: 14px;
    height: 14px;
    left: 8%;
    top: 65%;
    animation-duration: 10s;
    animation-delay: 0s;
}

.inner-banner-section .hero-fx span:nth-child(2) {
    width: 9px;
    height: 9px;
    left: 22%;
    top: 25%;
    animation-duration: 13s;
    animation-delay: 1.5s;
}

.inner-banner-section .hero-fx span:nth-child(3) {
    width: 20px;
    height: 20px;
    left: 85%;
    top: 30%;
    opacity: 0.4;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 70%);
    animation-duration: 15s;
    animation-delay: 3s;
}

.inner-banner-section .hero-fx span:nth-child(4) {
    width: 11px;
    height: 11px;
    left: 68%;
    top: 70%;
    animation-duration: 11s;
    animation-delay: 4.5s;
}

.inner-banner-section .hero-fx span:nth-child(5) {
    width: 7px;
    height: 7px;
    left: 45%;
    top: 15%;
    opacity: 0.35;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 70%);
    animation-duration: 9s;
    animation-delay: 2s;
}

@keyframes heroGradientDrift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes heroOrbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.55;
    }

    50% {
        transform: translate(14px, -22px) scale(1.15);
        opacity: 0.85;
    }
}

@media (prefers-reduced-motion: reduce) {

    .inner-banner-section::before,
    .inner-banner-section .hero-fx span {
        animation: none;
    }
}

.inner-banner-section .container {
    text-align: center;
}

.inner-banner-section .page-title {
    position: relative;
    display: inline-block;
    padding-bottom: 0.6rem;
    font-size: clamp(2rem, 1.5rem + 2.2vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 0.9rem;
}

.inner-banner-section .page-title::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 56px;
    height: 4px;
    border-radius: 2px;
    background: var(--c-accent);
}

.inner-banner-section .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.inner-banner-section .breadcrumb-item a,
.inner-banner-section .breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.inner-banner-section .breadcrumb-item a:hover {
    color: #fff;
}

.inner-banner-section .breadcrumb-item.active {
    color: var(--c-accent-light);
}

.inner-banner-section .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ---------- Shared section title kicker (About / Contact / etc.) ---------- */
.theme-title-wrap span {
    display: inline-block;
    width: fit-content;
    color: var(--c-accent-dark);
    background: var(--c-surface-alt);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
}

.theme-title-wrap .theme-main-title {
    font-size: clamp(1.7rem, 1.4rem + 1.6vw, 2.4rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.15;
    color: var(--c-ink);
    margin: 0;
}

.theme-title-wrap .theme-main-title.text-white {
    color: #fff;
}

/* ---------- About Us ---------- */
.inner-aboutus-section {
    padding-block: var(--space-section);
}

.inner-aboutus-section--desc {
    border-top: 1px solid var(--c-line);
}

.inner-aboutus-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.inner-aboutus-img-wrap img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .6s ease;
}

.inner-aboutus-img-wrap:hover img {
    transform: scale(1.06);
}

.inner-about-text-wrap .desc {
    color: var(--c-body);
    line-height: 1.75;
}

/* Experience badge overlapping the About Us intro image */
.about-badge {
    position: absolute;
    right: -1.25rem;
    bottom: -1.25rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: var(--c-accent);
    color: #fff;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--c-surface);
}

.about-badge__num {
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge__label {
    margin-top: 0.3rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

@media (max-width: 560px) {
    .about-badge {
        right: -0.6rem;
        bottom: -0.6rem;
        width: 88px;
        height: 88px;
    }

    .about-badge__num {
        font-size: 1.25rem;
    }

    .about-badge__label {
        font-size: 0.58rem;
    }
}

/* Alternating list layout for the "Why Choose Us" section, so it reads
   differently from the 4-card grid used by "Why Oil Testing Matters"
   right above it. */
.why-list {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin-inline: auto;
}

.why-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--c-line);
}

.why-list-item:first-child {
    padding-top: 0;
}

.why-list-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.why-list-item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.why-list-item .why-check {
    flex-shrink: 0;
    margin-bottom: 0;
}

.why-list-item h3 {
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--c-ink);
    margin: 0 0 0.4rem;
}

.why-list-item p {
    color: var(--c-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 700px) {

    .why-list-item,
    .why-list-item:nth-child(even) {
        flex-direction: row;
        text-align: left;
    }
}

/* Closing CTA band on the About Us page — reuses the .cta-banner
   component (currently unused elsewhere) rather than a new one-off. */
.about-cta-section {
    padding-block: var(--space-section);
}

.about-full-desc {
    color: var(--c-body);
    line-height: 1.75;
}

/* Dark glass treatment — its own gradient + glow recipe (cooler,
   bottom-lit) so it echoes the footer's material without being an
   identical repeat of it. */
.vision-mission-section {
    position: relative;
    overflow: hidden;
    padding-block: var(--space-section);
    background: linear-gradient(200deg, #10161c 0%, var(--c-primary-dark) 50%, #1b2530 100%);
    border-top: 1px solid var(--c-line);
}

.vision-mission-section::before,
.vision-mission-section::after {
    content: '';
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.vision-mission-section::before {
    width: 420px;
    height: 420px;
    top: -160px;
    right: -120px;
    background: rgba(217, 146, 44, 0.28);
}

.vision-mission-section::after {
    width: 380px;
    height: 380px;
    bottom: -160px;
    left: -100px;
    background: rgba(74, 80, 88, 0.4);
}

.vision-mission-section > .mw {
    position: relative;
    z-index: 1;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.vm-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: clamp(2rem, 1.6rem + 2vw, 2.75rem);
    transition: transform .3s ease, box-shadow .3s ease;
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.vm-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--c-accent);
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 22px rgba(217, 146, 44, 0.35);
}

.vm-card--alt .vm-icon {
    background: var(--c-primary-light);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.vm-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform .4s ease;
}

.vm-card:hover .vm-icon img {
    transform: scale(1.15) rotate(-6deg);
}

.vm-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 0 0 0.9rem;
}

.vm-card p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 767px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Our Expertise ---------- */
.expertise-section {
    padding-block: var(--space-section);
    background: var(--c-surface-alt);
    border-top: 1px solid var(--c-line);
}

.expertise-intro {
    max-width: 760px;
    margin: 0 auto clamp(2rem, 1.6rem + 1vw, 3rem);
    text-align: center;
}

.expertise-intro p {
    color: var(--c-body);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.expertise-intro p:last-child {
    margin-bottom: 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.expertise-card {
    text-align: center;
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: clamp(1.75rem, 1.4rem + 1vw, 2.25rem) 1.5rem;
    transition: transform .25s ease, box-shadow .25s ease;
}

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

.expertise-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--c-surface-alt);
    margin-bottom: 1.1rem;
}

.expertise-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: transform .4s ease;
}

.expertise-card:hover .expertise-icon img {
    transform: scale(1.15) rotate(-6deg);
}

.expertise-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--c-ink);
    margin: 0 0 0.4rem;
}

.expertise-card p {
    color: var(--c-muted);
    font-size: 0.92rem;
    margin: 0;
}

@media (max-width: 900px) {
    .expertise-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Why Oil Testing Matters / Why Choose Us ---------- */
.why-section {
    position: relative;
    overflow: hidden;
    padding-block: var(--space-section);
    border-top: 1px solid var(--c-line);
}

.why-section--alt {
    background: var(--c-surface-alt);
}

.why-section > .mw {
    position: relative;
    z-index: 1;
}

.why-intro {
    max-width: 760px;
    margin: 0 auto clamp(2rem, 1.6rem + 1vw, 3rem);
    text-align: center;
}

.why-intro p {
    color: var(--c-body);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.why-intro p:last-child {
    margin-bottom: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1.6rem;
    transition: transform .25s ease, box-shadow .25s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c-accent);
    color: #fff;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.02rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--c-ink);
    margin: 0 0 0.5rem;
}

.why-card p {
    color: var(--c-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1100px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Contact Us ---------- */
.contactus-section {
    padding-block: var(--space-section);
}

.contactus-detail-wrap {
    background: linear-gradient(160deg, #0d1319 0%, var(--c-primary-dark) 45%, #202b36 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: clamp(2rem, 1.6rem + 2vw, 3rem);
    border-radius: var(--radius-lg);
}

.contactus-detail-items {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contactus-detail-items:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.contactus-detail-items .icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.contactus-detail-items .icon img {
    width: 20px;
    filter: brightness(0) invert(1);
}

.contactus-detail-items .title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.contactus-detail-items a,
.contactus-detail-items p,
.contactus-detail-items address {
    color: rgba(255, 255, 255, 0.7);
    word-break: normal;
    overflow-wrap: break-word;
}

.contactus-detail-items a:hover {
    color: var(--c-accent-light);
}

.contact-address {
    font-style: normal;
    line-height: 1.65;
    max-width: 32ch;
}

.contact-form-wrapper {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: clamp(1.75rem, 1.4rem + 2vw, 2.75rem);
}

/* Reuse the modern CF7 field styling already built for the sidebar
   inquiry form so the full contact page form matches it exactly. */
.contact-form-wrapper .wpcf7-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--c-body);
    margin-bottom: 0.3rem;
}

.contact-form-wrapper .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.contact-form-wrapper .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]) {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-sm);
    background: var(--c-surface-alt);
    font-size: 0.9rem;
    color: var(--c-ink);
    transition: border-color .18s ease, background-color .18s ease;
}

.contact-form-wrapper .wpcf7-form-control:not([type="submit"]):focus {
    outline: none;
    border-color: var(--c-accent);
    background: #fff;
}

.contact-form-wrapper textarea.wpcf7-form-control {
    min-height: 130px;
    resize: vertical;
}

.contact-form-wrapper input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--c-accent);
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: none;
    padding: 0.95rem 2.2rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color .18s ease, transform .18s ease;
}

.contact-form-wrapper input[type="submit"]:hover {
    background: var(--c-accent-dark);
    transform: translateY(-2px);
}

.contact-form-wrapper .wpcf7-not-valid-tip {
    font-size: 0.8rem;
    margin-top: .25rem;
}

.map-wrap iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}