/* =========================================================
   KHANZADA ENTERPRISES — Design System v3
   Professional Medical Supply — Teal / Amber / White
   Poppins (headings) + Inter (body)
   ========================================================= */

:root {
  --teal-800: #0A5F5E;
  --teal-700: #0E7C7B;
  --teal-600: #12938F;
  --teal-500: #17A8A3;
  --teal-100: #E3F4F3;
  --teal-50: #F2FAF9;
  --amber-600: #D9720C;
  --amber-500: #E8871E;
  --amber-100: #FCEBD6;
  --ink-900: #1B2A2E;
  --ink-800: #223438;
  --gray-600: #5B6B6E;
  --gray-400: #8CA0A2;
  --gray-100: #F2F5F5;
  --white: #FFFFFF;
  --line: #E4EAEA;

  --heading: 'Poppins', 'Inter', -apple-system, sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1240px;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 4px 20px -4px rgba(14,124,123,0.12);
  --shadow-lg: 0 20px 50px -12px rgba(14,124,123,0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--gray-600);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--heading);
  color: var(--ink-900);
  margin: 0 0 0.5em 0;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); line-height: 1.12; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.15rem; }

.accent { color: var(--teal-600); }

p { margin: 0 0 1em 0; color: var(--gray-600); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

section { padding: 84px 0; }
section.tight { padding: 52px 0; }
section.alt { background: var(--gray-100); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber-500);
  color: var(--white);
  border-color: var(--amber-500);
}
.btn-primary:hover { background: var(--amber-600); border-color: var(--amber-600); }
.btn-teal {
  background: var(--teal-700);
  color: var(--white);
  border-color: var(--teal-700);
}
.btn-teal:hover { background: var(--teal-800); border-color: var(--teal-800); }
.btn-outline {
  background: transparent;
  color: var(--teal-700);
  border-color: var(--teal-700);
}
.btn-outline:hover { background: var(--teal-700); color: var(--white); }
.btn-outline.on-color {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline.on-color:hover { background: var(--white); color: var(--teal-700); }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

/* ---------- Top bar ---------- */
.top-bar {
  background: var(--ink-900);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-item { display: flex; align-items: center; gap: 7px; }
.top-bar a:hover { color: var(--amber-500); }
.top-bar-left { display: flex; gap: 26px; flex-wrap: wrap; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink-900);
}
.logo .mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-800));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading);
  font-size: 0.95rem;
  font-weight: 700;
}
.logo .logo-img {
  height: 76px;
  width: auto;
  flex-shrink: 0;
}
footer .logo { display: flex; align-items: center; gap: 10px; }
.logo .sub {
  font-family: var(--body);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-600);
  display: block;
  font-weight: 600;
  margin-top: 1px;
}

nav.main-nav { display: flex; gap: 30px; align-items: center; }
nav.main-nav > a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-800);
  padding: 8px 0;
  position: relative;
}
nav.main-nav > a:hover, nav.main-nav > a.active { color: var(--teal-700); }

.nav-item-dropdown { position: relative; }
.nav-item-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-item-dropdown .caret { width: 9px; height: 9px; transition: transform 0.2s ease; }
.nav-item-dropdown:hover .caret,
.nav-item-dropdown:focus-within .caret { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  min-width: 240px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.18s ease;
  z-index: 50;
}
.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-800);
}
.dropdown-menu a:hover { background: var(--teal-50); color: var(--teal-700); }
.dropdown-menu a.dd-all { font-weight: 700; color: var(--teal-700); border-bottom: 1px solid var(--line); border-radius: 0; margin-bottom: 6px; padding-bottom: 13px; }
.dropdown-menu .dd-count { font-size: 0.72rem; color: var(--gray-400); }

.header-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle svg { width: 26px; height: 26px; color: var(--ink-900); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink-900);
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.42;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,20,22,0.92) 0%, rgba(10,20,22,0.72) 45%, rgba(10,20,22,0.35) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 620px; padding: 90px 0; }
.hero h1 { color: var(--white); }
.hero h1 .accent { color: var(--teal-400, #4FD1CB); }
.hero .lede { color: rgba(255,255,255,0.82); font-size: 1.08rem; max-width: 50ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

.hero-bullets {
  display: flex;
  gap: 34px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-bullet { display: flex; align-items: flex-start; gap: 12px; max-width: 220px; }
.hero-bullet .dot {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-bullet .dot svg { width: 17px; height: 17px; stroke: white; }
.hero-bullet strong { display: block; color: var(--white); font-size: 0.86rem; font-weight: 700; margin-bottom: 2px; }
.hero-bullet span { font-size: 0.8rem; color: rgba(255,255,255,0.65); }

/* ---------- Info strip (colored, signature band) ---------- */
.info-strip {
  background: var(--teal-700);
  margin-top: -1px;
}
.info-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.info-item {
  padding: 34px 28px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.info-item:last-child { border-right: none; }
.info-item h4 { color: var(--white); font-family: var(--heading); font-size: 1rem; margin-bottom: 8px; }
.info-item p { color: rgba(255,255,255,0.72); font-size: 0.86rem; margin-bottom: 16px; }
.info-item .btn { padding: 9px 16px; font-size: 0.76rem; }

/* ---------- Section headers ---------- */
.section-head { max-width: 640px; margin: 0 auto 50px; text-align: center; }
.section-head.left { margin: 0 0 50px; text-align: left; }

/* ---------- Photo tile grid (services) ---------- */
.tile-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.tile-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tile-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tile-card .photo { aspect-ratio: 1/1; overflow: hidden; }
.tile-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.tile-card .body { padding: 20px 18px 24px; }
.tile-card .cat-label { font-size: 0.72rem; font-weight: 700; color: var(--teal-600); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.tile-card h3 { font-size: 1rem; margin-bottom: 8px; }
.tile-card p { font-size: 0.84rem; margin-bottom: 0; }

/* ---------- Reasons / feature rows ---------- */
.reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.reason-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.reason-card:hover { box-shadow: var(--shadow); border-color: transparent; transform: translateY(-3px); }
.reason-card .photo { aspect-ratio: 16/10; overflow: hidden; }
.reason-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.reason-card .rc-body { padding: 24px 24px 26px; }
.reason-card .num-badge {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--teal-100);
  color: var(--teal-700);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading); font-weight: 700; font-size: 1rem;
  margin-bottom: 18px;
}
.reason-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.reason-card p { font-size: 0.9rem; margin: 0; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 900px; margin: 0 auto; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.testimonial-card p { font-style: italic; color: var(--ink-800); font-size: 0.98rem; margin: 14px 0 0; }
.testimonial-card h3 { margin-top: 16px; font-size: 1rem; }

/* ---------- Trusted-by ---------- */
.trust-strip { background: var(--teal-50); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-logos { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.trust-chip {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--teal-800);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 13px 22px;
  border-radius: 999px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--teal-800), var(--teal-600));
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 50ch; margin: 0 auto 30px; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.62);
  padding: 60px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
footer.site-footer h4 {
  color: var(--white);
  font-family: var(--heading);
  font-size: 0.9rem;
  margin-bottom: 18px;
}
footer.site-footer a { color: rgba(255,255,255,0.62); font-size: 0.9rem; }
footer.site-footer a:hover { color: var(--amber-500); }
footer.site-footer li { margin-bottom: 10px; list-style: none; }
footer.site-footer ul { padding: 0; margin: 0; }
.footer-brand .logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.88rem; max-width: 32ch; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Page header (interior pages) ---------- */
.page-header {
  padding: 54px 0;
  background: var(--teal-50);
  border-bottom: 1px solid var(--line);
}
.page-header .breadcrumb { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 12px; }
.page-header .breadcrumb a:hover { color: var(--teal-700); }
.page-header h1 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 0; }
.page-header p { max-width: 60ch; margin-top: 14px; margin-bottom: 0; }

/* ---------- About page ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-grid img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mv-photo-card { padding: 0; }
.mv-photo-card .mv-photo { aspect-ratio: 16/9; overflow: hidden; }
.mv-photo-card .mv-photo img { width: 100%; height: 100%; object-fit: cover; }
.mv-photo-card .mv-content { padding: 32px 34px 36px; }
.mv-card .icon-badge {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--teal-100); color: var(--teal-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

/* ---------- Services page ---------- */
.service-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 44px;
  align-items: center;
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}
.service-row:first-child { padding-top: 0; }
.service-row:last-child { border-bottom: none; }
.service-row.reverse { grid-template-columns: 1fr 320px; }
.service-row.reverse .service-photo { order: 2; }
.service-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; }
.service-row .num { font-family: var(--heading); font-weight: 700; color: var(--teal-100); font-size: 2.6rem; line-height: 1; margin-bottom: 6px; }
.service-row .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.tag {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--teal-700);
  background: var(--teal-100);
  padding: 6px 13px;
  border-radius: 999px;
}

/* ---------- Certifications ---------- */
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cert-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.cert-card .icon-badge {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--amber-100); color: var(--amber-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.cert-card .code { font-family: var(--heading); font-weight: 700; color: var(--ink-900); font-size: 0.98rem; margin-bottom: 6px; }
.cert-card .desc { font-size: 0.84rem; color: var(--gray-600); margin: 0; }

/* ---------- Catalog search ---------- */
.catalog-search {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1.5px solid var(--line); border-radius: 999px;
  padding: 14px 22px; max-width: 520px; margin-bottom: 18px;
  color: var(--gray-400);
}
.catalog-search:focus-within { border-color: var(--teal-600); }
.catalog-search input {
  border: none; outline: none; flex: 1; font-family: var(--body);
  font-size: 0.94rem; color: var(--ink-900); background: transparent;
}
.search-result-count { font-size: 0.85rem; color: var(--gray-400); margin: 0 0 20px; }

/* ---------- Catalog / Product Grid (e-commerce style, no cart/price) ---------- */
.category-jump { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.cat-pill {
  font-size: 0.84rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink-800);
  cursor: pointer;
  transition: all 0.15s ease;
}
.cat-pill.active { background: var(--teal-700); border-color: var(--teal-700); color: var(--white); }
.cat-pill:hover:not(.active) { border-color: var(--teal-600); color: var(--teal-700); }

.category-section-title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 56px 0 26px;
  padding-top: 8px;
}
.category-section-title:first-of-type { margin-top: 40px; }
.category-section-title h2 { margin: 0; font-size: 1.5rem; }
.category-section-title .count { font-size: 0.85rem; color: var(--gray-400); font-weight: 500; }
.category-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-card .thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--gray-100);
  width: 100%;
}
.product-card .thumb img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.product-card:hover .thumb img { transform: scale(1.05); }
.product-card .thumb.placeholder {
  background: linear-gradient(135deg, var(--teal-50), var(--gray-100));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-card .thumb.placeholder::before {
  content: '';
  width: 42px; height: 42px;
  background-image: url('../images/brand/favicon-192.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.28;
}
.product-card .thumb.placeholder::after {
  content: 'Photo coming soon';
  position: absolute;
  bottom: 10px;
  left: 0; right: 0;
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.03em;
  color: var(--teal-600);
  opacity: 0.7;
  font-weight: 600;
  text-transform: uppercase;
}
.product-card .body { padding: 18px 18px 20px; }
.product-card .cat { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--teal-600); margin-bottom: 6px; }
.product-card h3 { font-size: 0.98rem; margin-bottom: 8px; }
.product-card p { font-size: 0.82rem; margin-bottom: 14px; }
.product-card .btn { width: 100%; justify-content: center; }

/* ---------- SECP Verification (dedicated block) ---------- */
.verify-block {
  background: var(--white);
  border: 2px solid var(--teal-600);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
  align-items: start;
}
.verify-block .verify-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: var(--teal-700); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.verify-block h3 { font-size: 1.2rem; margin-bottom: 10px; }
.verify-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 30px; margin-top: 18px; }
.verify-details .row { border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.verify-details .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--gray-400); font-weight: 700; margin-bottom: 4px; }
.verify-details .value { font-size: 0.92rem; color: var(--ink-900); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  padding: 22px 4px; cursor: pointer; font-family: var(--heading);
  font-weight: 600; font-size: 1rem; color: var(--ink-900);
  display: flex; justify-content: space-between; align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; color: var(--teal-600); flex-shrink: 0; margin-left: 16px; font-weight: 400;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { padding: 0 4px 22px; font-size: 0.92rem; margin: 0; }

@media (max-width: 640px) {
  .verify-block { grid-template-columns: 1fr; }
  .verify-details { grid-template-columns: 1fr; }
}

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.contact-method {
  display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line);
}
.contact-method .icon-badge {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--teal-100); color: var(--teal-700);
  display: flex; align-items: center; justify-content: center;
}
.contact-method h4 { font-family: var(--heading); font-size: 0.95rem; color: var(--ink-900); margin: 0 0 4px; }
.contact-method p { margin: 0; font-size: 0.9rem; }
.contact-method a:hover { color: var(--teal-700); }

form.quote-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--ink-900); margin-bottom: 7px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); font-family: var(--body); font-size: 0.92rem;
  background: var(--white); color: var(--ink-800);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--teal-600);
}
.form-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.8rem; color: var(--gray-400); margin-top: -6px; margin-bottom: 18px; }

.map-embed { border-radius: var(--radius); overflow: hidden; height: 260px; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- WhatsApp floating bubble ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -6px rgba(0,0,0,0.35);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; }
.wa-tooltip {
  position: fixed; bottom: 40px; right: 96px;
  background: var(--ink-900); color: var(--white);
  font-size: 0.82rem; padding: 10px 16px; border-radius: 8px;
  z-index: 998; white-space: nowrap; opacity: 0;
  transform: translateX(6px); transition: all 0.2s ease; pointer-events: none;
}
.wa-float:hover + .wa-tooltip, .wa-tooltip.show { opacity: 1; transform: translateX(0); }

/* ---------- Unified photo treatment (visual consistency across mixed sources) ---------- */
.reason-card .photo img,
.mv-photo-card .mv-photo img,
.tile-card .photo img,
.product-card .thumb img,
.service-photo img,
.about-grid img,
.gallery-strip img {
  filter: saturate(0.94) contrast(1.04) brightness(1.01);
}
.hero-bg { filter: saturate(0.9) contrast(1.05); }
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.hidden { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .tile-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .top-bar { display: none; }
  nav.main-nav { display: none; }
  .nav-toggle { display: block; }
  .icon-btn.whatsapp { display: none; }
  .info-strip .container { grid-template-columns: repeat(2, 1fr); }
  .info-item:nth-child(2) { border-right: none; }
  .info-item:nth-child(1), .info-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .reason-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .service-row, .service-row.reverse { grid-template-columns: 1fr; }
  .service-row.reverse .service-photo { order: 0; }
  .service-photo { max-width: 400px; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-content { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .verify-block { grid-template-columns: 60px 1fr; }
}

@media (max-width: 640px) {
  .tile-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .reason-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .form-cols { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 56px 0; }
  .hero-bullets { gap: 20px; }
}

@media (max-width: 560px) {
  .header-cta .icon-btn,
  .header-cta > a.btn-primary { display: none; }
  .logo .logo-img { height: 52px; }
  .footer-grid { grid-template-columns: 1fr; }
  .verify-block { grid-template-columns: 1fr; }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: var(--white);
  padding: 20px 24px;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.mobile-nav a { display: block; padding: 14px 0; font-weight: 600; color: var(--ink-900); border-bottom: 1px solid var(--line); font-size: 1.02rem; }
.mobile-nav .mobile-sub { padding-left: 16px; }
.mobile-nav .mobile-sub a { font-weight: 500; font-size: 0.92rem; color: var(--gray-600); padding: 11px 0; }

/* ---------- Compact product list (full catalog range) ---------- */
.compact-list { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.compact-list-title {
  font-size: 0.82rem; font-weight: 700; color: var(--gray-600);
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 18px;
}
.compact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 18px; }
.compact-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; background: var(--white); border: 1px solid var(--line);
  border-radius: 8px; font-size: 0.82rem;
}
.compact-item .swatch {
  width: 26px; height: 26px; border-radius: 6px; background: var(--teal-50);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--teal-600);
}
.compact-item .name { flex: 1; color: var(--ink-800); font-weight: 500; line-height: 1.3; }
.compact-item a.qbtn { color: var(--gray-400); flex-shrink: 0; display: flex; }
.compact-item a.qbtn:hover { color: var(--teal-600); }

/* ---------- Header icon buttons (call / whatsapp) ---------- */
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--line); color: var(--teal-700); flex-shrink: 0;
  transition: all 0.15s ease;
}
.icon-btn:hover { border-color: var(--teal-600); background: var(--teal-50); }
.icon-btn.whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.icon-btn.whatsapp:hover { background: #1fb959; border-color: #1fb959; }
.icon-btn svg { width: 18px; height: 18px; }

/* ---------- Gallery strip ---------- */
.gallery-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-strip img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow); }

@media (max-width: 900px) {
  .compact-grid { grid-template-columns: 1fr 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .compact-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr; }
}

:focus-visible { outline: 2px solid var(--teal-600); outline-offset: 2px; }
