/* === BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #CB0000;
    --primary-light: #E82D2D;
    --dark: #173440;
    --darker: #1B3A5C;
    --text: #737588;
    --text-dark: #45485F;
    --white: #ffffff;
    --bg-light: #FAF9FE;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

html { overflow-x: hidden; }
body {
    font-family: var(--font-body);
    color: var(--text);
    font-size: 16px;
    line-height: 1.375;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
img { max-width: 100%; }

/* Screen-reader-only text (kept in DOM for SEO/a11y, hidden visually) */
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .cursor { animation: none; }
    .float-img { animation: none; }
}

.gradient-text {
    background: linear-gradient(180deg, #F24444 0%, #F2DFDF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tag-badge {
    display: inline-block;
    margin-bottom: 20px;
}
.tag-badge span {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(28, 79, 141, 0.11);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #8D1C1C;
    font-family: var(--font-heading);
}
.tag-badge.purple span { background: rgba(122, 37, 255, 0.11); color: #7A25FF; }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 12px;
}
.section-header p { font-family: var(--font-heading); font-size: 14px; font-weight: 500; color: var(--text); }

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--primary);
    margin-top: 20px;
}
.btn-link:hover { color: var(--darker); }

.btn-icon-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    margin-top: 30px;
}
.btn-icon-circle {
    width: 31px; height: 31px;
    background: #ECF2F5;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s;
}
.btn-icon-link:hover .btn-icon-circle { background: var(--dark); color: #fff; }

/* === HEADER === */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 40px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.header.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 12px 40px;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-left { display: flex; align-items: center; }
.header-left .brand-lockup { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.header-left .logo img { height: 48px; width: auto; }
.header-left .logo .logo-dark { display: none; }
.header-left .logo .logo-white { display: block; }
.header.scrolled .header-left .logo .logo-dark { display: block; }
.header.scrolled .header-left .logo .logo-white { display: none; }
.header-left .logo .logo-img {
    height: 48px;
    width: 48px;
    object-fit: contain;
    background: rgba(255,255,255,0.92);
    border-radius: 6px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}
.header-left .brand-name {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    transition: color 0.3s ease;
}
.header.scrolled .header-left .logo .logo-img {
    background: transparent;
    box-shadow: none;
    padding: 0;
}
.header.scrolled .header-left .brand-name,
.header.menu-open .header-left .brand-name { color: var(--dark); }

.nav ul { display: flex; gap: 30px; }
.nav ul > li > a {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    transition: color 0.3s;
}
.nav ul > li > a:hover { color: #fff; }
.header.scrolled .nav ul > li > a { color: var(--dark); }
.header.scrolled .nav ul > li > a:hover { color: var(--primary); }

/* Employee Login nav item — subtle outlined pill */
.nav-login {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 6px 14px !important;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 100px;
    font-size: 13px !important;
    transition: all 0.3s;
}
.nav-login i { font-size: 12px; }
.nav-login:hover { background: rgba(255,255,255,0.12); color: #fff; }
.header.scrolled .nav-login { border-color: rgba(23,52,64,0.3); }
.header.scrolled .nav-login:hover { background: var(--primary); border-color: var(--primary); color: #fff !important; }

/* The in-menu Employee Login is only for the mobile menu (desktop has the header button) */
.nav-login { display: none !important; }

.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav ul .dropdown li a {
    display: block;
    padding: 8px 20px;
    font-size: 13px;
    color: var(--text-dark);
    font-family: var(--font-heading);
}
.nav ul .dropdown li a:hover { color: var(--primary); background: #f9f9f9; }
.header.scrolled .nav ul .dropdown li a { color: var(--text-dark); }
.header.scrolled .nav ul .dropdown li a:hover { color: var(--primary); }

.btn-get-quote {
    padding: 12px 28px;
    background: #fff;
    color: #471412;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}
.btn-get-quote:hover { background: var(--darker); color: #fff; }
.header.scrolled .btn-get-quote { background: var(--primary); color: #fff; }

/* Header Employee Login button */
.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #fff;
    color: var(--dark);
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-login i { font-size: 13px; }
.btn-login:hover { background: var(--primary); color: #fff; }
.header.scrolled .btn-login { background: var(--primary); color: #fff; }
.header.scrolled .btn-login:hover { background: var(--darker); }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}
.header.scrolled .mobile-toggle { color: var(--dark); }

/* === HERO === */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(120deg, #1B3A5C 0%, #173440 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 200px;
    overflow: hidden;
}
.hero-content { position: relative; z-index: 2; max-width: 850px; margin: 0 auto; }
.hero-sub {
    font-family: var(--font-heading);
    font-size: 55px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 70px;
    font-weight: 700;
    color: #fff;
    min-height: 90px;
    margin-bottom: 20px;
}
.typed-text { color: #fff; }
.cursor {
    animation: blink 1s infinite;
    color: var(--primary-light);
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.hero-desc {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.73);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.25;
}
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 65px 15px 30px;
    background: #fff;
    color: #471412;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}
.btn-hero:hover { background: var(--darker); color: #fff; }

/* Hero action buttons row */
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-brochure {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}
.btn-brochure:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Floating product images in hero */
.hero-floating-imgs { position: absolute; inset: 0; z-index: 1; }
.float-img {
    position: absolute;
    width: 90px;
    height: 90px;
    opacity: 0.7;
    animation: floatY 4s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}
.float-img-1 { top: 10%; left: 8%; animation-delay: 0s; width: 100px; height: 100px; }
.float-img-2 { top: 50%; left: 3%; animation-delay: 0.5s; width: 85px; height: 85px; }
.float-img-3 { bottom: 20%; left: 42%; animation-delay: 1s; width: 75px; height: 75px; }
.float-img-4 { top: 8%; right: 10%; animation-delay: 1.5s; width: 95px; height: 95px; }
.float-img-5 { top: 55%; right: 6%; animation-delay: 2s; width: 80px; height: 80px; }
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Hero wave shape */
.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    z-index: 2;
    line-height: 0;
}
.hero-shape svg { width: 100%; height: 200px; }

/* === ABOUT === */
.about-section { padding: 100px 0 60px; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.about-img-wrapper {
    border-radius: 10px;
    overflow: hidden;
}
.about-img-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f0eefd 0%, #e8e4ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--primary);
    border-radius: 10px;
}
.about-text-col h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.1;
}
.about-text-col p {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text);
    text-align: justify;
}

/* === MANUFACTURING FACILITY === */
.facility-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #ffffff 0%, #FAF9FE 100%);
}
/* Placeholder styling: shows a labelled dashed box until real media is added */
.facility-section img.img-fallback {
    background: repeating-linear-gradient(45deg, #eef0f5, #eef0f5 12px, #e6e9f0 12px, #e6e9f0 24px);
    border: 2px dashed #c3c8d4;
    min-height: 180px;
    object-fit: cover;
    color: #8b90a0;
    font-family: var(--font-heading);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-align: center;
}

/* Feature company photo */
.facility-feature {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 20px 50px rgba(27,58,92,0.10);
    min-height: 260px;
}
.facility-feature img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}
.facility-feature-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 40px 34px 26px;
    background: linear-gradient(0deg, rgba(23,52,64,0.85) 0%, transparent 100%);
    color: #fff;
    text-align: left;
}
.facility-feature-caption h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}
.facility-feature-caption p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

/* Machine gallery */
.facility-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 34px;
}
.facility-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(27,58,92,0.08);
    background: #fff;
}
.facility-item img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.facility-item:hover img { transform: scale(1.06); }
.facility-item figcaption {
    padding: 14px 12px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
}

/* Facility video */
.facility-video {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(27,58,92,0.10);
    background: #000;
    text-align: center;
}
.facility-video video {
    width: 100%;
    max-height: 460px;
    display: block;
    background: #000;
}
.facility-video-note {
    background: var(--dark);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    padding: 12px;
    margin: 0;
}

/* === STATS === */
.stats-section { padding: 45px 0 95px; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.stat-card {
    padding: 43px 30px 58px;
    border-right: 1px solid #EAEAEA;
    text-align: center;
}
.stat-card:last-child { border-right: none; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 8px;
}
.stat-card h6 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
}
.stat-card p {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text);
}

/* === CLIENTS (auto-scrolling marquee) === */
.clients-section { padding: 25px 0 60px; text-align: center; }
.clients-marquee {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    margin-bottom: 20px;
    /* fade edges for a polished look */
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.clients-track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    animation: clientsScroll 28s linear infinite;
}
.clients-marquee:hover .clients-track { animation-play-state: paused; }
@keyframes clientsScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); } /* scroll exactly one full set */
}
.client-item {
    display: inline-flex;
    align-items: center;
    padding: 0 34px;
    flex-shrink: 0;
}
.client-item span {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--dark);
    white-space: nowrap;
    opacity: 0.65;
    transition: opacity 0.3s, color 0.3s;
}
.client-item:hover span { opacity: 1; color: var(--primary); }

/* === PRODUCTS === */
.products-section {
    padding: 85px 0 15px;
    background-size: cover;
    background-position: top center;
}
.products-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.product-card {
    text-align: center;
    padding: 0 35px;
    border-right: 1px solid rgba(112,112,112,0.11);
    margin-bottom: 30px;
}
.product-card:last-child { border-right: none; }
.product-card:nth-child(3n) { border-right: none; }
.product-img-wrap {
    width: 282px;
    height: 200px;
    margin: 0 auto 45px;
    background: linear-gradient(135deg, #f8f6ff 0%, #ede9ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--primary);
    transition: transform 0.4s;
}
.product-card:hover .product-img-wrap { transform: translateY(-5px); }
.product-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.product-card p {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

/* === CTA BANNER === */
.cta-banner { padding: 60px 0; }
.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    border-radius: 16px;
    padding: 50px 60px;
}
.cta-banner-text h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.cta-banner-text p {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
}

/* === SERVICES === */
.services-section {
    padding: 45px 0 55px;
    background: linear-gradient(180deg, #FAF9FE 0%, #fff 100%);
}
.services-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.service-card {
    position: relative;
    background: #fff;
    border-radius: 15px;
    padding: 35px 65px 40px 50px;
    box-shadow: 0 30px 70px rgba(27, 32, 75, 0.07);
    display: flex;
    align-items: flex-start;
    gap: 30px;
    transition: all 0.4s;
}
.service-card:hover { background: var(--darker); }
.service-card:hover h3 { color: #fff; }
.service-card:hover p { color: rgba(255,255,255,0.74); }
.service-card:hover .service-img { color: #fff; }

.service-img {
    min-width: 40px;
    font-size: 34px;
    color: var(--primary);
    transition: color 0.4s;
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    transition: color 0.4s;
}
.service-card p {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: color 0.4s;
}
.service-card.featured { border: 2px solid var(--primary); }
.pro-badge {
    position: absolute;
    top: 12px; right: 18px;
    background: #FFE29D;
    padding: 1px 8px;
    border-radius: 5px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark);
}

/* === PORTFOLIO === */
.portfolio-section { padding: 55px 0 120px; text-align: center; }
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 8px 20px;
    border: none;
    background: none;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    border-radius: 4px;
    transition: color 0.3s;
}
.filter-btn.active, .filter-btn:hover { color: var(--primary); }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 25px;
}
.portfolio-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
}
.portfolio-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede8ff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.4s;
}
.portfolio-inner img {
    display: block;
    width: min(72%, 240px);
    height: min(68%, 240px);
    object-fit: contain;
}
.portfolio-inner span {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}
.portfolio-item:hover .portfolio-inner { transform: scale(1.03); }

/* === TESTIMONIALS === */
.testimonials-section {
    padding: 90px 0;
    background: linear-gradient(0deg, #FAF9FE 0%, #fff 100%);
}
.testi-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}
.satisfaction-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    background: #B7EEF5;
    padding: 8px 16px;
    border-radius: 50px;
    width: fit-content;
}
.sat-number {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}
.sat-text {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}
.testi-left h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--darker);
    line-height: 1.1;
    margin-bottom: 16px;
}
.testi-left h2 span { color: var(--primary); }
.testi-left p {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: rgba(7,28,39,0.51);
    line-height: 1.3;
}

.testi-slider { position: relative; }
.testi-card {
    display: none;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.testi-card.active { display: block; animation: fadeIn 0.5s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.testi-card blockquote {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: #5A6367;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-avatar {
    width: 45px; height: 45px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
}
.testi-author h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}
.testi-author span {
    font-size: 13px;
    color: var(--text);
}
.testi-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}
.dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
}
.dot.active { background: var(--primary); }

/* === FAQ === */
.blog-section {
    padding: 80px 0 90px;
    background: linear-gradient(180deg, #FAF9FE 0%, #fff 100%);
}
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.04);
    overflow: hidden;
}
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    background: none;
    border: none;
    transition: color 0.3s;
}
.faq-q:focus-visible { outline: 2px solid var(--primary); outline-offset: -2px; }
.faq-q:hover { color: var(--primary); }
.faq-q i { font-size: 12px; color: var(--text); transition: transform 0.3s; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
    padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }
.faq-a p {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.6;
}

/* === CONTACT SECTION === */
.contact-section {
    padding: 90px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid rgba(23,52,64,0.07);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
a.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(27,58,92,0.10);
    border-color: rgba(203,0,0,0.25);
}
.contact-info-card i {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #fdeeee, #e8f4f8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 17px;
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s;
}
a.contact-info-card:hover i { background: var(--primary); color: #fff; }
.contact-info-card h5 {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
    margin-bottom: 3px;
}
.contact-info-card span {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    word-break: break-word;
    display: block;
}

/* Quote form */
.quote-form {
    background: #fff;
    border: 1px solid rgba(23,52,64,0.08);
    border-radius: 16px;
    padding: 34px;
    box-shadow: 0 20px 50px rgba(27,58,92,0.08);
}
.quote-form h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}
.quote-form > p {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--text);
    margin-bottom: 22px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 13px 16px;
    margin-bottom: 14px;
    border: 1px solid #dfe2ea;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--dark);
    background: #fff;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(203,0,0,0.10);
}
.quote-form textarea { resize: vertical; }
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}
.btn-submit:hover { background: var(--darker); transform: translateY(-2px); }

.map-embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}
.contact-map-full .map-embed { box-shadow: 0 10px 30px rgba(27,58,92,0.08); }

/* === FOOTER === */
.footer {
    background: var(--darker);
    padding: 60px 0 30px;
    color: rgba(255,255,255,0.7);
}
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-nav a {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}
.footer-nav a:hover { color: #fff; }

.footer-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
}
.footer-info-col h5 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}
.footer-info-col p, .footer-info-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p { font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.9); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: rgba(255,255,255,0.6); font-size: 16px; }
.footer-social a:hover { color: #fff; }

/* === STICKY SOCIAL === */
.sticky-social {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
}
.sticky-item {
    width: 45px; height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: transform 0.3s;
}
.sticky-item:hover { transform: translateX(5px); }
.sticky-item.whatsapp { background: #25D366; }
.sticky-item.call { background: #2A4F6E; }
.sticky-item.email { background: #CB0000; }
.sticky-item.facebook { background: #1877F2; }
.sticky-item.instagram { background: #E4405F; }
.sticky-item.youtube { background: #FF0000; }

/* === PAGE LOADER === */
.page-loader {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #eee;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 80px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(203,0,0,0.3);
    z-index: 998;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--darker); box-shadow: 0 4px 15px rgba(27,58,92,0.3); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-sub { font-size: 36px; }
    .hero-title { font-size: 45px; min-height: 60px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-card { border-right: none; border-bottom: 1px solid #EAEAEA; }
    .stat-card:last-child { border-bottom: none; }
    .products-row { grid-template-columns: 1fr; }
    .product-card { border-right: none; border-bottom: 1px solid rgba(112,112,112,0.11); padding-bottom: 40px; }
    .services-row { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .facility-gallery { grid-template-columns: repeat(2, 1fr); }
    .facility-feature img { height: 300px; }
    .testi-header { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-cards { grid-template-columns: 1fr 1fr; }
    .footer-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header { padding: 14px 20px; }
    .header-left .logo img { height: 32px; }
    .header-left .logo .logo-img { width: 32px; height: 32px; }
    .header-left .brand-lockup { gap: 7px; }
    .header-left .brand-name { font-size: 14px; }
    .nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        padding: 0 24px;
        box-shadow: 0 16px 40px rgba(0,0,0,0.14);
        border-radius: 0 0 18px 18px;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transform: translateY(-8px);
        transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.35s ease, padding 0.4s ease;
    }
    .nav.active {
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        padding: 12px 24px 20px;
    }
    .nav ul { flex-direction: column; gap: 0; }
    .nav ul > li {
        opacity: 0;
        transform: translateX(-12px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        border-bottom: 1px solid #f0f0f2;
    }
    .nav ul > li:last-child { border-bottom: none; }
    .nav.active ul > li { opacity: 1; transform: translateX(0); }
    /* staggered reveal of each item */
    .nav.active ul > li:nth-child(1) { transition-delay: 0.08s; }
    .nav.active ul > li:nth-child(2) { transition-delay: 0.13s; }
    .nav.active ul > li:nth-child(3) { transition-delay: 0.18s; }
    .nav.active ul > li:nth-child(4) { transition-delay: 0.23s; }
    .nav.active ul > li:nth-child(5) { transition-delay: 0.28s; }
    .nav.active ul > li:nth-child(6) { transition-delay: 0.33s; }
    .nav.active ul > li:nth-child(7) { transition-delay: 0.38s; }
    .nav.active ul > li:nth-child(8) { transition-delay: 0.43s; }
    .nav ul > li > a {
        display: block;
        padding: 14px 4px;
        font-size: 15px;
        font-weight: 600;
        color: var(--dark) !important;
        transition: color 0.25s, padding-left 0.25s;
    }
    .nav ul > li > a:hover, .nav ul > li > a:active { color: var(--primary) !important; padding-left: 10px; }
    .dropdown {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; padding: 0 0 8px 14px; min-width: 0;
        border-left: 2px solid #f0f0f2; margin-left: 4px;
    }
    .dropdown li a { padding: 8px 0; font-size: 13px; }
    /* Employee Login: normal full-width menu row on mobile (not an inline pill) */
    .nav-login {
        display: flex !important;
        justify-content: flex-start;
        padding: 14px 4px !important;
        border: none;
        border-radius: 0;
        font-size: 15px !important;
        color: var(--dark) !important;
    }
    .nav-login:hover { background: none; color: var(--primary) !important; }
    .header-right .btn-login { display: none; }
    .mobile-toggle { display: block; color: #fff; font-size: 24px; z-index: 1001; transition: color 0.3s, transform 0.3s; }
    .mobile-toggle.active { transform: rotate(90deg); }
    .header.scrolled .mobile-toggle, .header.menu-open .mobile-toggle { color: var(--dark); }
    /* Solid header background while menu open so white menu blends cleanly */
    .header.menu-open { background: rgba(255,255,255,0.98); box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
    .header.menu-open .logo .logo-white { display: none; }
    .header.menu-open .logo .logo-dark { display: block; }

    .hero-section { padding: 140px 20px 110px; overflow: hidden; }
    .hero-content { max-width: 100%; }
    .hero-sub { font-size: 20px; }
    .hero-title { font-size: 28px; min-height: 40px; word-break: break-word; }
    .hero-desc { font-size: 14px; }
    .hero-shape svg { height: 100px; }
    .float-img { width: 50px !important; height: 50px !important; opacity: 0.5; }

    .section-header h2 { font-size: 28px; }
    .about-text-col h2 { font-size: 28px; }
    .testi-left h2 { font-size: 30px; }

    .clients-track { gap: 12px; }
    .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .facility-gallery { gap: 12px; }
    .facility-feature img { height: 240px; }
    .facility-feature-caption { padding: 28px 20px 18px; }
    .facility-feature-caption h3 { font-size: 20px; }
    .filter-bar { gap: 8px; }
    .filter-btn { font-size: 13px; padding: 6px 12px; }

    /* CTA banner: stack vertically on mobile */
    .cta-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 32px 24px;
        gap: 20px;
    }
    .cta-banner-inner .btn-get-quote {
        width: 100%;
        text-align: center;
        white-space: nowrap;
        padding: 14px 20px;
    }

    /* Service cards: stack icon/title/text vertically, trim heavy padding */
    .service-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 28px 24px;
    }
    .service-img { min-width: auto; font-size: 30px; }
    .service-card.featured .pro-badge { top: 20px; right: 20px; }

    .footer-nav { flex-wrap: wrap; gap: 16px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

    /* Sticky contact: move to thumb-friendly bottom bar on mobile */
    .sticky-social {
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        transform: none;
        flex-direction: row;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
        /* Clear the iOS home indicator / Dynamic Island safe area */
        padding-bottom: env(safe-area-inset-bottom, 0px);
        background: #173440;
    }
    .sticky-item {
        flex: 1;
        width: auto;
        height: 52px;
        border-radius: 0;
    }
    .sticky-item:hover { transform: none; }

    /* Single contact pattern on mobile: bottom bar is the source of truth,
       so hide the redundant footer social/contact icons */
    .footer-social { display: none; }

    /* Move back-to-top to the right edge, above the fixed bottom bar */
    .back-to-top { right: 16px; bottom: 66px; z-index: 998; }

    /* Space so the fixed bottom bar never covers footer content */
    .footer { padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 480px) {
    .hero-sub { font-size: 17px; }
    .hero-title { font-size: 24px; min-height: 34px; }
    .section-header h2 { font-size: 23px; }
    .about-text-col h2 { font-size: 24px; }
    .testi-left h2 { font-size: 26px; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .clients-track { gap: 10px; }
    .client-item { padding: 0 20px; }
    .client-item span { font-size: 17px; }
    .contact-info-cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .quote-form { padding: 24px; }
    .btn-hero, .btn-get-quote { font-size: 14px; }
    .stat-number { font-size: 40px; }
}

/* ── About section real image ── */
.about-real-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* ── Photo Gallery Section ── */
.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 40px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    cursor: pointer;
}
.gallery-item--wide {
    grid-column: span 2;
}
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-item--wide img {
    height: 320px;
}
.gallery-item:hover img {
    transform: scale(1.06);
}
.gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    padding: 20px 16px 14px;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}
.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}
.gallery-overlay span {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .photo-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-item--wide {
        grid-column: span 2;
    }
    .gallery-item img,
    .gallery-item--wide img {
        height: 200px;
    }
    .about-real-img {
        height: 280px;
    }
}
@media (max-width: 480px) {
    .photo-gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item--wide {
        grid-column: span 1;
    }
}


/* ============================================================
   MULTIPAGE — SHARED PAGE STYLES
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: 0.625rem; }
.breadcrumb span { color: #fff; font-weight: 600; }

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    padding: 7rem 0 4rem;
    text-align: center;
    color: #fff;
}
.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.page-hero p {
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto;
    color: rgba(255,255,255,0.85);
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.product-detail-section { padding: 5rem 0; }
.product-detail-section.alt-bg { background: #f8f9fa; }

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: center;
}
.product-detail-grid.reverse { grid-template-columns: 1.6fr 1fr; }

.product-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark), var(--darker));
    margin: 0 auto;
    box-shadow: 0 12px 40px rgba(23,52,64,0.25);
}
.product-icon-large i {
    font-size: 4.5rem;
    color: #fff;
}

.product-detail-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin: 1rem 0;
    color: var(--dark);
}
.product-detail-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
}
.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #444;
}
.product-features li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

.product-cta { margin-top: 1.5rem; }
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #a80000; transform: translateY(-2px); }

/* Industries */
.industries-section { padding: 5rem 0; background: #f8f9fa; }
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.industry-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.industry-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.industry-card i { font-size: 2.2rem; color: var(--primary); margin-bottom: 1rem; }
.industry-card h4 { font-size: 1rem; color: var(--dark); margin-bottom: 0.5rem; }
.industry-card p { font-size: 0.875rem; color: #666; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-why-section { padding: 5rem 0; }
.service-detail-section { padding: 5rem 0; }
.service-detail-section.alt-bg { background: #f8f9fa; }

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}
.service-detail-grid.reverse { grid-template-columns: 2fr 1fr; }

.service-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark), var(--darker));
    margin: 0 auto;
    box-shadow: 0 12px 40px rgba(23,52,64,0.25);
}
.service-icon-wrap i { font-size: 4rem; color: #fff; }

.service-detail-text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 1rem 0;
    color: var(--dark);
}
.service-detail-text p { color: #555; line-height: 1.8; margin-bottom: 1rem; }

/* Process Steps */
.process-section { padding: 5rem 0; background: #f8f9fa; }
.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}
.process-step {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    text-align: center;
    padding: 2rem 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.step-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.75rem;
}
.process-step h4 { font-size: 1rem; color: var(--dark); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.85rem; color: #666; }
.process-arrow { font-size: 1.5rem; color: #ccc; align-self: center; padding: 0 0.5rem; }

/* ============================================================
   FACILITY PAGE
   ============================================================ */
.facility-overview-section { padding: 5rem 0; }
.facility-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.facility-overview-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin: 1rem 0;
    color: var(--dark);
}
.facility-overview-text p { color: #555; line-height: 1.8; margin-bottom: 1rem; }
.facility-overview-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.facility-stats-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
.fstat { display: flex; flex-direction: column; }
.fstat-num { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.fstat-label { font-size: 0.85rem; color: #666; }

/* Capabilities */
.capabilities-section { padding: 5rem 0; }
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.capability-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    border: 1px solid #e8ecf0;
    transition: transform 0.2s, box-shadow 0.2s;
}
.capability-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.capability-card i { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }
.capability-card h4 { color: var(--dark); margin-bottom: 0.5rem; }
.capability-card p { font-size: 0.875rem; color: #666; }

/* Quality section */
.quality-section { padding: 5rem 0; }
.quality-section.alt-bg { background: #f8f9fa; }
.quality-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.quality-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.qstep-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.qstep-icon i { font-size: 1.5rem; color: #fff; }
.quality-step h4 { color: var(--dark); margin-bottom: 0.5rem; }
.quality-step p { font-size: 0.875rem; color: #666; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.values-section { padding: 5rem 0; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}
.value-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.2s;
}
.value-card:hover { transform: translateY(-4px); }
.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.value-icon i { font-size: 1.5rem; color: #fff; }
.value-card h3 { color: var(--dark); margin-bottom: 0.75rem; }
.value-card p { font-size: 0.9rem; color: #555; line-height: 1.7; }
.values-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.values-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: #444; }
.values-list li i { color: var(--primary); }

/* Differentiators */
.differentiators-section { padding: 5rem 0; }
.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.diff-card {
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #e8ecf0;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.diff-card:hover { border-color: var(--primary); box-shadow: 0 4px 20px rgba(203,0,0,0.08); }
.diff-card i { font-size: 1.8rem; color: var(--primary); margin-bottom: 0.75rem; }
.diff-card h4 { color: var(--dark); margin-bottom: 0.5rem; }
.diff-card p { font-size: 0.875rem; color: #666; line-height: 1.7; }

/* ============================================================
   RESPONSIVE — MULTIPAGE
   ============================================================ */
@media (max-width: 768px) {
    .product-detail-grid,
    .product-detail-grid.reverse,
    .service-detail-grid,
    .service-detail-grid.reverse,
    .facility-overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .product-features { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; align-items: center; }
    .process-arrow { transform: rotate(90deg); }
    .facility-stats-mini { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   INLINE SVG ICONS (replaces Font Awesome CDN)
   ============================================================ */
svg[aria-hidden="true"] {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    fill: currentColor;
    flex-shrink: 0;
}

/* ============================================================
   SCROLL ANIMATIONS (replaces animate.css CDN)
   ============================================================ */
.animate__animated {
    animation-duration: 0.6s;
    animation-fill-mode: both;
}
@keyframes animate__fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes animate__fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes animate__fadeInLeft {
    from { opacity: 0; transform: translateX(-32px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes animate__fadeInRight {
    from { opacity: 0; transform: translateX(32px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes animate__zoomIn {
    from { opacity: 0; transform: scale(0.88); }
    to   { opacity: 1; transform: scale(1); }
}
.animate__fadeIn      { animation-name: animate__fadeIn; }
.animate__fadeInUp    { animation-name: animate__fadeInUp; }
.animate__fadeInLeft  { animation-name: animate__fadeInLeft; }
.animate__fadeInRight { animation-name: animate__fadeInRight; }
.animate__zoomIn      { animation-name: animate__zoomIn; }

@media (prefers-reduced-motion: reduce) {
    .animate__animated { animation: none !important; }
}
