:root {
  --primary: #0a3d7c;
  --primary-light: #1a5fb4;
  --accent: #e8a020;
  --accent-light: #f5b942;
  --success: #1a8a47;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg-light: #f8fafc;
  --radius: 12px;
}

* { box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: #fff; }

/* TOP BAR */
.top-bar { background: var(--primary); color: #fff; padding: 7px 0; font-size: 13px; }
.top-bar a { color: rgba(255,255,255,.85); text-decoration: none; }
.top-bar a:hover { color: #fff; }

/* LOGO */
.logo-mark { display: inline-flex; align-items: baseline; line-height: 1; }
.logo-doc { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 28px; color: var(--primary); letter-spacing: -1px; }
.logo-mark-text { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 28px; color: var(--accent); letter-spacing: -1px; }
.logo-text-sub { font-size: 10px; color: var(--muted); line-height: 1; margin-top: 2px; font-weight: 500; letter-spacing: .3px; }

/* NAVBAR */
.navbar { padding: 10px 0; }
.nav-link { font-weight: 500; font-size: 14px; color: var(--text) !important; padding: 6px 14px !important; border-radius: 6px; transition: all .2s; }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; background: rgba(10,61,124,.06); }

/* HERO */
.hero { background: linear-gradient(135deg, #0a3d7c 0%, #1a5fb4 50%, #0d4f8b 100%); color: #fff; padding: 90px 0 80px; position: relative; overflow: hidden; }
.hero::before { content:''; position:absolute; top:0; right:0; width:50%; height:100%; background: radial-gradient(ellipse at right, rgba(232,160,32,.15) 0%, transparent 70%); }
.hero::after { content:''; position:absolute; bottom:-50px; left:-50px; width:300px; height:300px; border-radius:50%; background:rgba(255,255,255,.03); }
.hero h1 { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.15; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.1rem; opacity: .88; max-width: 560px; line-height: 1.7; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 50px; padding: 6px 16px; font-size: 13px; margin-bottom: 20px; backdrop-filter: blur(4px); }
.hero-stats { display: flex; gap: 32px; margin-top: 32px; }
.hero-stat { text-align: center; }
.hero-stat .num { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: var(--accent); }
.hero-stat .label { font-size: 12px; opacity: .8; }
.hero-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 20px; padding: 28px; backdrop-filter: blur(10px); }
.hero-card-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.hero-card-item:last-child { border: none; padding-bottom: 0; }
.hero-card-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(232,160,32,.2); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 18px; flex-shrink: 0; }
.hero-card-item .text strong { font-size: 14px; display: block; }
.hero-card-item .text span { font-size: 12px; opacity: .7; }
.btn-hero-primary { background: var(--accent); color: #fff; border: none; padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 15px; text-decoration: none; display: inline-block; transition: all .2s; }
.btn-hero-primary:hover { background: var(--accent-light); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,.4); }
.btn-hero-secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 15px; text-decoration: none; display: inline-block; transition: all .2s; }
.btn-hero-secondary:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.7); }

/* SECTION HEADINGS */
.section-badge { display: inline-block; background: rgba(10,61,124,.08); color: var(--primary); font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 12px; }
.section-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--text); }
.section-title span { color: var(--primary); }
.title-underline { width: 50px; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 2px; margin: 12px auto 0; }

/* MARQUEE STRIP */
.brand-strip { background: var(--primary); padding: 14px 0; overflow: hidden; }
.brand-strip-inner { display: flex; gap: 48px; animation: marquee 25s linear infinite; white-space: nowrap; }
.brand-strip-inner span { color: rgba(255,255,255,.7); font-size: 13px; font-weight: 500; }
.brand-strip-inner strong { color: #fff; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ABOUT SECTION */
.about-section { padding: 80px 0; background: #fff; }
.about-img-wrap { position: relative; }
.about-img-placeholder { background: linear-gradient(135deg, #0a3d7c, #1a5fb4); border-radius: 20px; height: 400px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.about-img-placeholder::before { content: ''; position: absolute; top: -30px; right: -30px; width: 180px; height: 180px; border-radius: 50%; background: rgba(232,160,32,.2); }
.about-float-badge { position: absolute; bottom: -16px; right: -16px; background: var(--accent); color: #fff; padding: 16px 20px; border-radius: 14px; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.6rem; line-height: 1; box-shadow: 0 8px 24px rgba(232,160,32,.4); }
.about-float-badge span { display: block; font-size: 11px; font-weight: 500; opacity: .85; }
.check-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.check-icon { width: 26px; height: 26px; border-radius: 50%; background: rgba(10,61,124,.1); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; margin-top: 2px; }

/* CATEGORY CARDS */
.cat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; text-align: center; transition: all .25s; cursor: pointer; text-decoration: none; color: var(--text); display: block; height: 100%; }
.cat-card:hover { border-color: var(--primary); box-shadow: 0 8px 32px rgba(10,61,124,.12); transform: translateY(-4px); color: var(--text); }
.cat-icon { width: 60px; height: 60px; border-radius: 16px; background: linear-gradient(135deg, rgba(10,61,124,.08), rgba(10,61,124,.15)); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 26px; color: var(--primary); transition: all .25s; }
.cat-card:hover .cat-icon { background: var(--primary); color: #fff; }
.cat-card h6 { font-weight: 600; font-size: 14px; margin: 0; }

/* PRODUCT CARDS */
.product-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .25s; height: 100%; display: flex; flex-direction: column; }
.product-card:hover { box-shadow: 0 12px 40px rgba(10,61,124,.12); transform: translateY(-4px); border-color: var(--primary-light); }
.product-img { height: 200px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.product-form-badge { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,.55); color: #fff; font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: 50px; }
.product-cat-badge { position: absolute; top: 10px; left: 10px; background: var(--primary); color: #fff; font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: 50px; }
.product-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-name { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 6px; letter-spacing: -.3px; }
.product-composition { font-size: 12px; color: var(--muted); line-height: 1.5; margin-bottom: 10px; flex: 1; }
.product-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.btn-product { background: var(--primary); color: #fff; border: none; padding: 9px 20px; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; display: inline-block; transition: all .2s; }
.btn-product:hover { background: var(--primary-light); color: #fff; }
.btn-wa { background: #25d366; color: #fff; border: none; padding: 9px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; display: inline-block; transition: all .2s; }
.btn-wa:hover { background: #1da851; color: #fff; }

/* WHY CHOOSE US */
.why-section { background: var(--bg-light); padding: 80px 0; }
.why-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; height: 100%; transition: all .25s; }
.why-card:hover { border-color: var(--primary); box-shadow: 0 8px 32px rgba(10,61,124,.1); }
.why-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; margin-bottom: 16px; }
.why-card h5 { font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }

/* TESTIMONIALS */
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; height: 100%; }
.stars { color: #f59e0b; font-size: 14px; margin-bottom: 12px; }
.testimonial-card p { font-size: 14px; color: var(--muted); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 16px; flex-shrink: 0; }
.author-name { font-weight: 600; font-size: 14px; }
.author-role { font-size: 12px; color: var(--muted); }

/* CTA SECTION */
.cta-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); padding: 70px 0; color: #fff; }
.cta-section h2 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: clamp(1.5rem, 3vw, 2rem); }

/* PRODUCT DETAIL */
.product-detail-img { background: linear-gradient(135deg, #0a3d7c, #1a5fb4); border-radius: 16px; height: 320px; display: flex; align-items: center; justify-content: center; }
.detail-badge { display: inline-block; padding: 5px 14px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.composition-box { background: var(--bg-light); border-left: 4px solid var(--primary); border-radius: 0 8px 8px 0; padding: 16px 20px; font-size: 14px; line-height: 1.7; }
.breadcrumb-custom { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.breadcrumb-custom a { color: var(--primary); text-decoration: none; }

/* PRODUCTS PAGE FILTERS */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-tab { padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 600; border: 1.5px solid var(--border); background: #fff; color: var(--muted); cursor: pointer; text-decoration: none; transition: all .2s; }
.filter-tab:hover, .filter-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ABOUT PAGE */
.about-page-section { padding: 70px 0; }
.about-page-section h2 { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--primary); }
.about-page-section h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-top: 28px; }
.about-page-section ul { padding-left: 0; list-style: none; }
.about-page-section ul li { padding: 6px 0 6px 24px; position: relative; color: var(--muted); font-size: 15px; }
.about-page-section ul li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.value-card { background: var(--bg-light); border-radius: var(--radius); padding: 24px; border-left: 4px solid var(--primary); }
.value-card h5 { font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--muted); margin: 0; }

/* CONTACT */
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; height: 100%; }
.contact-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(10,61,124,.08); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--primary); margin-bottom: 14px; }
.contact-form .form-control, .contact-form .form-select { border: 1.5px solid var(--border); border-radius: 8px; padding: 11px 14px; font-size: 14px; }
.contact-form .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(10,61,124,.08); }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, #0a3d7c, #1a5fb4); color: #fff; padding: 50px 0; }
.page-hero h1 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0; }
.page-hero p { opacity: .8; font-size: 15px; margin: 8px 0 0; }

/* FOOTER */
.footer-main { background: #0f172a; padding: 60px 0 40px; }
.footer-bottom { background: #080f1f; padding: 16px 0; color: rgba(255,255,255,.5); }
.footer-heading { color: #fff; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact p { color: rgba(255,255,255,.6); font-size: 13px; margin-bottom: 8px; }
.footer-contact i { width: 16px; }
.footer-social { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all .2s; font-size: 16px; }
.footer-social:hover { background: var(--accent); color: #fff; }
.footer .logo-doc { font-size: 22px; color: #fff; }
.footer .logo-mark-text { font-size: 22px; color: var(--accent); }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 9999; display: flex; align-items: center; gap: 10px; background: #25d366; color: #fff; padding: 13px 20px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 14px; box-shadow: 0 6px 24px rgba(37,211,102,.45); transition: all .3s; }
.whatsapp-float:hover { background: #1da851; color: #fff; transform: scale(1.04); }
.whatsapp-float i { font-size: 22px; }
.wa-label { display: none; }
@media(min-width: 768px) { .wa-label { display: inline; } }

/* SEARCH BAR */
.search-bar { display: flex; gap: 8px; max-width: 400px; }
.search-bar input { flex: 1; border: 1.5px solid var(--border); border-radius: 8px; padding: 9px 14px; font-size: 14px; }
.search-bar button { background: var(--primary); color: #fff; border: none; padding: 9px 18px; border-radius: 8px; font-size: 14px; cursor: pointer; }

/* SECTION PADDING */
.section-pad { padding: 70px 0; }
.section-sub { color: var(--muted); font-size: 15px; max-width: 560px; margin: 0 auto; }
.bg-about { background: #f8fafc; }
.mt-6 { margin-top: 4rem; }
.min-vh-75 { min-height: 75vh; }

/* NEW HERO SECTION */
.hero-section { background: linear-gradient(135deg, #0a3d7c 0%, #1a5fb4 60%, #0d4f8b 100%); color: #fff; padding: 80px 0 0; position: relative; overflow: hidden; }
.hero-title { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.2; margin-bottom: 1rem; }
.hero-subtitle { font-size: 1.05rem; opacity: .88; max-width: 520px; line-height: 1.7; margin-bottom: 1.5rem; }
.hero-stats { display: flex; gap: 28px; margin-top: 2rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Poppins', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--accent); display: block; }
.stat-label { font-size: 11px; opacity: .75; display: block; }
.hero-wave { margin-top: 50px; line-height: 0; }
.hero-wave svg { display: block; width: 100%; }

/* HERO VISUAL */
.hero-visual { position: relative; display: inline-block; }
.hero-circle-outer { width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; margin: 0 auto; border: 2px solid rgba(255,255,255,.12); }
.hero-circle-inner { width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; }
.hero-icon { font-size: 5rem; color: rgba(255,255,255,.7); }
.floating-badge { position: absolute; background: rgba(255,255,255,.95); color: var(--text); padding: 7px 14px; border-radius: 50px; font-size: 12px; font-weight: 600; box-shadow: 0 4px 20px rgba(0,0,0,.15); white-space: nowrap; }
.badge-1 { top: 20px; left: -10px; }
.badge-2 { top: 50%; right: -20px; transform: translateY(-50%); }
.badge-3 { bottom: 30px; left: 0; }

/* CATEGORY CARDS (new) */
.category-card { display: flex; align-items: center; gap: 12px; background: #fff; border: 1.5px solid var(--border); border-radius: 12px; padding: 16px 18px; transition: all .25s; color: var(--text); }
.category-card:hover { border-color: var(--primary); box-shadow: 0 6px 24px rgba(10,61,124,.1); transform: translateY(-3px); color: var(--text); }
.category-card .cat-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 10px; background: rgba(10,61,124,.08); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--primary); transition: .25s; }
.category-card:hover .cat-icon { background: var(--primary); color: #fff; }
.category-card .cat-name { font-weight: 600; font-size: 13px; flex: 1; }
.category-card .cat-arrow { color: var(--muted); font-size: 12px; }
.category-card .cat-count { font-size: 11px; color: var(--muted); }

/* PRODUCT CARD (new) */
.product-img-wrap { position: relative; overflow: hidden; background: #f8f9fa; }
.product-img { width: 100%; height: 200px; object-fit: cover; transition: transform .3s; }
.product-card:hover .product-img { transform: scale(1.05); }
.product-comp { font-size: 12px; color: var(--muted); line-height: 1.5; flex: 1; margin-bottom: 8px; }
.product-form { font-size: 12px; color: var(--muted); }
.product-enquire { font-size: 13px; font-weight: 600; color: var(--primary); }

/* ABOUT COLLAGE */
.about-img-collage { position: relative; padding: 20px 20px 20px 0; }
.about-img { border-radius: 16px; object-fit: cover; }
.about-img-main { width: 100%; height: 350px; }
.about-img-sm { position: absolute; bottom: -10px; right: -10px; width: 160px; height: 130px; border: 4px solid #fff; box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.about-exp-badge { position: absolute; top: 0; left: -10px; background: var(--accent); color: #fff; padding: 12px 16px; border-radius: 12px; text-align: center; font-family: 'Poppins', sans-serif; box-shadow: 0 6px 20px rgba(232,160,32,.4); }
.exp-num { font-size: 1.8rem; font-weight: 800; display: block; line-height: 1; }
.exp-text { font-size: 11px; opacity: .85; display: block; }
.why-item { font-size: 14px; font-weight: 500; color: var(--text); }

/* FEATURE CARD */
.feature-card { background: #fff; border: 1.5px solid var(--border); border-radius: 14px; padding: 28px 24px; height: 100%; transition: all .25s; }
.feature-card:hover { border-color: var(--primary); box-shadow: 0 8px 32px rgba(10,61,124,.1); }
.feature-icon { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; margin-bottom: 16px; }
.feature-title { font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.feature-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin: 0; }

/* CTA */
.cta-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .75rem; }
.cta-sub { opacity: .85; font-size: 15px; max-width: 500px; margin: 0 auto 1.5rem; }

/* PAGE HERO */
.page-hero-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 6px; }
.page-hero-sub { opacity: .8; font-size: 15px; margin: 0; }
.page-hero-sm { padding: 30px 0; }

/* FILTER BUTTONS */
.filter-btn { background: #fff; border: 1.5px solid var(--border); color: var(--muted); font-size: 12px; font-weight: 500; border-radius: 50px; padding: 5px 14px; transition: all .2s; text-decoration: none; display: inline-block; }
.filter-btn:hover, .filter-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* PRODUCT DETAIL */
.product-detail-img-wrap { position: relative; border-radius: 16px; overflow: hidden; }
.product-detail-img { width: 100%; height: 380px; object-fit: cover; border-radius: 16px; }
.product-detail-badge { position: absolute; top: 14px; left: 14px; background: var(--primary); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 50px; }
.product-detail-title { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--primary); margin-bottom: .5rem; }
.product-detail-comp { background: var(--bg-light); border-left: 4px solid var(--primary); padding: 12px 16px; border-radius: 0 8px 8px 0; font-size: 14px; }
.badge-form { display: inline-block; background: rgba(10,61,124,.1); color: var(--primary); padding: 5px 14px; border-radius: 50px; font-size: 13px; font-weight: 600; }
.product-detail-desc h5 { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.product-detail-meta { border-top: 1px solid var(--border); padding-top: 1rem; }
.meta-item { font-size: 13px; font-weight: 500; color: var(--text); }

/* MISSION/VISION CARDS */
.mv-card { background: #fff; border: 1.5px solid var(--border); border-radius: 14px; padding: 28px; height: 100%; transition: .25s; }
.mv-card:hover { border-color: var(--primary); box-shadow: 0 8px 24px rgba(10,61,124,.1); }
.mv-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; margin-bottom: 16px; }
.mv-card h4 { font-weight: 700; margin-bottom: 12px; }

/* STAT BOXES */
.stat-box { background: var(--bg-light); border-radius: 12px; padding: 16px 20px; text-align: center; border: 1.5px solid var(--border); }
.stat-box-num { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--primary); display: block; }
.stat-box-label { font-size: 12px; color: var(--muted); }

/* CONTACT INFO */
.contact-info-card { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon { width: 42px; height: 42px; min-width: 42px; border-radius: 10px; background: rgba(10,61,124,.08); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.contact-info-item h6 { font-weight: 600; margin-bottom: 3px; font-size: 14px; }
.contact-form-card { background: #fff; border: 1.5px solid var(--border); border-radius: 14px; padding: 32px; box-shadow: 0 4px 20px rgba(0,0,0,.06); }

/* HERO CAROUSEL */
.hero-carousel-section { position: relative; }
.carousel-img-wrap { position: relative; height: 560px; overflow: hidden; }
.carousel-banner-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.carousel-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(5,30,80,.88) 0%, rgba(10,61,124,.65) 55%, rgba(10,61,124,.18) 100%); }
.carousel-caption-custom { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 2; display: flex; align-items: center; text-align: left; padding: 0; }
.carousel-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 50px; letter-spacing: .5px; }
.carousel-title { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(1.8rem, 4.5vw, 3rem); line-height: 1.2; color: #fff; margin: 8px 0 12px; text-shadow: 0 2px 8px rgba(0,0,0,.2); }
.carousel-sub { font-size: 1.05rem; color: rgba(255,255,255,.88); line-height: 1.65; max-width: 540px; }
.btn-accent { background: var(--accent); color: #fff; border: 2px solid var(--accent); font-weight: 700; border-radius: 50px; transition: all .2s; }
.btn-accent:hover { background: var(--accent-light); border-color: var(--accent-light); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,.45); }
.carousel-control-prev, .carousel-control-next { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.3); top: 50%; transform: translateY(-50%); margin: 0 12px; }
.carousel-control-prev-icon, .carousel-control-next-icon { width: 18px; height: 18px; }
.carousel-indicators { bottom: 16px; }
.carousel-indicators button { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.5); border: none; }
.carousel-indicators button.active { background: var(--accent); }
@media(max-width: 768px) {
  .carousel-img-wrap { height: 360px; }
  .carousel-overlay { background: linear-gradient(180deg, rgba(5,30,80,.82) 0%, rgba(10,61,124,.72) 100%); }
  .carousel-caption-custom { align-items: flex-end; padding-bottom: 48px; text-align: center; }
  .carousel-caption-custom .row > div { padding: 0 20px; }
  .carousel-sub { display: none; }
  .carousel-title { font-size: 1.4rem; }
}

/* STATS BAR */
.stats-bar { background: var(--primary); padding: 0; }
.stats-bar-item { padding: 18px 10px; text-align: center; border-right: 1px solid rgba(255,255,255,.12); }
.stats-bar-num { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--accent); display: block; line-height: 1.1; }
.stats-bar-label { font-size: 11px; color: rgba(255,255,255,.75); display: block; margin-top: 2px; font-weight: 500; }

/* STOCKIST PAGE */
.stockist-filter-bar { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 16px 20px; margin-bottom: 28px; }
.stockist-state-btn { padding: 7px 18px; border-radius: 50px; font-size: 12px; font-weight: 600; border: 1.5px solid var(--border); background: #fff; color: var(--muted); cursor: pointer; text-decoration: none; transition: all .2s; display: inline-block; }
.stockist-state-btn:hover, .stockist-state-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.stockist-card { background: #fff; border: 1.5px solid var(--border); border-radius: 12px; padding: 20px; height: 100%; transition: all .25s; }
.stockist-card:hover { border-color: var(--primary); box-shadow: 0 6px 24px rgba(10,61,124,.1); }
.stockist-card-header { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.stockist-card-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 10px; background: rgba(10,61,124,.08); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.stockist-name { font-weight: 700; font-size: 15px; color: var(--text); margin: 0 0 3px; }
.stockist-city { font-size: 12px; color: var(--muted); }
.stockist-address { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 10px; }
.stockist-phone { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--primary); text-decoration: none; }
.stockist-phone:hover { color: var(--primary-light); }
.stockist-state-heading { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--primary); font-size: 1.1rem; border-bottom: 2px solid var(--accent); padding-bottom: 6px; margin-bottom: 16px; display: inline-block; }

/* ANIMATE ON SCROLL */
.animate-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.animate-on-scroll.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media(max-width: 768px) {
  .hero { padding: 60px 0 50px; }
  .hero-stats { gap: 20px; }
  .about-float-badge { bottom: -12px; right: -8px; }
  .hero-card { display: none; }
  .hero-section { padding: 50px 0 0; }
  .about-img-sm { display: none; }
  .hero-circle-outer { width: 220px; height: 220px; }
  .hero-circle-inner { width: 160px; height: 160px; }
  .hero-icon { font-size: 3.5rem; }
  .floating-badge { display: none; }
}
