/* ============================================
   THE SINGING BOWL CENTER — index.css
   ============================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── CSS VARIABLES ── */
:root {
  --cream:        #f5f0e8;
  --parchment:    #ede5d4;
  --warm-white:   #faf7f2;
  --gold:         #C9A84C;
  --gold-light:   #e2b95a;
  --gold-dark:    #9a7428;
  --brown-deep:   #1a1208;
  --brown-mid:    #3a2e1e;
  --text-dark:    #1a1208;
  --text-body:    #3a2e1e;
  --text-muted:   #7a6040;
  --products-bg:  #1a1208;
  --whatsapp:     #25D366;
  --transition:   0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  background: #fff;
  color: var(--text-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── SELECTION ── */
::selection { background: var(--gold); color: #fff; }

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */
.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title.light { color: var(--cream); }

.title-rule {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 2rem;
}
.title-rule.light {
  background: linear-gradient(90deg, var(--gold-light), transparent);
  margin-left: auto; margin-right: auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--gold);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 24px rgba(196,154,60,0.35);
  transform: translateY(-1px);
}
.btn-primary.btn-full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: transparent;
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.btn-ghost:hover { 
  background: rgba(255,255,255,0.1); 
  border-color: rgba(255,255,255,0.7); 
}

.btn-whatsapp-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: var(--whatsapp);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter var(--transition), transform var(--transition);
}
.btn-whatsapp-strip svg { width: 18px; height: 18px; }
.btn-whatsapp-strip:hover { 
  filter: brightness(1.1); 
  transform: translateY(-1px); 
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg, 
    rgba(20,10,0,0.78) 0%, 
    rgba(44,28,8,0.55) 50%, 
    rgba(10,5,0,0.72) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1260px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
  width: 100%;
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.8s ease both 0.2s;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both 0.4s;
}
.hero-title em { 
  font-style: italic; 
  color: var(--gold-light); 
}
.hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 300;
  color: rgba(245,240,232,0.75);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease both 0.6s;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.8s ease both 0.8s;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1; transform: scaleY(1); }
}
.scroll-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(226,185,90,0.6);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   WELCOME SECTION
   ============================================ */
.welcome-section {
  background: #faf7f2;
  padding: 6rem 2rem;
}
.welcome-container {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.welcome-text { max-width: 560px; }

.welcome-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 1.4rem;
}
.welcome-lead strong { color: var(--gold-dark); }

.welcome-body {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.welcome-highlights {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 2.5rem 0;
  padding: 1.5rem;
  background: #ede5d4;
  border-left: 3px solid var(--gold);
}
.highlight-item { display: flex; flex-direction: column; gap: 0.2rem; }
.highlight-num {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.highlight-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}
.highlight-divider { 
  width: 1px; height: 40px; 
  background: var(--gold); 
  opacity: 0.3; 
}

.welcome-visual { position: relative; }
.welcome-img-wrap { position: relative; display: inline-block; width: 100%; }
.welcome-img {
  width: 100%; height: 480px;
  object-fit: cover; display: block;
  border: 1px solid #ede5d4;
}
.welcome-img-badge {
  position: absolute;
  bottom: -1.2rem; right: -1.2rem;
  background: var(--gold-dark);
  color: var(--cream);
  padding: 1rem 1.4rem;
  display: flex; flex-direction: column; gap: 0.15rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ============================================
   PRODUCTS SECTION — FIXED
   ============================================ */
.products-section {
  position: relative;
  background: var(--products-bg);
  padding: 6rem 2rem;
  overflow: hidden;
}
.products-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196,154,60,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(196,154,60,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.products-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c49a3c' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10S0 14.5 0 20s4.5 10 10 10 10-4.5 10-10zm20 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.products-container {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  text-align: center;
}
.products-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.product-card {
  text-align: center;
  cursor: default;
  transition: transform var(--transition);
}
.product-card:hover { transform: translateY(-6px); }

/* ── CIRCLE — FIXED ── */
.product-circle {
  position: relative;
  width: 200px; 
  height: 200px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid rgba(196,154,60,0.35);
  display: flex; 
  align-items: center; 
  justify-content: center;
  overflow: hidden;
  padding: 18px;
  box-shadow: 
    0 0 0 6px rgba(196,154,60,0.06),
    inset 0 0 20px rgba(0,0,0,0.04);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.product-card:hover .product-circle {
  border-color: var(--gold);
  box-shadow: 
    0 0 0 6px rgba(196,154,60,0.15),
    0 12px 40px rgba(196,154,60,0.25);
}

/* ── IMAGE — FIXED ── */
.product-img { 
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  mix-blend-mode: multiply;
}

.product-img-placeholder {
  display: none;
  position: absolute; inset: 0;
  align-items: center; justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(196,154,60,0.4);
}
.blank-img { opacity: 0; position: absolute; }
.blank-img + .product-img-placeholder { display: flex; }

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.product-desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(245,240,232,0.5);
  line-height: 1.7;
  max-width: 200px;
  margin: 0 auto;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  background: var(--warm-white);
  padding: 6rem 2rem;
  overflow: hidden;
}
.testimonials-container {
  max-width: 1260px;
  margin: 0 auto;
  text-align: center;
}
.testimonials-slider {
  position: relative;
  overflow: hidden;
  margin-top: 3.5rem;
}
.testimonials-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 calc((100% - 4rem) / 3);
  background: #fff;
  border: 1px solid #ede5d4;
  border-top: 3px solid var(--gold);
  padding: 2.2rem 2rem;
  text-align: left;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(196,154,60,0.1);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.75;
  flex: 1;
  border: none;
  margin: 0;
  padding: 0;
  quotes: "\201C" "\201D";
}
.testimonial-quote::before { 
  content: open-quote; 
  color: var(--gold); 
  font-size: 1.4rem; 
  line-height: 0; 
  vertical-align: -0.4rem; 
  margin-right: 2px; 
}
.testimonial-quote::after  { 
  content: close-quote; 
  color: var(--gold); 
  font-size: 1.4rem; 
  line-height: 0; 
  vertical-align: -0.4rem; 
  margin-left: 2px; 
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid #ede5d4;
}
.testimonial-avatar {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
}
.testimonial-info { display: flex; flex-direction: column; gap: 0.15rem; }
.testimonial-info strong {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.03em;
}
.testimonial-info span {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.t-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(196,154,60,0.4);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.t-nav-btn svg { width: 18px; height: 18px; }
.t-nav-btn:hover { 
  background: var(--gold); 
  border-color: var(--gold); 
  color: #fff; 
}
.t-nav-btn:disabled { opacity: 0.3; cursor: default; }
.t-dots { display: flex; align-items: center; gap: 0.5rem; }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #d4c8ae;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.t-dot.active { background: var(--gold); transform: scale(1.3); }

/* ============================================
   CONTACT STRIP
   ============================================ */
.contact-strip {
  background: #ede5d4;
  padding: 4rem 2rem;
  border-top: 1px solid rgba(196,154,60,0.2);
  border-bottom: 1px solid rgba(196,154,60,0.2);
}
.contact-strip-inner {
  max-width: 1260px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.contact-strip-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 0.5rem;
}
.contact-strip-text p {
  font-size: 0.9rem; font-weight: 300;
  color: var(--text-muted);
  max-width: 480px; line-height: 1.65;
}
.contact-strip-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #1a1208;
  padding: 3rem 2rem;
  text-align: center;
}
.footer-inner { max-width: 1260px; margin: 0 auto; }
.footer-brand {
  display: flex; align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}
.footer-logo { 
  height: 60px; 
  object-fit: contain; 
  filter: brightness(0) invert(1); 
  opacity: 0.7; 
}
.footer-tagline {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem; font-weight: 300;
  color: rgba(245,240,232,0.4);
  letter-spacing: 0.1em; margin-bottom: 0.6rem;
}
.footer-copy { 
  font-size: 0.7rem; 
  color: rgba(245,240,232,0.25); 
  letter-spacing: 0.05em; 
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem; right: 1.5rem;
  z-index: 800;
  width: 52px; height: 52px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }
.whatsapp-float:hover { 
  transform: scale(1.1); 
  box-shadow: 0 6px 20px rgba(37,211,102,0.45); 
  animation: none; 
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
  50%      { box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
}

/* ============================================
   ANY QUERY BUTTON
   ============================================ */
.any-query-btn {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 800;
  padding: 0.7rem 1.4rem;
  background: #1a1208;
  color: var(--gold-light);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid rgba(196,154,60,0.4);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.any-query-btn:hover { 
  background: var(--gold); 
  border-color: var(--gold); 
  color: #fff; 
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(10,5,0,0.75);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: #faf7f2;
  max-width: 560px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  opacity: 0;
  border-top: 3px solid var(--gold);
}
.modal-overlay.active .modal { 
  transform: translateY(0) scale(1); 
  opacity: 1; 
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none;
  font-size: 1.6rem; color: var(--text-muted);
  cursor: pointer; line-height: 1;
  transition: color var(--transition); z-index: 2;
}
.modal-close:hover { color: var(--text-dark); }
.modal-header {
  padding: 2.5rem 2.5rem 1.5rem;
  border-bottom: 1px solid #ede5d4;
  text-align: center;
}
.modal-icon { 
  display: block; 
  font-size: 2rem; 
  color: var(--gold); 
  margin-bottom: 0.8rem; 
}
.modal-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 0.5rem;
}
.modal-header p { 
  font-size: 0.85rem; font-weight: 300; 
  color: var(--text-muted); line-height: 1.6; 
}
.modal-body { padding: 1.8rem 2.5rem 2.5rem; }
.form-group { margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.45rem;
}
input, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem; font-weight: 300;
  color: var(--text-dark);
  background: #f5f0e8;
  border: 1px solid rgba(196,154,60,0.2);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
input:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,60,0.12);
}
textarea { resize: vertical; min-height: 90px; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal { 
  opacity: 0; 
  transform: translateY(30px); 
  transition: opacity 0.7s ease, transform 0.7s ease; 
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .welcome-container { gap: 3rem; }
  .testimonial-card { flex: 0 0 calc((100% - 2rem) / 2); }
}

@media (max-width: 768px) {
  .welcome-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .welcome-text { max-width: 100%; order: 1; }
  .welcome-visual { order: 2; }
  .welcome-img { height: 300px; }
  .welcome-img-badge { right: 0; bottom: -1rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .product-circle { width: 160px; height: 160px; padding: 14px; }
  .contact-strip-inner { flex-direction: column; align-items: flex-start; }
  .contact-strip-actions { width: 100%; flex-direction: column; }
  .btn-whatsapp-strip, 
  .contact-strip-actions .btn-primary { 
    width: 100%; text-align: center; justify-content: center; 
  }
  .modal-body, .modal-header { padding-left: 1.5rem; padding-right: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .whatsapp-float { bottom: 5rem; right: 1rem; }
  .any-query-btn { bottom: 1rem; right: 1rem; }
  .testimonials-section { padding: 4rem 1.2rem; }
}

@media (max-width: 640px) {
  .testimonial-card { flex: 0 0 100%; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .product-circle { width: 180px; height: 180px; padding: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary, 
  .hero-actions .btn-ghost { width: 100%; text-align: center; }
  .welcome-highlights { gap: 1.2rem; flex-wrap: wrap; }
}