/* ── OPTIUS INTERNATIONAL (T) LIMITED — GLOBAL STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --teal: #1A9BA8;
  --teal-dark: #0F6E7A;
  --teal-mid: #3DBECB;
  --teal-light: #E0F5F7;
  --teal-xlight: #F0FAFB;
  --slate: #2E4A5A;
  --slate-light: #EBF1F5;
  --white: #FFFFFF;
  --off-white: #F7FAFB;
  --gray-50: #F9FBFC;
  --gray-100: #F2F6F8;
  --gray-200: #DDE5EA;
  --gray-300: #C4D0D8;
  --gray-400: #94A8B3;
  --gray-600: #5A6E7A;
  --gray-800: #2A3840;
  --accent: #E87722;
  --accent-light: #FEF0E6;
  --green: #27A86A;
  --green-light: #EAF6F0;
  --font: 'Outfit', sans-serif;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-sm: 0 1px 4px rgba(26,155,168,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(26,155,168,0.12), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(26,155,168,0.14), 0 4px 12px rgba(0,0,0,0.08);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--gray-800); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

/* ── TOPBAR ── */
.topbar { background: var(--slate); color: #fff; font-size: 13px; padding: 7px 0; }
.topbar-inner { max-width: 1300px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.82); font-size: 13px; }
.topbar-item a { color: rgba(255,255,255,0.82); transition: color .2s; }
.topbar-item a:hover { color: #fff; }
.topbar-item svg { flex-shrink: 0; opacity: .7; }
.topbar-badge { background: var(--teal); color: #fff; padding: 2px 10px; border-radius: 12px; font-size: 11px; font-weight: 700; letter-spacing: .04em; }

/* ── NAV ── */
nav { background: var(--white); border-bottom: 1.5px solid var(--gray-200); position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-sm); }
.nav-inner { max-width: 1300px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; height: 74px; gap: 0; }
.logo-wrap { display: flex; align-items: center; gap: 0; margin-right: 36px; flex-shrink: 0; }
.logo-wrap img { height: 58px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 5px; padding: 8px 13px; font-size: 14px; font-weight: 500; color: var(--gray-600); border-radius: var(--radius); transition: all .2s; white-space: nowrap; cursor: pointer; border: none; background: none; }
.nav-link:hover, .nav-link.active { color: var(--teal); background: var(--teal-light); }
.nav-link svg { flex-shrink: 0; transition: transform .2s; }
.nav-item:hover > .nav-link svg { transform: rotate(180deg); }
/* Dropdown */
.nav-dropdown { position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); min-width: 260px; padding: 10px 0; z-index: 999; opacity: 0; pointer-events: none; transform: translateY(-8px); transition: all .2s; }
.nav-item:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 18px; font-size: 13.5px; color: var(--gray-600); transition: all .2s; }
.nav-dropdown a:hover { background: var(--teal-xlight); color: var(--teal); }
.nav-dropdown a svg { color: var(--teal); flex-shrink: 0; opacity: .7; }
.nav-dropdown-section { padding: 6px 18px 4px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-400); margin-top: 4px; }
.nav-dropdown hr { border: none; border-top: 1px solid var(--gray-200); margin: 6px 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 7px; padding: 10px 22px; border-radius: var(--radius); font-size: 14px; font-weight: 600; border: none; transition: all .22s; white-space: nowrap; cursor: pointer; font-family: var(--font); }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn-outline:hover { background: var(--teal-light); }
.btn-white { background: #fff; color: var(--teal); font-weight: 700; }
.btn-white:hover { background: var(--teal-light); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #c9641a; transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-sm { padding: 7px 15px; font-size: 13px; }

/* ── SECTION ── */
section { padding: 72px 0; }
.section-inner { max-width: 1300px; margin: 0 auto; padding: 0 28px; }
.section-label { display: inline-block; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--teal); background: var(--teal-light); padding: 5px 14px; border-radius: 20px; margin-bottom: 12px; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 700; color: var(--gray-800); line-height: 1.2; margin-bottom: 12px; }
.section-sub { font-size: 16px; color: var(--gray-600); line-height: 1.75; max-width: 640px; }
.section-header { margin-bottom: 48px; }
.section-header-flex { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 20px; flex-wrap: wrap; }

/* ── HERO ── */
.hero { background: linear-gradient(140deg, #0D2A38 0%, #1A3A4A 45%, #163245 100%); color: #fff; position: relative; overflow: hidden; min-height: 600px; display: flex; align-items: center; }
.hero-bg-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(26,155,168,0.08) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(26,155,168,0.06) 0%, transparent 40%); }
.hero-inner { max-width: 1300px; margin: 0 auto; padding: 80px 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(26,155,168,0.18); border: 1px solid rgba(26,155,168,0.35); color: var(--teal-mid); padding: 6px 14px; border-radius: 20px; font-size: 12.5px; font-weight: 600; margin-bottom: 22px; }
.hero-badge-dot { width: 7px; height: 7px; background: var(--teal-mid); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
.hero h1 { font-size: clamp(2rem, 4vw, 3.3rem); font-weight: 800; line-height: 1.12; margin-bottom: 20px; letter-spacing: -.02em; }
.hero h1 span { color: var(--teal-mid); }
.hero-desc { font-size: 16.5px; color: rgba(255,255,255,0.72); margin-bottom: 34px; line-height: 1.75; max-width: 520px; }
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 32px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.hero-stat-val { font-size: 30px; font-weight: 800; color: #fff; }
.hero-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; font-weight: 500; }
/* Hero card panel */
.hero-panel { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl); padding: 28px; backdrop-filter: blur(4px); }
.hero-panel-title { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,0.45); font-weight: 600; margin-bottom: 16px; }
.hero-prod-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.hero-prod-row:last-child { border-bottom: none; }
.hero-prod-icon { width: 38px; height: 38px; background: rgba(26,155,168,0.22); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-prod-name { font-size: 14px; font-weight: 600; color: #fff; }
.hero-prod-sub { font-size: 12px; color: rgba(255,255,255,0.48); }
.hero-prod-badge { margin-left: auto; font-size: 11px; padding: 3px 10px; border-radius: 10px; font-weight: 600; flex-shrink: 0; }
.badge-teal { background: rgba(26,155,168,0.22); color: var(--teal-mid); }
.badge-green { background: rgba(39,168,106,0.2); color: #5DDB96; }
.hero-cert-bar { display: flex; align-items: center; gap: 12px; background: rgba(39,168,106,0.12); border: 1px solid rgba(39,168,106,0.2); border-radius: var(--radius); padding: 14px 18px; margin-top: 14px; }
.hero-cert-icon { width: 38px; height: 38px; background: rgba(39,168,106,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--teal); padding: 0; }
.trust-inner { max-width: 1300px; margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { display: flex; align-items: center; gap: 13px; padding: 20px 22px; border-right: 1px solid rgba(255,255,255,0.18); }
.trust-item:last-child { border-right: none; }
.trust-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.14); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-text strong { display: block; color: #fff; font-size: 14px; font-weight: 600; }
.trust-text span { color: rgba(255,255,255,0.7); font-size: 12px; }

/* ── CARDS ── */
.card { background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid var(--gray-200); transition: all .25s; }
.card:hover { border-color: var(--teal); box-shadow: var(--shadow-lg); transform: translateY(-3px); }

/* ── PRODUCT CARDS ── */
.product-card { background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid var(--gray-200); overflow: hidden; transition: all .25s; display: flex; flex-direction: column; }
.product-card:hover { border-color: var(--teal); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-img-wrap { height: 210px; overflow: hidden; position: relative; background: var(--gray-100); display: flex; align-items: center; justify-content: center; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-tag { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 6px; z-index: 1; }
.tag-new { background: #E8F5E9; color: #2E7D32; }
.tag-pop { background: var(--teal-light); color: var(--teal-dark); }
.tag-icu { background: #EDE7F6; color: #512DA8; }
.tag-diag { background: #FFF8E1; color: #E65100; }
.product-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: 11px; color: var(--teal); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 5px; }
.product-name { font-size: 15px; font-weight: 600; color: var(--gray-800); margin-bottom: 7px; line-height: 1.4; }
.product-desc { font-size: 13px; color: var(--gray-600); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 8px; }
.product-price { font-size: 13px; font-weight: 700; color: var(--slate); }
.enquire-btn { display: flex; align-items: center; gap: 5px; background: var(--teal); color: #fff; border: none; padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; white-space: nowrap; }
.enquire-btn:hover { background: var(--teal-dark); }

/* ── CATEGORY CARDS ── */
.cat-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; border: 1.5px solid var(--gray-200); transition: all .25s; cursor: pointer; }
.cat-card:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cat-icon { width: 68px; height: 68px; background: var(--teal-light); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; transition: background .25s; }
.cat-card:hover .cat-icon { background: var(--teal); }
.cat-card:hover .cat-icon svg { stroke: #fff; }
.cat-name { font-size: 14px; font-weight: 600; color: var(--gray-800); margin-bottom: 6px; }
.cat-count { font-size: 12px; color: var(--gray-400); }

/* ── SOLUTION CARDS ── */
.solutions-dark { background: var(--slate); }
.sol-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 32px 28px; transition: all .25s; }
.sol-card:hover { background: rgba(26,155,168,0.1); border-color: rgba(26,155,168,0.3); transform: translateY(-3px); }
.sol-icon { width: 52px; height: 52px; background: rgba(26,155,168,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.sol-title { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.sol-desc { font-size: 14px; color: rgba(255,255,255,0.58); line-height: 1.75; margin-bottom: 20px; }
.sol-link { font-size: 13px; color: var(--teal-mid); font-weight: 600; display: flex; align-items: center; gap: 6px; background: none; border: none; cursor: pointer; font-family: var(--font); padding: 0; transition: gap .2s; }
.sol-link:hover { gap: 10px; }

/* ── MODAL ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 9000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .25s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box { background: var(--white); border-radius: var(--radius-xl); max-width: 680px; width: 100%; max-height: 88vh; overflow-y: auto; box-shadow: 0 24px 64px rgba(0,0,0,0.2); transform: translateY(16px); transition: transform .25s; }
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-header { background: linear-gradient(135deg, var(--slate) 0%, #1A3A4A 100%); padding: 32px 36px 28px; border-radius: var(--radius-xl) var(--radius-xl) 0 0; position: relative; }
.modal-header h2 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.modal-header p { font-size: 14px; color: rgba(255,255,255,0.6); }
.modal-close { position: absolute; top: 18px; right: 20px; background: rgba(255,255,255,0.1); border: none; color: rgba(255,255,255,0.7); width: 36px; height: 36px; border-radius: 50%; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; line-height: 1; }
.modal-close:hover { background: rgba(255,255,255,0.2); color: #fff; }
.modal-body { padding: 32px 36px; }
.modal-icon-row { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.modal-icon-box { width: 48px; height: 48px; background: var(--teal-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.modal-feat-title { font-size: 16px; font-weight: 600; color: var(--gray-800); margin-bottom: 5px; }
.modal-feat-desc { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
.modal-list { display: flex; flex-direction: column; gap: 10px; }
.modal-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.modal-list li::before { content: ''; width: 7px; height: 7px; background: var(--teal); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.modal-cta { background: var(--teal-xlight); border-radius: var(--radius); padding: 20px; margin-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.modal-cta p { font-size: 14px; color: var(--slate); font-weight: 500; }

/* ── FORMS ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-600); margin-bottom: 7px; }
.form-input, .form-select, .form-textarea { width: 100%; border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 11px 15px; font-family: var(--font); font-size: 14px; color: var(--gray-800); background: var(--white); outline: none; transition: border-color .2s, box-shadow .2s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,155,168,0.1); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-400); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-full { grid-column: 1 / -1; }

/* ── TESTIMONIALS ── */
.testi-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; border: 1.5px solid var(--gray-200); transition: all .25s; }
.testi-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); }
.testi-stars { color: var(--accent); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { font-size: 14px; color: var(--gray-600); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--teal); font-size: 15px; flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 600; color: var(--gray-800); }
.testi-role { font-size: 12px; color: var(--gray-400); margin-top: 1px; }

/* ── WHY US ── */
.why-feat { display: flex; gap: 16px; align-items: flex-start; }
.why-feat-icon { width: 46px; height: 46px; background: var(--teal-light); border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.why-feat-title { font-size: 15px; font-weight: 600; color: var(--gray-800); margin-bottom: 4px; }
.why-feat-desc { font-size: 13.5px; color: var(--gray-600); line-height: 1.65; }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-mid) 100%); position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='30' stroke='white' stroke-opacity='0.05' stroke-width='1' fill='none'/%3E%3C/svg%3E"); }

/* ── CONTACT ── */
.contact-item-wrap { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon-box { width: 46px; height: 46px; background: var(--teal-light); border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ── FOOTER ── */
footer { background: var(--gray-800); color: rgba(255,255,255,0.65); }
.footer-main { padding: 64px 0 40px; }
.footer-inner { max-width: 1300px; margin: 0 auto; padding: 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-desc { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 290px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 9px; }
.soc-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.soc-btn:hover { background: var(--teal); }
.footer-col h4 { font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.52); transition: color .2s; }
.footer-links a:hover { color: var(--teal-mid); }
.footer-cert-badge { margin-top: 22px; padding: 14px 16px; background: rgba(26,155,168,0.12); border: 1px solid rgba(26,155,168,0.22); border-radius: var(--radius); }
.footer-cert-badge .lbl { font-size: 10px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; margin-bottom: 4px; }
.footer-cert-badge .val { font-size: 12.5px; color: rgba(255,255,255,.75); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom-text { font-size: 12.5px; color: rgba(255,255,255,0.3); }
.footer-bottom a { font-size: 12.5px; color: rgba(255,255,255,0.3); transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: linear-gradient(140deg, #0D2A38 0%, #1A3A4A 100%); color: #fff; padding: 60px 0; position: relative; overflow: hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background: radial-gradient(circle at 70% 50%, rgba(26,155,168,0.1) 0%, transparent 55%); }
.page-hero-inner { max-width: 1300px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem,3.5vw,3rem); font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.68); max-width: 600px; line-height: 1.7; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color .2s; }
.breadcrumb a:hover { color: var(--teal-mid); }
.breadcrumb span { color: var(--teal-mid); }

/* ── SEARCH BAR ── */
.search-bar-section { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 14px 0; }
.search-bar-inner { max-width: 1300px; margin: 0 auto; padding: 0 28px; display: flex; gap: 12px; align-items: center; }
.search-wrap { flex: 1; position: relative; }
.search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--gray-400); pointer-events: none; }
.search-input { width: 100%; height: 46px; border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 0 16px 0 44px; font-family: var(--font); font-size: 14.5px; color: var(--gray-800); outline: none; transition: border-color .2s; }
.search-input:focus { border-color: var(--teal); }
.search-input::placeholder { color: var(--gray-400); }
.search-select { height: 46px; border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 0 14px; font-family: var(--font); font-size: 14px; color: var(--gray-600); background: var(--gray-100); outline: none; cursor: pointer; }

/* ── MISC ── */
.bg-off { background: var(--off-white); }
.bg-slate { background: var(--slate); }
.bg-teal-xlight { background: var(--teal-xlight); }
.divider { height: 1px; background: var(--gray-200); margin: 0; }
.text-teal { color: var(--teal); }
.text-white { color: #fff; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid-products { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.mt-40 { margin-top: 40px; }
.mb-16 { margin-bottom: 16px; }
.text-center { text-align: center; }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 8000; background: #25D366; color: #fff; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform .2s, box-shadow .2s; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-tooltip { position: absolute; right: 68px; top: 50%; transform: translateY(-50%); background: var(--gray-800); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 8px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s; font-family: var(--font); }
.wa-float:hover .wa-tooltip { opacity: 1; }


/* ══════════════════════════════════════════════
   MOBILE NAV — HAMBURGER + SLIDE DRAWER
══════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  border-radius: var(--radius);
  transition: background .2s;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: var(--gray-100); }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--gray-800); border-radius: 2px;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.48);
  z-index: 1100;
  opacity: 0;
  transition: opacity .3s;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

/* Drawer panel */
.mobile-nav-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw);
  background: var(--white);
  z-index: 1200;
  transform: translateX(105%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  display: flex; flex-direction: column;
  -webkit-overflow-scrolling: touch;
  box-shadow: -8px 0 40px rgba(0,0,0,0.18);
}
.mobile-nav-drawer.open { transform: translateX(0); }

/* Drawer header */
.mob-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
  position: sticky; top: 0; z-index: 2;
  flex-shrink: 0;
}
.mob-drawer-head img { height: 42px; width: auto; object-fit: contain; }
.mob-close {
  width: 40px; height: 40px;
  background: var(--gray-100); border: none; border-radius: 50%;
  font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600); line-height: 1;
  transition: background .2s; flex-shrink: 0;
}
.mob-close:hover, .mob-close:active { background: var(--gray-200); }

/* Contact strip */
.mob-contact-strip {
  background: var(--slate);
  padding: 12px 18px;
  display: flex; flex-direction: column; gap: 10px;
  flex-shrink: 0;
}
.mob-contact-strip a {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.82); font-size: 13.5px; font-weight: 500;
  text-decoration: none; min-height: 36px;
}
.mob-contact-strip a svg { flex-shrink: 0; opacity: .75; }

/* Nav links list */
.mob-nav-links { padding: 6px 0 0; flex: 1; }

.mob-nav-section {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gray-400);
  padding: 12px 18px 4px;
}
.mob-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  font-size: 15px; font-weight: 500; color: var(--gray-800);
  text-decoration: none; cursor: pointer;
  border: none; background: none; width: 100%; text-align: left;
  font-family: var(--font);
  border-bottom: 1px solid var(--gray-100);
  transition: background .15s; min-height: 50px;
}
.mob-nav-link:hover, .mob-nav-link:active { background: var(--teal-xlight); color: var(--teal); }
.mob-nav-link.active { color: var(--teal); font-weight: 600; }
.mob-nav-link svg { flex-shrink: 0; color: var(--gray-400); transition: transform .25s; }
.mob-nav-link.expanded svg { transform: rotate(180deg); color: var(--teal); }

/* Collapsible submenu */
.mob-submenu { max-height: 0; overflow: hidden; transition: max-height .3s ease; background: var(--gray-50); }
.mob-submenu.open { max-height: 600px; }
.mob-submenu-label {
  padding: 10px 18px 4px 32px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gray-400);
}
.mob-submenu a {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px 12px 32px;
  font-size: 14px; color: var(--gray-600);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-100);
  min-height: 44px; transition: background .15s;
}
.mob-submenu a:hover, .mob-submenu a:active { background: var(--teal-xlight); color: var(--teal); }
.mob-submenu a::before { content: '›'; color: var(--teal); font-size: 16px; flex-shrink: 0; opacity: .7; }
.mob-submenu hr { border: none; border-top: 1px solid var(--gray-200); margin: 4px 0; }

/* CTA footer inside drawer */
.mob-nav-ctas {
  padding: 14px 16px 18px;
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
  position: sticky; bottom: 0; z-index: 2;
  flex-shrink: 0;
}
.mob-nav-ctas .btn { width: 100%; justify-content: center; font-size: 14px; padding: 13px; min-height: 48px; }

/* ══════════════════════════════════════════════
   BREAKPOINT: 1100px — tablet landscape
══════════════════════════════════════════════ */
@media(max-width:1100px){
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-panel { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section-inner { padding: 0 22px; }
}

/* ══════════════════════════════════════════════
   BREAKPOINT: 900px — tablet portrait
══════════════════════════════════════════════ */
@media(max-width:900px){
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:1.3fr 1fr"],
  [style*="grid-template-columns: 1.3fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:2fr 1fr 1fr 1fr"] { grid-template-columns: 1fr 1fr !important; }
  .hero-stats { gap: 20px; }
  .grid-products { grid-template-columns: repeat(2,1fr); gap: 18px; }
}

/* ══════════════════════════════════════════════
   BREAKPOINT: 700px — mobile
══════════════════════════════════════════════ */
@media(max-width:700px){

  /* ── SHOW MOBILE NAV ── */
  .nav-links  { display: none !important; }
  .nav-actions { display: none !important; }
  .nav-hamburger { display: flex; }
  .mobile-nav-overlay { display: block; pointer-events: none; }
  .mobile-nav-overlay.open { pointer-events: all; }

  /* ── NAV BAR ── */
  .nav-inner { height: 62px; padding: 0 16px; }
  .logo-wrap { margin-right: 0; }
  .logo-wrap img { height: 46px; }

  /* ── TOPBAR ── */
  .topbar { display: none; }

  /* ── SECTIONS ── */
  section { padding: 44px 0; }
  .section-inner { padding: 0 16px; }
  .section-title { font-size: 1.45rem; }
  .section-sub { font-size: 14.5px; }
  .section-header { margin-bottom: 28px; }
  .section-header-flex { flex-direction: column; align-items: flex-start; margin-bottom: 28px; gap: 14px; }
  .section-header-flex .btn { width: 100%; justify-content: center; }

  /* ── HERO ── */
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr !important; padding: 48px 16px 52px; gap: 0; }
  .hero-panel { display: none !important; }
  .hero h1 { font-size: 1.85rem; letter-spacing: -.01em; line-height: 1.18; }
  .hero-desc { font-size: 14.5px; margin-bottom: 22px; }
  .hero-badge { font-size: 11.5px; margin-bottom: 16px; }
  .hero-ctas { flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; padding-top: 24px; flex-wrap: wrap; }
  .hero-stats > div { flex: 1 1 calc(50% - 10px); min-width: 0; }
  .hero-stat-val { font-size: 22px; }
  .hero-stat-lbl { font-size: 11px; }

  /* ── TRUST BAR ── */
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .trust-item { padding: 13px 11px; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12) !important; }
  .trust-item:last-child { border-bottom: none; }
  .trust-text strong { font-size: 12px; }
  .trust-text span { font-size: 10.5px; }
  .trust-icon { width: 34px; height: 34px; }

  /* ── GRIDS ── */
  .grid-2, .grid-3 { grid-template-columns: 1fr !important; gap: 16px; }
  .grid-4 { grid-template-columns: 1fr 1fr !important; gap: 12px; }
  .grid-products { grid-template-columns: 1fr !important; gap: 14px; }

  /* Collapse ALL inline grids */
  [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  /* Preserve small 2-col chip grids */
  [style*="grid-template-columns:1fr 1fr"][style*="gap:12px"],
  [style*="grid-template-columns: 1fr 1fr"][style*="gap:12px"] { grid-template-columns: 1fr 1fr !important; }
  [style*="gap:64px"] { gap: 28px !important; }

  /* ── PRODUCT CARDS ── */
  .product-img-wrap { height: 170px; }
  .product-body { padding: 14px 15px; }
  .product-name { font-size: 14px; }
  .product-desc { font-size: 13px; }
  .enquire-btn { padding: 9px 12px; font-size: 12.5px; }

  /* ── CATEGORY CARDS ── */
  .cat-card { padding: 18px 14px; }
  .cat-icon { width: 52px; height: 52px; }

  /* ── SOLUTION CARDS ── */
  .sol-card { padding: 22px 18px; }

  /* ── PAGE HERO ── */
  .page-hero { padding: 34px 0 40px; }
  .page-hero-inner { padding: 0 16px; }
  .page-hero h1 { font-size: 1.65rem; }
  .page-hero p { font-size: 14px; }
  .breadcrumb { font-size: 12px; margin-bottom: 12px; }

  /* ── SEARCH BAR ── */
  .search-bar-section { padding: 12px 0; }
  .search-bar-inner { flex-wrap: wrap; gap: 8px; }
  .search-select { width: 100%; }
  .search-bar-inner .btn { width: 100%; justify-content: center; }

  /* ── BUTTONS ── */
  .btn-lg { padding: 13px 22px; font-size: 14px; }
  .btn { padding: 10px 18px; }
  .btn, .enquire-btn { min-height: 44px; }

  /* ── MODALS — bottom sheet ── */
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-box { width: 100%; max-width: 100%; max-height: 92vh; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .modal-header { padding: 20px 18px 16px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .modal-header h2 { font-size: 17px; }
  .modal-body { padding: 18px; }
  .modal-icon-row { flex-direction: column; gap: 8px; }
  .modal-cta { flex-direction: column; }
  .modal-cta .btn { width: 100%; justify-content: center; }

  /* ── FORMS ── */
  .form-group { margin-bottom: 14px; }
  .form-input, .form-select, .form-textarea { font-size: 16px !important; }
  .form-input, .form-select { height: 50px; }
  .form-grid { grid-template-columns: 1fr !important; gap: 0; }

  /* ── WHY FEATS ── */
  .why-feat { gap: 12px; }
  .why-feat-icon { width: 40px; height: 40px; flex-shrink: 0; }

  /* ── TESTIMONIALS ── */
  .testi-card { padding: 18px; }

  /* ── CTA BANNER ── */
  .cta-banner .section-inner > div[style*="display:flex"] { flex-direction: column !important; align-items: stretch !important; }
  .cta-banner .btn { width: 100% !important; justify-content: center !important; }

  /* ── CONTACT PAGE ── */
  .contact-card { padding: 18px; }
  .map-placeholder { height: 220px; }

  /* ── FOOTER ── */
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .footer-main { padding: 40px 0 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-brand-desc { max-width: 100%; }

  /* ── SERVICES JUMP NAV — horizontal scroll ── */
  [style*="position:sticky"][style*="top:74px"] {
    top: 62px !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  [style*="position:sticky"][style*="top:74px"]::-webkit-scrollbar { display: none; }
  [style*="position:sticky"][style*="top:74px"] .section-inner { padding-top: 0 !important; padding-bottom: 0 !important; }
  [style*="position:sticky"][style*="top:74px"] .section-inner > div { white-space: nowrap; flex-wrap: nowrap !important; overflow-x: visible; padding-bottom: 2px; }

  /* ── SERVICE SECTIONS ── */
  .service-section { padding: 44px 0; }
  .service-section > .section-inner > div[style] { flex-direction: column !important; }

  /* ── WHATSAPP FLOAT ── */
  .wa-float { bottom: 16px; right: 14px; width: 52px; height: 52px; }
  .wa-tooltip { display: none; }

  /* ── PREVENT OVERFLOW ── */
  body { overflow-x: hidden; }
  img { max-width: 100%; }

  /* ── REMOVE HOVER ANIMATIONS ON TOUCH ── */
  .product-card:hover, .cat-card:hover, .testi-card:hover, .card:hover { transform: none; box-shadow: none; }
}

/* ══════════════════════════════════════════════
   BREAKPOINT: 480px — small phones
══════════════════════════════════════════════ */
@media(max-width:480px){
  .hero h1 { font-size: 1.6rem; }
  .section-title { font-size: 1.3rem; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .grid-products { grid-template-columns: 1fr !important; }
  .hero-stats > div { flex: 1 1 calc(50% - 10px); }
  .product-img-wrap { height: 150px; }
  form .btn-lg { font-size: 14px; padding: 13px 18px; }
  .modal-box { max-height: 96vh; }
  .page-hero { padding: 28px 0 32px; }
  .page-hero h1 { font-size: 1.45rem; }
  [style*="grid-template-columns:2fr 1fr 1fr 1fr"],
  [style*="grid-template-columns: 2fr 1fr 1fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(auto-fill,minmax(220px,1fr))"] { grid-template-columns: 1fr !important; }
}
