/* ═══════════════════════════════════════════════════
   AMRUTAM DAIRY — Frontend Stylesheet
   Design By: algoads.in (earthy green/cream/terracotta)
   ═══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --green:       #606c38;
  --green-dark:  #414c1b;
  --green-light: #7a8a4a;
  --cream:       #f9f6ed;
  --cream-dark:  #f0ead6;
  --terracotta:  #dda15e;
  --terra-dark:  #bc6c25;
  --brown:       #5c4033;
  --text:        #3d2b1f;
  --text-muted:  #7a6b5d;
  --text-light:  #a89a8c;
  --white:       #ffffff;
  --border:      rgba(96,108,56,0.15);
  --border-warm: rgba(221,161,94,0.25);
  --shadow:      0 2px 12px rgba(60,40,20,0.08);
  --shadow-lg:   0 8px 32px rgba(60,40,20,0.12);
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --nav-height:  72px;
  --font:        'DM Sans', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--terracotta); color: var(--white); }

a { color: var(--green); text-decoration: none; transition: color .25s; }
a:hover { color: var(--green-dark); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

/* ── Utilities ── */
.W { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.stag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
}
.stag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--terracotta);
}

.sh {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-top: 10px;
}

.sp {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 100%;
  margin-top: 12px;
}

.accent-txt { color: var(--terracotta); }

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 32px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .25s, transform .2s;
}
.btn-green:hover { background: var(--green-dark); color: var(--white); transform: translateY(-2px); }

.btn-terra {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 32px;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .25s, transform .2s;
}
.btn-terra:hover { background: var(--terra-dark); color: var(--white); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 30px;
  background: transparent;
  color: var(--green);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--green);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .25s;
}
.btn-outline:hover { background: var(--green); color: var(--white); }


/* ═══════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════ */
#ad-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: #f9f6ed;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#ad-nav.stuck {
  box-shadow: 0 2px 20px rgba(60,40,20,0.1);
}

.ad-nav-logo img {
  height: 60px;
  width: auto;
}

.ad-nl {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}
.ad-nl li a {
  display: block;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color .2s;
  white-space: nowrap;
}
.ad-nl li a:hover { color: var(--green); }

/* Products dropdown */
.ad-has-drop { position: relative; }
.ad-darr { font-size: 10px; margin-left: 3px; color: var(--text-muted); }
.ad-drop {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s, transform .25s;
  transform: translateX(-50%) translateY(8px);
}
.ad-has-drop:hover .ad-drop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.ad-drop-inner a {
  display: block;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: background .15s, color .15s;
}
.ad-drop-inner a:hover {
  background: var(--cream);
  color: var(--green);
}

/* Sub-dropdown (nested level) */
.ad-has-subdrop { position: relative; }
.ad-has-subdrop > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: background .15s, color .15s;
}
.ad-has-subdrop > a:hover { background: var(--cream); color: var(--green); }
.ad-sarr { font-size: 10px; margin-left: 8px; color: var(--text-muted); }
.ad-subdrop {
  position: absolute;
  top: -12px;
  left: 100%;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s, transform .2s;
  transform: translateX(6px);
}
.ad-has-subdrop:hover > .ad-subdrop {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.ad-subdrop a {
  display: block;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: background .15s, color .15s;
}
.ad-subdrop a:hover {
  background: var(--cream);
  color: var(--green);
}

/* Nav right */
.ad-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ad-nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  background: #25D366;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .25s, transform .2s;
}
.ad-nav-wa:hover {
  background: #1fb855;
  transform: translateY(-1px);
}
.ad-nav-wa svg { flex-shrink: 0; }

.ad-ncta {
  padding: 10px 24px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .25s;
}
.ad-ncta:hover { background: var(--green-dark); }

/* Hamburger */
.ad-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.ad-ham span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform .3s, opacity .3s;
}
.ad-ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ad-ham.open span:nth-child(2) { opacity: 0; }
.ad-ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.ad-mob {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 20px 24px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity .3s, transform .3s;
}
.ad-mob.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.ad-mob-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  cursor: pointer;
  font-family: var(--font);
}
.ad-mob-link:hover { color: var(--green); }
.ad-mob-plus {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform .3s;
}
.ad-mob-plus.open { transform: rotate(45deg); }

.ad-mob-sub {
  display: none;
  flex-direction: column;
  padding-left: 16px;
  padding-bottom: 8px;
}
.ad-mob-sub.open { display: flex; }
.ad-mob-sub-link {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(96,108,56,0.08);
}
.ad-mob-sub-link:hover { color: var(--green); }

/* Mobile nested sub-level */
.ad-mob-nested-wrap { display: flex; flex-direction: column; }
.ad-mob-nested-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
}
.ad-mob-nested {
  display: none;
  flex-direction: column;
  padding-left: 16px;
}
.ad-mob-nested.open { display: flex; }
.ad-mob-nested-link {
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(96,108,56,0.06);
  text-decoration: none;
}
.ad-mob-nested-link:hover { color: var(--green); }


/* ═══════════════════════════════════════════════════
   PAGE HERO (Inner pages)
   ═══════════════════════════════════════════════════ */
.ad-page-hero {
  padding: calc(var(--nav-height) + 32px) 0 32px;
  background: var(--cream-dark);
  text-align: center;
}
.ad-page-hero .stag { justify-content: center; }
.ad-page-hero .sh { margin-top: 8px; }
.ad-page-hero .sp { margin: 8px auto 0; text-align: center; max-width: 560px; }

.ad-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.ad-breadcrumb a { color: var(--green); font-weight: 500; }
.ad-breadcrumb span { color: var(--text-light); }


/* ═══════════════════════════════════════════════════
   HOMEPAGE — Hero Slider
   ═══════════════════════════════════════════════════ */
.ad-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: var(--nav-height);
  background: var(--cream-dark);
}

.ad-hero-slides {
  position: relative;
  width: 100%;
}
.ad-hero-slide {
  width: 100%;
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  pointer-events: none;
}
.ad-hero-slide:first-child { position: relative; }
.ad-hero-slide.on {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.ad-hero-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Shatter canvas overlay */
.ad-shatter-canvas {
  position: absolute;
  top: 0; left: 0;
  z-index: 2;
  pointer-events: none;
}

/* Navigation arrows */
.ad-hero-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  transition: background .25s, transform .25s;
}
.ad-hero-arr:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.08);
}
.ad-hero-prev { left: 20px; }
.ad-hero-next { right: 20px; }

/* Dots */
.ad-hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.ad-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  cursor: pointer;
  transition: all .3s;
}
.ad-hero-dot.on {
  background: var(--terracotta);
  border-color: var(--terracotta);
  width: 28px;
  border-radius: 5px;
}


/* ═══════════════════════════════════════════════════
   HOMEPAGE — About Section
   ═══════════════════════════════════════════════════ */
.ad-about {
  padding: 80px 0;
}
.ad-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.ad-about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.ad-about-img img {
  width: 100%;
  height: 499px;
  object-fit: contain;
}
.ad-about-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}

.ad-about-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.ad-about-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
}
.ad-about-feat-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 16px;
}
.ad-about-feat b { display: block; font-size: 13px; color: var(--text); margin-bottom: 2px; }
.ad-about-feat span { font-size: 12px; color: var(--text-muted); line-height: 1.4; }


/* ═══════════════════════════════════════════════════
   HOMEPAGE — Products Section
   ═══════════════════════════════════════════════════ */
.ad-products {
  padding: 80px 0;
  background: var(--white);
}
.ad-prod-head { text-align: center; margin-bottom: 48px; }
.ad-prod-head .stag { justify-content: center; }
.ad-prod-head .sp { margin: 12px auto 0; text-align: center; }

.ad-prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.ad-prod-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
  display: block;
}
.ad-prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.ad-prod-card-img {
  overflow: hidden;
}
.ad-prod-card-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s;
}
.ad-prod-card:hover .ad-prod-card-img img { transform: scale(1.06); }

.ad-prod-card-body {
  padding: 18px 20px;
}
.ad-prod-card-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.ad-prod-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.ad-prod-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  margin-top: 10px;
}
.ad-prod-card-link:hover { color: var(--terra-dark); }


/* ═══════════════════════════════════════════════════
   HOMEPAGE — Bilona Process Section (Flowing Path)
   ═══════════════════════════════════════════════════ */

/* ── Section wrapper ── */
.bp {
  position: relative;
  padding: 80px 0 60px;
  background: var(--cream);
  overflow: hidden;
}

/* ── Header ── */
.bp-title {
  text-align: center;
  margin-bottom: 24px;
}
.bp-title-sub {
  font-size: clamp(18px,3vw,24px);
  font-weight: 500;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 0;
}
.bp-title h2 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
}
.bp-title h2 span { color: var(--terracotta); }
.bp-wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ── Canvas: Relative container ── */
.bp-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 1000 / 760;
  max-width: 1000px;
  margin: 0 auto;
}

/* SVG Curve */
.bp-curve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── Each node ── */
.bp-node {
  position: absolute;
  z-index: 1;
  text-align: center;
}

/* Icon */
.bp-icon {
  margin-bottom: 4px;
  line-height: 0;
}
.bp-icon img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  transition: transform .4s ease;
}
.bp-node:hover .bp-icon img {
  transform: scale(1.06);
}

/* Number circle */
.bp-num-circle {
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #5C3310;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(92,51,16,0.3);
  margin: auto;
  position: absolute;
  z-index: 2;
  transition: transform .3s, background .3s;
}
.bp-node:hover .bp-num-circle {
  transform: scale(1.15);
  background: var(--terracotta);
}

/* Description */
.bp-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 210px;
  margin: 0 auto;
}

/* Final product text */
.bp-final-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-top: 6px;
}

/* ══ 5 Node positions — matching reference image S-curve ══ */

/* Step 1: Top-left — cow milking */
.bp-n1 {
  top: 13%; left: 0;
  width: 22%;
}
.bp-n1 .bp-icon img { max-width: 190px; }

/* Step 2: Top-right — milk→curd */
.bp-n2 {
  top: 12%; right: 9%;
  width: 28%;
}
.bp-n2 .bp-icon img { max-width: 145px; }

/* Step 3: Middle-right — bilona churner */
.bp-n3 {
  top: 47%; right: 33%;
  width: 22%;
}
.bp-n3 .bp-icon img { max-width: 160px; }

/* Step 4: Middle-left — slow cooking / butter */
.bp-n4 {
  top: 70%; left: -1%;
  width: 24%;
}
.bp-n4 .bp-icon img { max-width: 180px; }

/* Step 5: Bottom-right — final product jar */
.bp-n5 {
  bottom: 0px; right: 10%;
  width: 24%;
}
.bp-n5 .bp-icon img { max-width: 180px; }


/* ── Scroll Animations (Repeatable) ── */

/* Default hidden state */
.bp-anim {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.1s cubic-bezier(.22,1,.36,1), transform 1.1s cubic-bezier(.22,1,.36,1);
}

/* Direction variants */
.bp-anim-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1.2s cubic-bezier(.22,1,.36,1), transform 1.2s cubic-bezier(.22,1,.36,1);
}
.bp-anim-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1.2s cubic-bezier(.22,1,.36,1), transform 1.2s cubic-bezier(.22,1,.36,1);
}
.bp-anim-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(.22,1,.36,1), transform 1s cubic-bezier(.22,1,.36,1);
}

/* Visible state for all variants */
.bp-anim.bp-in,
.bp-anim-left.bp-in,
.bp-anim-right.bp-in,
.bp-anim-up.bp-in {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1) scaleY(1);
}

/* Node number pop when visible */
.bp-node.bp-in .bp-num-circle {
  animation: bpNumPop 0.7s cubic-bezier(.22,1,.36,1) both;
}
/* Icon fade-up when visible */
.bp-node.bp-in .bp-icon img {
  animation: bpIconIn 0.8s cubic-bezier(.22,1,.36,1) 0.1s both;
}
@keyframes bpIconIn {
  0%   { opacity: 0; transform: translateY(15px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes bpNumPop {
  0%   { transform: scale(0) rotate(-20deg); }
  60%  { transform: scale(1.15) rotate(3deg); }
  100% { transform: scale(1) rotate(0); }
}


/* ═══════════════════════════════════════════════════
   HOMEPAGE — Testimonials
   ═══════════════════════════════════════════════════ */
.ad-testi {
  padding: 80px 0;
  background: var(--white);
}
.ad-testi-head { text-align: center; margin-bottom: 48px; }
.ad-testi-head .stag { justify-content: center; }
.ad-testi-head .sp { margin: 12px auto 0; text-align: center; }

.ad-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.ad-testi-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}
.ad-testi-quote {
  font-size: 32px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.ad-testi-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.ad-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ad-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream-dark);
}
.ad-testi-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.ad-testi-role {
  font-size: 12px;
  color: var(--text-muted);
}


/* ═══════════════════════════════════════════════════
   HOMEPAGE — CTA Strip
   ═══════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════
   BULK ORDER / DISTRIBUTOR SECTION
   ═══════════════════════════════════════════════════ */
.ad-bulk {
  padding: 80px 0;
  background: var(--cream);
  overflow: hidden;
}
.ad-bulk-head { margin-bottom: 48px; text-align: center; }

.ad-bulk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Left: Proposal ── */
.ad-bulk-proposal {
  padding: 8px 0;
}
.ad-bulk-proposal h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--terracotta);
  display: inline-block;
}

.ad-bulk-point {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.ad-bulk-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(96,108,56,0.08);
  border-radius: 12px;
  transition: background .3s, transform .3s;
}
.ad-bulk-point:hover .ad-bulk-icon {
  background: rgba(221,161,94,0.15);
  transform: scale(1.08);
}
.ad-bulk-point strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.ad-bulk-point p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Stats row */
.ad-bulk-stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.ad-bulk-stat {
  text-align: center;
  flex: 1;
}
.ad-bulk-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.ad-bulk-stat span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* ── Right: Form ── */
.ad-bulk-form-wrap {
  position: sticky;
  top: 100px;
}
.ad-bulk-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1.5px solid rgba(96,108,56,0.1);
  box-shadow: 0 8px 40px rgba(60,40,20,0.08);
  position: relative;
  overflow: hidden;
}
.ad-bulk-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--terracotta));
}
.ad-bulk-form-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: var(--terracotta);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.ad-bulk-form-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.ad-bulk-form-card > p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Form fields */
.ad-bulk-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.ad-bulk-fg {
  margin-bottom: 14px;
}
.ad-bulk-fg label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}
.ad-bulk-fg input,
.ad-bulk-fg select,
.ad-bulk-fg textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.ad-bulk-fg input:focus,
.ad-bulk-fg select:focus,
.ad-bulk-fg textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(96,108,56,0.1);
}
.ad-bulk-fg textarea {
  resize: vertical;
  min-height: 70px;
}
.ad-bulk-fg select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237a6b5d' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.ad-bulk-submit {
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  color: #fff;
  background: var(--green);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background .25s, transform .2s, box-shadow .25s;
  margin-top: 4px;
}
.ad-bulk-submit:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(96,108,56,0.25);
}

/* Validation message */
.ad-bulk-msg {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  animation: bulkMsgIn .3s ease;
}
@keyframes bulkMsgIn {
  0% { opacity: 0; transform: translateY(-6px); }
  100% { opacity: 1; transform: translateY(0); }
}
.ad-bulk-msg-err {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}
.ad-bulk-msg-ok {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

/* Thank you state */
.ad-bulk-thank {
  text-align: center;
  padding: 20px 0;
}
.ad-bulk-thank-icon {
  margin-bottom: 16px;
  animation: bulkThankPop .6s cubic-bezier(.22,1,.36,1);
}
@keyframes bulkThankPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.ad-bulk-thank h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.ad-bulk-thank p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 340px;
  margin: 0 auto;
}
.ad-bulk-thank-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 20px;
  padding: 16px;
  background: var(--cream);
  border-radius: 12px;
  text-align: left;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.ad-bulk-thank-info span {
  font-size: 13px;
  color: var(--text-muted);
}
.ad-bulk-thank-info strong {
  color: var(--text);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .ad-bulk-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ad-bulk-form-wrap { position: static; }
  .ad-bulk-form-card { padding: 28px 20px; }
  .ad-bulk-form-row { grid-template-columns: 1fr; }
  .ad-bulk-stats { gap: 16px; }
  .ad-bulk-stat strong { font-size: 22px; }
}


/* ═══════════════════════════════════════════════════
   BLOG SECTION (Homepage)
   ═══════════════════════════════════════════════════ */
.ad-blog {
  padding: 80px 0;
  background: var(--white);
}
.ad-blog-head { margin-bottom: 44px; text-align: center; }

.ad-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ad-blog-card {
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: transform .4s, box-shadow .4s;
  display: flex;
  flex-direction: column;
}
.ad-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(60,40,20,0.1);
}
.ad-blog-card-img {
  overflow: hidden;
}
.ad-blog-card-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s;
}
.ad-blog-card:hover .ad-blog-card-img img {
  transform: scale(1.06);
}
.ad-blog-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ad-blog-date {
  font-size: 11px;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.ad-blog-card-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 12px;
  flex: 1;
}
.ad-blog-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  transition: color .25s;
}
.ad-blog-card:hover .ad-blog-link {
  color: var(--terracotta);
}

@media (max-width: 768px) {
  .ad-blog-grid { grid-template-columns: 1fr; gap: 20px; }
}


/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.ad-ft {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.ad-ft-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.ad-ft-brand img {
  height: 44px;
  margin-bottom: 16px;
  filter: brightness(10);
}
.ad-ft-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.ad-ft-social {
  display: flex;
  gap: 10px;
}
.ad-ft-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: background .2s;
}
.ad-ft-social a:hover { background: var(--terracotta); color: var(--white); }
.ad-ft-social svg { width: 16px; height: 16px; fill: currentColor; }

.ad-ft h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.ad-ft-links { list-style: none; }
.ad-ft-links li { margin-bottom: 10px; }
.ad-ft-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color .2s;
}
.ad-ft-links a:hover { color: var(--terracotta); }

.ad-ft-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.ad-ft-contact-item svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--terracotta);
  flex-shrink: 0;
  margin-top: 2px;
}
.ad-ft-fssai {
  margin-top: 20px;
  max-width: 180px;
  height: auto;
  display: block;
  opacity: .85;
}
.ad-ft-direction {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color .25s, color .25s, transform .2s;
}
.ad-ft-direction:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  transform: translateY(-2px);
}

.ad-ft-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.ad-ft-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}
.ad-ft-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 4px;
}


/* ═══════════════════════════════════════════════════
   MODALS (Quote / WhatsApp / Call)
   ═══════════════════════════════════════════════════ */
/* Quote Modal */
#quoteModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  padding: 20px;
}
#quoteModal.open { display: flex; }

.ad-modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalUp .3s ease;
}
@keyframes modalUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ad-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.ad-modal-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.ad-modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: var(--text-muted);
  transition: background .2s;
}
.ad-modal-close:hover { background: var(--cream-dark); }

.ad-modal-body { padding: 24px; }

.ad-modal-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.ad-modal-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
}

.ad-form-group {
  margin-bottom: 16px;
}
.ad-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.ad-form-group input,
.ad-form-group textarea,
.ad-form-group select {
  width: 100%;
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  transition: border-color .2s;
  outline: none;
}
.ad-form-group input:focus,
.ad-form-group textarea:focus,
.ad-form-group select:focus {
  border-color: var(--green);
}
.ad-form-group textarea { min-height: 80px; resize: vertical; }

.ad-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ad-form-submit {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .25s;
  margin-top: 8px;
}
.ad-form-submit:hover { background: var(--green-dark); }
.ad-form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.ad-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
}


/* ── WhatsApp Modal ── */
#waModal {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 9999;
  width: 340px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: modalUp .3s ease;
}
#waModal.open { display: block; }

.ad-wa-header {
  background: #25d366;
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ad-wa-header h4 { font-size: 15px; font-weight: 600; color: var(--white); }
.ad-wa-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
}
.ad-wa-body { padding: 20px; }
.ad-wa-body .ad-form-group input {
  background: var(--cream);
}
.ad-wa-submit {
  width: 100%;
  padding: 12px;
  background: #25d366;
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .2s;
}
.ad-wa-submit:hover { background: #1da851; }

/* ── Call Modal ── */
#callModal {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 9999;
  width: 340px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: modalUp .3s ease;
}
#callModal.open { display: block; }

.ad-call-header {
  background: var(--green);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ad-call-header h4 { font-size: 15px; font-weight: 600; color: var(--white); }
.ad-call-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
}
.ad-call-body { padding: 20px; }
.ad-call-submit {
  width: 100%;
  padding: 12px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.ad-call-submit:hover { background: var(--green-dark); }


/* ── Sticky Contact Widget ── */
.ad-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ad-sticky-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform .25s;
}
.ad-sticky-btn:hover { transform: scale(1.1); }
.ad-sticky-btn svg { width: 24px; height: 24px; fill: var(--white); }

.ad-sticky-wa { background: #25d366; }
.ad-sticky-call { background: var(--green); }
.ad-sticky-call svg { fill: none; stroke: var(--white); stroke-width: 2; }


/* ═══════════════════════════════════════════════════
   CATEGORY / PRODUCT DETAIL PAGE
   ═══════════════════════════════════════════════════ */
.ad-cat-intro {
  padding: 28px 0;
}
.ad-cat-intro-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.ad-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  background: rgba(96,108,56,0.08);
  padding: 6px 14px;
  border-radius: 20px;
}
.ad-cat-badge svg { width: 14px; height: 14px; }

/* Gallery strip */
.ad-cat-gallery-strip {
  padding: 0 0 40px;
}
.ad-cat-gallery-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.ad-cat-gallery-item {
  flex: 0 0 200px;
  height: 150px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  border: 2px solid transparent;
  transition: border-color .2s;
}
.ad-cat-gallery-item:hover { border-color: var(--green); }
.ad-cat-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Detail layout */
.ad-cat-detail {
  padding: 0 0 32px;
}
.ad-cat-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.ad-cat-main-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}
.ad-cat-main-content h2,
.ad-cat-main-content h3 {
  color: var(--text);
  margin: 18px 0 10px;
}
.ad-cat-main-content h2:first-child,
.ad-cat-main-content h3:first-child {
  margin-top: 0;
}
.ad-cat-main-content p { margin-bottom: 14px; }
.ad-cat-main-content img {
  border-radius: var(--radius-sm);
  margin: 16px 0;
}

/* Sticky sidebar */
.ad-cat-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}
.ad-cat-sidebar-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.ad-cat-sidebar-box h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.ad-cat-sidebar-box p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.ad-cat-sidebar-box .btn-green { width: 100%; justify-content: center; margin-bottom: 10px; }
.ad-cat-sidebar-box .btn-outline { width: 100%; justify-content: center; }

.ad-cat-sidebar-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 16px;
}

/* Specs */
.ad-cat-spec {
  padding: 28px 0;
}
.ad-cat-spec-content {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}
.ad-cat-spec-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 16px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}
.ad-cat-spec-content table th,
.ad-cat-spec-content table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
}
.ad-cat-spec-content table th {
  background: var(--green);
  font-weight: 700;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.ad-cat-spec-content table td {
  border-bottom: 1px solid var(--border);
}
.ad-cat-spec-content table tr:last-child td { border-bottom: none; }
.ad-cat-spec-content table td:first-child {
  font-weight: 600;
  color: var(--text);
  width: 200px;
  background: rgba(96,108,56,0.04);
}
.ad-cat-spec-content table td:last-child {
  color: var(--text-muted);
}
.ad-cat-spec-content table tbody tr:hover {
  background: rgba(221,161,94,0.06);
}

/* Related products */
.ad-cat-related {
  padding: 32px 0 48px;
}
.ad-cat-related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.ad-cat-related-grid .ad-prod-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
}
.ad-cat-related-grid .ad-prod-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.ad-cat-related-grid .ad-prod-card-img {
  height: 100%;
  min-height: 180px;
}
.ad-cat-related-grid .ad-prod-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ad-cat-related-grid .ad-prod-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ad-cat-related-grid .ad-prod-card-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .ad-cat-related-grid { grid-template-columns: 1fr; }
  .ad-cat-related-grid .ad-prod-card { grid-template-columns: 110px 1fr; }
  .ad-cat-spec-content table td:first-child { width: 130px; }
}
@media (max-width: 480px) {
  .ad-cat-related-grid .ad-prod-card { grid-template-columns: 1fr; }
  .ad-cat-related-grid .ad-prod-card-img { min-height: 160px; }
}


/* ═══════════════════════════════════════════════════
   BLOG PAGES
   ═══════════════════════════════════════════════════ */
/* Blog listing */
.ad-blog-list {
  padding: 48px 0 80px;
}
.ad-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.ad-blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
  display: block;
}
.ad-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.ad-blog-card-img {
  overflow: hidden;
}
.ad-blog-card-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s;
}
.ad-blog-card:hover img { transform: scale(1.05); }

.ad-blog-card-body { padding: 20px; }
.ad-blog-card-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
}
.ad-blog-card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.35;
}
.ad-blog-card-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.ad-blog-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}

/* Blog detail */
.ad-blog-detail {
  padding: 48px 0 80px;
}
.ad-blog-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.ad-blog-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}
.ad-blog-detail-img img {
  width: 100%;
  height: auto;
}
.ad-blog-detail-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.ad-blog-detail-content {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
}
.ad-blog-detail-content h2,
.ad-blog-detail-content h3 {
  margin: 28px 0 12px;
}
.ad-blog-detail-content p { margin-bottom: 16px; }
.ad-blog-detail-content img {
  border-radius: var(--radius-sm);
  margin: 20px 0;
}

.ad-blog-detail-extra {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* Blog sidebar */
.ad-blog-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}
.ad-blog-sidebar-cta {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  margin-bottom: 24px;
}
.ad-blog-sidebar-cta h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.ad-blog-sidebar-cta p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.ad-blog-sidebar-related h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.ad-blog-sidebar-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.ad-blog-sidebar-item-img {
  width: 64px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.ad-blog-sidebar-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ad-blog-sidebar-item-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.ad-blog-sidebar-item-date {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 4px;
}


/* ═══════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════ */
.ad-gal {
  padding: 48px 0 80px;
}
.ad-gal-count {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.ad-gal-count strong { color: var(--text); }

.ad-gal-grid {
  column-count: 3;
  column-gap: 16px;
}
.ad-gal-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.ad-gal-item img {
  width: 100%;
  display: block;
  transition: transform .4s;
}
.ad-gal-item:hover img { transform: scale(1.04); }
.ad-gal-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(65,76,27,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.ad-gal-item:hover .ad-gal-item-overlay {
  background: rgba(65,76,27,0.3);
}
.ad-gal-item-overlay svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  opacity: 0;
  transition: opacity .3s;
}
.ad-gal-item:hover .ad-gal-item-overlay svg { opacity: 1; }
.ad-gal-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

/* ── Lightbox ── */
.glb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.glb-overlay.open { display: flex; }

.glb-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  z-index: 2;
}
.glb-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glb-img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.glb-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  text-align: center;
}
.glb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.glb-nav:hover { background: rgba(255,255,255,0.2); }
.glb-prev { left: 16px; }
.glb-next { right: 16px; }


/* ═══════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════ */
.ad-ctc {
  padding: 48px 0 80px;
}
.ad-ctc-quick {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}
.ad-ctc-quick-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.ad-ctc-quick-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(96,108,56,0.08);
  border-radius: 50%;
  flex-shrink: 0;
}
.ad-ctc-quick-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
}
.ad-ctc-quick-label {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.ad-ctc-quick-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-top: 2px;
}

.ad-ctc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.ad-ctc-info { }
.ad-ctc-info h3 {
  font-size: 20px;
  margin-bottom: 16px;
}
.ad-ctc-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-muted);
}
.ad-ctc-info-row svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}
.ad-ctc-info-row a { color: var(--green); font-weight: 500; }

.ad-ctc-direction {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  background: rgba(96,108,56,0.06);
  border: 1.5px solid rgba(96,108,56,0.15);
  border-radius: 10px;
  text-decoration: none;
  transition: all .3s;
}
.ad-ctc-direction:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.ad-ctc-hours {
  margin-top: 24px;
  padding: 20px;
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
}
.ad-ctc-hours h4 {
  font-size: 14px;
  margin-bottom: 10px;
}
.ad-ctc-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.ad-ctc-hours-row:last-child { border-bottom: none; }

/* Contact form */
.ad-ctc-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.ad-ctc-form h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.ad-ctc-form .ad-form-group input,
.ad-ctc-form .ad-form-group textarea,
.ad-ctc-form .ad-form-group select {
  background: var(--cream);
}

/* Session flash message */
.ad-flash {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}
.ad-flash-success {
  background: rgba(96,108,56,0.1);
  color: var(--green-dark);
  border: 1px solid rgba(96,108,56,0.2);
}
.ad-flash-error {
  background: rgba(200,50,50,0.08);
  color: #a03030;
  border: 1px solid rgba(200,50,50,0.15);
}


/* ═══════════════════════════════════════════════════
   PROFILE / ABOUT US
   ═══════════════════════════════════════════════════ */
.ad-profile {
  padding: 48px 0 80px;
}
.ad-profile-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}
.ad-profile-stat {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.ad-profile-stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--green);
}
.ad-profile-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Store showcase */
.ad-profile-store {
  margin-bottom: 48px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.ad-profile-store-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.ad-profile-store-img img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 420px;
  object-fit: cover;
}
.ad-profile-store-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
}

.ad-profile-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.ad-profile-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ad-profile-story-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.ad-profile-why {
  margin-bottom: 64px;
}
.ad-profile-why-head { text-align: center; margin-bottom: 40px; }
.ad-profile-why-head .stag { justify-content: center; }
.ad-profile-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.ad-profile-why-card {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.ad-profile-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.ad-profile-why-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(96,108,56,0.08);
  border-radius: 50%;
  font-size: 22px;
  margin-bottom: 14px;
}
.ad-profile-why-card h4 { font-size: 16px; margin-bottom: 6px; }
.ad-profile-why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Mission & Vision */
.ad-profile-mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 64px;
}
.ad-profile-mv-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.ad-profile-mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.ad-profile-mv-icon { margin-bottom: 16px; }
.ad-profile-mv-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.ad-profile-mv-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Products grid on about page */
.ad-profile-products {
  text-align: center;
  margin-bottom: 64px;
}
.ad-profile-prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.ad-profile-prod-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 16px;
  text-align: center;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
}
.ad-profile-prod-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.ad-profile-prod-img {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 12px;
}
.ad-profile-prod-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s;
}
.ad-profile-prod-card:hover .ad-profile-prod-img img {
  transform: scale(1.05);
}
.ad-profile-prod-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* Company Details — Enhanced */
.ad-profile-details {
  margin-bottom: 64px;
}
.ad-cd-head { text-align: center; margin-bottom: 40px; }

.ad-cd-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

/* Left card */
.ad-cd-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(60,40,20,0.06);
}
.ad-cd-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--cream-dark);
}
.ad-cd-logo {
  height: 52px;
  width: auto;
}
.ad-cd-card-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.ad-cd-card-header span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Table rows */
.ad-cd-table { display: flex; flex-direction: column; gap: 0; }
.ad-cd-row {
  display: grid;
  grid-template-columns: 32px 100px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(96,108,56,0.06);
}
.ad-cd-row:last-child { border-bottom: none; }
.ad-cd-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.ad-cd-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 1px;
}
.ad-cd-value {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Right side */
.ad-cd-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ad-cd-contact {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(60,40,20,0.06);
}
.ad-cd-contact h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.ad-cd-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(96,108,56,0.06);
  text-decoration: none;
  transition: background .2s;
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 8px;
}
.ad-cd-contact-row:last-child { border-bottom: none; }
.ad-cd-contact-row:hover { background: var(--cream); }
.ad-cd-contact-row strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ad-cd-contact-row span {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

/* Map link */
.ad-cd-map {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  transition: all .3s;
}
.ad-cd-map:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(96,108,56,0.1);
}
.ad-cd-map span {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}

/* Store photo */
.ad-cd-store-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.ad-cd-store-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.ad-cd-store-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

/* CTA at bottom */
.ad-profile-cta {
  text-align: center;
  padding: 48px 32px;
  background: var(--green);
  border-radius: 20px;
  margin-bottom: 20px;
}
.ad-profile-cta h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.ad-profile-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}
.ad-profile-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.ad-profile-cta .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.ad-profile-cta .btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
  .ad-profile-mv { grid-template-columns: 1fr; }
  .ad-profile-prod-grid { grid-template-columns: 1fr 1fr; }
  .ad-cd-layout { grid-template-columns: 1fr; }
  .ad-cd-card { padding: 24px 18px; }
  .ad-cd-row { grid-template-columns: 28px 80px 1fr; gap: 8px; }
  .ad-profile-cta { padding: 36px 20px; }
  .ad-profile-cta h3 { font-size: 22px; }
  .ad-profile-story-img img { height: auto; }
}


/* ═══════════════════════════════════════════════════
   MARKET AREA / LOCATION PAGE
   ═══════════════════════════════════════════════════ */
.ad-area {
  padding: 48px 0 80px;
}
.ad-area-stats {
  display: flex;
  gap: 32px;
  padding: 16px 0;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
}
.ad-area-stats strong { color: var(--text); font-weight: 700; }

.ad-area-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

/* Location sidebar tree */
.ad-area-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  max-height: 70vh;
  overflow-y: auto;
}
.ad-area-sidebar h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.ad-area-loc-item {
  padding: 8px 0;
  border-bottom: 1px solid rgba(96,108,56,0.06);
}
.ad-area-loc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 6px 0;
  font-family: var(--font);
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  transition: color .2s;
}
.ad-area-loc-btn:hover { color: var(--green); }
.ad-area-loc-btn.active { color: var(--green); font-weight: 600; }
.ad-area-loc-count {
  font-size: 11px;
  color: var(--text-light);
  background: var(--cream);
  padding: 2px 8px;
  border-radius: 10px;
}
.ad-area-loc-children {
  display: none;
  padding-left: 14px;
}
.ad-area-loc-children.open { display: block; }

/* Products panel */
.ad-area-panel h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.ad-area-panel-breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.ad-area-prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.ad-area-cta {
  margin-top: 48px;
  padding: 40px;
  background: var(--green);
  border-radius: var(--radius);
  text-align: center;
}
.ad-area-cta h3 { color: var(--white); font-size: 22px; margin-bottom: 12px; }
.ad-area-cta p { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 20px; }


/* ═══════════════════════════════════════════════════
   SITEMAP
   ═══════════════════════════════════════════════════ */
.ad-smap {
  padding: 48px 0 80px;
}
.ad-smap-section {
  margin-bottom: 40px;
}
.ad-smap-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.ad-smap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.ad-smap-grid a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: background .2s, color .2s;
}
.ad-smap-grid a:hover {
  background: var(--green);
  color: var(--white);
}

.ad-smap-cat-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px;
  margin-bottom: 16px;
}
.ad-smap-cat-card h4 {
  font-size: 16px;
  margin-bottom: 12px;
}
.ad-smap-cat-card a { color: var(--green); }
.ad-smap-children {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ad-smap-children a {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  background: var(--cream);
  color: var(--text);
  border-radius: 20px;
  transition: background .2s, color .2s;
}
.ad-smap-children a:hover {
  background: var(--green);
  color: var(--white);
}


/* ═══════════════════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════════════════ */
.ad-404 {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ad-404-inner { max-width: 520px; }
.ad-404-num {
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
}
.ad-404-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}
.ad-404-icon svg { width: 100%; height: 100%; fill: none; stroke: var(--terracotta); stroke-width: 1.5; }
.ad-404 h2 {
  font-size: 24px;
  margin-bottom: 8px;
}
.ad-404 p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.ad-404-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.ad-404-links {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.ad-404-links h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.ad-404-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.ad-404-tags a {
  display: inline-block;
  padding: 7px 16px;
  font-size: 13px;
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all .2s;
}
.ad-404-tags a:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}


/* ═══════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.rvl {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .7s ease, transform .7s ease;
}
.rvr {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.rv-in {
  opacity: 1;
  transform: translate(0);
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ad-about-grid { grid-template-columns: 1fr; gap: 32px; }
  .ad-about-grid > .ad-about-img { order: 2; }
  .ad-about-grid > .ad-about-img + div { order: 1; }
  .ad-cat-detail-layout { grid-template-columns: 1fr; }
  .ad-cat-sidebar { position: static; }
  .ad-blog-detail-layout { grid-template-columns: 1fr; }
  .ad-blog-sidebar { position: static; }
  .ad-ctc-layout { grid-template-columns: 1fr; }
  .ad-area-layout { grid-template-columns: 1fr; }
  .ad-area-sidebar { position: static; max-height: none; }
  .ad-profile-story { grid-template-columns: 1fr; gap: 32px; }
  .ad-ft-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  /* Navbar */
  .ad-nl { display: none; }
  .ad-ham { display: flex; }
  .ad-nav-wa { display: none; }
  .ad-ncta { display: none; }
  .ad-nav-logo img { height: 48px; }

  /* Hero Slider */
  .ad-hero-arr { width: 32px; height: 32px; font-size: 13px; }
  .ad-hero-prev { left: 8px; }
  .ad-hero-next { right: 8px; }
  .ad-hero-dots { bottom: 10px; gap: 6px; }
  .ad-hero-dot { width: 8px; height: 8px; }
  .ad-hero-dot.on { width: 22px; }

  /* About */
  .ad-about { padding: 32px 0; }
  .ad-about-feats { grid-template-columns: 1fr; }
  .ad-about-img img { height: auto; max-height: 400px; object-fit: contain; }
  .ad-about-img-badge { font-size: 11px; padding: 6px 14px; }

  /* Products */
  .ad-prod-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .ad-products { padding: 50px 0; }

  /* Process: vertical flow */
  .bp { padding: 50px 0; }
  .bp-title-sub { font-size: 16px; }
  .bp-canvas {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 20px 0;
  }
  .bp-curve { display: none; }
  .bp-node {
    position: static !important;
    width: 85% !important;
    max-width: 300px;
  }
  .bp-node .bp-icon img { max-width: 180px !important; }
  .bp-n2 .bp-icon img { max-width: 200px !important; }
  .bp-num-circle { width: 36px; height: 36px; font-size: 16px; }

  /* Testimonials */
  .ad-testi { padding: 50px 0; }
  .ad-testi-grid { grid-template-columns: 1fr; }

  .ad-profile-stats { display: none; }
  .ad-bulk-stats { display: none; }

  /* Kill horizontal animations on mobile — prevent overflow */
  .bp-anim-left,
  .bp-anim-right {
    transform: translateY(40px);
  }

  /* Bulk Order */
  .ad-bulk { padding: 50px 0; }
  .ad-bulk-grid { grid-template-columns: 1fr; gap: 32px; }
  .ad-bulk-form-wrap { position: static; }
  .ad-bulk-form-card { padding: 24px 16px; }
  .ad-bulk-form-row { grid-template-columns: 1fr; }
  .ad-bulk-stats { gap: 12px; }
  .ad-bulk-stat strong { font-size: 22px; }
  .ad-bulk-proposal h3 { font-size: 20px; }
  .ad-bulk-point { gap: 12px; }
  .ad-bulk-head .sh { font-size: 24px; }
  .ad-bulk-fg input,
  .ad-bulk-fg select,
  .ad-bulk-fg textarea { font-size: 16px; }

  /* Blog */
  .ad-blog { padding: 50px 0; }
  .ad-blog-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Footer */
  .ad-ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .ad-ft-grid > .ad-ft-brand { grid-column: 1 / -1; }
  .ad-ft-grid > div:last-child { grid-column: 1 / -1; }
  .ad-ft-fssai { max-width: 140px; }
  .ad-ft-bottom { flex-direction: column; text-align: center; gap: 12px; }

  /* Gallery / Contact / Profile */
  .ad-gal-grid { column-count: 2; }
  .ad-ctc-quick { grid-template-columns: 1fr 1fr; }
  .ad-profile-stats { grid-template-columns: repeat(3, 1fr); }
  .ad-form-row { grid-template-columns: 1fr; }
  #waModal, #callModal { right: 10px; left: 10px; width: auto; }
}

@media (max-width: 480px) {
  /* Navbar */
  .ad-nav-logo img { height: 42px; }
  #ad-nav { padding: 0 16px; }

  /* Products */
  .ad-prod-grid { grid-template-columns: 1fr; }

  /* Process */
  .bp-node { width: 92% !important; max-width: 260px; }
  .bp-node .bp-icon img { max-width: 150px !important; }
  .bp-n2 .bp-icon img { max-width: 170px !important; }
  .bp-desc { font-size: 12px; }
  .bp-final-text { font-size: 13px; }

  /* Bulk Order */
  .ad-bulk-stats { flex-direction: column; gap: 16px; }
  .ad-bulk-point { gap: 12px; }
  .ad-bulk-icon { width: 40px; height: 40px; }

  /* General */
  .sh { font-size: 24px; }
  .stag { font-size: 11px; letter-spacing: 2px; }
  .sp { font-size: 13px; }
  .ad-gal-grid { column-count: 1; }
  .ad-ctc-quick { grid-template-columns: 1fr; }
  .ad-profile-stats { grid-template-columns: 1fr 1fr; }
  .ad-blog-grid { grid-template-columns: 1fr; }
  .ad-area-stats { flex-direction: column; gap: 8px; }
}
