:root {
  --navy: #0c1f1c;
  --navy-2: #11302b;
  --accent-green: #4caf50;
  --accent-green-dark: #2e7d32;
  --accent-amber: #d4a017;
  --accent-cream: #f4f1e6;
  --bg-light: #f7f9f6;
  --text-dark: #16241f;
  --text-muted: #5a6b64;
  --border-soft: #e3e8e3;
  --radius: 14px;
  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-green-dark);
  margin-bottom: 12px;
}

.eyebrow-on-dark { color: var(--accent-green); }

a { color: inherit; text-decoration: none; }

/* ---------- Topbar ---------- */
.topbar {
  background: #4d7419;
  color: #eaf6d8;
  font-size: 0.85rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 8px 24px;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar-item svg { color: #d4f0a0; flex-shrink: 0; }
.topbar-address { margin-left: auto; }
.topbar a:hover { color: #d4f0a0; }

/* ---------- Navbar ---------- */
.navbar {
  background: #80c129;
  border-bottom: 1px solid #6fa922;
  position: sticky;
  top: 0;
  z-index: 50;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img { width: auto; height: 64px; max-width: none; object-fit: contain; border-radius: 4px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
}
.logo-name em {
  font-style: italic;
  color: var(--accent-green-dark);
  font-weight: 500;
}
.logo-tag {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a { color: var(--navy); transition: color 0.2s; position: relative; }
.nav-links a:hover { color: var(--accent-green-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, #1d3a32 100%);
  color: #fff;
  overflow: hidden;
  padding: 90px 0 110px;
  min-height: 620px;
  display: flex;
  align-items: center;
}

/* Sliding background images */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateX(100%);
  transition: transform 1s ease;
  z-index: 1;
}
.hero-slide.active {
  transform: translateX(0);
  z-index: 2;
}
.hero-slide.prev {
  transform: translateX(-100%);
  z-index: 2;
}

/* Lighter gradient overlay so background photos stay clearly visible */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(100deg, rgba(11,31,26,0.72) 0%, rgba(11,31,26,0.55) 38%, rgba(11,31,26,0.25) 70%, rgba(11,31,26,0.45) 100%);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    radial-gradient(circle at 80% 20%, rgba(76,175,80,0.25), transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(212,160,23,0.18), transparent 40%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 5;
  max-width: 680px;
  width: 100%;
}
.hero .eyebrow { color: var(--accent-green); }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: #fff;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.05rem;
  color: #d6e6e0;
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

/* Crossfading text slides, stacked so layout doesn't jump */
.hero-text-slide {
  display: none;
  animation: heroTextIn 0.7s ease forwards;
}
.hero-text-slide.active { display: block; }
@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Slide indicator dots */
.hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 36px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.hero-dot.active {
  background: var(--accent-green);
  border-color: var(--accent-green);
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .hero { min-height: 560px; padding: 70px 0 90px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.btn-primary {
  background: var(--accent-green);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(76,175,80,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(76,175,80,0.4); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--accent-cream);
  border-bottom: 1px solid var(--border-soft);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 24px;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 140px;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}
.trust-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bond {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--accent-green), transparent);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .bond { display: none; }
}

/* ---------- About ---------- */
.about { padding: 90px 0; overflow: hidden; }
#about-teaser .about-media,
#about-teaser .about-content {
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.8s ease;
}
#about-teaser .about-media { transform: translateX(-90px); opacity: 0; }
#about-teaser .about-content { transform: translateX(90px); opacity: 0; }
#about-teaser.in-view .about-media,
#about-teaser.in-view .about-content {
  transform: translateX(0);
  opacity: 1;
}
#about-teaser.no-anim .about-media,
#about-teaser.no-anim .about-content {
  transition: none;
}
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-card {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--accent-green);
  opacity: 0.15;
  border-radius: 50%;
  top: -80px;
  right: -80px;
}
.about-card-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-green);
  font-weight: 700;
}
.about-card h3 {
  color: #fff;
  font-size: 1.8rem;
  margin: 14px 0 12px;
}
.about-card p { color: #cfe3dd; font-size: 0.95rem; }

.about-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 18px; }
.about-content p { color: var(--text-muted); margin-bottom: 16px; }

.factory-addresses {
  background: var(--bg-light);
  border-left: 3px solid var(--accent-green);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin-bottom: 20px;
}
.factory-addresses h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.factory-addresses p {
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text-muted);
}
.factory-addresses p:last-child { margin-bottom: 0; }

.link-arrow {
  font-weight: 700;
  color: var(--accent-green-dark);
  display: inline-block;
  margin-top: 6px;
  transition: gap 0.2s;
}
.link-arrow:hover { color: var(--accent-amber); }

/* ---------- Products ---------- */
.products { padding: 90px 0; background: #fff; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.section-head-light .eyebrow,
.section-head-light h2 { color: #fff; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(12,31,28,0.08);
  border-color: var(--accent-green);
}
.product-card .product-content {
  padding: 28px 28px 36px;
}
.product-art {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.product-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.pc-leather .product-art { background: #fdf1e4; color: #b5651d; }
.pc-textile .product-art { background: #eaf6ec; color: var(--accent-green-dark); }
.pc-general .product-art { background: #fdf6e3; color: var(--accent-amber); }
.product-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.product-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 14px; }

/* ---------- Industries ---------- */
.industries {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.industry-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 22px;
}
.industry-card h4 { color: #fff; font-size: 1.05rem; margin-bottom: 10px; }
.industry-card p { color: #b9cdc6; font-size: 0.9rem; }

/* ---------- About card / certificate ---------- */
.about-media {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-image {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(12,31,28,0.12);
  border: 1px solid var(--border-soft);
}

/* ---------- Factory Gallery Slider ---------- */
.gallery { padding: 70px 0 90px; background: var(--bg-light); }
.gallery .section-head { margin-bottom: 32px; }

.gallery-slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-slides {
  position: relative;
  width: 100%;
  height: 480px;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.gallery-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-cream), #e7efe6);
  border: 1px dashed var(--border-soft);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Prev / Next buttons */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  color: var(--primary, #2e6b3e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s;
}
.gallery-btn:hover { background: #fff; }
.gallery-btn-prev { left: 16px; }
.gallery-btn-next { right: 16px; }

/* Dot indicators */
.gallery-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: 2px solid rgba(255,255,255,0.8);
  cursor: pointer;
  transition: background 0.3s;
}
.gallery-dot.active { background: #fff; }

/* ---------- Product grid variants ---------- */
.product-grid-2 { grid-template-columns: repeat(2, 1fr); }
.product-sublist {
  list-style: none;
  margin: 10px 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-sublist li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.product-sublist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
}

/* ---------- Industry grid variant ---------- */
.industry-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin: 0 auto;
}

/* ---------- Awards ---------- */
.awards { padding: 80px 0 100px; background: #fff; }
.award-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.award-caption {
  max-width: 480px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.award-caption strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.award-placeholder {
  width: 100%;
  max-width: 480px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px dashed var(--border-soft);
  background: var(--bg-light);
  color: var(--text-muted);
  font-weight: 600;
}
.award-frame img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(12,31,28,0.12);
  border: 1px solid var(--border-soft);
}

/* ---------- Contact ---------- */
.contact { padding: 90px 0; background: #fff; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 14px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 24px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-dark);
  font-size: 0.95rem;
}
.contact-list svg { color: var(--accent-green-dark); flex-shrink: 0; margin-top: 2px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-light);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: var(--font-body);
  padding: 12px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  font-size: 0.95rem;
  background: #fff;
  resize: vertical;
}
.contact-form select { appearance: auto; cursor: pointer; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent-green);
  outline-offset: 1px;
}
.contact-form .btn { align-self: flex-start; border: none; cursor: pointer; }
.form-note { font-size: 0.85rem; color: var(--accent-green-dark); min-height: 1.2em; }

/* ---------- Location ---------- */
.location-section { padding: 90px 0; background: var(--bg-light); }
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}
.location-details { display: flex; flex-direction: column; gap: 24px; }
.location-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.location-item svg { color: #80c129; flex-shrink: 0; margin-top: 2px; }
.location-item strong { display: block; color: var(--navy); font-size: 1rem; margin-bottom: 4px; }
.location-item p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; margin: 0; }
.location-map { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 32px rgba(12,31,28,0.10); }

@media (max-width: 900px) {
  .location-inner { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #cfe3dd; padding-top: 64px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-col h5 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a, .footer-col p { display: block; margin-bottom: 10px; color: #b9cdc6; font-size: 0.92rem; }
.footer-col a:hover { color: var(--accent-green); }
.footer-brand .logo { margin-bottom: 16px; }
.footer-logo-name { color: #fff; }
.footer-logo-name em { color: var(--accent-green); }
.footer-brand p { color: #9fb8b0; font-size: 0.9rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  font-size: 0.85rem;
  color: #8aa39b;
  text-align: center;
}

/* ---------- Subpage header ---------- */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, #1d3a32 100%);
  color: #fff;
  padding: 70px 0 50px;
}
.page-header .eyebrow { color: var(--accent-green); }
.page-header h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 14px;
}
.page-sub {
  color: #d6e6e0;
  max-width: 600px;
  margin-bottom: 20px;
}
.link-arrow-back {
  display: inline-block;
  color: var(--accent-green);
  font-weight: 700;
  font-size: 0.95rem;
}
.link-arrow-back:hover { color: var(--accent-amber); }

/* ---------- Downloads ---------- */
.downloads { padding: 70px 0 100px; background: #fff; }
.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.download-card {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}
.download-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(12,31,28,0.08);
  border-color: var(--accent-green);
}
.download-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf6ec;
  color: var(--accent-green-dark);
}
.download-text h3 { font-size: 1.1rem; margin-bottom: 4px; }
.download-text p { color: var(--text-muted); font-size: 0.9rem; }
.download-arrow {
  margin-left: auto;
  font-size: 1.4rem;
  color: var(--accent-green-dark);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .download-grid { grid-template-columns: 1fr; }
  .download-card { flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
}


@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .product-grid, .product-grid-2 { grid-template-columns: 1fr 1fr; }
  .industry-grid, .industry-grid-2 { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .topbar-address { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border-soft);
    display: none;
  }
  .nav-links.open { display: flex; }
  .product-grid,
  .product-grid-2,
  .industry-grid,
  .industry-grid-2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .trust-inner { justify-content: flex-start; }
  .gallery-slides { height: 260px; }
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: wa-pulse 2s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.7);
  animation: none;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.85); }
}

/* ---------- Phone Input with Country Code ---------- */
.phone-input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-soft, #ddd);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s;
}
.phone-input-wrap:focus-within {
  border-color: var(--primary, #2e6b3e);
}
.phone-code {
  padding: 0 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary, #2e6b3e);
  background: #f4f8f4;
  border-right: 1.5px solid var(--border-soft, #ddd);
  white-space: nowrap;
  min-width: 48px;
  text-align: center;
  line-height: 44px;
  height: 44px;
}
.phone-input-wrap input[type="tel"] {
  border: none !important;
  border-radius: 0 !important;
  flex: 1;
  outline: none;
  padding: 0 12px;
  height: 44px;
  font-size: 0.95rem;
}
