/* ============================================================
   B2B Bulk Order Website - Frontend Styles (IndiaMART-style)
   Mobile-first responsive
   ============================================================ */

:root {
    --primary: #006061;
    --primary-dark: color-mix(in srgb, var(--primary) 78%, #000);
    --primary-soft: color-mix(in srgb, var(--primary) 7%, #fff);
    --secondary: #103178;
    --accent: #f59e0b;
    --bg: #ffffff;
    --bg-alt: #f6f7f9;
    --bg-dark: #2f333a;
    --text: #2f333a;
    --text-muted: #5b6c8f;
    --border: #e5e7eb;
    --green: #16a34a;
    --red: #dc2626;
    --radius: 8px;
    --shadow: 0 4px 16px rgba(15, 23, 42, 0.07);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
    --container: 1280px;
    --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 15px;
    overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
picture { display: block; width: 100%; height: 100%; }
a { color: var(--primary); text-decoration: none; transition: color .15s; }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }
h1, h2, h3, h4 { line-height: 1.3; color: var(--secondary); font-weight: 700; }
p { color: #505050; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: 16px; padding-right: 16px; }
.narrow { max-width: 880px; }
.text-center { text-align: center; }
.highlight { color: var(--primary); }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 100;
    background: var(--primary); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------------- IndiaMART helpers ---------------- */
.lne1txt, .lne2txt { text-overflow: ellipsis; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; }
.lne1txt { -webkit-line-clamp: 1; }
.lne2txt { -webkit-line-clamp: 2; }
.clr2 { color: #111; }
.clr5 { color: var(--primary); }
.clr7 { color: #444; }
.fw5 { font-weight: 500; }
.fw6 { font-weight: 600; }
.fs12 { font-size: 12px; }
.fs13 { font-size: 13px; }
.fs14 { font-size: 14px; }
.fs16 { font-size: 16px; }
.mt5 { margin-top: 5px; }
.mt15 { margin-top: 15px; }
.mb10 { margin-bottom: 10px; }
.mb15 { margin-bottom: 15px; }
.overline {
    display: inline-block; text-transform: uppercase; letter-spacing: 2px;
    font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 8px;
}

/* ---------------- Buttons ---------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 22px; border-radius: 5px; font-weight: 600; font-size: 14.5px;
    border: 1px solid transparent; cursor: pointer; transition: all .18s ease;
    text-align: center; line-height: 1.2; white-space: nowrap;
}
.btn-sm { padding: 7px 13px; font-size: 13px; border-radius: 4px; }
.btn-lg { padding: 14px 30px; font-size: 15.5px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: #fff; color: var(--primary); border-color: var(--primary); transform: translateY(-1px); }
.btn-outline { background: #fff; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.8); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--primary); }
.btn-light { background: #fff; color: var(--primary); border-color: #fff; }
.btn-light:hover { background: var(--primary); color: #fff; }
.btn-whatsapp { background: #25d366; color: #fff; border-color: #25d366; }
.btn-whatsapp:hover { background: #1db357; color: #fff; }
.btn-link { background: none; border: none; color: var(--text-muted); padding: 6px; }
.btn-link:hover { color: var(--primary); text-decoration: underline; }

/* ---------------- Header (IndiaMART style) ---------------- */
.site-header {
    background: #fff; position: sticky; top: 0; z-index: 60;
    box-shadow: 0 1px 3px rgba(15, 23, 42, .06);
}
.header-middle {
    display: flex; align-items: center; gap: 18px;
    padding-top: 14px; padding-bottom: 14px;
}

/* Brand: logo + name/tagline/location */
.brand { display: flex; align-items: center; gap: 12px; }
.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo img { max-height: 58px; width: auto; }
.logo-mark {
    width: 54px; height: 54px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center;
    background: var(--primary); color: #fff;
    font-size: 26px; font-weight: 800;
}
.brand-info { display: flex; flex-direction: column; line-height: 1.3; }
.brand-name { font-size: 22px; font-weight: 800; color: var(--secondary); letter-spacing: -0.3px; }
.brand-name:hover { color: var(--primary); }
.brand-tag { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.brand-loc { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* Header contact (right) */
.header-contact { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.call-box {
    display: flex; align-items: center; gap: 10px; padding: 6px 12px;
    border-radius: 8px; transition: background .15s;
}
.call-box:hover { background: var(--bg-alt); }
.call-icon {
    width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    background: var(--primary-soft); color: var(--primary);
}
.call-txt { display: flex; flex-direction: column; line-height: 1.25; }
.call-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .4px; }
.call-number { font-size: 16px; font-weight: 800; color: var(--secondary); }
.btn-email { border-radius: 5px; padding: 12px 18px; }

/* Nav toggle (mobile) */
.nav-toggle {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px; background: var(--bg-alt); border: 1px solid var(--border);
    border-radius: 8px; cursor: pointer; position: relative; z-index: 80;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--text); transition: .2s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Colored navigation bar */
.nav-bar { background: var(--primary); color: #fff; }
.nav-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.main-nav ul { display: flex; align-items: center; }
.main-nav > ul > li > a {
    display: inline-flex; align-items: center; gap: 8px; padding: 14px 18px;
    font-weight: 600; font-size: 15px; color: rgba(255, 255, 255, .94);
    transition: background .15s, color .15s;
}
.main-nav > ul > li > a:hover, .main-nav > ul > li > a.active { background: rgba(0, 0, 0, .18); color: #fff; }
.has-mega { position: relative; }
.has-mega .caret { margin-left: 2px; transition: transform .2s; }
.has-mega:hover .caret, .has-mega.open .caret { transform: rotate(180deg); }

/* Mega menu */
.mega {
    position: absolute; top: 100%; left: 0; width: min(720px, calc(100vw - 32px));
    background: #fff; border: 1px solid var(--border); border-top: 3px solid var(--primary);
    border-radius: 0 0 10px 10px; box-shadow: var(--shadow-lg);
    padding: 20px; display: none; z-index: 60; color: var(--text);
}
.has-mega:hover .mega, .has-mega.open .mega { display: block; }
.mega-cols { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 16px; }
.mega-col { min-width: 0; }
.mega-head { display: block; font-weight: 700; font-size: 14.5px; color: var(--secondary); padding: 4px 8px; margin-bottom: 4px; }
.mega-head:hover { color: var(--primary); }
.mega-list li a { display: block; padding: 5px 8px; font-size: 13.5px; color: var(--text-muted); border-radius: 6px; }
.mega-list li a:hover { color: var(--primary); background: var(--primary-soft); }
.mega-more { display: block; padding: 4px 8px 0; font-size: 13px; font-weight: 700; color: var(--primary); }
.mega-more:hover { text-decoration: underline; }
.mega-foot { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); text-align: center; }
.mega-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--primary); color: #fff; font-weight: 700; font-size: 14px;
    padding: 11px 26px; border-radius: 5px; transition: background .15s;
}
.mega-btn:hover { background: var(--primary-dark); color: #fff; }

/* Search in nav bar */
.nav-search { display: flex; align-items: center; gap: 0; background: #fff; border-radius: 4px; overflow: hidden; width: 300px; }
.nav-search-mobile { display: none; }
.drawer-contact { display: none; }
.nav-search input { flex: 1; border: none; outline: none; padding: 11px 14px; font-size: 14px; color: var(--text); background: transparent; }
.nav-search-btn {
    display: inline-flex; align-items: center; gap: 6px; background: var(--primary-dark); color: #fff;
    border: none; cursor: pointer; padding: 11px 16px; font-size: 13.5px; font-weight: 600;
    transition: background .15s;
}
.nav-search-btn:hover { background: var(--primary); }

/* Mobile nav drawer (below 992px) */
.nav-overlay {
    position: fixed; inset: 0; background: rgba(10, 15, 28, 0.55);
    z-index: 65; backdrop-filter: blur(2px);
}
.no-scroll { overflow: hidden; }
@media (max-width: 991px) {
    .nav-toggle { display: inline-flex; }
    .header-middle { gap: 12px; }
    .brand-name { font-size: 18px; }
    .brand-tag, .brand-loc { font-size: 11.5px; }
    .logo-mark { width: 44px; height: 44px; font-size: 20px; }
    .call-box { display: none; }
    .btn-email { padding: 9px 13px; font-size: 13px; }
    .header-contact { gap: 8px; }

    /* Mobile: nav drawer replaces the desktop bar + search */
    .main-nav {
        position: fixed; top: 0; left: -300px; width: 290px; max-width: calc(100vw - 48px);
        height: 100vh; height: 100dvh; background: #fff;
        z-index: 70; padding: 20px 16px calc(20px + env(safe-area-inset-bottom));
        box-shadow: var(--shadow-lg); transition: left .25s ease;
        overflow-y: auto; color: var(--text);
        display: flex; flex-direction: column;
    }
    .main-nav.open { left: 0; }
    .nav-bar-inner > .nav-search { display: none; }
    .nav-search-mobile { display: flex; width: 100%; margin-bottom: 14px; }
    .main-nav ul { flex-direction: column; align-items: stretch; }
    .main-nav > ul > li > a { color: var(--text); font-size: 16px; width: 100%; padding: 14px 12px; border-radius: 8px; }
    .main-nav > ul > li > a:hover, .main-nav > ul > li > a.active { background: var(--primary-soft); color: var(--primary); }
    .has-mega > a { padding-right: 8px; }
    .mega {
        position: static; width: 100%; box-shadow: none; border: none; border-radius: 0;
        padding: 2px 0 10px 14px; display: none;
    }
    .has-mega.open .mega { display: block; }
    .mega-cols { grid-template-columns: 1fr; gap: 10px; }
    .mega-list li a { padding: 9px 10px; }
    .mega-foot { display: none; }
    .drawer-contact { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
}

/* ---------------- Mobile refinements (small screens) ---------------- */
@media (max-width: 640px) {
    .section { padding: 40px 0; }
    .section-tight { padding: 28px 0; }
    .section-head { margin-bottom: 26px; }
    .cta-band { padding: 40px 0; }
    .page-hero { padding: 22px 0; }
    .footer-grid { padding: 32px 16px 28px; }
    .about-hero { padding: 32px 0 46px; }

    .banner-cta { min-height: 240px; padding: 18px; }
    .banner-cta-img { width: 88px; height: 88px; top: 10px; right: 10px; }
    .banner-cta h2 { font-size: 20px; }

    .tier-table { display: block; overflow-x: auto; white-space: nowrap; }

    .header-middle { flex-wrap: wrap; row-gap: 10px; }
    .brand-name { font-size: 16px; }
    .btn-email { width: 42px; height: 42px; padding: 0; font-size: 0; }
    .btn-email .btn-label { display: none; }

    .chip { padding: 10px 15px; }
    .page-link { padding: 11px 15px; }
}

@media (max-width: 480px) {
    .product-grid { gap: 10px; }
    .product-card-body { padding: 10px 10px 12px; }
    .product-card-title { font-size: 14px; }
    .category-grid { gap: 10px; }
    .point-grid { grid-template-columns: 1fr; }
    .info-strip { grid-template-columns: 1fr; }
    .breadcrumb { font-size: 12.5px; }
}

/* ---------------- Alerts ---------------- */
.alert { padding: 14px 18px; border-radius: 8px; margin: 16px 0; font-size: 14.5px; border: 1px solid transparent; }
.alert-success { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
.alert-error { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.alert-info { background: #eff6ff; border-color: #bfdbfe; color: #1e40af; }
.alert ul { list-style: disc; padding-left: 20px; }

/* ---------------- Categories strip (home) ---------------- */
.cat-strip { border-bottom: 1px solid var(--border); background: #fff; }
.cat-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 22px 0; }
@media (min-width: 1024px) { .cat-tiles { grid-template-columns: repeat(8, 1fr); } }
.cat-tile { text-align: center; }
.cat-tile-img {
    display: flex; align-items: center; justify-content: center; overflow: hidden;
    width: 100%; aspect-ratio: 1/1; border: 1px solid var(--border); border-radius: 8px;
    background: #fff; margin-bottom: 8px; transition: box-shadow .15s, border-color .15s;
}
.cat-tile:hover .cat-tile-img { border-color: var(--primary); box-shadow: var(--shadow); }
.cat-tile img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.cat-tile-name { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.3; }
.cat-tile-name:hover { color: var(--primary); }
.cat-tile-all .cat-tile-img {
    background: var(--primary-soft); border-style: dashed; color: var(--primary);
    font-weight: 700; font-size: 30px;
}

/* ---------------- Banner grid (home) ---------------- */
.banner-area { padding: 20px 0 8px; }
.banner-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 992px) { .banner-grid { grid-template-columns: 1fr 1fr 300px; } }
.banner-card {
    border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: #fff;
    display: flex; flex-direction: column; transition: box-shadow .15s;
}
.banner-card:hover { box-shadow: var(--shadow); }
.banner-card-media { display: block; aspect-ratio: 4/3; background: var(--bg-alt); overflow: hidden; }
.banner-card-media img { width: 100%; height: 100%; object-fit: contain; }
.banner-card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.banner-card-body h2 { font-size: 17px; line-height: 1.3; margin-bottom: 8px; }
.banner-card-body h2 a { color: var(--text); }
.banner-card-body h2 a:hover { color: var(--primary); }

.banner-cta {
    position: relative; border-radius: 10px; overflow: hidden; min-height: 300px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, color-mix(in srgb, var(--primary) 55%, #000) 100%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; color: #fff;
}
.banner-cta-img { position: absolute; top: 14px; right: 14px; width: 120px; height: 120px; border-radius: 10px; overflow: hidden; border: 2px solid rgba(255,255,255,.35); }
.banner-cta-img img { width: 100%; height: 100%; object-fit: contain; }
.banner-cta h2 { color: #fff; font-size: 24px; line-height: 1.25; margin-bottom: 16px; }
.banner-cta a { color: #fff; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; }
.banner-cta a:hover { color: #fff; text-decoration: underline; }

/* Price row (reference style) */
.price-row-inline { display: flex; align-items: baseline; gap: 4px; margin: 6px 0 10px; }
.price-main { font-size: 26px; font-weight: 800; color: var(--primary); }
.rs_smbl { font-size: .82em; font-weight: 700; }
.rs_unit { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-left: 2px; }

/* Spec list on cards */
.spec-list { margin-bottom: 12px; }
.spec-list li { font-size: 13px; line-height: 1.9; color: #111; }
.spec-list li b { color: #444; font-weight: 600; }

/* Get quote button pinned to card */
.get-q-btn {
    margin-top: auto; width: 100%; display: flex; justify-content: center; align-items: center;
    height: 42px; font-size: 14.5px; font-weight: 600; padding: 8px 20px;
}

/* ---------------- Sections ---------------- */
.section { padding: 52px 0; }
.section-tight { padding: 34px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 34px; }
.section-head .overline { display: inline-block; }
.section-head h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 8px; color: var(--secondary); }
.section-head p { color: var(--text-muted); font-size: 15px; }
.section-cta { text-align: center; margin-top: 34px; }
.section-title { font-size: 23px; margin-bottom: 18px; color: var(--secondary); }
.section-title-sm { font-size: 17px; margin-bottom: 14px; color: var(--secondary); }

/* Group heading (products on home) */
.group-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.group-head h2 { font-size: 21px; color: var(--secondary); }
.view-all { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--primary); white-space: nowrap; }
.view-all:hover { text-decoration: underline; }

/* ---------------- Category grid (circle tiles) ---------------- */
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .category-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .category-grid { grid-template-columns: repeat(4, 1fr); } }
.category-card {
    position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border);
    background: #fff; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.category-card-img { aspect-ratio: 4/3; object-fit: contain; width: 100%; background: var(--bg-alt); padding: 6px; }
.category-card-body { padding: 14px 16px; display: flex; align-items: center; gap: 10px; }
.category-card-body h3 { font-size: 15px; flex: 1; color: var(--secondary); }
.category-count { color: var(--text-muted); font-size: 12.5px; }
.category-arrow { color: var(--primary); font-weight: 700; }

/* ---------------- Product grid / card (IndiaMART) ---------------- */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .product-grid.cols-5 { grid-template-columns: repeat(5, 1fr); } }

.product-card {
    border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff;
    display: flex; flex-direction: column; transition: box-shadow .15s, transform .15s;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.product-card-media { position: relative; display: block; aspect-ratio: 1/1; background: var(--bg-alt); overflow: hidden; }
.product-card-img { width: 100%; height: 100%; object-fit: contain; transition: transform .3s; }
.product-card:hover .product-card-img { transform: scale(1.04); }
.badge-discount {
    position: absolute; top: 10px; left: 10px; background: var(--red); color: #fff;
    font-size: 11.5px; font-weight: 700; padding: 3px 8px; border-radius: 4px;
}
.product-card-body { padding: 12px 14px 14px; display: flex; flex-direction: column; flex: 1; gap: 4px; }
.product-card-cat { color: var(--primary); font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; }
.product-card-title { font-size: 15px; line-height: 1.35; }
.product-card-title a { color: var(--text); }
.product-card-title a:hover { color: var(--primary); }
.product-card-price { display: flex; align-items: baseline; gap: 8px; margin: 2px 0 4px; }
.price { font-size: 17px; font-weight: 800; color: var(--primary); }
.price .rs_smbl { font-size: .85em; }
.price-old { color: var(--text-muted); text-decoration: line-through; font-size: 13px; }
.product-card-moq { color: var(--text-muted); font-size: 12.5px; }
.product-card .get-q-btn { margin-top: auto; height: 38px; font-size: 13.5px; }

/* ---------------- Steps (home process) ---------------- */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px;
    position: relative; text-align: center;
}
.step-card:hover { box-shadow: var(--shadow); }
.step-num {
    width: 46px; height: 46px; border-radius: 8px; background: var(--primary-soft); color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; margin-bottom: 14px;
}
.step-card h3 { font-size: 16px; margin-bottom: 6px; color: var(--secondary); }
.step-card p { color: var(--text-muted); font-size: 13.5px; }

/* ---------------- About section (home) ---------------- */
.about-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 992px) { .about-grid { grid-template-columns: 1fr 1.2fr; align-items: center; } }
.about-welcome { text-transform: uppercase; letter-spacing: 2px; font-size: 13px; font-weight: 600; color: var(--text-muted); }
.about-title { font-size: clamp(24px, 3vw, 32px); color: var(--secondary); margin: 4px 0 16px; }
.about-text p { color: #505050; font-size: 14.5px; line-height: 1.75; margin-bottom: 12px; }
.about-readmore { font-size: 14px; font-weight: 700; color: var(--text); }
.about-readmore:hover { color: var(--primary); }
.about-bottom { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); }
.about-bottom p { font-size: 13px; font-weight: 700; letter-spacing: 1px; margin-bottom: 12px; color: var(--secondary); }

.point-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .point-grid { grid-template-columns: repeat(2, 1fr); } }
.point-box {
    border: 1px solid var(--border); border-radius: var(--radius); padding: 18px;
    display: flex; gap: 14px; align-items: flex-start; background: #fff;
}
.point-box:hover { box-shadow: var(--shadow); }
.prfle-img {
    flex-shrink: 0; width: 54px; height: 54px; border-radius: 6px; background: var(--primary-soft);
    display: flex; align-items: center; justify-content: center; color: var(--primary);
}
.point-box h3 { font-size: 15px; color: var(--text); margin-bottom: 3px; }
.point-box p { font-size: 13.5px; color: var(--text-muted); line-height: 1.5; }

/* ---------------- Blog ---------------- */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; display: flex; flex-direction: column; transition: box-shadow .15s; }
.blog-card:hover { box-shadow: var(--shadow); }
.blog-card-media { aspect-ratio: 16/10; display: block; overflow: hidden; background: var(--bg-alt); }
.blog-card-img { width: 100%; height: 100%; object-fit: contain; background: var(--bg-alt); }
.blog-card-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.blog-date { color: var(--primary); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 6px; }
.blog-card h3 { font-size: 16px; margin-bottom: 8px; }
.blog-card h3 a { color: var(--secondary); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { color: var(--text-muted); font-size: 14px; flex: 1; }
.read-more { color: var(--primary); font-weight: 600; font-size: 14px; margin-top: 10px; display: inline-flex; align-items: center; gap: 4px; }
.read-more:hover { text-decoration: underline; }

/* ---------------- Enquiry / CTA band ---------------- */
.cta-band { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 56px 0; text-align: center; color: #fff; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.85); margin-bottom: 24px; }

.enquiry-section { background: var(--bg-alt); }
.enquiry-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 992px) { .enquiry-grid { grid-template-columns: 1fr 1.5fr; align-items: start; } }
.enquiry-info { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.enquiry-info h2 { font-size: 20px; color: var(--secondary); margin-bottom: 8px; }
.enquiry-info > p { color: var(--text-muted); font-size: 14px; margin-bottom: 18px; }
.enquiry-contact li { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px dashed var(--border); }
.enquiry-contact li:last-child { border-bottom: none; }
.enquiry-contact svg { flex-shrink: 0; margin-top: 2px; color: var(--primary); }
.enquiry-contact .ec-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); font-weight: 600; }
.enquiry-contact .ec-value { font-size: 15px; font-weight: 600; color: var(--text); }
.enquiry-contact a { color: var(--text); }
.enquiry-contact a:hover { color: var(--primary); }
.enquiry-info .btn { margin-top: 18px; }

/* ---------------- Footer (light, IndiaMART) ---------------- */
.site-footer { background: #fff; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 28px; padding: 48px 16px 36px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; } }
.footer-col h4 { color: var(--secondary); font-size: 16px; margin-bottom: 14px; font-weight: 600; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col a { color: #505050; font-size: 14px; }
.footer-col a:hover { color: var(--primary); }
.footer-about p { margin: 14px 0; font-size: 14px; color: #505050; }
.footer-logo img { max-height: 46px; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
    width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 6px;
    display: inline-flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 14px;
}
.footer-socials a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-contact li { line-height: 1.6; font-size: 14px; color: #505050; display: flex; gap: 8px; }
.footer-contact li svg { flex-shrink: 0; margin-top: 4px; color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; padding-top: 16px; padding-bottom: 16px; font-size: 13.5px; }
.footer-bottom p { color: var(--text-muted); }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: 13.5px; }
.footer-links a:hover { color: var(--primary); }

.wa-float {
    position: fixed; bottom: 20px; right: 20px; z-index: 55;
    width: 54px; height: 54px; border-radius: 50%; background: #25d366; color: #fff;
    display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
}
.wa-float:hover { background: #1db357; color: #fff; transform: scale(1.05); }

/* Back to top */
#backTop {
    position: fixed; bottom: 90px; right: 20px; z-index: 55;
    width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
    background: var(--bg-dark); color: #fff; box-shadow: var(--shadow-lg);
    display: none; align-items: center; justify-content: center; transition: background .15s;
}
#backTop:hover { background: var(--primary); }
#backTop.show { display: inline-flex; }

/* ---------------- Breadcrumb / page hero ---------------- */
.breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); padding-top: 16px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .current { color: var(--text); font-weight: 600; }
.page-hero { background: #fff; border-bottom: 1px solid var(--border); padding: 32px 0; }
.page-hero h1 { font-size: clamp(24px, 3vw, 32px); color: var(--secondary); }
.page-hero p { color: var(--text-muted); margin-top: 6px; }
.page-hero-desc { max-width: 680px; }
.page-title { font-size: clamp(26px, 3vw, 34px); margin-bottom: 18px; color: var(--secondary); }

/* ---------------- Layout: sidebar filters ---------------- */
.layout-sidebar { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 992px) { .layout-sidebar { grid-template-columns: 250px 1fr; align-items: start; } }
.filters {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 18px; position: sticky; top: 84px;
}
.filter-form .form-group { margin-bottom: 13px; }

/* ---------------- Forms ---------------- */
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-weight: 600; font-size: 13.5px; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: 6px;
    font-size: 14.5px; font-family: inherit; color: var(--text); background: #fff; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 14%, transparent);
}
textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.inquiry-form-wrap { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.narrow .inquiry-form-wrap { max-width: 760px; margin: 0 auto; }
.inquiry-form-wrap h3 { font-size: 18px; color: var(--secondary); margin-bottom: 16px; }

/* ---------------- Pagination / empty ---------------- */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 28px; flex-wrap: wrap; }
.page-link {
    padding: 9px 14px; border: 1px solid var(--border); border-radius: 5px; color: var(--text);
    font-weight: 500; font-size: 14px;
}
.page-link:hover { border-color: var(--primary); color: var(--primary); }
.page-link.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.empty-state { text-align: center; padding: 44px 20px; background: #fff; border: 1px dashed var(--border); border-radius: var(--radius); }
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); margin-bottom: 16px; }

/* ---------------- Chips ---------------- */
.chip-list { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.chip {
    padding: 7px 15px; border: 1px solid var(--border); border-radius: 999px; background: #fff;
    color: var(--text); font-size: 13.5px; font-weight: 500;
}
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ---------------- Product detail ---------------- */
.product-layout { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 992px) { .product-layout { grid-template-columns: 1fr 1.1fr; align-items: start; } }
.product-gallery { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; }
.gallery-main { aspect-ratio: 1/1; border-radius: 6px; overflow: hidden; background: var(--bg-alt); margin-bottom: 12px; }
.gallery-main-img { width: 100%; height: 100%; object-fit: contain; }
.gallery-thumbs { display: flex; gap: 10px; }
.gallery-thumb { width: 74px; height: 74px; border: 2px solid var(--border); border-radius: 6px; overflow: hidden; padding: 0; cursor: pointer; background: var(--bg-alt); }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--primary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; }

.product-info-cat { color: var(--primary); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.product-title { font-size: clamp(22px, 3vw, 30px); margin: 6px 0 12px; color: var(--secondary); }
.product-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.meta-chip { font-size: 12.5px; padding: 4px 10px; border-radius: 5px; background: var(--bg-alt); border: 1px solid var(--border); color: var(--text-muted); }
.stock-in { color: var(--green); border-color: #bbf7d0; background: #f0fdf4; }
.stock-out { color: var(--accent); border-color: #fde68a; background: #fffbeb; }

.price-block { background: var(--primary-soft); border: 1px solid color-mix(in srgb, var(--primary) 22%, #fff); border-radius: var(--radius); padding: 18px; margin-bottom: 20px; }
.price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.price-main { font-size: 30px; font-weight: 800; color: var(--primary); }
.price-main .rs_smbl { font-size: .8em; }
.price-old { color: var(--text-muted); text-decoration: line-through; font-size: 15px; }
.price-note { color: var(--text-muted); font-size: 13.5px; margin-top: 6px; }

.tier-block { margin-bottom: 20px; }
.tier-block h3 { font-size: 16px; margin-bottom: 10px; color: var(--secondary); }
.tier-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.tier-table th, .tier-table td { padding: 10px 14px; border: 1px solid var(--border); text-align: left; }
.tier-table th { background: var(--secondary); color: #fff; font-weight: 600; }
.tier-table tr:nth-child(even) td { background: var(--bg-alt); }
.tier-table td:last-child { font-weight: 700; color: var(--primary); }

.product-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 20px; }
.pf-item { border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; }
.pf-item strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .4px; color: var(--text-muted); }
.pf-item span { font-size: 14px; font-weight: 600; }
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.product-short-desc { color: var(--text-muted); margin-bottom: 18px; }

.share-block { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.share-label { font-weight: 600; font-size: 14px; color: var(--secondary); }
.share-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.share-btn { font-size: 12.5px; font-weight: 600; padding: 7px 14px; border-radius: 5px; color: #fff; }
.share-whatsapp { background: #25d366; }
.share-facebook { background: #1877f2; }
.share-twitter { background: #0f1419; }
.share-linkedin { background: #0a66c2; }
.share-pinterest { background: #e60023; }
.share-email { background: #64748b; }

.product-description { max-width: 880px; margin-left: auto; margin-right: auto; }
.rich-content { color: var(--text); }
.rich-content h2, .rich-content h3 { margin: 20px 0 10px; color: var(--secondary); }
.rich-content p { margin-bottom: 14px; color: #505050; }
.rich-content ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.rich-content li { margin-bottom: 6px; }
.rich-content a.internal-link { text-decoration: underline; }
.rich-content p.internal-links-related { margin-top: 18px; padding-top: 12px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 13.5px; }
.rich-content p.internal-links-related strong { color: var(--secondary); }

/* ---------------- Product videos ---------------- */
.video-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .video-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.video-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.video-embed { position: relative; padding-top: 56.25%; background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* Homepage video showcase (click-to-play posters) */
.video-section { }
.video-poster { position: relative; padding-top: 56.25%; background: #000; cursor: pointer; }
.video-poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; display: block; background: #000; }
.video-play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 60px; height: 60px; border: 0; border-radius: 50%;
    background: rgba(255, 255, 255, .92); color: #000;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: transform .15s, background .15s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
}
.video-play svg { margin-left: 3px; }
.video-item:hover .video-play { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.video-poster iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.rich-content img { border-radius: var(--radius); margin: 16px 0; }

/* ---------------- Contact ---------------- */
.contact-wrap { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 28px; }
@media (min-width: 992px) { .contact-wrap { grid-template-columns: 1fr 1.4fr; align-items: start; } }
.contact-info { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.contact-info h3 { margin-bottom: 14px; color: var(--secondary); }
.contact-info ul li { margin-bottom: 12px; }
.contact-form .inquiry-form-wrap { box-shadow: none; }
.contact-form h3 { font-size: 18px; color: var(--secondary); margin-bottom: 14px; }

/* ---------------- Info strip / 404 ---------------- */
.info-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; text-align: center; }
.info-strip > div { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 14px; }
.info-strip strong { display: block; font-size: 18px; color: var(--primary); }
.info-strip span { font-size: 13px; color: var(--text-muted); }
.error-404 { padding: 40px 0; }
.error-code { font-size: 90px; font-weight: 800; color: var(--primary-soft); line-height: 1; display: block; }
.error-404 h1 { margin: 10px 0 8px; }
.error-404 p { color: var(--text-muted); margin-bottom: 20px; }
.error-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------------- Blog single ---------------- */
.blog-single { max-width: 820px; }
.blog-single-head h1 { font-size: clamp(24px, 3.4vw, 34px); margin: 8px 0 10px; color: var(--secondary); }
.blog-single-meta { display: flex; gap: 16px; color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.blog-single-media { border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }
.blog-single-share { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--border); }

/* ---------------- Utility ---------------- */
@media (max-width: 991px) {
    .header-actions .btn-whatsapp { display: none; }
    .header-actions .btn-primary { font-size: 13.5px; padding: 10px 14px; }
    .product-features { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Enquiry section CTA panel
   ============================================================ */
.enquiry-cta {
    background: #fff;
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    border-radius: var(--radius);
    padding: 26px 28px;
    box-shadow: var(--shadow);
}
.enquiry-cta h3 { font-size: 19px; color: var(--secondary); margin-bottom: 6px; }
.enquiry-cta > p { color: var(--text-muted); margin-bottom: 14px; }
.enquiry-cta-list { list-style: none; margin-bottom: 18px; }
.enquiry-cta-list li { display: flex; align-items: center; gap: 9px; padding: 5px 0; font-size: 14.5px; }
.ecta-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--primary) 10%, #fff);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}
.enquiry-cta-note { margin-top: 13px; font-size: 13px; color: var(--text-muted); }
.enquiry-cta-note a { font-weight: 600; }

/* ============================================================
   Inquiry Popup Modal
   ============================================================ */
.inquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.inquiry-modal[hidden] { display: none; }

.inquiry-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    animation: imqFade .25s ease;
}
@keyframes imqFade { from { opacity: 0; } }

.inquiry-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 540px;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    animation: imqPop .3s cubic-bezier(.2, .9, .3, 1.15);
    scrollbar-width: thin;
}
@keyframes imqPop {
    from { opacity: 0; transform: translateY(26px) scale(.97); }
}

.inquiry-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    cursor: pointer;
    transition: background .15s, transform .15s;
}
.inquiry-modal-close:hover { background: rgba(255, 255, 255, 0.32); transform: rotate(90deg); }

.inquiry-modal-head {
    background: var(--primary);
    background-image: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 70%, #000));
    color: #fff;
    padding: 26px 28px 20px;
    border-radius: 14px 14px 0 0;
}
.inquiry-modal-head h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 9px 0 2px;
    color: #fff;
    padding-right: 40px;
}
.inquiry-modal-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}
.inquiry-modal-product {
    margin: 7px 0 0;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    padding-right: 40px;
}
.inquiry-modal-product[hidden] { display: none; }
.inquiry-modal-sub {
    margin: 4px 0 0;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.78);
}

.inquiry-modal-body { padding: 22px 28px 26px; }

.inquiry-modal-errors {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13.5px;
    margin-bottom: 14px;
}
.inquiry-modal-errors ul { margin: 0; padding-left: 18px; }
.inquiry-modal-errors li { margin: 2px 0; }

.inquiry-modal-note {
    margin-top: 13px;
    text-align: center;
    font-size: 12.5px;
    color: var(--text-muted);
}
.inquiry-modal-note a { font-weight: 600; }

.inquiry-modal-success { text-align: center; padding: 26px 8px 12px; }
.imq-check {
    width: 76px;
    height: 76px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}
.inquiry-modal-success h4 { font-size: 21px; color: var(--secondary); margin-bottom: 8px; }
.inquiry-modal-success p {
    color: var(--text-muted);
    margin: 0 auto 20px;
    max-width: 360px;
}

@media (max-width: 480px) {
    .inquiry-modal { align-items: flex-end; padding: 0; }
    .inquiry-modal-dialog {
        max-height: 92dvh;
        border-radius: 16px 16px 0 0;
        padding-bottom: env(safe-area-inset-bottom);
    }
    .inquiry-modal-head { padding: 22px 18px 16px; }
    .inquiry-modal-body { padding: 18px 18px 22px; }
}

/* ---------------- About page (professional) ---------------- */
.about-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: #fff;
    padding: 46px 0 62px;
}
.about-hero .breadcrumb { color: rgba(255,255,255,.75); padding-top: 0; }
.about-hero .breadcrumb a { color: rgba(255,255,255,.75); }
.about-hero .breadcrumb a:hover { color: #fff; }
.about-hero .breadcrumb .current { color: #fff; }
.about-hero-title { font-size: clamp(28px, 4vw, 40px); color: #fff; margin: 16px 0 14px; line-height: 1.2; }
.about-hero-title span { color: var(--accent); }
.about-hero-tag { max-width: 740px; color: rgba(255,255,255,.9); font-size: 15.5px; line-height: 1.7; }
.about-hero-actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }
.about-hero-actions .btn { border-radius: 6px; }

.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 768px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 18px; text-align: center; }
.stat-card:hover { box-shadow: var(--shadow); }
.stat-num { display: block; font-size: clamp(26px, 3vw, 34px); font-weight: 800; color: var(--primary); }
.stat-label { display: block; margin-top: 6px; color: var(--text-muted); font-size: 13px; }

.cap-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 640px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cap-grid { grid-template-columns: repeat(3, 1fr); } }
.cap-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.cap-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.cap-icon { width: 54px; height: 54px; border-radius: 10px; background: var(--primary-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.cap-card h3 { font-size: 16.5px; color: var(--secondary); margin-bottom: 8px; }
.cap-card p { color: var(--text-muted); font-size: 13.5px; line-height: 1.65; }

.why-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; display: flex; gap: 14px; align-items: flex-start; }
.why-item:hover { box-shadow: var(--shadow); }
.why-check { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: #f0fdf4; border: 1px solid #bbf7d0; color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; }
.why-item h3 { font-size: 15.5px; color: var(--secondary); margin-bottom: 5px; }
.why-item p { color: var(--text-muted); font-size: 13.5px; line-height: 1.6; }

.quality-band { background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark) 100%); padding: 54px 0; }
.quality-inner { text-align: center; color: #fff; max-width: 780px; margin: 0 auto; }
.quality-inner h2 { color: #fff; font-size: clamp(22px, 3vw, 30px); margin-bottom: 10px; }
.quality-inner > p { color: rgba(255,255,255,.85); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.quality-points { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 24px; }
.quality-points span { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: 999px; padding: 8px 16px; font-size: 13.5px; }
.quality-points b { color: var(--accent); font-weight: 700; }
.quality-inner .btn { border-radius: 6px; }

.about-cta { text-align: center; padding: 34px; }
.about-cta h3 { font-size: clamp(20px, 3vw, 26px); }
.about-bottom .btn { margin-right: 8px; }

/* ---------------- Contact page (professional) ---------------- */
.contact-methods { margin-top: -34px; }
.contact-methods .method-card { display: block; text-decoration: none; }
.contact-methods .method-card:hover { text-decoration: none; }
.method-card p { word-break: break-word; }
.method-action { display: inline-block; margin-top: 12px; font-size: 13.5px; font-weight: 700; color: var(--primary); }
.method-card:hover .method-action { color: var(--secondary); }

.contact-layout { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
@media (min-width: 992px) { .contact-layout { grid-template-columns: 1.5fr 1fr; } }
.contact-form-panel .inquiry-form-wrap { box-shadow: none; }
.contact-head { text-align: left; margin: 0 0 20px; }
.contact-head .overline { display: inline-block; }
.reach-panel { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.reach-panel h3 { font-size: 18px; color: var(--secondary); margin-bottom: 6px; }
.reach-map { margin-top: 18px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; line-height: 0; }
.reach-map iframe { display: block; }
