/* ============================================================
   Garg Farms — Homepage sections
   ============================================================ */

/* Section vertical rhythm */
.section {
  padding-block: 4rem;
}
@media (min-width: 768px) {
  .section { padding-block: 7rem; }
}
.section--bg { background-color: hsl(var(--background)); }
.section--panel { background-color: var(--panel); }

/* Scroll-reveal base state (driven by JS IntersectionObserver) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   HERO BANNER (slider)
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease-in-out;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    hsl(var(--primary) / 0.92),
    hsl(var(--primary) / 0.72) 50%,
    hsl(var(--primary) / 0.30));
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 3.5rem;
  padding-top: 5rem;
}
@media (min-width: 640px) { .hero-content { padding-inline: 4rem; } }

.hero-inner { max-width: 42rem; }

/* Per-slide content fade/slide on change */
.hero-text {
  transition: opacity .55s ease, transform .55s ease;
}
.hero-text.is-leaving { opacity: 0; transform: translateY(-20px); }
.hero-text.is-entering { opacity: 0; transform: translateY(40px); }

.hero-logo {
  height: 7rem;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .hero-logo { height: 9rem; } }
@media (min-width: 768px) { .hero-logo { height: 11rem; } }

.hero-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: hsl(var(--secondary) / 0.2);
  color: hsl(var(--secondary));
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  border: 1px solid hsl(var(--secondary) / 0.3);
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.hero-title .accent { color: hsl(var(--secondary)); }
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.625;
}
@media (min-width: 640px) { .hero-sub { font-size: 1.125rem; } }

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }
.hero-actions .btn {
  min-height: 3.25rem;
  padding-inline: 1.75rem;
  font-size: 1rem;
  font-weight: 600;
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .2s;
}
.hero-arrow:hover { background-color: rgba(255, 255, 255, 0.25); }
.hero-arrow--prev { left: 0.75rem; }
.hero-arrow--next { right: 0.75rem; }
@media (min-width: 768px) {
  .hero-arrow { height: 3rem; width: 3rem; }
  .hero-arrow--prev { left: 1.5rem; }
  .hero-arrow--next { right: 1.5rem; }
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.5rem;
}
.hero-dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.4);
  transition: width .3s, background-color .3s;
}
.hero-dot.is-active {
  width: 2rem;
  background-color: hsl(var(--secondary));
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: repeat(2, 1fr); gap: 5rem; }
}

.about-media { position: relative; }
.about-media-main {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-2xl);
}
.about-media-main img { width: 100%; height: 100%; object-fit: cover; }
.about-media-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.about-media-row div {
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-md);
}
.about-media-row img { width: 100%; height: 100%; object-fit: cover; }

.about-stat {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background-color: #fff;
  padding: 1.25rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-xl);
  max-width: 180px;
  border: 1px solid hsl(var(--border));
  display: none;
}
@media (min-width: 768px) { .about-stat { display: block; } }
.about-stat-num { font-size: 2.25rem; font-weight: 700; color: hsl(var(--primary)); margin-bottom: 0.25rem; }
.about-stat-label { font-size: 0.875rem; color: hsl(var(--muted-foreground)); font-weight: 500; }

.about-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
@media (min-width: 640px) { .about-title { font-size: 2.25rem; } }
@media (min-width: 768px) { .about-title { font-size: 3rem; } }

.about-text {
  font-size: 1rem;
  color: hsl(var(--foreground) / 0.8);
  margin-bottom: 1.25rem;
  line-height: 1.625;
}
@media (min-width: 768px) { .about-text { font-size: 1.125rem; } }
.about-text:last-of-type { margin-bottom: 2rem; }

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.about-feature { display: flex; gap: 0.75rem; align-items: flex-start; }
.about-feature svg { color: hsl(var(--secondary)); width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.about-feature h4 { font-weight: 700; color: hsl(var(--primary)); margin-bottom: 0.125rem; font-size: 0.875rem; }
.about-feature p { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }

/* ============================================================
   PRODUCTS
   ============================================================ */
.section-head {
  text-align: center;
  max-width: 48rem;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.section-head h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .section-head h2 { font-size: 2.25rem; } }
@media (min-width: 768px) { .section-head h2 { font-size: 3rem; } }
.section-head p {
  font-size: 1rem;
  color: hsl(var(--foreground) / 0.8);
}
@media (min-width: 768px) { .section-head p { font-size: 1.125rem; } }

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background-color: hsl(var(--card));
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, transform .3s;
  border: 1px solid hsl(var(--border));
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-0.375rem);
}
.product-card-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: hsl(var(--muted));
  position: relative;
}
.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.product-card:hover .product-card-media img { transform: scale(1.05); }
.product-card-tag {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 700;
  color: hsl(var(--primary));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-card-body { padding: 1rem; display: flex; flex-direction: column; flex: 1; }
.product-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
@media (min-width: 768px) { .product-card-body h3 { font-size: 1.125rem; } }
.product-card-desc {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .btn-link { font-size: 0.75rem; }
.product-card .btn-link svg { width: 0.75rem; height: 0.75rem; }

/* Banner strip */
.products-banner {
  margin-top: 3rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.products-banner > img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 640px) { .products-banner > img { height: 16rem; } }
@media (min-width: 768px) { .products-banner > img { height: 18rem; } }
.products-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(var(--primary) / 0.85), hsl(var(--primary) / 0.2));
  display: flex;
  align-items: center;
  padding-inline: 1.5rem;
}
@media (min-width: 640px) { .products-banner-overlay { padding-inline: 2.5rem; } }
@media (min-width: 768px) { .products-banner-overlay { padding-inline: 4rem; } }
.products-banner-overlay > div { max-width: 32rem; }
.products-banner-overlay h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) { .products-banner-overlay h3 { font-size: 1.875rem; margin-bottom: 0.75rem; } }
@media (min-width: 768px) { .products-banner-overlay h3 { font-size: 2.25rem; } }
.products-banner-overlay p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
@media (min-width: 640px) { .products-banner-overlay p { margin-bottom: 1.5rem; font-size: 1rem; } }

/* ============================================================
   FACTORY TOUR
   ============================================================ */
.factory {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 480px;
  overflow: hidden;
  background-color: #000;
}
.factory video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.factory-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  opacity: 0.8;
}
.factory-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent 50%, rgba(0,0,0,0.65));
}
.factory-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-inline: 1rem;
  z-index: 10;
}
.factory-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: hsl(var(--secondary) / 0.3);
  color: hsl(var(--secondary));
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  border: 1px solid hsl(var(--secondary) / 0.4);
  backdrop-filter: blur(4px);
}
.factory-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.factory-title .accent { color: hsl(var(--secondary)); }
@media (min-width: 640px) { .factory-title { font-size: 3rem; } }
@media (min-width: 768px) { .factory-title { font-size: 3.75rem; } }
.factory-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .factory-sub { font-size: 1.125rem; } }
.factory-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
  transition: background-color .2s;
  font-size: 1rem;
}
.factory-toggle:hover { background-color: rgba(255, 255, 255, 0.2); }

/* ============================================================
   FOUNDER
   ============================================================ */
.founder-head {
  text-align: center;
  margin-bottom: 3rem;
}
.founder-eyebrow {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: hsl(var(--secondary) / 0.1);
  color: hsl(var(--secondary));
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  border: 1px solid hsl(var(--secondary) / 0.2);
}
.founder-head h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--primary));
}
@media (min-width: 640px) { .founder-head h2 { font-size: 2.25rem; } }
@media (min-width: 768px) { .founder-head h2 { font-size: 3rem; } }

.founder-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) { .founder-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; } }

.founder-photo {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  max-width: 24rem;
  margin-inline: auto;
}
@media (min-width: 768px) { .founder-photo { margin-inline: 0; } }
.founder-photo img { width: 100%; object-fit: cover; }
.founder-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, hsl(var(--primary) / 0.9), transparent);
  padding: 1.25rem 1.5rem;
}
.founder-caption h3 { font-size: 1.125rem; font-weight: 700; color: #fff; }
.founder-caption p { color: hsl(var(--secondary)); font-size: 0.875rem; font-weight: 600; }

.founder-quote-mark { color: hsl(var(--secondary) / 0.25); width: 4rem; height: 4rem; margin-bottom: 1.25rem; }
.founder-quote {
  font-size: 1.125rem;
  font-family: var(--app-font-serif);
  color: hsl(var(--foreground) / 0.9);
  line-height: 1.625;
  margin-bottom: 1.5rem;
  font-style: italic;
}
@media (min-width: 768px) { .founder-quote { font-size: 1.25rem; } }
.founder-quote-2 {
  font-size: 1rem;
  color: hsl(var(--foreground) / 0.7);
  line-height: 1.625;
  margin-bottom: 2rem;
}
.founder-sign {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.founder-sign .rule { height: 1px; flex: 1; background-color: hsl(var(--border)); }
.founder-sign span {
  font-weight: 700;
  color: hsl(var(--primary));
  font-size: 1.125rem;
  font-family: var(--app-font-serif);
  white-space: nowrap;
}

/* ============================================================
   ADVANTAGES (dark green)
   ============================================================ */
.section--primary { background-color: hsl(var(--primary)); }
.advantages-head {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.advantages-head h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}
@media (min-width: 640px) { .advantages-head h2 { font-size: 2.25rem; } }
@media (min-width: 768px) { .advantages-head h2 { font-size: 3rem; } }
.advantages-head p {
  font-size: 1rem;
  color: hsl(var(--primary-foreground) / 0.8);
}
@media (min-width: 768px) { .advantages-head p { font-size: 1.125rem; } }

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .advantages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .advantages-grid { grid-template-columns: repeat(4, 1fr); } }

.advantage-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: background-color .2s;
}
@media (min-width: 768px) { .advantage-card { padding: 2rem; } }
.advantage-card:hover { background-color: rgba(255, 255, 255, 0.1); }
.advantage-icon {
  height: 3rem;
  width: 3rem;
  border-radius: 0.75rem;
  background-color: hsl(var(--secondary) / 0.2);
  color: hsl(var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.advantage-card h3 { font-size: 1.125rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.advantage-card p {
  color: hsl(var(--primary-foreground) / 0.7);
  font-size: 0.875rem;
  line-height: 1.625;
}

/* ============================================================
   TESTIMONIALS (marquee)
   ============================================================ */
.testimonials { padding-block: 4rem; background-color: var(--panel); }
@media (min-width: 768px) { .testimonials { padding-block: 6rem; } }
.testimonials-head {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .testimonials-head { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .testimonials-head { padding-inline: 2rem; } }
.testimonials-head h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--primary));
  text-align: center;
}
@media (min-width: 640px) { .testimonials-head h2 { font-size: 2.25rem; } }
@media (min-width: 768px) { .testimonials-head h2 { font-size: 3rem; } }

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.marquee-fade {
  pointer-events: none;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4rem;
  z-index: 10;
}
@media (min-width: 640px) { .marquee-fade { width: 6rem; } }
.marquee-fade--left { left: 0; background: linear-gradient(to right, var(--panel), transparent); }
.marquee-fade--right { right: 0; background: linear-gradient(to left, var(--panel), transparent); }

.marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marquee-rtl 35s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-rtl {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  width: 300px;
  flex-shrink: 0;
}
@media (min-width: 640px) { .testimonial-card { width: 360px; padding: 2rem; } }
.testimonial-quote-mark {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: hsl(var(--secondary) / 0.2);
  width: 2.25rem;
  height: 2.25rem;
}
.testimonial-stars { color: hsl(var(--secondary)); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.testimonial-text {
  color: hsl(var(--foreground) / 0.8);
  margin-bottom: 1.25rem;
  font-style: italic;
  font-size: 0.875rem;
  line-height: 1.625;
}
.testimonial-author { font-weight: 700; color: hsl(var(--primary)); font-size: 0.875rem; }
.testimonial-role { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }

/* ============================================================
   ENQUIRY FORM
   ============================================================ */
.enquiry {
  position: relative;
  overflow: hidden;
}
.enquiry-blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(64px);
  pointer-events: none;
}
.enquiry-blob--1 {
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background-color: hsl(var(--secondary) / 0.1);
  transform: translate(33%, -50%);
}
.enquiry-blob--2 {
  bottom: 0;
  left: 0;
  width: 20rem;
  height: 20rem;
  background-color: hsl(var(--primary) / 0.05);
  transform: translate(-33%, 33%);
}

.enquiry-card {
  position: relative;
  z-index: 10;
  background-color: #fff;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid hsl(var(--border));
}
@media (min-width: 1024px) { .enquiry-card { flex-direction: row; } }

.enquiry-info {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .enquiry-info { padding: 3rem; } }
@media (min-width: 1024px) { .enquiry-info { width: 40%; } }
.enquiry-info-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-size: cover;
  background-position: center;
}
.enquiry-info-content { position: relative; z-index: 10; }
.enquiry-info h2 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
@media (min-width: 768px) { .enquiry-info h2 { font-size: 1.875rem; } }
.enquiry-info-lead {
  color: hsl(var(--primary-foreground) / 0.8);
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
}
.enquiry-info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.enquiry-info-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.enquiry-info-item svg { color: hsl(var(--secondary)); flex-shrink: 0; margin-top: 0.125rem; width: 1rem; height: 1rem; }
.enquiry-info-item h4 { font-weight: 700; color: #fff; font-size: 0.875rem; }
.enquiry-info-item p { font-size: 0.75rem; color: hsl(var(--primary-foreground) / 0.7); }

.enquiry-form-wrap {
  padding: 2rem;
  background-color: hsl(var(--card));
}
@media (min-width: 768px) { .enquiry-form-wrap { padding: 3rem; } }
@media (min-width: 1024px) { .enquiry-form-wrap { width: 60%; } }

.enquiry-form { display: flex; flex-direction: column; gap: 1.25rem; }
.enquiry-form p { margin: 0; }
.enquiry-row {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .enquiry-row { grid-template-columns: repeat(2, 1fr); } }
.enquiry-form .btn { width: 100%; min-height: 3rem; font-size: 1rem; font-weight: 700; }
.enquiry-form .wpcf7-form-control-wrap { display: block; }
.enquiry-form .wpcf7-not-valid {
  border-color: #dc2626;
}
.enquiry-form .wpcf7-not-valid-tip {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: #dc2626;
}
.enquiry-form .wpcf7-response-output {
  margin: 0 !important;
  padding: 0.75rem 1rem !important;
  border-radius: var(--radius);
  font-size: 0.875rem;
  line-height: 1.5;
  color: hsl(var(--foreground));
}
.enquiry-form.sent .wpcf7-response-output {
  display: none;
}
.enquiry-form .wpcf7-spinner {
  display: block;
  margin: 0.75rem auto 0;
}
.enquiry-form .wpcf7-submit:disabled {
  cursor: wait;
  opacity: 0.75;
}
.enquiry-note {
  font-size: 0.75rem;
  text-align: center;
  color: hsl(var(--muted-foreground));
}

.enquiry-success {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: 3rem;
  gap: 1.25rem;
}
.enquiry-success-icon {
  height: 5rem;
  width: 5rem;
  background-color: #dcfce7;
  color: #16a34a;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.enquiry-success h3 { font-size: 1.5rem; font-weight: 700; color: hsl(var(--primary)); }
.enquiry-success p { color: hsl(var(--muted-foreground)); max-width: 24rem; font-size: 0.875rem; }
.enquiry-success .btn { margin-top: 1rem; width: auto; }
.is-hidden { display: none !important; }
