/* ================================================
   SHRI GOVIND PHARMACY — contact.css
   Mobile-First | FA 6.5 Icons Verified
   ================================================ */

/* ── CSS VARIABLES ── */
:root {
  --primary:        #1c8125;
  --primary-light:  #27ae60;
  --primary-dark:   #145c1a;
  --primary-glow:   rgba(28,129,37,0.15);
  --secondary:      #def2f1;
  --accent:         #ff6b6b;
  --text-dark:      #17252a;
  --text-light:     #feffff;
  --text-muted:     #6b7c85;
  --bg-light:       #f8fafc;
  --card-bg:        #ffffff;
  --border-color:   #e2e8f0;
  --shadow:         0 4px 15px rgba(0,0,0,0.05);
  --shadow-md:      0 8px 28px rgba(0,0,0,0.10);
  --shadow-lg:      0 20px 60px rgba(0,0,0,0.12);
  --transition:     all 0.3s ease;
  --radius:         14px;
  --radius-sm:      8px;
  --radius-pill:    50px;
}
[data-theme="dark"] {
  --primary:        #27ae60;
  --primary-light:  #2ecc71;
  --primary-dark:   #1c8125;
  --primary-glow:   rgba(39,174,96,0.22);
  --secondary:      #0d1f12;
  --bg-light:       #0b0c10;
  --card-bg:        #1f2833;
  --text-dark:      #c5c6c7;
  --text-muted:     #7f8c95;
  --text-light:     #ffffff;
  --border-color:   #2a3a2c;
  --shadow:         0 4px 20px rgba(0,0,0,0.4);
  --shadow-md:      0 8px 30px rgba(0,0,0,0.5);
  --shadow-lg:      0 20px 60px rgba(0,0,0,0.6);
}

/* ── RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}
a           { text-decoration: none; color: inherit; }
ul          { list-style: none; }
img         { max-width: 100%; display: block; }
button      { font-family: inherit; cursor: pointer; }
.container  { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ── FOCUS RING ── */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── SCROLL REVEAL ── */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal    { opacity: 0; }
.reveal.in { animation: revealUp 0.5s ease forwards; }

/* ================================================
   TOPBAR
   ================================================ */
.topbar {
  background: var(--primary);
  color: #fff;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 36px;
  overflow: hidden;
  position: relative;
}
.topbar-ticker {
  flex: 1;
  position: relative;
  height: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tick-slide {
  position: absolute;
  left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.83rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.tick-slide i { font-size: 0.8rem; margin-right: 2px; }
.tick-active  { opacity: 1; transform: translateY(0); }

.topbar-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  padding: 4px 6px;
  border-radius: 5px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  min-height: 30px;
  flex-shrink: 0;
}
.topbar-close:hover { color: #fff; background: rgba(255,255,255,0.15); }

/* ================================================
   HEADER / NAVBAR
   ================================================ */
.main-header {
  background: var(--card-bg);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 300;
  transition: var(--transition);
}
[data-theme="dark"] .main-header { border-bottom: 1px solid var(--border-color); }
.navbar   { padding: 0.9rem 0; }
.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  text-decoration: none;
  min-height: 44px;
}
.logo-ico   { font-size: 1.7rem; flex-shrink: 0; color: var(--primary); }
.logo-text  { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main  { font-size: 1.15rem; font-weight: 800; color: var(--primary); }
.brand-sub  {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.icon-btn {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--text-dark);
  padding: 7px;
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
}
.icon-btn:hover { background: var(--secondary); color: var(--primary); }

.btn {
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  border: none;
  font-weight: 700;
  font-family: inherit;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  white-space: nowrap;
  min-height: 40px;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

/* ================================================
   BREADCRUMB BAR
   ================================================ */
.breadcrumb-bar {
  background: var(--secondary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}
[data-theme="dark"] .breadcrumb-bar { background: #0d1f12; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb a          { color: var(--primary); font-weight: 600; display: flex; align-items: center; gap: 5px; padding: 2px 0; }
.breadcrumb a:hover    { text-decoration: underline; }
.bc-sep                { font-size: 0.65rem; }

/* ================================================
   HERO BANNER
   ================================================ */
.contact-hero {
  background: linear-gradient(140deg, #0a2e10 0%, #185220 40%, #1c8125 70%, #27ae60 100%);
  padding: 72px 0 88px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-wave-bottom {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 50px;
  background: var(--bg-light);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.92);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.contact-hero h1 em { font-style: italic; color: #9ce8b0; }
.contact-hero p {
  color: rgba(255,255,255,0.80);
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 30px;
}
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
}
.chip i { color: #9ce8b0; font-size: 0.85rem; }

/* ================================================
   QUICK CONTACT CARDS
   ================================================ */
.quick-cards-sec { padding: 56px 0 20px; }
.quick-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.qc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--card-bg);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  color: var(--text-dark);
}
.qc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.qc-card:hover              { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.qc-card:hover::before      { transform: scaleX(1); }
.qc-card:hover .qc-icon     { background: var(--primary); color: #fff; border-color: var(--primary); }
.qc-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(28,129,37,0.08);
  border: 1.5px solid rgba(28,129,37,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 14px;
  transition: var(--transition);
}
.qc-card h3     { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.qc-card p      { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 6px; }
.qc-card strong { font-size: 0.82rem; color: var(--primary); word-break: break-all; }

/* WhatsApp card */
.qc-wa .qc-icon       { background: #e8faf0; border-color: #b3e6c5; color: #25d366; }
.qc-wa:hover .qc-icon { background: #25d366; border-color: #25d366; color: #fff; }
.qc-wa::before        { background: #25d366; }
.qc-wa strong         { color: #25d366; }

/* ================================================
   SHARED SECTION STYLES
   ================================================ */
.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(28,129,37,0.08);
  border: 1px solid rgba(28,129,37,0.15);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.55rem, 3.5vw, 1.9rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}
.section-heading em { font-style: italic; color: var(--primary); }
.section-sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }

/* ================================================
   FORM + MAP
   ================================================ */
.form-map-sec { padding: 56px 0 80px; }
.form-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* ── Form column ── */
.form-col {
  background: var(--card-bg);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
form         { display: flex; flex-direction: column; gap: 18px; }
.field-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-group label {
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.req { color: var(--accent); }

/* Input wrap */
.field-wrap { position: relative; }
.ficon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
  pointer-events: none;
  transition: color 0.25s;
  z-index: 1;
}
.ficon-top { top: 15px; transform: none; }
.field-wrap:focus-within .ficon { color: var(--primary); }

.field-wrap input,
.field-wrap select,
.field-wrap textarea {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  color: var(--text-dark);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  line-height: 1.5;
  -webkit-appearance: none;
  appearance: none;
}
.field-wrap input::placeholder,
.field-wrap textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
.field-wrap input:focus,
.field-wrap select:focus,
.field-wrap textarea:focus {
  border-color: var(--primary);
  background: var(--card-bg);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.field-wrap input.err,
.field-wrap select.err,
.field-wrap textarea.err { border-color: var(--accent); }

/* Select */
.select-wrap select  { cursor: pointer; padding-right: 36px; }
.select-arrow {
  position: absolute;
  right: 13px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.62rem;
  pointer-events: none;
  z-index: 1;
}

/* Textarea */
.field-wrap textarea { resize: vertical; min-height: 120px; padding-top: 13px; }

/* Char counter */
.char-ctr      { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; }
.char-ctr.over { color: var(--accent); }

/* Field error */
.field-error      { font-size: 0.74rem; color: var(--accent); display: none; align-items: center; gap: 5px; }
.field-error.show { display: flex; }

/* Captcha row */
.captcha-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--bg-light);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
}
.check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-dark);
  user-select: none;
}
.check-label input[type="checkbox"] { display: none; }
.check-box {
  width: 20px; height: 20px;
  border: 1.5px solid var(--border-color);
  border-radius: 5px;
  background: var(--card-bg);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  font-size: 11px; color: #fff;
  flex-shrink: 0;
}
.check-label input:checked + .check-box              { background: var(--primary); border-color: var(--primary); }
.check-label input:checked + .check-box::after       { content: '✓'; }
.link-green        { color: var(--primary); font-weight: 600; }
.link-green:hover  { text-decoration: underline; }
.captcha-badge {
  display: flex; align-items: center; gap: 5px;
  opacity: 0.4; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.captcha-badge i { font-size: 1.1rem; color: var(--primary); }

/* Submit button */
.submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.97rem;
  font-weight: 700;
  font-family: inherit;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  min-height: 50px;
}
.submit-btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px var(--primary-glow); }
.submit-btn:active { transform: none; }
.sbtn-text   { display: flex; align-items: center; justify-content: center; gap: 8px; transition: opacity 0.2s; }
.sbtn-loader { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s; }
.submit-btn.loading .sbtn-text   { opacity: 0; }
.submit-btn.loading .sbtn-loader { opacity: 1; }

/* Spinner */
.spin-ring {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
.spin-dark { border-color: rgba(28,129,37,0.2); border-top-color: var(--primary); }
@keyframes spin { to { transform: rotate(360deg); } }

/* Ripple */
.ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: scale(0);
  animation: rippleAnim 0.65s ease-out;
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

.secure-note {
  text-align: center;
  font-size: 0.74rem;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.secure-note i { color: var(--primary); }

/* ── Map column ── */
.map-col  { display: flex; flex-direction: column; }
.map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-md);
  margin-bottom: 18px;
}
.map-wrap iframe { display: block; width: 100%; }
.map-btn {
  position: absolute;
  bottom: 12px; right: 12px;
  background: var(--primary); color: #fff;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.79rem; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 14px var(--primary-glow);
  transition: var(--transition);
}
.map-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* Store details */
.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: var(--card-bg);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.store-item { display: flex; align-items: flex-start; gap: 11px; }
.store-ico {
  width: 34px; height: 34px;
  flex-shrink: 0;
  background: rgba(28,129,37,0.08);
  border: 1px solid rgba(28,129,37,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 0.82rem;
}
.store-item strong { font-size: 0.8rem; font-weight: 700; display: block; margin-bottom: 3px; }
.store-item p      { font-size: 0.74rem; color: var(--text-muted); line-height: 1.5; }

/* Social */
.social-row  { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.social-row > span { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }
.social-icons { display: flex; gap: 8px; }
.soc-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: #fff;
  transition: var(--transition);
}
.soc-btn:hover  { transform: translateY(-3px) scale(1.08); }
.soc-fb { background: #1877f2; } .soc-fb:hover { background: #0e5fcb; }
.soc-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.soc-wa { background: #25d366; } .soc-wa:hover { background: #1aad52; }
.soc-yt { background: #ff0000; } .soc-yt:hover { background: #c00; }
.soc-x  { background: #000; }   .soc-x:hover  { background: #333; }

/* ================================================
   WHY CHOOSE US
   ================================================ */
.why-sec { padding: 70px 0; background: var(--secondary); }
[data-theme="dark"] .why-sec { background: #0a1a0c; }
.why-head { text-align: center; margin-bottom: 44px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-ico {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(28,129,37,0.08);
  border: 1px solid rgba(28,129,37,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--primary);
  margin: 0 auto 16px;
  transition: var(--transition);
}
.why-card:hover .why-ico { background: var(--primary); color: #fff; box-shadow: 0 6px 18px var(--primary-glow); }
.why-card h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 8px; }
.why-card p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }

/* ================================================
   FAQ
   ================================================ */
.faq-sec { padding: 80px 0; }
.faq-layout { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: start; }
.faq-sidebar { position: sticky; top: 100px; }
.faq-sidebar p { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366; color: #fff;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem; font-weight: 700;
  transition: var(--transition);
}
.wa-btn i    { font-size: 1.1rem; }
.wa-btn:hover { background: #1aad52; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(37,211,102,0.3); }
.faq-item {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 10px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 20px; gap: 12px;
  font-size: 0.88rem; font-weight: 700;
  color: var(--text-dark); text-align: left;
  font-family: inherit;
  transition: color 0.25s;
  min-height: 56px;
}
.faq-q:hover                     { color: var(--primary); }
.faq-q[aria-expanded="true"]     { color: var(--primary); }
.faq-arrow {
  font-size: 0.7rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s;
}
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); color: var(--primary); }
.faq-ans       { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-ans.open  { max-height: 200px; }
.faq-ans p {
  padding: 14px 20px 18px;
  font-size: 0.84rem; color: var(--text-muted);
  line-height: 1.75; border-top: 1px solid var(--border-color);
}

/* ================================================
   NEWSLETTER
   ================================================ */
.nl-sec { background: linear-gradient(135deg, #145c1a 0%, #1c8125 55%, #27ae60 100%); padding: 65px 0; }
.nl-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.nl-left  { max-width: 420px; }
.nl-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.2;
}
.nl-left h2 em { font-style: italic; color: #9ce8b0; }
.nl-left p     { color: rgba(255,255,255,0.75); font-size: 0.88rem; }
.nl-right      { flex: 1; max-width: 460px; }
.nl-form       { display: flex; gap: 10px; margin-bottom: 10px; }
.nl-input-wrap { position: relative; flex: 1; min-width: 0; }
.nl-ico {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); font-size: 0.85rem; pointer-events: none;
}
.nl-input-wrap input {
  width: 100%;
  padding: 13px 14px 13px 40px;
  border-radius: var(--radius-sm);
  border: none; outline: none;
  background: rgba(255,255,255,0.95);
  color: var(--text-dark);
  font-size: 0.9rem; font-family: inherit;
  min-height: 48px;
}
.nl-input-wrap input::placeholder { color: var(--text-muted); }
.nl-input-wrap input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.3); }
.nl-btn {
  padding: 13px 22px;
  border: none; border-radius: var(--radius-sm);
  background: #fff; color: var(--primary);
  font-weight: 700; font-size: 0.88rem;
  white-space: nowrap; transition: var(--transition);
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 8px;
  min-height: 48px; flex-shrink: 0;
}
.nl-btn:hover { background: #f0fdf4; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.15); }
.nbtn-txt  { display: flex; align-items: center; gap: 7px; transition: opacity 0.2s; }
.nbtn-spin { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s; }
.nl-btn.loading .nbtn-txt  { opacity: 0; }
.nl-btn.loading .nbtn-spin { opacity: 1; }
.nl-note { font-size: 0.72rem; color: rgba(255,255,255,0.62); display: flex; align-items: center; gap: 5px; }
.nl-note i { color: #9ce8b0; }

/* ================================================
   FOOTER
   ================================================ */
.site-footer  { background: #17252a; color: #94a3b8; padding: 68px 0 22px; }
[data-theme="dark"] .site-footer { background: #060708; }
.footer-grid  { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 3rem; margin-bottom: 42px; }

/* Footer logo specifics */
.footer-logo                { margin-bottom: 14px; }
.ft-logo-ico                { font-size: 1.5rem; color: #fff !important; flex-shrink: 0; }
.ft-logo-main               { font-size: 0.95rem !important; color: var(--primary-light) !important; }
.ft-brand-sub               { color: rgba(255,255,255,0.4) !important; }
.footer-brand p             { font-size: 0.84rem; line-height: 1.72; margin-bottom: 18px; }
.ft-socials                 { display: flex; gap: 9px; }
.ft-socials a {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; transition: var(--transition);
}
.ft-socials a:hover { background: var(--primary-light); transform: translateY(-3px); }

.footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.83rem; color: #94a3b8; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.footer-col ul li a i { font-size: 0.55rem; color: var(--primary); }
.footer-col ul li a:hover { color: var(--primary-light); padding-left: 4px; }
.ft-active { color: var(--primary-light) !important; }

.ft-contact li  { display: flex; align-items: flex-start; gap: 9px; font-size: 0.83rem; margin-bottom: 11px; line-height: 1.5; }
.ft-contact i   { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.ft-contact a   { color: #94a3b8; transition: color 0.25s; }
.ft-contact a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.79rem; flex-wrap: wrap; gap: 10px;
}
.fb-links { display: flex; gap: 16px; }
.fb-links a { color: #94a3b8; transition: color 0.25s; }
.fb-links a:hover { color: var(--primary-light); }

.footer-dev {
  color: #a8b8a8;
  font-size: 0.8rem;
  line-height: 1.6;
  margin-top: 10px;
  max-width: 100%;
}

.footer-dev a {
  color: var(--primary-light);
  text-decoration: underline;
}

.footer-dev a:hover {
  color: var(--primary);
}

/* ================================================
   TOAST
   ================================================ */
.toast-zone {
  position: fixed;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 9999;
  display: flex; flex-direction: column; gap: 8px; align-items: center;
  pointer-events: none;
  width: max-content; max-width: 90vw;
}
.toast {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  background: var(--card-bg);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-pill);
  font-size: 0.85rem; color: var(--text-dark);
  box-shadow: var(--shadow-lg);
  pointer-events: auto;
  white-space: nowrap;
  animation: toastIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.toast.success { 
  background: linear-gradient(135deg, #1c8125 0%, #2d9f40 100%);
  color: white;
  border: none;
  box-shadow: 0 8px 32px rgba(28, 129, 37, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
}
.toast.error {
  background: linear-gradient(135deg, #d32f2f 0%, #e53935 100%);
  color: white;
  border: none;
  box-shadow: 0 8px 32px rgba(227, 57, 53, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
}
.tdot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; background: rgba(255, 255, 255, 0.9); animation: pulse 2s ease-in-out infinite; }
.toast.success .tdot { box-shadow: 0 0 12px rgba(255, 255, 255, 0.8); }
.toast.error .tdot { box-shadow: 0 0 12px rgba(255, 255, 255, 0.8); }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(12px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ================================================
   BACK TO TOP
   ================================================ */
.btt {
  position: fixed; bottom: 24px; right: 20px; z-index: 800;
  width: 40px; height: 40px;
  border-radius: 50%; border: none;
  background: var(--primary); color: #fff;
  font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px var(--primary-glow);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
  pointer-events: none;
}
.btt.show  { opacity: 1; transform: none; pointer-events: auto; }
.btt:hover { background: var(--primary-dark); }

/* ── Safe area (iPhone notch / home bar) ── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .btt        { bottom: calc(20px + env(safe-area-inset-bottom)); }
  .toast-zone { bottom: calc(24px + env(safe-area-inset-bottom)); }
}

/* ── Touch: remove stuck hover transforms ── */
@media (hover: none) {
  .qc-card:hover  { transform: none; box-shadow: var(--shadow); }
  .why-card:hover { transform: none; box-shadow: var(--shadow); }
  .soc-btn:hover  { transform: none; }
  .qc-card:active { opacity: 0.85; transform: scale(0.98); }
}

/* ================================================
   RESPONSIVE — TABLET 1132px
   ================================================ */
@media (max-width: 1132px) {
  .quick-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .form-map-grid    { grid-template-columns: 1fr; gap: 36px; }
  .why-grid         { grid-template-columns: repeat(2, 1fr); }
  .faq-layout       { grid-template-columns: 1fr; gap: 24px; }
  .faq-sidebar      { position: static; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .nl-inner         { flex-direction: column; text-align: center; }
  .nl-left p        { margin: 0 auto; }
  .nl-right         { width: 100%; max-width: 100%; }
}

/* ================================================
   RESPONSIVE — MOBILE 955px
   ================================================ */
@media (max-width: 955px) {
  .container    { padding: 0 16px; }

  /* Topbar */
  .tick-slide   { font-size: 0.72rem; }

  /* Header */
  .logo-main    { font-size: 0.92rem; }
  .brand-sub    { display: none; }
  .logo-ico     { font-size: 1.3rem; }
  .btn-outline  { font-size: 0.8rem; padding: 8px 14px; }

  /* Hero */
  .contact-hero   { padding: 50px 0 72px; }
  .contact-hero h1{ font-size: 1.9rem; }
  .contact-hero p { font-size: 0.87rem; }
  .chip           { font-size: 0.75rem; padding: 7px 13px; }

  /* Quick cards */
  .quick-cards-sec  { padding: 40px 0 12px; }
  .quick-cards-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .qc-card          { padding: 20px 14px; }
  .qc-icon          { width: 44px; height: 44px; font-size: 1.1rem; }

  /* Form */
  .form-map-sec  { padding: 36px 0 56px; }
  .form-col      { padding: 22px 16px; }
  .field-row     { grid-template-columns: 1fr; }
  .map-wrap iframe { height: 240px; }
  .store-grid    { grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px; }
  .store-ico     { width: 30px; height: 30px; }
  .store-item p  { font-size: 0.7rem; }

  /* Why */
  .why-sec   { padding: 50px 0; }
  .why-grid  { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-card  { padding: 22px 16px; }

  /* FAQ */
  .faq-sec   { padding: 50px 0; }
  .faq-q     { padding: 15px 16px; font-size: 0.84rem; }
  .faq-ans p { font-size: 0.82rem; padding: 12px 16px 16px; }

  /* Newsletter */
  .nl-sec     { padding: 50px 0; }
  .nl-left h2 { font-size: 1.55rem; }
  .nl-form    { flex-direction: column; gap: 10px; }
  .nl-btn     { width: 100%; justify-content: center; }

  /* Footer */
  .site-footer   { padding: 46px 0 20px; }
  .footer-grid   { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .footer-logo   { justify-content: center; }
  .ft-socials    { justify-content: center; }
  .ft-contact li { justify-content: center; }
  .footer-col ul li a:hover { padding-left: 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .fb-links      { justify-content: center; gap: 14px; }

  .toast { font-size: 0.78rem; padding: 10px 16px; white-space: normal; }
  .btt   { bottom: 18px; right: 14px; width: 36px; height: 36px; }

  /* iOS — prevent auto-zoom on input focus */
  input, select, textarea { font-size: 16px !important; }
}

/* ================================================
   RESPONSIVE — SMALL 480px
   ================================================ */
@media (max-width: 480px) {
  .quick-cards-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .qc-card          { padding: 16px 12px; }
  .contact-hero h1  { font-size: 1.65rem; }
  .why-grid         { grid-template-columns: 1fr 1fr; }
  .store-grid       { grid-template-columns: 1fr; }
  .nl-left h2       { font-size: 1.4rem; }
  button, a         { min-height: 38px; }
}

/* ================================================
   RESPONSIVE — VERY SMALL 360px
   ================================================ */
@media (max-width: 360px) {
  .hero-chips       { flex-direction: column; align-items: center; }
  .quick-cards-grid { gap: 6px; }
  .social-icons .soc-btn { width: 32px; height: 32px; }
}
