/**
 * CRIMSON / Fizasite — Modern colorful theme
 * Hero & accents use CSS-only gradients so it never renders plain white if images fail.
 */
:root {
    --font: 'Plus Jakarta Sans', system-ui, sans-serif;
    --teal: #0d9488;
    --teal-dark: #0f766e;
    --amber: #f59e0b;
    --amber-dark: #d97706;
    --violet: #7c3aed;
    --violet-dark: #6d28d9;
    --coral: #f43f5e;
    --navy: #1e3a5f;
    --slate: #334155;
    --cream: #fffbeb;
    --white: #ffffff;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow: 0 12px 40px rgba(15, 118, 110, 0.18);
    --shadow-soft: 0 8px 30px rgba(30, 58, 95, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.theme-crimson {
    margin: 0;
    font-family: var(--font);
    color: var(--slate);
    line-height: 1.6;
    background: linear-gradient(180deg, #ecfeff 0%, #fff 25%, #fff7ed 55%, #f5f3ff 100%);
    min-height: 100vh;
}

/* Justified text site-wide (every page) */
.page-content p,
.split-copy p,
.about-company-details,
.about-growth-desc,
.about-card-desc,
.about-owner-desc,
.about-team-sub,
.feature-card p,
.product-tile-excerpt,
.home-row-text,
.section-sub,
.client-section-inner p,
.client-section-subtext,
.cta-inner p,
.our-clients-sub,
.products-page-lead,
.products-empty p,
.enquiry-page-lead,
.enquiry-success p,
.contact-page-lead,
.contact-timeline-text,
.contact-success p,
.tech-quality-lead,
.tech-quality-card-desc,
.tech-quality-plant-desc,
.tech-quality-detail-content,
.tech-quality-detail-lead,
.video-item p,
.gallery-caption,
.feedback-text {
    text-align: justify;
}

/* Mobile readability: avoid justified text (big gaps on narrow screens) */
@media (max-width: 768px) {
    .page-content p,
    .split-copy p,
    .about-company-details,
    .about-growth-desc,
    .about-card-desc,
    .about-owner-desc,
    .about-team-sub,
    .feature-card p,
    .product-tile-excerpt,
    .home-row-text,
    .section-sub,
    .client-section-inner p,
    .client-section-subtext,
    .cta-inner p,
    .our-clients-sub,
    .products-page-lead,
    .products-empty p,
    .enquiry-page-lead,
    .enquiry-success p,
    .contact-page-lead,
    .contact-timeline-text,
    .contact-success p,
    .tech-quality-lead,
    .tech-quality-card-desc,
    .tech-quality-plant-desc,
    .tech-quality-detail-content,
    .tech-quality-detail-lead,
    .video-item p,
    .gallery-caption,
    .feedback-text {
        text-align: left;
        text-justify: auto;
        hyphens: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ========== TOP BAR ========== */
.top-bar {
    background: linear-gradient(90deg, var(--navy) 0%, #0f766e 45%, #0d9488 100%);
    color: rgba(255,255,255,0.95);
    font-size: 0.8125rem;
    padding: 0;
}
.top-bar-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 24px;
}
.top-bar-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 18px;
}
.top-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    padding: 6px 12px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
}
.top-item a { color: #fff; text-decoration: none; font-weight: 600; }
.top-item a:hover { text-decoration: underline; }
.top-icon { opacity: 0.9; flex-shrink: 0; }
.top-address span { color: rgba(255,255,255,0.85); }
.top-bar-social {
    display: flex;
    align-items: center;
    gap: 8px;
}
.social-label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.6);
    margin-right: 4px;
}
.social-btn {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.7rem;
    transition: transform 0.2s, background 0.2s;
}
.social-btn:hover {
    background: rgba(255,255,255,0.28);
    transform: translateY(-2px);
    color: #fff;
}

/* ========== HEADER ========== */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 200;
}
.header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}
.logo-graphic {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}
.logo-img { display: block; width: 100%; height: 100%; object-fit: cover; }
/* Logo only — no company name / tagline next to mark */
.logo-link--only { gap: 0; }
.logo-graphic--solo {
    width: 220px;
    height: 56px;
    min-width: 220px;
    min-height: 56px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(30, 58, 95, 0.15);
    flex-shrink: 0;
}
.logo-graphic--solo .logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #fff;
}
@media (max-width: 600px) {
    .logo-graphic--solo {
        width: 170px;
        height: 48px;
        min-width: 170px;
        min-height: 48px;
    }
}
.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--navy);
    line-height: 1.1;
}
.tagline {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}
.main-nav { flex: 1; display: flex; justify-content: flex-end; }
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: flex-end;
    align-items: center;
}
.nav-list a {
    display: block;
    padding: 10px 12px;
    text-decoration: none;
    color: var(--slate);
    font-weight: 600;
    font-size: 0.8125rem;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
}
.nav-list a:hover {
    background: linear-gradient(135deg, #ccfbf1 0%, #e0f2fe 100%);
    color: var(--teal-dark);
}
.nav-list a.active {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}
/* Technology & Quality dropdown */
.nav-item-has-dropdown {
    position: relative;
}
.nav-dropdown-arrow {
    display: inline-block;
    margin-left: 4px;
    font-size: 0.65em;
    vertical-align: middle;
    opacity: 0.85;
}
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    margin: 4px 0 0;
    padding: 6px 0;
    min-width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(30, 58, 95, 0.18);
    border: 1px solid #e2e8f0;
    display: none;
    z-index: 150;
}
.nav-item-has-dropdown:hover .nav-dropdown {
    display: block;
}
.nav-dropdown li { margin: 0; }
.nav-dropdown a {
    display: block;
    padding: 10px 16px;
    color: var(--slate);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8125rem;
    border-radius: 8px;
    margin: 0 6px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}
.nav-dropdown a:hover {
    background: linear-gradient(135deg, #ccfbf1 0%, #e0f2fe 100%);
    color: var(--teal-dark);
}
.nav-dropdown a.active {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: #fff;
}
.nav-toggle {
    display: none;
    border: none;
    background: linear-gradient(135deg, #ccfbf1, #e0f2fe);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--teal-dark);
}
@media (max-width: 960px) {
    .nav-toggle { display: block; }
    .main-nav {
        width: 100%;
        display: none;
        padding-top: 12px;
        border-top: 1px solid #e2e8f0;
    }
    .main-nav.is-open { display: block; }
    .nav-list { flex-direction: column; align-items: stretch; }
    .nav-item-has-dropdown .nav-dropdown {
        position: static;
        display: none;
        margin: 0 0 8px 12px;
        padding: 8px 0;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--teal);
        background: transparent;
    }
    .main-nav.is-open .nav-item-has-dropdown .nav-dropdown {
        display: block;
    }
    .nav-dropdown a { margin: 0 0 4px; padding: 8px 12px; }
}

/* ========== HERO — packaging / corrugated box themed ========== */
.hero-modern {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 22%, #0c4a6e 45%, #1e40af 70%, #7c3aed 100%);
    background-size: 400% 400%;
    animation: gradient-move 18s ease infinite;
}
.hero-packaging .hero-modern-bg {
    background:
        radial-gradient(ellipse 70% 50% at 15% 50%, rgba(254,243,199,0.2) 0%, transparent 45%),
        radial-gradient(ellipse 60% 50% at 85% 60%, rgba(245,158,11,0.25) 0%, transparent 45%),
        radial-gradient(ellipse 50% 40% at 50% 20%, rgba(255,255,255,0.15) 0%, transparent 40%);
}
@keyframes gradient-move {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.hero-modern-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-corrugated-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(255,255,255,0.4) 3px,
        rgba(255,255,255,0.4) 4px
    );
    pointer-events: none;
}
.hero-modern-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-modern-inner {
    position: relative;
    z-index: 2;
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px 40px;
    display: grid;
    grid-template-columns: minmax(0, 480px) 1fr;
    gap: 40px;
    align-items: stretch;
}
.hero-modern-visual {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    min-height: 0;
    max-width: 100%;
    width: 100%;
}
.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 280px;
    max-height: 520px;
    border-radius: 20px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}
.hero-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,118,110,0.1) 0%, transparent 30%);
    pointer-events: none;
}
.hero-image-main {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center center;
}
@media (max-width: 900px) {
    .hero-modern { min-height: 0; }
    .hero-modern-inner { grid-template-columns: 1fr; padding: 28px 20px 40px; gap: 28px; text-align: center; align-items: center; }
    .hero-modern-copy { padding: 0; }
    .hero-btns { justify-content: center; }
    .hero-modern-visual { order: -1; max-width: 100%; align-items: center; }
    .hero-image-frame {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 280px;
        max-height: 400px;
        aspect-ratio: 16 / 10;
    }
}
.hero-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.22);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
}
.hero-eyebrow--box {
    background: linear-gradient(135deg, rgba(180,83,9,0.85) 0%, rgba(217,119,6,0.9) 100%);
    color: #fff;
    padding: 10px 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.25);
}
.hero-heading {
    margin: 0 0 10px;
    font-size: clamp(2.5rem, 5.5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2), 0 4px 40px rgba(0,0,0,0.15);
}
.hero-tagline {
    margin: 0 0 14px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fef3c7;
    text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.hero-lead {
    margin: 0 0 28px;
    max-width: 480px;
    color: rgba(255,255,255,0.92);
    font-size: 1.05rem;
    line-height: 1.65;
}
@media (max-width: 900px) { .hero-lead { max-width: none; } }
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.btn-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-glow:hover { transform: translateY(-2px); }
.btn-primary-modern {
    background: #fff;
    color: var(--teal-dark);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.btn-primary-modern:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.25); color: var(--navy); }
.btn-white-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
}
.btn-white-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}
.hero-welcome-line {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.88);
    font-size: 0.9375rem;
}
.hero-welcome-line p { margin: 0.4em 0; }

/* ========== HERO SLIDER (full banner) ========== */
.hero-slider {
    position: relative;
    overflow: hidden;
}
.hero-slider-track {
    position: relative;
}
.hero-slide {
    position: absolute;
    inset: 0;
    min-height: clamp(640px, 82vh, 980px);
    display: flex;
    align-items: stretch;
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 22%, #0c4a6e 45%, #1e40af 70%, #7c3aed 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateZ(0);
    transition: opacity 550ms ease, visibility 0ms linear 550ms;
}
.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 550ms ease;
}
.hero-slider-track { min-height: clamp(640px, 82vh, 980px); }
.hero-slide-media {
    position: absolute;
    inset: 0;
    background: #06121f;
}
.hero-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* old-site style: fill banner */
    object-position: center;
    filter: brightness(1.08) contrast(1.06) saturate(1.06);
}
.hero-slide-media::before {
    content: '';
    position: absolute;
    inset: 0;
    /* no blurred backdrop (match old site look) */
    background: transparent;
    pointer-events: none;
}
.hero-slide-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(3,7,18,0.32) 0%, rgba(3,7,18,0.14) 55%, rgba(3,7,18,0.08) 100%),
        radial-gradient(ellipse 55% 40% at 18% 40%, rgba(245,158,11,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 55% 40% at 78% 65%, rgba(124,58,237,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.hero-slide-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    padding: clamp(46px, 7vh, 86px) 20px;
    justify-content: flex-start; /* content on left */
}
.hero-slide-panel {
    width: min(460px, 92vw);
    background: rgba(15,23,42,0.22);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 18px;
    padding: 22px 22px;
    box-shadow: 0 22px 60px rgba(2,6,23,0.55);
    backdrop-filter: blur(12px);
    opacity: 0;
    transform: translateX(-18px);
    transition: opacity 550ms ease, transform 650ms cubic-bezier(.2,.9,.2,1);
}
.hero-slide.is-active .hero-slide-panel {
    opacity: 1;
    transform: translateX(0);
}
.hero-slide-copy {
    max-width: 100%;
}
.hero-slide-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    backdrop-filter: blur(10px);
}
.hero-slide-title {
    margin: 0 0 8px;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.01em;
    font-size: clamp(1.75rem, 3.6vw, 2.75rem);
    text-shadow: 0 2px 20px rgba(0,0,0,0.25), 0 4px 40px rgba(0,0,0,0.15);
}

/* Accent color for hero title (modern + readable) */
.hero-slide-title {
    background: linear-gradient(90deg, #ffffff 0%, #dbeafe 35%, #fef3c7 70%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Hide banner title (e.g. CRIMSON) — remove this block to show again */
.hero-slide-title,
.hero-modern .hero-heading {
    display: none !important;
}

.hero-slide-subtitle {
    margin: 0 0 10px;
    color: #fef3c7;
    font-weight: 800;
    font-size: 1.0rem;
}
.hero-slide-desc {
    margin: 0 0 18px;
    color: rgba(255,255,255,0.92);
    max-width: 620px;
}
.hero-slide-btn.btn-glow {
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.92rem;
}
.hero-slide-btn {
    display: inline-flex;
}
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(15,23,42,0.35);
    color: #fff;
    font-size: 28px;
    line-height: 42px;
    cursor: pointer;
    z-index: 5;
    backdrop-filter: blur(10px);
}
.hero-slider-nav:hover { background: rgba(15,23,42,0.55); }
.hero-slider-prev { left: 14px; }
.hero-slider-next { right: 14px; }
.hero-slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    z-index: 6;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 16px;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.25);
    cursor: pointer;
}
.hero-dot.is-active {
    background: #fff;
    border-color: #fff;
    width: 26px;
}
@media (max-width: 720px) {
    .hero-slider-nav { display: none; }
    /* Mobile hero should not be overly tall */
    .hero-slider-track { min-height: clamp(420px, 56vh, 520px); }
    .hero-slide { min-height: clamp(420px, 56vh, 520px); }
    .hero-slide-media {
        background-position: center 22%;
    }
    .hero-slide-inner { justify-content: center; text-align: center; padding: 56px 16px 64px; }
    .hero-slide-copy { max-width: 100%; }
    .hero-slide-desc { margin-left: auto; margin-right: auto; }
    .hero-slide-panel { padding: 18px 16px; border-radius: 16px; }
    .hero-slide-panel { transform: translateY(14px); }
    .hero-slide.is-active .hero-slide-panel { transform: translateY(0); }
    /* Mobile: full-bleed hero image (no letterboxing) */
    .hero-slide-img {
        object-fit: cover;
        /* keep the “subject” area in view on tall phones */
        object-position: center 35%;
        filter: brightness(1.08) contrast(1.06) saturate(1.06);
    }
    .hero-slide-title { font-size: clamp(1.45rem, 6.4vw, 2.0rem); }
    .hero-slide-subtitle { font-size: 0.95rem; }
    .hero-slide-desc { font-size: 0.95rem; line-height: 1.55; }
    .hero-slide-panel { background: rgba(15,23,42,0.34); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-slide-panel { transition: none !important; }
}

/* Stacked cards visual */
.hero-card-stack {
    position: relative;
    height: 280px;
    max-width: 320px;
    margin: 0 auto;
}
.stack-card {
    position: absolute;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.stack-card-1 {
    width: 88%; height: 200px;
    bottom: 0; left: 0;
    background: linear-gradient(145deg, #fbbf24 0%, #f59e0b 100%);
    transform: rotate(-6deg);
}
.stack-card-2 {
    width: 88%; height: 200px;
    bottom: 20px; right: 0;
    background: linear-gradient(145deg, #34d399 0%, #0d9488 100%);
    transform: rotate(5deg);
}
.stack-card-3 {
    width: 75%; height: 160px;
    top: 0; left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    background: linear-gradient(145deg, #a78bfa 0%, #7c3aed 100%);
}
@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
.stack-card-1, .stack-card-2 { animation: float-card 6s ease-in-out infinite; }
.stack-card-2 { animation-delay: 0.5s; }

/* ========== FEATURES ========== */
.section-features {
    padding: 64px 20px 72px;
}
/* Minimal gap when Features follows the Home about section */
.section-home-about-leadership + .section-features {
    padding-top: 16px;
    padding-bottom: 48px;
}
.section-home-about-leadership + .section-features .section-sub {
    margin-bottom: 20px;
}
.container { max-width: 1180px; margin: 0 auto; }
.section-title {
    text-align: center;
    margin: 0 0 8px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--navy);
}
.section-sub {
    margin: 0 0 40px;
    color: #64748b;
    font-weight: 500;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 768px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
    padding: 32px 26px;
    border-radius: var(--radius-lg);
    color: #fff;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease;
}
.feature-card:hover { transform: translateY(-8px); }
.feature-card--teal {
    background: linear-gradient(160deg, #14b8a6 0%, #0d9488 50%, #0f766e 100%);
}
.feature-card--amber {
    background: linear-gradient(160deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
}
.feature-card--violet {
    background: linear-gradient(160deg, #a78bfa 0%, #7c3aed 50%, #6d28d9 100%);
}
.feature-icon {
    font-size: 2.25rem;
    margin-bottom: 14px;
    display: block;
}
.feature-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
}
.feature-card h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-weight: 800;
}
.feature-card p {
    margin: 0;
    font-size: 0.9375rem;
    opacity: 0.95;
    line-height: 1.55;
}

/* ========== SPLIT SECTION ========== */
.section-split {
    position: relative;
    padding: 72px 20px;
    overflow: hidden;
}
.split-bg-left {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 45%;
    background: linear-gradient(180deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 0 40px 40px 0;
    z-index: 0;
}
.split-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.split-visual { max-width: 100%; min-width: 0; }
@media (max-width: 768px) {
    .split-bg-left { width: 100%; border-radius: 0; opacity: 0.35; }
    .split-wrap { grid-template-columns: 1fr; }
}
.split-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 4/3;
    min-height: 200px;
    max-height: 320px;
    max-width: 100%;
}
.split-frame img,
.split-frame-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    min-height: 200px;
    object-fit: cover;
    display: block;
}
.split-gradient-box {
    width: 100%;
    height: 100%;
    min-height: 260px;
    background: linear-gradient(135deg, #0d9488 0%, #2563eb 50%, #7c3aed 100%);
    min-height: 240px;
}
.split-copy h2 {
    margin: 0 0 12px;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
}
.split-copy p { color: #64748b; margin: 0 0 16px; }
.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.check-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-weight: 600;
    color: var(--slate);
}
.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 800;
}
.btn-accent-modern {
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
    color: #fff;
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.4);
}
.btn-accent-modern:hover { color: #fff; box-shadow: 0 12px 36px rgba(245, 158, 11, 0.45); }

/* ========== CTA ========== */
.section-cta {
    padding: 56px 20px 72px;
}
.cta-inner {
    text-align: center;
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    background: linear-gradient(120deg, #1e3a5f 0%, #0f766e 40%, #7c3aed 100%);
    color: #fff;
    box-shadow: var(--shadow);
}
.cta-inner h2 { margin: 0 0 8px; font-size: 1.75rem; font-weight: 800; }
.cta-inner p { margin: 0 0 24px; opacity: 0.92; }
.btn-cta-big {
    background: #fff;
    color: var(--navy);
    padding: 16px 32px;
    font-size: 1rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.btn-cta-big:hover { color: var(--teal-dark); }

/* ========== INNER PAGES (products, about, etc.) ========== */
.main-content { min-height: 40vh; }
.page-content {
    padding: 36px 20px 60px;
    max-width: 1180px;
    margin: 0 auto;
}
.page-content h1 { color: var(--navy); font-weight: 800; }
.page-image-strip {
    margin: 0 0 18px;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 12px 36px rgba(30, 58, 95, 0.08);
    overflow: hidden;
}
.image-scroller {
    display: flex;
    gap: 14px;
    padding: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.image-scroller--center { justify-content: center; }
.image-scroller::-webkit-scrollbar { height: 10px; }
.image-scroller::-webkit-scrollbar-thumb { background: rgba(148, 163, 184, 0.65); border-radius: 999px; }
.image-scroller-item {
    flex: 0 0 auto;
    width: min(420px, 82vw);
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #e2e8f0;
}
.image-scroller-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.image-scroller-item figcaption {
    padding: 10px 12px;
    font-size: 0.875rem;
    color: #475569;
    background: #fff;
    border-top: 1px solid #e2e8f0;
}
.btn, .btn-primary, .btn-outline {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
}
.btn, .btn-primary { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); color: #fff; }
.btn:hover { filter: brightness(1.08); }
.btn-outline {
    background: transparent;
    border: 2px solid var(--teal);
    color: var(--teal-dark);
}
.btn-outline:hover { background: #ccfbf1; }

/* ========== PRODUCTS PAGE ========== */
.products-page-wrap {
    background: linear-gradient(180deg, #f0fdfa 0%, #fff 12%, #fff7ed 100%);
}
.products-page-header {
    background: linear-gradient(125deg, #1e3a5f 0%, #0f766e 35%, #0d9488 65%, #0369a1 100%);
    color: #fff;
    padding: 40px 20px 48px;
    position: relative;
    overflow: hidden;
}
.products-page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 100% 0%, rgba(255,255,255,0.12) 0%, transparent 50%);
    pointer-events: none;
}
.products-page-header-inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}
.products-page-heading {
    margin-bottom: 28px;
    max-width: 640px;
}
.products-page-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.75);
    margin-bottom: 10px;
}
.products-page-title {
    margin: 0 0 10px;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: 0.02em;
}
.products-page-lead {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.55;
}
.products-category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.cat-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    color: rgba(255,255,255,0.92);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    transition: background 0.2s, transform 0.15s, border-color 0.2s;
}
.cat-pill:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.35);
    color: #fff;
    transform: translateY(-1px);
}
.cat-pill.is-active {
    background: #fff;
    color: var(--teal-dark);
    border-color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.products-page .container {
    max-width: 1180px;
}
.products-page.page-content {
    padding-top: 32px;
    padding-bottom: 72px;
    background: transparent;
    max-width: none;
    margin: 0;
}
.products-count {
    margin: 0 0 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}
@media (min-width: 900px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}
.product-tile {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(30, 58, 95, 0.08);
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.3s ease, transform 0.25s ease;
}
.product-tile:hover {
    box-shadow: 0 20px 48px rgba(13, 148, 136, 0.18);
    transform: translateY(-6px);
}
.product-tile-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.product-tile-media {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, #ecfdf5 0%, #e0f2fe 50%, #f5f3ff 100%);
    overflow: hidden;
}
.product-tile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.product-tile:hover .product-tile-media img {
    transform: scale(1.06);
}
.product-tile-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgba(255,255,255,0.95);
    color: var(--teal-dark);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.product-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 118, 110, 0.88) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-tile:hover .product-tile-overlay {
    opacity: 1;
}
.product-tile-cta {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    background: #fff;
    color: var(--teal-dark);
    font-weight: 800;
    font-size: 0.8125rem;
}
.product-tile-body {
    padding: 20px 20px 22px;
}
.product-tile-title {
    margin: 0 0 8px;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.35;
}
.product-tile-excerpt {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}
.product-tile-excerpt--muted {
    color: #94a3b8;
    font-style: italic;
}
.products-empty {
    text-align: center;
    padding: 56px 24px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 2px dashed #cbd5e1;
    max-width: 480px;
    margin: 0 auto;
}
.products-empty-icon { font-size: 3rem; margin-bottom: 16px; }
.products-empty h2 { margin: 0 0 10px; color: var(--navy); font-size: 1.35rem; }
.products-empty p { margin: 0; color: #64748b; }
.products-empty a { color: var(--teal-dark); font-weight: 700; }

/* Product detail page */
.product-detail-page .breadcrumb {
    margin-bottom: 24px;
    font-size: 0.875rem;
    color: #64748b;
}
.product-detail-page .breadcrumb a {
    color: var(--teal-dark);
    font-weight: 600;
    text-decoration: none;
}
.product-detail-page .breadcrumb a:hover { text-decoration: underline; }
.product-detail-page .product-detail {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 768px) {
    .product-detail-page .product-detail { grid-template-columns: 1fr; }
}
.product-detail-page .product-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(145deg, #ecfdf5, #e0f2fe);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-soft);
}
.product-detail-page .product-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}
.product-detail-page .product-detail-info h1 {
    margin-top: 0;
    color: var(--navy);
    font-size: 1.75rem;
}
.product-detail-page .category {
    display: inline-block;
    margin: 0 0 16px;
    padding: 6px 14px;
    border-radius: 8px;
    background: #ccfbf1;
    color: var(--teal-dark);
    font-weight: 700;
    font-size: 0.8125rem;
}
.product-detail-page .description {
    color: var(--slate);
    margin-bottom: 20px;
    line-height: 1.65;
}
.product-detail-page .specifications {
    background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 100%);
    border-radius: var(--radius);
    padding: 20px 22px;
    border: 1px solid #99f6e4;
    margin-bottom: 24px;
}
.product-detail-page .specifications h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    color: var(--teal-dark);
}

/* ========== VIDEO GALLERY PAGE ========== */
.video-gallery-page {
    padding: 40px 20px 64px;
}
.video-gallery-page .container { max-width: 1200px; margin: 0 auto; }
.video-gallery-page h1 {
    margin: 0 0 32px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    text-align: center;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
@media (max-width: 700px) {
    .video-grid { grid-template-columns: 1fr; }
}
.video-item {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.1);
    border: 1px solid #e2e8f0;
}
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}
.video-wrapper .video-iframe,
.video-wrapper .video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.video-wrapper .video-player {
    object-fit: cover;
}
.video-item h3 {
    margin: 0;
    padding: 18px 20px 8px;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
}
.video-item p {
    margin: 0 0 18px;
    padding: 0 20px 20px;
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.55;
}
.video-gallery-page .no-items {
    text-align: center;
    color: #64748b;
    font-size: 1rem;
}

/* ========== PHOTO GALLERY PAGE ========== */
.gallery-page {
    padding: 40px 20px 64px;
}
.gallery-page-inner { max-width: 1180px; margin: 0 auto; }
.gallery-page-title {
    margin: 0 0 32px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    text-align: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.08);
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.gallery-item:hover {
    box-shadow: 0 16px 40px rgba(13, 148, 136, 0.15);
    transform: translateY(-4px);
}
.gallery-item .gallery-link {
    display: block;
    aspect-ratio: 4 / 3;
    text-decoration: none;
}
.gallery-item .gallery-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    vertical-align: middle;
}
.gallery-page .no-items {
    text-align: center;
    color: #64748b;
    font-size: 1rem;
}

/* Gallery grid (other pages / legacy) */
.gallery-item .gallery-caption { display: none; }
.enquiry-form input, .contact-form input, .enquiry-form textarea, .contact-form textarea,
.enquiry-form-modern input, .enquiry-form-modern textarea {
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    padding: 10px 14px;
}

/* ========== ENQUIRY PAGE ========== */
.enquiry-page-wrap {
    background: linear-gradient(180deg, #f0fdfa 0%, #fff 15%, #fefce8 100%);
}
.enquiry-page-header {
    background: linear-gradient(125deg, #0f766e 0%, #0d9488 40%, #0891b2 100%);
    color: #fff;
    padding: 40px 20px 44px;
    position: relative;
    overflow: hidden;
}
.enquiry-page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 0% 100%, rgba(255,255,255,0.12) 0%, transparent 50%);
    pointer-events: none;
}
.enquiry-page-header-inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; }
.enquiry-page-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}
.enquiry-page-title {
    margin: 0 0 10px;
    font-size: clamp(1.65rem, 3.5vw, 2.1rem);
    font-weight: 800;
}
.enquiry-page-lead {
    margin: 0;
    max-width: 560px;
    font-size: 1.02rem;
    color: rgba(255,255,255,0.92);
    line-height: 1.55;
}
.enquiry-page.page-content {
    padding-top: 36px;
    padding-bottom: 72px;
    max-width: none;
    margin: 0;
    background: transparent;
}
.enquiry-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .enquiry-layout { grid-template-columns: 1fr; }
}
.enquiry-aside {
    padding: 24px 22px;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, #ecfdf5 0%, #e0f2fe 100%);
    border: 1px solid #99f6e4;
    box-shadow: var(--shadow-soft);
}
.enquiry-aside h3 {
    margin: 0 0 16px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
}
.enquiry-aside-item { margin: 0 0 14px; }
.enquiry-aside-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    margin-bottom: 4px;
}
.enquiry-aside-item a {
    color: var(--teal-dark);
    font-weight: 700;
    text-decoration: none;
    word-break: break-all;
}
.enquiry-aside-item a:hover { text-decoration: underline; }
.enquiry-aside-note {
    margin: 18px 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(13, 148, 136, 0.2);
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.5;
}
.enquiry-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 28px 32px;
    box-shadow: 0 8px 40px rgba(30, 58, 95, 0.1);
    border: 1px solid #e2e8f0;
}
.enquiry-alert {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}
.enquiry-alert--error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}
.enquiry-alert--info {
    background: #ecfdf5;
    color: var(--teal-dark);
    border: 1px solid #99f6e4;
}
.enquiry-form-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
}
@media (max-width: 600px) {
    .enquiry-form-modern { grid-template-columns: 1fr; }
}
.enquiry-field--full { grid-column: 1 / -1; }
.enquiry-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--navy);
}
.enquiry-field .req { color: var(--coral); }
.enquiry-form-modern input,
.enquiry-form-modern textarea {
    width: 100%;
    max-width: none;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-family: var(--font);
    font-size: 0.9375rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.enquiry-form-modern input:focus,
.enquiry-form-modern textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}
.enquiry-form-modern textarea { resize: vertical; min-height: 120px; }
.enquiry-submit {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 8px;
    border: none;
    cursor: pointer;
    font-family: var(--font);
}
.enquiry-success {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 32px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid #d1fae5;
    max-width: 480px;
    margin: 0 auto;
}
.enquiry-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #34d399 0%, #0d9488 100%);
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.enquiry-success h2 { margin: 0 0 10px; color: var(--navy); font-size: 1.5rem; }
.enquiry-success p { margin: 0 0 24px; color: #64748b; }
.enquiry-success .btn-glow { margin: 0 6px 10px; }
.enquiry-success-secondary {
    background: transparent;
    color: var(--teal-dark);
    border: 2px solid var(--teal);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}
.enquiry-success-secondary:hover { background: #ccfbf1; }

/* ========== CONTACT PAGE ========== */
.contact-page-wrap {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 20%, #f0fdfa 100%);
}
.contact-page-header {
    background: linear-gradient(125deg, #1e3a5f 0%, #0f766e 50%, #0d9488 100%);
    color: #fff;
    padding: 40px 20px 44px;
    position: relative;
    overflow: hidden;
}
.contact-page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 50% at 100% 0%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}
.contact-page-header-inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; }
.contact-page-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.78);
    margin-bottom: 10px;
}
.contact-page-title {
    margin: 0 0 10px;
    font-size: clamp(1.65rem, 3.5vw, 2.1rem);
    font-weight: 800;
}
.contact-page-lead {
    margin: 0;
    max-width: 560px;
    color: rgba(255,255,255,0.9);
    font-size: 1.02rem;
    line-height: 1.55;
}
.contact-page.page-content {
    padding-top: 40px;
    padding-bottom: 72px;
    max-width: none;
    margin: 0;
    background: transparent;
}
.contact-page-inner { max-width: 1100px; margin: 0 auto; }
.contact-map-section {
    margin-bottom: 44px;
}
.contact-section-title {
    margin: 0 0 16px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
}
.contact-map-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(30, 58, 95, 0.12);
    border: 1px solid #e2e8f0;
    background: #e2e8f0;
}
.contact-map-frame iframe {
    display: block;
    width: 100%;
    vertical-align: middle;
}
.contact-map-caption {
    margin: 12px 0 0;
    font-size: 0.875rem;
}
.contact-map-caption a {
    color: var(--teal-dark);
    font-weight: 700;
    text-decoration: none;
}
.contact-map-caption a:hover { text-decoration: underline; }

/* Timeline address block (screenshot-style) */
.contact-details-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}
@media (max-width: 900px) {
    .contact-details-form-row { grid-template-columns: 1fr; }
}
.contact-address-heading {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.75rem;
    font-weight: 400;
    font-style: italic;
    color: #111;
    margin: 0 0 24px;
    letter-spacing: 0.02em;
}
.contact-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}
/* Dotted vertical line between icons */
.contact-timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 36px;
    bottom: 36px;
    width: 0;
    border-left: 2px dotted #cbd5e1;
}
.contact-timeline-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
    position: relative;
}
.contact-timeline-item:last-child { margin-bottom: 0; }
.contact-timeline-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-top: 2px;
}
.contact-timeline-body {
    flex: 1;
    min-width: 0;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.contact-timeline-title {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #111;
    line-height: 1.3;
}
.contact-timeline-text {
    margin: 0;
    font-size: 0.9375rem;
    color: #334155;
    line-height: 1.6;
}
.contact-timeline-text a {
    display: inline-block;
}
.contact-timeline-text a + br + a {
    margin-top: 6px;
}
.contact-timeline-text a {
    color: #1565c0;
    font-weight: 600;
    text-decoration: none;
}
.contact-timeline-text a:hover { text-decoration: underline; }
.contact-timeline-text--link {
    color: #1565c0;
    font-weight: 600;
}
.contact-form-card--standalone {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 28px 32px;
    box-shadow: 0 8px 40px rgba(30, 58, 95, 0.08);
    border: 1px solid #e2e8f0;
}
.contact-form-card-title {
    margin: 0 0 20px;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--navy);
}
.contact-form-modern { grid-template-columns: 1fr; }
.contact-success {
    text-align: center;
    padding: 24px 16px;
}
.contact-success-icon {
    display: inline-flex;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #34d399, #0d9488);
    color: #fff;
    font-size: 1.75rem;
    font-weight: 800;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.contact-success h3 { margin: 0 0 8px; color: var(--navy); }
.contact-success p { margin: 0 0 20px; color: #64748b; }
.success-msg { color: var(--teal-dark); font-weight: 600; }
.error-msg { color: var(--coral); }

/* Footer */
.site-footer {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    color: #94a3b8;
    padding: 28px 20px;
    text-align: center;
    font-size: 0.875rem;
    border-top: 4px solid var(--teal);
}
.site-footer p { margin: 0; }

/* ========== CLIENT SECTION (dynamic stats) ========== */
.client-section {
    padding: 56px 20px 64px;
    background: #f1f5f9;
}
.client-section-inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}
.client-section-image {
    margin-bottom: 28px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.client-section-image img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}
.client-section-headline {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #b91c1c;
    line-height: 1.35;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.client-section-subtext {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1rem;
    font-style: italic;
    color: #1e293b;
    line-height: 1.65;
    margin: 0 auto 40px;
    max-width: 800px;
}
.client-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 48px;
    padding-top: 8px;
}
.client-stat {
    min-width: 120px;
    text-align: center;
}
.client-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}
.client-stat-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    margin-top: 6px;
}

/* ========== OUR CLIENTS (logo strip) ========== */
.our-clients-section {
    padding: 48px 20px 56px;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.our-clients-title {
    text-align: center;
    margin: 0 0 8px;
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: var(--navy);
}
.our-clients-sub {
    margin: 0 0 32px;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}
.our-clients-track-wrap {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}
.our-clients-track-wrap::-webkit-scrollbar { height: 8px; }
.our-clients-track-wrap::-webkit-scrollbar-thumb { background: rgba(148, 163, 184, 0.5); border-radius: 999px; }
.our-clients-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
}
.our-clients-track--single { justify-content: center; }
.our-clients-track--grid { justify-content: center; }
.our-clients-track--scroll {
    flex-wrap: nowrap;
    width: max-content;
    flex-shrink: 0;
    gap: 24px;
}
.our-clients-track--scroll .our-client-card { flex-shrink: 0; }
.our-client-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    padding: 20px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.our-client-card--link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(30, 58, 95, 0.1);
    border-color: #99f6e4;
}
.our-client-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 56px;
    margin-bottom: 10px;
}
.our-client-logo-wrap img {
    max-width: 100%;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: transform 0.25s, filter 0.25s;
}
.our-client-card:hover .our-client-logo-wrap img,
.our-client-card--link:hover .our-client-logo-wrap img {
    filter: brightness(1.05);
    transform: scale(1.03);
}
.our-client-name {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
    text-align: center;
    line-height: 1.3;
}
@media (min-width: 900px) {
    .our-clients-track--single .our-client-card { width: 180px; }
}

/* ========== DYNAMIC FOOTER ========== */
.site-footer--dynamic {
    border-top: none;
    padding: 0;
    text-align: left;
    color: inherit;
    background: transparent;
}
.footer-main {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    color: #cbd5e1;
    padding: 48px 20px 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px 40px;
    max-width: 1180px;
    margin: 0 auto;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-brand-link { display: inline-flex; }
.footer-logo {
    width: 220px;
    height: 56px;
    object-fit: contain;
    object-position: left center;
    background: #fff;
    border-radius: 14px;
    padding: 6px 10px;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.25);
}
.footer-brand-name {
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #fff;
}
.footer-brand-sub {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.45;
}
.footer-brand-desc {
    margin: 10px 0 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 320px;
}
.footer-brand + .footer-col { margin-top: 2px; }
.footer-brand .footer-brand-name { margin-top: 2px; }
.footer-col-title {
    margin: 0 0 14px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
}
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: #5eead4; }
.footer-plain {
    display: block;
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.5;
    white-space: pre-line;
}
@media (max-width: 600px) {
    .footer-logo {
        width: 170px;
        height: 48px;
    }
}
.footer-bottom {
    background: #020617;
    padding: 20px;
    border-top: 1px solid #334155;
}
.footer-bottom-inner {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}
.footer-bottom-custom {
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: #94a3b8;
}
.footer-copyright {
    margin: 0;
    font-size: 0.8125rem;
    color: #64748b;
}

/* ========== ABOUT PAGE ========== */
.about-page .container { max-width: 1000px; }
.about-page-title {
    margin: 0 0 8px;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--navy);
}
.about-tagline {
    margin: 0 0 28px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teal-dark);
}
.about-section {
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
}
.about-section:last-of-type { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.about-section-heading {
    margin: 0 0 20px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
}
.about-company-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}
.about-company-wrap.about-image-right .about-company-copy { order: 1; }
.about-company-wrap.about-image-right .about-company-image-wrap { order: 2; }
.about-company-wrap.about-image-left .about-company-copy { order: 2; }
.about-company-wrap.about-image-left .about-company-image-wrap { order: 1; }
.about-company-details {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate);
}
.about-company-image-wrap,
.about-growth-image-wrap,
.about-owner-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 4/3;
    min-height: 220px;
}
.about-section-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-placeholder .about-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0f2fe 0%, #ccfbf1 50%, #fef3c7 100%);
    color: var(--slate);
    font-weight: 700;
    font-size: 1rem;
}
.about-growth-main-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}
.about-growth-desc {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate);
}
.about-growth-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 48px;
}
.about-growth-card {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.06);
}
.about-card-heading {
    margin: 0 0 16px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
}
.about-card-image {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/10;
    min-height: 160px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #f0fdfa 0%, #fef3c7 100%);
}
.about-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-card-image.about-placeholder .about-img-placeholder {
    min-height: 160px;
    height: 100%;
}
.about-card-desc {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--slate);
}
.about-owner-wrap {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}
.about-owner-image-wrap {
    aspect-ratio: 1;
    min-height: 240px;
}
.about-owner-name {
    margin: 0 0 4px;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy);
}
.about-owner-designation {
    margin: 0 0 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--teal-dark);
}
.about-owner-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate);
}
.about-team-sub {
    margin: 0 0 24px;
    font-size: 1rem;
    color: var(--slate);
    max-width: 560px;
}
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.about-team-card {
    text-align: center;
    padding: 20px 16px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.05);
}
.about-team-card-image-wrap {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 14px;
    max-width: 120px;
    background: linear-gradient(135deg, #ccfbf1 0%, #e0f2fe 100%);
}
.about-team-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-team-placeholder {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 800;
    color: var(--teal-dark);
}
.about-team-name {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}
.about-team-designation {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--slate);
}
.about-team-card .about-team-designation {
    text-align: center;
}
@media (max-width: 900px) {
    .about-company-wrap,
    .about-growth-main-wrap {
        grid-template-columns: 1fr;
    }
    .about-company-wrap.about-image-left .about-company-copy,
    .about-company-wrap.about-image-left .about-company-image-wrap { order: unset; }
    .about-growth-cards { grid-template-columns: 1fr; }
    .about-owner-wrap { grid-template-columns: 1fr; }
    .about-owner-image-wrap { max-width: 280px; }
    .about-team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .about-team-grid { grid-template-columns: 1fr; }
}

/* ========== HOME PAGE SECTIONS (About + Leadership 2 rows, Featured Products) ========== */
.section-home-block {
    padding: 56px 20px 64px;
}
.section-home-block .section-title,
.section-home-about-leadership .section-title {
    text-align: center;
}
.section-home-block .section-sub,
.section-home-about-leadership .section-sub {
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* About + Leadership: 2 rows, each row = image + content */
.section-home-about-leadership {
    padding: 56px 20px 36px;
}
.section-home-about-leadership .home-two-rows {
    max-width: 1100px;
    margin: 0 auto;
}
.section-home-about-leadership .section-title {
    margin-bottom: 8px;
}
.section-home-about-leadership .section-sub {
    margin-bottom: 20px;
}
.section-home-about-leadership .home-row-section-title {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #e2e8f0;
}

.home-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 0;
}
.home-row-about.about-image-right .home-row-copy { order: 1; }
.home-row-about.about-image-right .home-row-media { order: 2; }
.home-row-about.about-image-left .home-row-copy { order: 2; }
.home-row-about.about-image-left .home-row-media { order: 1; }
.home-row-leadership .home-row-media { order: 1; }
.home-row-leadership .home-row-copy { order: 2; }

.home-row-copy {
    text-align: left;
    padding: 0 8px 0 0;
}
.home-row-title {
    margin: 0 0 16px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
}
.home-row-meta {
    margin: 0 0 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--teal-dark);
}
.home-row-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate);
    margin: 0 0 20px;
}
.home-row-copy .btn-glow {
    display: inline-block;
}

.home-row-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(30, 58, 95, 0.12);
    aspect-ratio: 4/3;
    min-height: 220px;
    max-height: 320px;
    max-width: 100%;
    background: linear-gradient(135deg, #f0fdfa 0%, #fef3c7 100%);
}
/* Leadership image: match about page (portrait-style, constrained width) */
.home-row-leadership .home-row-media {
    aspect-ratio: 1;
    min-height: 220px;
    max-height: 320px;
    max-width: 320px;
}
.home-row-media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
}
.home-row-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate);
    font-weight: 700;
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .home-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .home-row-about.about-image-left .home-row-copy,
    .home-row-about.about-image-left .home-row-media,
    .home-row-leadership .home-row-media,
    .home-row-leadership .home-row-copy { order: unset; }
    .home-row-leadership .home-row-media { order: 1; }
    .home-row-leadership .home-row-copy { order: 2; }
    .home-row-copy { padding: 0; }
    .home-row-media { max-width: 100%; min-height: 220px; max-height: 320px; }
    .home-row-leadership .home-row-media { max-width: 280px; margin-left: auto; margin-right: auto; }
}

/* Featured Products (home) */
.section-home-products .home-products-grid {
    margin-top: 8px;
}
@media (min-width: 900px) {
    .section-home-products .home-products-grid.products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.section-home-products .product-tile-body {
    text-align: left;
}
.section-home-products .product-tile-title {
    text-align: left;
}
.home-products-cta-wrap {
    text-align: center;
    margin: 0 0 28px;
}
.home-products-empty {
    text-align: center;
    color: #64748b;
    margin: 16px 0 0;
}
@media (max-width: 900px) {
    .home-products-grid.products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .home-products-grid.products-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== TECHNOLOGY & QUALITY PAGE ========== */
.tech-quality-page .container { max-width: 1000px; }
.tech-quality-page .certificates-grid.products-grid {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
    .tech-quality-page .certificates-grid.products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .tech-quality-page .certificates-grid.products-grid {
        grid-template-columns: 1fr;
    }
}
.tech-quality-page #certificates img {
    -webkit-user-drag: none;
    user-select: none;
}

/* Site lightbox (image preview) */
.site-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}
.site-lightbox.is-open { display: block; }
.site-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.78);
}
.site-lightbox-dialog {
    position: absolute;
    inset: 24px;
    margin: auto;
    max-width: min(980px, calc(100vw - 48px));
    max-height: min(86vh, calc(100vh - 48px));
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 22px 70px rgba(0,0,0,0.35);
    border: 1px solid rgba(226,232,240,0.9);
}
.site-lightbox-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: rgba(255,255,255,0.92);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}
.site-lightbox-body {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 1fr auto;
}
.site-lightbox-img {
    width: 100%;
    height: 100%;
    max-height: calc(86vh - 56px);
    object-fit: contain;
    display: block;
    background: #0b1220;
}
.site-lightbox-caption {
    padding: 12px 16px;
    font-weight: 700;
    color: #0f172a;
    background: linear-gradient(180deg, rgba(248,250,252,0.98), rgba(255,255,255,1));
    border-top: 1px solid #e2e8f0;
}
.tech-quality-title {
    margin: 0 0 24px;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--navy);
}
.tech-quality-dropdown-wrap {
    margin-bottom: 32px;
}
.tech-quality-dropdown-label {
    display: block;
    font-weight: 700;
    color: var(--slate);
    margin-bottom: 8px;
    font-size: 0.9375rem;
}
.tech-quality-dropdown {
    padding: 12px 16px;
    border-radius: var(--radius);
    border: 2px solid #e2e8f0;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    min-width: 280px;
    background: #fff;
}
.tech-quality-section { margin-bottom: 40px; }
.tech-quality-heading {
    margin: 0 0 16px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
}
.tech-quality-lead {
    margin: 0 0 28px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate);
}
.tech-quality-cards {
    display: grid;
    gap: 24px;
}
.tech-quality-cards--four { grid-template-columns: repeat(4, 1fr); }
/* Quality policy page: 2x2 grid (2 columns) */
.tech-quality-page .tech-quality-cards--four {
    grid-template-columns: repeat(2, 1fr);
}
.tech-quality-cards--five { grid-template-columns: repeat(5, 1fr); }
.tech-quality-card {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.05);
}
.tech-quality-card-title {
    margin: 0 0 10px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
}
.tech-quality-card-desc {
    margin: 0 0 16px;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--slate);
}
.tech-quality-card-btn { margin-top: 8px; }
.tech-quality-card--no-btn .tech-quality-card-desc { margin-bottom: 0; }
.tech-quality-plant-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0 0 24px;
    max-width: 640px;
    aspect-ratio: 16/10;
}
.tech-quality-plant-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tech-quality-plant-desc {
    margin: 0 0 28px;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--slate);
}
.tech-quality-subheading {
    margin: 0 0 20px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
}

/* Plant & Machinery — Our Key Machinery cards (3 per row) */
.plant-machinery-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.plant-machinery-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 22px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 0;
    display: flex;
    flex-direction: column;
    border: none;
}
.plant-machinery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
.plant-machinery-card-title {
    margin: 0 0 14px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    flex-shrink: 0;
    letter-spacing: 0.01em;
}
.plant-machinery-card-desc {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #64748b;
    flex: 1;
    min-height: 0;
}

@media (max-width: 960px) {
    .tech-quality-cards--four { grid-template-columns: repeat(2, 1fr); }
    .tech-quality-cards--five { grid-template-columns: repeat(2, 1fr); }
    .plant-machinery-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .tech-quality-cards--four,
    .tech-quality-cards--five,
    .tech-quality-page .tech-quality-cards--four { grid-template-columns: 1fr; }
    .plant-machinery-cards { grid-template-columns: 1fr; }
    .plant-machinery-card { padding: 20px 18px; }
}

/* Technology & Quality detail page (Quality policy item) */
.tech-quality-detail-page .container { max-width: 800px; }
.tech-quality-back {
    margin: 0 0 20px;
    font-size: 0.9375rem;
}
.tech-quality-back a {
    color: var(--teal-dark);
    text-decoration: none;
    font-weight: 600;
}
.tech-quality-back a:hover { text-decoration: underline; }
.tech-quality-detail-heading {
    margin: 0 0 16px;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
}
.tech-quality-detail-lead {
    margin: 0 0 24px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--slate);
}
.tech-quality-detail-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0 0 24px;
    aspect-ratio: 16/10;
}
.tech-quality-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tech-quality-detail-content {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--slate);
}
.tech-quality-detail-content ul { padding-left: 1.25em; margin: 0.5em 0; }
.tech-quality-detail-muted {
    color: #64748b;
    font-style: italic;
}

/* ========== CLIENT & FEEDBACK PAGE ========== */
.clients-feedback-page .container { max-width: 1000px; }
.clients-feedback-page-title {
    margin: 0 0 32px;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--navy);
}
.clients-feedback-section {
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
}
.clients-feedback-section:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.clients-feedback-heading {
    margin: 0 0 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
}
.clients-feedback-sub {
    margin: 0 0 24px;
    font-size: 1rem;
    color: var(--slate);
}
.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 24px;
}
.client-logo-card {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.05);
}
.client-logo-img-wrap {
    width: 100%;
    max-width: 120px;
    aspect-ratio: 1;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}
.client-logo-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.client-logo-name {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--navy);
}
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.feedback-card {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.05);
}
.feedback-card-inner { position: relative; }
.feedback-avatar-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 0 16px;
    flex-shrink: 0;
}
.feedback-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feedback-avatar-placeholder {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    font-weight: 800;
}
.feedback-message {
    margin: 0 0 16px;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--slate);
    font-style: italic;
    border: none;
    padding: 0;
}
.feedback-meta { margin: 0; }
.feedback-name {
    display: block;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 2px;
}
.feedback-designation {
    font-size: 0.875rem;
    color: var(--slate);
}
.clients-feedback-empty {
    color: var(--slate);
    font-size: 1rem;
    margin: 0;
}
@media (max-width: 640px) {
    .clients-logo-grid { grid-template-columns: repeat(2, 1fr); }
    .feedback-grid { grid-template-columns: 1fr; }
}

/* ========== MOBILE RESPONSIVE — full site ========== */
html { overflow-x: hidden; }
body.theme-crimson { overflow-x: hidden; }

/* Responsive images — all content images scale to container */
.page-content img,
.hero-modern img,
.about-section img,
.about-company-image-wrap img,
.about-growth-image-wrap img,
.about-owner-image-wrap img,
.about-card-image img,
.about-team-card-image-wrap img,
.home-row-media img,
.product-tile-media img,
.product-detail-image img,
.contact-map-frame img,
.split-frame img,
.split-frame-img,
.image-scroller-item img,
.gallery-item img,
.gallery-link img,
.client-section-image img,
.tech-quality-plant-img,
.tech-quality-detail-img,
.tech-quality-card img,
.feedback-avatar-wrap img,
.client-logo-img-wrap img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    object-fit: cover;
}
/* Keep aspect containers; object-fit already set on some */
.product-tile-media img,
.hero-image-main { object-fit: cover; }

@media (max-width: 768px) {
    .container { padding-left: 16px; padding-right: 16px; }
    .page-content { padding-left: 16px; padding-right: 16px; padding-top: 24px; padding-bottom: 40px; }
    .section-title { font-size: 1.35rem; }
    .section-sub { font-size: 0.9375rem; margin-bottom: 24px; }
    .btn-glow { padding: 12px 20px; min-height: 44px; font-size: 0.9rem; }

    /* Image containers: prevent overflow on mobile */
    .hero-image-frame,
    .hero-modern-visual,
    .home-row-media,
    .about-company-image-wrap,
    .about-growth-image-wrap,
    .about-owner-image-wrap,
    .about-card-image,
    .product-tile-media,
    .product-detail-page .product-detail-image,
    .contact-map-frame,
    .split-frame,
    .image-scroller,
    .image-scroller-item,
    .gallery-item,
    .client-section-image,
    .tech-quality-plant-image-wrap,
    .tech-quality-detail-image-wrap {
        max-width: 100%;
        overflow: hidden;
    }
    /* Force content images to scale (override fixed width/height where needed) */
    .page-content img,
    .about-section img,
    .about-company-image-wrap img,
    .about-growth-image-wrap img,
    .about-owner-image-wrap img,
    .about-card-image img,
    .home-row-media img,
    .product-detail-image img,
    .split-frame img,
    .split-frame-img,
    .image-scroller-item img,
    .gallery-item img,
    .gallery-link img,
    .client-section-image img,
    .tech-quality-plant-img,
    .tech-quality-detail-img,
    .feedback-avatar-wrap img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover;
    }
    /* Hero and product tiles: keep aspect-ratio fill, only constrain container */
    .hero-image-frame .hero-image-main,
    .product-tile-media img {
        max-width: 100% !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
    }
}

/* Top bar — mobile */
@media (max-width: 640px) {
    .top-bar-inner {
        padding: 10px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .top-bar-contact { gap: 8px; }
    .top-pill { padding: 5px 10px; font-size: 0.75rem; }
    .top-address span { display: inline; word-break: break-word; }
    .top-item { max-width: 100%; }
}

/* Header — mobile */
@media (max-width: 960px) {
    .header-inner { padding: 12px 16px; gap: 10px; }
    .nav-list a { padding: 12px 14px; min-height: 44px; display: flex; align-items: center; }
    .nav-dropdown a { padding: 10px 14px; min-height: 44px; display: flex; align-items: center; }
}
@media (max-width: 480px) {
    .logo-graphic--solo {
        width: 150px;
        height: 44px;
        min-width: 150px;
        min-height: 44px;
    }
    .nav-toggle { padding: 10px 12px; min-width: 44px; min-height: 44px; }
}

/* Hero — mobile */
@media (max-width: 640px) {
    .hero-modern { min-height: 0; }
    .hero-modern-inner { padding: 20px 16px 32px; gap: 20px; }
    .hero-heading { font-size: 1.85rem; margin-bottom: 8px; }
    .hero-tagline { font-size: 1rem; margin-bottom: 10px; }
    .hero-lead { font-size: 0.9375rem; margin-bottom: 20px; }
    .hero-btns { gap: 10px; flex-direction: column; align-items: center; }
    .hero-btns .btn-glow { width: 100%; max-width: 280px; justify-content: center; }
    .hero-eyebrow { font-size: 0.7rem; padding: 6px 12px; margin-bottom: 12px; }
    .hero-image-frame { min-height: 240px; }
}

/* Section blocks — mobile */
@media (max-width: 768px) {
    .section-features { padding: 40px 16px 48px; }
    .section-home-about-leadership + .section-features { padding-top: 10px; padding-bottom: 40px; }
    .section-home-about-leadership + .section-features .section-sub { margin-bottom: 14px; }
    .section-home-block { padding: 40px 16px 48px; }
    .section-home-about-leadership { padding: 40px 16px 28px; }
    .section-cta { padding: 40px 16px 56px; }
    .cta-inner { padding: 32px 20px; }
    .cta-inner h2 { font-size: 1.5rem; }
    .section-split { padding: 48px 16px; }
    .split-wrap { gap: 28px; }
}

/* Client section + stats — mobile */
@media (max-width: 640px) {
    .client-section-inner { padding: 32px 16px; }
    .client-section-headline { font-size: 1.1rem; line-height: 1.4; }
    .client-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .client-stat-value { font-size: 1.5rem; }
    .client-stat-label { font-size: 0.75rem; }
}

/* Footer — mobile */
@media (max-width: 768px) {
    .footer-main { padding: 36px 16px 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand-desc { max-width: 100%; }
}
@media (max-width: 640px) {
    .footer-main { padding: 28px 16px 24px; }
    .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; padding: 16px; }
    .footer-copyright { font-size: 0.8125rem; }
}

/* Contact page — mobile */
@media (max-width: 768px) {
    .contact-page-header-inner { padding-left: 16px; padding-right: 16px; }
    .contact-page-title { font-size: 1.75rem; }
    .contact-page-lead { font-size: 0.9375rem; }
    .contact-page-inner { padding-left: 0; padding-right: 0; }
}
@media (max-width: 640px) {
    .contact-details-form-row { gap: 28px; }
    .contact-map-frame { border-radius: 12px; overflow: hidden; margin-bottom: 20px; }
    .contact-map-frame iframe { height: 280px; }
    .contact-address-heading { font-size: 1.25rem; }
    .contact-form-card--standalone { padding: 20px 18px 24px; }
    .contact-timeline-item { margin-bottom: 20px; }
    .contact-timeline-icon { width: 36px; height: 36px; margin-top: 0; }
}

/* Enquiry + Contact forms — mobile (16px input font avoids iOS zoom on focus) */
@media (max-width: 640px) {
    .enquiry-page-header-inner { padding-left: 16px; padding-right: 16px; }
    .enquiry-page-title { font-size: 1.5rem; }
    .enquiry-layout { gap: 24px; }
    .enquiry-form-card { padding: 20px 18px; }
    .enquiry-form-modern input,
    .enquiry-form-modern textarea,
    .contact-form-modern input,
    .contact-form-modern textarea { font-size: 16px; min-height: 48px; }
}

/* Products — mobile */
@media (max-width: 640px) {
    .products-page-header { padding: 24px 16px; }
    .products-page-title { font-size: 1.5rem; }
    .products-category-nav { flex-wrap: wrap; gap: 8px; }
    .cat-pill { padding: 8px 14px; font-size: 0.8125rem; }
    .product-tile-body { padding: 16px; }
    .product-tile-title { font-size: 1rem; }
}

/* About + home rows — mobile */
@media (max-width: 640px) {
    .about-page-title { font-size: 1.5rem; }
    .about-section { margin-bottom: 32px; padding-bottom: 28px; }
    .home-row-copy .btn-glow { width: 100%; max-width: 260px; }
    .section-home-about-leadership .home-row-section-title { margin-top: 24px; padding-top: 20px; }
}

/* Quality policy / tech — mobile */
@media (max-width: 640px) {
    .tech-quality-title { font-size: 1.5rem; }
    .tech-quality-card { padding: 18px; }
    .tech-quality-detail-heading { font-size: 1.35rem; }
}

/* Product detail — mobile */
@media (max-width: 640px) {
    .product-detail-page .product-detail { gap: 20px; }
    .product-detail-page .product-detail-image { min-height: 220px; }
    .product-detail-page .product-detail-body { padding: 0; }
}

/* Gallery & Video — mobile */
@media (max-width: 640px) {
    .gallery-grid { gap: 12px; }
    .video-grid { gap: 16px; }
}

/* Clients & feedback page — mobile */
@media (max-width: 640px) {
    .clients-feedback-page .container { padding-left: 16px; padding-right: 16px; }
    .our-clients-title { font-size: 1.35rem; }
    .feedback-card { padding: 20px 18px; }
}

/* Touch-friendly: minimum tap targets */
@media (max-width: 768px) {
    .footer-links a { padding: 6px 0; min-height: 44px; display: flex; align-items: center; }
    .product-tile-link { min-height: 44px; }
    .nav-list a { min-height: 44px; }
}

/* Prevent long words from breaking layout */
.page-content,
.contact-timeline-text,
.footer-brand-desc,
.hero-lead {
    word-wrap: break-word;
    overflow-wrap: break-word;
}
