/* =========================================
   1. VARIABLES & RESET (RESTORED ORIGINAL)
   ========================================= */
:root {
  /* Natural Luxury Palette - ORIGINAL */
  --bg-body: #f9f8f6;
  /* Warm Cream */
  --bg-white: #ffffff;
  --text-primary: #1a2e22;
  /* Deep Forest Green */
  --text-secondary: #5c6b62;
  /* Soft Grey-Green */
  --accent: #c13940;
  /* Muted Terra Red - RESTORED */
  --accent-hover: #a32a30;
  --footer-bg: #14261c;
  /* Darker Green for Footer */

  /* Typography - RESTORED */
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Poppins", sans-serif;

  /* UI */
  --container: 1200px;
  --radius: 16px;
  --shadow: 0 10px 30px -10px rgba(26, 46, 34, 0.08);
  --shadow-hover: 0 20px 50px -10px rgba(26, 46, 34, 0.15);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Allow selection in form fields */
input,
textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Prevent image dragging */
img {
  pointer-events: none;
  /* Disables right click/drag specifically on images */
  -webkit-user-drag: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

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

/* =========================================
   2. NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(249, 248, 246, 0.95);
  backdrop-filter: blur(15px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

.nav-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  height: 80px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  max-height: 56px;
  height: auto;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-nav {
  padding: 12px 28px;
  background: var(--text-primary);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-nav:hover {
  background: var(--accent);
}

.menu-toggle,
.close-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;

  /* Background image */
  background-image:

    url("./images/hero-bg.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-container {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  /* Stacked and centered by default */
  gap: 2rem;
  align-items: center;
}

.hero-content-text {
  color: white;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-content-img {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-content-img img {
  width: auto;
  height: auto;
  max-width: 280px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

.hero-tag {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.text-highlight {
  color: #e8dcc4;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}

.hero-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 650px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(193, 57, 64, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--text-primary);
}

/* =========================================
   4. SECTIONS & COMPONENTS
   ========================================= */
.section {
  padding: 7rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.underline {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 1rem;
}

/* =========================================
   PREMIUM FMCG-GRADE PROCESS SECTION: "GARDEN TO CUP"
   ========================================= */

/* Section Base */
.about-connected {
  padding: 8rem 0;
  background: #faf8f5;
  /* Soft cream / off-white */
  position: relative;
  overflow: hidden;
}

/* Header Styling */
.header-minimal {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 6rem;
}

.badge-pill {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid rgba(26, 46, 34, 0.15);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #1a2e22;
  background: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.4rem;
}

.header-minimal h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a2e22;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.underline-small {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #c13940, #d14850);
  margin: 0 auto 1.4rem;
  border-radius: 2px;
}

.header-minimal p {
  color: #5c6b62;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* =========================================
   JOURNEY LAYOUT - Desktop Horizontal Flow
   ========================================= */

.process-journey {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 0 2rem;
}

/* Horizontal Curved Connector (Behind Icons) */
.journey-connector-desktop {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 180px;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.journey-connector-mobile {
  display: none;
}

/* =========================================
   INDIVIDUAL JOURNEY STEP
   ========================================= */

.journey-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Middle Step - Positioned Lower (on curve dip) */
.step-middle {
  margin-top: 4rem;
}

/* Icon Wrapper Container */
.step-icon-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5rem;
}

/* Icon Circle */
.icon-circle {
  width: 88px;
  height: 88px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #c13940;
  box-shadow:
    0 8px 24px rgba(26, 46, 34, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 3;
}

/* Step Number Badge */
.step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, #c13940, #d14850);
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #faf8f5;
  box-shadow: 0 4px 12px rgba(193, 57, 64, 0.35);
  letter-spacing: 0.5px;
}

/* Vertical Connector Line: Icon → Card */
.vertical-connector {
  width: 2px;
  height: 2.5rem;
  background: linear-gradient(to bottom,
      rgba(212, 197, 176, 0.5),
      rgba(212, 197, 176, 0.15));
  margin-top: 0;
  z-index: 1;
}

/* =========================================
   STEP CARD (White Card Below Icon)
   ========================================= */

.step-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 18px;
  width: 100%;
  max-width: 320px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow:
    0 4px 16px rgba(26, 46, 34, 0.04),
    0 1px 4px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  z-index: 2;
}

.step-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a2e22;
  margin-bottom: 0.9rem;
  letter-spacing: -0.3px;
}

.step-card p {
  font-size: 0.95rem;
  color: #5c6b62;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

/* =========================================
   HOVER EFFECTS
   ========================================= */

.journey-step:hover .icon-circle {
  transform: scale(1.08) translateY(-4px);
  box-shadow:
    0 12px 32px rgba(193, 57, 64, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: rgba(193, 57, 64, 0.15);
}

.journey-step:hover .step-card {
  transform: translateY(-6px);
  box-shadow:
    0 16px 40px rgba(26, 46, 34, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04);
}

/* =========================================
   RESPONSIVE DESIGN - Mobile Vertical Flow
   ========================================= */

@media (max-width: 1024px) {
  .process-journey {
    gap: 2.5rem;
  }

  .step-middle {
    margin-top: 3.5rem;
  }
}

@media (max-width: 768px) {
  .about-connected {
    padding: 6rem 0;
  }

  .header-minimal {
    margin-bottom: 5rem;
  }

  .header-minimal h2 {
    font-size: 2.3rem;
  }

  .header-minimal p {
    font-size: 1rem;
  }

  /* Switch to Vertical Layout */
  .process-journey {
    grid-template-columns: 1fr;
    gap: 5rem;
    max-width: 420px;
    padding: 0 1.5rem;
  }

  /* Hide desktop curve, show mobile S-curve */
  .journey-connector-desktop {
    display: none;
  }

  .journey-connector-mobile {
    display: block;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: calc(100% - 100px);
    z-index: 0;
    pointer-events: none;
  }

  /* Remove middle step offset on mobile */
  .step-middle {
    margin-top: 0;
  }

  .step-icon-wrapper {
    margin-bottom: 2.8rem;
  }

  .vertical-connector {
    height: 2.8rem;
  }

  .icon-circle {
    width: 84px;
    height: 84px;
  }

  .step-card {
    max-width: 100%;
    padding: 2.3rem 1.9rem;
  }

  .step-card h3 {
    font-size: 1.28rem;
  }

  .step-card p {
    font-size: 0.93rem;
  }
}

@media (max-width: 480px) {
  .about-connected {
    padding: 5rem 0;
  }

  .header-minimal {
    margin-bottom: 4.5rem;
  }

  .header-minimal h2 {
    font-size: 2rem;
  }

  .process-journey {
    gap: 4.5rem;
    padding: 0 1rem;
  }

  .icon-circle {
    width: 80px;
    height: 80px;
  }

  .step-num {
    width: 28px;
    height: 28px;
    font-size: 0.66rem;
  }

  .step-card {
    padding: 2.1rem 1.7rem;
  }

  .step-card h3 {
    font-size: 1.2rem;
  }

  .step-card p {
    font-size: 0.91rem;
  }

  .vertical-connector {
    height: 2.6rem;
  }
}

@media (max-width: 360px) {
  .header-minimal h2 {
    font-size: 1.8rem;
  }

  .process-journey {
    gap: 4rem;
  }

  .icon-circle {
    width: 76px;
    height: 76px;
  }

  .step-card {
    padding: 1.9rem 1.5rem;
  }

  .step-card h3 {
    font-size: 1.15rem;
  }

  .step-card p {
    font-size: 0.89rem;
    line-height: 1.65;
  }
}

/* =========================================
   5. NEW TRUSTED SECTION
   ========================================= */
.trusted-section {
  background-color: #f2f0eb;
  /* Slightly different shade for separation */
}

.trusted-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.trusted-img-wrapper {
  display: flex;
  justify-content: center;
}

.trusted-img-wrapper img {
  border-radius: var(--radius);
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
  width: auto;
  height: auto;
  max-width: 240px;
}

.trusted-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* =========================================
   6. TESTIMONIALS CAROUSEL SECTION
   ========================================= */
.testimonials-carousel-section {
  background: var(--bg-body);
  /* Warm Cream */
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.testimonials-carousel-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.testimonials-carousel-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  /* Deep Forest Green */
  letter-spacing: -0.02em;
}

.highlight-text {
  color: var(--accent);
  /* Muted Terra Red */
}

/* Carousel Wrapper */
.testimonials-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 0;
  /* Removed bottom margin as button is gone */
}

/* Carousel Track Container */
.testimonials-carousel-track-container {
  overflow: hidden;
  flex: 1;
}

.testimonials-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Carousel Slide */
.testimonial-carousel-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 0 1rem;
}

/* Testimonial Cards */
.testimonial-carousel-card {
  background: #ffffff;
  border: 1px solid rgba(26, 46, 34, 0.08);
  /* Subtle green border */
  border-radius: 16px;
  padding: 2.2rem;
  box-shadow: 0 10px 30px -10px rgba(26, 46, 34, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonial-carousel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -10px rgba(26, 46, 34, 0.12);
  border-color: rgba(193, 57, 64, 0.15);
  /* Accent border on hover */
}

/* Card Header */
.testimonial-carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-carousel-stars span {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-carousel-date {
  font-size: 0.85rem;
  color: #9ca3af;
  font-weight: 400;
}

/* Card Text */
.testimonial-carousel-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
  font-style: italic;
}

/* Card Author */
.testimonial-carousel-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-carousel-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(193, 57, 64, 0.2);
}

.testimonial-carousel-info {
  flex: 1;
}

.testimonial-carousel-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 2px 0;
  line-height: 1.3;
}

.testimonial-carousel-info span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Navigation Arrows */
.carousel-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(26, 46, 34, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  color: var(--text-secondary);
}

.carousel-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 8px 20px rgba(193, 57, 64, 0.25);
}

.carousel-arrow svg {
  stroke: currentColor;
  transition: stroke 0.3s ease;
}

.carousel-arrow:active {
  transform: translateY(0);
}

/* View All Button Removed */
.testimonials-carousel-footer {
  display: none;
}

/* =========================================
   7. PRODUCT CARDS
   ========================================= */
.mini-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(193, 57, 64, 0.08);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.tea-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.tea-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.card-image-wrapper {
  background: #f4f3f0;
  padding: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tea-img {
  width: auto;
  height: auto;
  max-width: 180px;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
}

.tea-card:hover .tea-img {
  transform: scale(1.1) rotate(2deg);
}

.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--bg-white);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.card-top h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.2rem;
}

.desc {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  min-height: 45px;
}

.add-btn {
  width: 100%;
  padding: 14px;
  background: transparent;
  margin-top: auto;
  border: 2px solid var(--text-primary);
  color: var(--text-primary);
  font-weight: 700;
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.add-btn:hover {
  background: var(--text-primary);
  color: white;
}

/* 1. Wrapper ko Full Width aur Relative banaya */
.wholesale-wrapper {
  position: relative;
  width: 100%;
  /* Aapki requirement ke hisaab se full width */
  margin-top: 70px;
  /* Upar jagah di taaki character ka sar na kate */
}

/* 2. Image ko Card ke UPAR lana (Holding Effect) */
.wholesale-board-img-abs {
  position: absolute;
  /* Top value adjust karein taaki haath border pe perfectly baithein */
  top: -214px;
  left: 50%;
  transform: translateX(-50%);

  width: 500px;
  /* Image size */
  height: auto;

  /* SABSE IMPORTANT: Ye card ke upar hona chahiye taaki haath dikhein */
  z-index: 10;
}

/* 3. Main Banner Design */
.wholesale-banner-original {
  position: relative;
  /* Card ka z-index kam rakha taaki wo image ke peeche rahe */
  z-index: 1;

  background: linear-gradient(135deg, #1a2e22 0%, #2c4a3b 100%);
  border-radius: 20px;
  padding: 3rem 4rem;
  color: white;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  /* Mobile pe content niche flow karega */
  gap: 2rem;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Content Text Styling */
.ws-content {
  flex: 1;
  /* Text maximum jagah lega */
  min-width: 300px;
  /* Text bahut shrink nahi hoga */
}

.ws-content h2 {
  color: white;
  margin-bottom: 0.8rem;
  font-size: 2rem;
  font-weight: 700;
}

.ws-content p {
  opacity: 0.9;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #e0e0e0;
}

/* Button Styling */
.ws-action {
  flex-shrink: 0;
  /* Button shrink nahi hoga */
}

.btn-light {
  background: white;
  color: #1a2e22;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  /* Text tootega nahi */
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* --- RESPONSIVE MOBILE CSS --- */
@media (max-width: 768px) {
  .wholesale-banner-original {
    flex-direction: column;
    /* Content upar, button neeche */
    text-align: center;
    padding: 3.5rem 2rem 2.5rem;
    /* Top padding thodi zyada taaki image se distance rahe */
  }

  .wholesale-board-img-abs {
    width: 700px;
    /* Mobile pe image thodi choti */
    top: -140px;
    /* Position thoda adjust */
  }

  .ws-content {
    min-width: 100%;
    margin-bottom: 1rem;
  }

  .ws-content h2 {
    font-size: 1.6rem;
  }

  .ws-content p {
    font-size: 1rem;
  }
}

/* =========================================
   7. PIXEL-ACCURATE INQUIRY REDESIGN (REF-SYNC)
   ========================================= */

.order-section {
  background-color: #f6f3ee;
  /* Soft warm neutral background */
  background-image: radial-gradient(circle at 50% 50%,
      rgba(255, 255, 255, 0.4) 0%,
      transparent 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 850px;
}

/* Texture Overlay */
.order-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.in/patterns/natural-paper.png");
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

/* Strictly Locked Container */
.container-restricted {
  max-width: var(--container) !important;
  /* Match other sections */
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.order-layout-grid-pixel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  /* Adjusted for wider form */
  gap: 50px;
  /* Precise balance gap */
  align-items: center;
  /* Vertical alignment lock */
  justify-content: center;
}

/* Character Alignment Tooling */
.character-col {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  /* Height mapping */
}

.character-pivot {
  width: 100%;
  max-width: 440px;
  /* Slightly scaled up for balance */
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.12));
  transform: translateY(10px);
}

/* Pixel-Perfect Form Card */
.pixel-form-card {
  background: #fdfcf9;
  /* Card color from reference */
  padding: 60px 40px 50px 40px;
  border-radius: 40px;
  /* Exact roundedness */
  box-shadow:
    0 50px 100px -20px rgba(26, 46, 34, 0.12),
    0 10px 40px -5px rgba(26, 46, 34, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  width: 100%;
  max-width: 720px;
  /* INCREASED WIDTH as requested */
}

/* Row Layout for Inputs */
.pixel-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 5px;
  /* Spacing handled by group gaps */
}

/* Floating Badge */
.form-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #5d7c47;
  /* Muted Green Badge */
  color: #fff;
  padding: 10px 28px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(93, 124, 71, 0.3);
  white-space: nowrap;
  z-index: 2;
}

.pixel-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.pixel-title {
  font-size: 2.6rem;
  color: #2c3e2d;
  /* Refined Darker Green/Black */
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
}

.pixel-subtitle {
  font-size: 1rem;
  color: #718096;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

/* Recreation Form Fields */
.recreation-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* Tight, balanced spacing */
}

.pixel-input-group {
  display: flex;
  flex-direction: column;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
  background: #f1f3f0;
  /* Soft filled field */
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  padding: 0 18px;
  transition: all 0.3s ease;
}

.input-with-icon:focus-within {
  background: #fff;
  border-color: #5d7c47;
  box-shadow: 0 4px 12px rgba(93, 124, 71, 0.08);
}

.field-icon {
  margin-right: 15px;
  color: #718096;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.align-top {
  align-items: flex-start;
  padding-top: 15px;
}

.mt-2 {
  margin-top: 2px;
}

.pixel-field {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #2d3748;
  font-weight: 500;
}

.pixel-field:focus {
  outline: none;
}

.pixel-area {
  resize: none;
  min-height: 100px;
}

/* Inline Errors */
.error-msg-pixel {
  font-size: 0.75rem;
  color: #e53e3e;
  margin-top: 4px;
  margin-left: 50px;
  height: 14px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.error-msg-pixel.visible {
  opacity: 1;
}

/* Gradient Submit Button */
.pixel-btn-submit {
  margin-top: 15px;
  width: 100%;
  padding: 4px;
  /* Space for the inner container border */
  background: linear-gradient(135deg, #6b8e23 0%, #4a5d23 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(74, 93, 35, 0.3);
}

.pixel-btn-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px;
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.wa-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pixel-btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(74, 93, 35, 0.4);
  filter: brightness(1.1);
}

/* VERIFIED MOBILE RULES */
@media (max-width: 768px) {
  .order-section {
    padding: 80px 0;
    min-height: auto;
  }

  .container-restricted {
    padding: 0 24px;
  }

  .order-layout-grid-pixel {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .character-pivot {
    max-width: 320px;
    transform: translateY(0);
  }

  .pixel-form-card {
    padding: 50px 30px 40px 30px;
    max-width: 100%;
    border-radius: 28px;
  }

  .pixel-title {
    font-size: 2.1rem;
  }

  .pixel-subtitle {
    font-size: 0.95rem;
  }

  .pixel-form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* =========================================
   8. FOOTER
   ========================================= */
.footer-wave {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
  z-index: 1;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: linear-gradient(180deg, #1a2e22 0%, #14261c 100%);
  color: white;
  padding: 5rem 0 0;
  margin-top: 0;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand Column */
.footer-brand {
  max-width: 100%;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.footer-logo-link:hover {
  transform: translateY(-3px);
}

.footer-logo-img {
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transition: all 0.3s ease;
}

.footer-logo-link:hover .footer-logo-img {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.footer-brand-title {
  font-size: 1.75rem;
  color: white;
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.footer-brand-desc {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.footer-brand-desc strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* Social Media */
.footer-social {
  margin-top: 1.5rem;
}

.footer-social-title {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
}

.social-whatsapp:hover {
  background: #25d366;
  color: white;
}

.social-instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-facebook:hover {
  background: #1877f2;
  color: white;
}

.social-email:hover {
  background: var(--accent);
  color: white;
}

/* Footer Columns */
.footer-column {
  min-width: 0;
}

.footer-column-title {
  font-size: 1rem;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.75rem;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-block;
}

.footer-list a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

/* Footer Badges */
.footer-badge-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.footer-badge {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(193, 57, 64, 0.15);
  border: 1px solid rgba(193, 57, 64, 0.3);
  border-radius: 20px;
  color: #f0a8ab;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Contact Column */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.footer-contact-item svg {
  min-width: 18px;
  margin-top: 2px;
  opacity: 0.7;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: var(--accent);
}

/* Business Hours */
.footer-hours {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-hours-title {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-hours-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-hours-text strong {
  color: rgba(255, 255, 255, 0.9);
}

/* Newsletter Section */
.footer-newsletter {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem 2rem;
  background: rgba(193, 57, 64, 0.08);
  border: 1px solid rgba(193, 57, 64, 0.15);
  border-radius: 16px;
  margin-bottom: 3rem;
}

.newsletter-title {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.newsletter-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent);
}

.newsletter-btn {
  padding: 14px 28px;
  background: linear-gradient(135deg, #c13940, #d14850);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: linear-gradient(135deg, #d14850, #e15860);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(193, 57, 64, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}

.footer-copyright strong {
  color: rgba(255, 255, 255, 0.8);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: var(--accent);
}

.footer-legal-links .separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Certifications */
.footer-certifications {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cert-badge {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cert-badge svg {
  opacity: 0.8;
}

/* Footer Mobile Responsive */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 600px;
  }

  .footer-newsletter {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 4rem 0 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-newsletter {
    padding: 2rem 1.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-legal-links {
    justify-content: center;
  }

  .footer-certifications {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 3rem 0 0;
  }

  .footer-brand-title {
    font-size: 1.5rem;
  }

  .newsletter-title {
    font-size: 1.25rem;
  }

  .social-link {
    width: 38px;
    height: 38px;
  }

  .cert-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
}


/* Fixed WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 64px;
  height: 64px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 2000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

/* Popup */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transform: translateY(30px);
  transition: 0.4s;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.popup-overlay.show .popup-box {
  transform: translateY(0);
}

.popup-icon {
  font-size: 3rem;
  color: #25d366;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    gap: 3rem;
  }

  .wholesale-banner {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {

  /* Mobile Menu Backdrop */
  .nav-links::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: -1;
  }

  .nav-links.active::before {
    opacity: 1;
    visibility: visible;
  }

  /* Mobile Menu Drawer */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 85%;
    height: 100vh;
    background: linear-gradient(180deg, #1a2e22 0%, #14261c 100%);
    flex-direction: column;
    padding: 90px 1.5rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
    gap: 0;
    z-index: 10000;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  /* Mobile Menu Items */
  .nav-links li {
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links.active li:nth-child(2) {
    transition-delay: 0.15s;
  }

  .nav-links.active li:nth-child(3) {
    transition-delay: 0.2s;
  }

  .nav-links.active li:nth-child(4) {
    transition-delay: 0.25s;
  }

  .nav-links.active li:nth-child(5) {
    transition-delay: 0.3s;
  }

  .nav-links.active li:nth-child(6) {
    transition-delay: 0.35s;
  }

  .nav-link {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link:active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding-left: 28px;
  }

  .nav-link:hover::before {
    transform: scaleY(1);
  }

  .btn-nav {
    width: 100%;
    padding: 16px 24px;
    text-align: center;
    border-radius: 12px;
    font-size: 1.05rem;
    margin-top: 12px;
    background: linear-gradient(135deg, var(--accent), #d14850);
    box-shadow: 0 6px 20px rgba(193, 57, 64, 0.2);
  }

  .btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(193, 57, 64, 0.3);
  }

  /* Hamburger Menu Icon */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
    z-index: 10001;
  }

  .menu-toggle:hover {
    background: rgba(193, 57, 64, 0.08);
  }

  .bar {
    width: 26px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Hero adjustments */
  .hero {
    padding-top: 2rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-content-text {
    align-items: center;
    text-align: center;
  }

  .btn-group {
    justify-content: center;
  }

  .hero-content {
    padding-top: 100px;
  }

  .testimonials-carousel-section {
    padding: 3rem 0;
  }

  .testimonials-carousel-header {
    margin-bottom: 2rem;
  }

  .testimonials-carousel-title {
    font-size: 1.8rem;
  }

  .testimonials-carousel-wrapper {
    gap: 0.5rem;
    /* Reduced gap between arrows and content */
  }

  .testimonial-carousel-slide {
    grid-template-columns: 1fr;
    /* Force 1 column */
    gap: 1rem;
    padding: 0 0.5rem;
  }

  .testimonial-carousel-card {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .carousel-arrow {
    width: 32px;
    /* Smaller mobile buttons */
    height: 32px;
    padding: 0;
  }

  .carousel-arrow svg {
    width: 16px;
    height: 16px;
  }

  .testimonials-title {
    font-size: 2rem;
  }

  .testimonials-subtitle {
    font-size: 1rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.8rem;
  }

  .testimonial-author {
    flex-wrap: wrap;
  }

  .testimonial-stars {
    margin-left: 0;
    width: 100%;
    text-align: right;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-wrapper {
    padding: 2rem;
  }

  .footer-links {
    gap: 3rem;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .logo img {
    max-height: 48px;
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hero-content-img img {
    max-width: 360px;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .about-image img {
    max-width: 320px;
  }

  .trusted-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .trusted-img-wrapper img {
    max-width: 320px;
  }

  .order-layout-grid {
    grid-template-columns: 1fr 1fr;
  }

  .order-image-wrapper img {
    max-width: 280px;
  }
}

@media (min-width: 1200px) {
  .logo img {
    max-height: 56px;
  }

  .hero-container {
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
  }

  .hero-content-img img {
    max-width: 460px;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .about-image img {
    max-width: 380px;
  }

  .trusted-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .trusted-img-wrapper img {
    max-width: 360px;
  }

  .order-layout-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .order-image-wrapper img {
    max-width: 360px;
  }
}

@media (max-width: 767px) {
  .logo img {
    max-height: 40px;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .about-image img {
    width: auto;
    height: auto;
    max-width: 280px;
  }

  .trusted-content,
  .order-image-wrapper {
    align-items: center;
    text-align: center;
  }

  .btn-light {
    width: 100%;
  }
}

/* =========================================
   TRUSTED SECTION WAVES
   ========================================= */
.trusted-section {
  position: relative;
  background-color: #ffffff;
  /* Distinct background for waves to be visible */
  margin: 6rem 0;
  padding: 6rem 0;
  z-index: 5;
}

.trusted-wave {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.trusted-wave svg {
  display: block;
  width: 100%;
  height: 100px;
  /* Increased height for better visibility */
  transform: scaleY(1.05);
}

.trusted-wave-top {
  top: 0;
  transform: translateY(-99%);
}

.trusted-wave-bottom {
  bottom: 0;
  transform: translateY(99%);
}

.trusted-grid {
  position: relative;
  z-index: 2;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
  background: linear-gradient(180deg, #f9f8f6 0%, #f1ede5 100%);
  padding: 7rem 0;
}

.faq-intro {
  color: #5c6b62;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.text-highlight-dark {
  color: var(--accent);
  position: relative;
}

.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow:
    0 4px 20px rgba(26, 46, 34, 0.04),
    0 1px 4px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow:
    0 8px 32px rgba(26, 46, 34, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: rgba(193, 57, 64, 0.15);
  box-shadow:
    0 8px 32px rgba(193, 57, 64, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(249, 248, 246, 0.5);
}

.faq-q-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #c13940, #d14850);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.faq-q-text {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: #f1ede5;
  color: #5c6b62;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-toggle {
  background: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px;
}

.faq-answer-text {
  color: #5c6b62;
  font-size: 0.98rem;
  line-height: 1.8;
  padding-left: 52px;
}

.faq-answer-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* FAQ Mobile */
@media (max-width: 768px) {
  .faq-section {
    padding: 5rem 0;
  }

  .faq-question {
    padding: 18px 20px;
    gap: 12px;
  }

  .faq-q-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 0.78rem;
  }

  .faq-q-text {
    font-size: 0.95rem;
  }

  .faq-toggle {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }

  .faq-answer-text {
    padding-left: 44px;
    font-size: 0.92rem;
  }
}

@media (max-width: 480px) {
  .faq-answer-text {
    padding-left: 0;
  }
}

/* =========================================
   LOCATION MAP SECTION
   ========================================= */
.location-section {
  background: linear-gradient(180deg, #f9f8f6 0%, #eae5dc 50%, #f9f8f6 100%);
  padding: 7rem 0;
  position: relative;
}

.location-intro {
  color: #5c6b62;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: start;
}

/* Map Glass Card */
.map-glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 20px 60px rgba(26, 46, 34, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.4s ease;
}

.map-glass-card:hover {
  box-shadow:
    0 30px 80px rgba(26, 46, 34, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.map-glass-card iframe {
  display: block;
  width: 100%;
  border-radius: 20px;
}

/* Location Info Cards */
.location-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow:
    0 4px 16px rgba(26, 46, 34, 0.04),
    0 1px 4px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 32px rgba(26, 46, 34, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

.loc-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f7f3ed 0%, #ede8de 100%);
  color: var(--accent);
  transition: all 0.3s ease;
}

.location-card:hover .loc-card-icon {
  background: linear-gradient(135deg, #c13940, #d14850);
  color: #fff;
}

.loc-card-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: 0;
}

.loc-card-content p {
  font-size: 0.95rem;
  color: #4a5568;
  font-weight: 500;
  margin-bottom: 2px;
}

.loc-card-sub {
  font-size: 0.8rem;
  color: #a0aec0;
  font-weight: 400;
}

/* WhatsApp CTA Card */
.location-card-cta {
  background: linear-gradient(135deg, #25d366 0%, #128c50 100%);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.location-card-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.location-card-cta:hover::before {
  opacity: 1;
}

.location-card-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 32px rgba(37, 211, 102, 0.3),
    0 4px 12px rgba(37, 211, 102, 0.15);
}

.loc-cta-link {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  text-decoration: none;
}

.loc-icon-wa {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}

.location-card-cta .loc-card-content h4,
.location-card-cta .loc-card-content p {
  color: #fff;
}

.location-card-cta .loc-card-sub {
  color: rgba(255, 255, 255, 0.7);
}

.loc-cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.location-card-cta:hover .loc-cta-arrow {
  color: #fff;
  transform: translateX(4px);
}

/* Location Responsive */
@media (max-width: 992px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .map-glass-card iframe {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .location-section {
    padding: 5rem 0;
  }

  .location-card {
    padding: 20px 22px;
    gap: 16px;
  }

  .loc-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
  }

  .map-glass-card {
    padding: 6px;
    border-radius: 20px;
  }

  .map-glass-card iframe {
    height: 280px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .location-card {
    padding: 18px;
    gap: 14px;
    border-radius: 14px;
  }

  .loc-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
  }

  .loc-card-content h4 {
    font-size: 0.92rem;
  }

  .loc-card-content p {
    font-size: 0.88rem;
  }
}


/* ===================================
   ORDER SECTION - REDESIGNED
   =================================== */

.order-section {
  background: linear-gradient(135deg, #f9f8f6 0%, #fdfcfb 100%);
  padding: 6rem 0;
}

.order-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.character-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.character-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: contain;
}

.form-col {
  width: 100%;
}

.order-form-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 3rem;
  position: relative;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(193, 57, 64, 0.08);
}

.order-form-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 28px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(193, 57, 64, 0.15), rgba(193, 57, 64, 0.05), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}

/* Form Sections */
.form-section {
  margin-bottom: 2.5rem;
  position: relative;
}

.form-section:last-of-type {
  margin-bottom: 2rem;
}

.form-section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a2e22;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f3f4f6;
  position: relative;
}

.form-section-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.optional-tag {
  font-size: 0.85rem;
  font-weight: 500;
  color: #6b7280;
  font-style: italic;
}

/* Form Rows */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Form Groups */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.form-label svg {
  width: 20px;
  height: 20px;
  padding: 6px;
  background: linear-gradient(135deg, rgba(193, 57, 64, 0.1), rgba(193, 57, 64, 0.05));
  border-radius: 8px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Form Inputs */
.form-input {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  color: #1f2937;
  background: linear-gradient(to bottom, #ffffff, #fafafa);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:hover {
  border-color: rgba(193, 57, 64, 0.3);
  background: #ffffff;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(193, 57, 64, 0.08),
    0 4px 12px rgba(193, 57, 64, 0.1);
  transform: translateY(-1px);
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-select {
  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='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 45px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* Quantity Stepper */
.quantity-stepper {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 8px 12px;
  width: fit-content;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.qty-btn:hover {
  background: #af3942;
  transform: scale(1.1);
}

.qty-btn:active {
  transform: scale(0.95);
}

.qty-btn svg {
  pointer-events: none;
}

.qty-input {
  width: 80px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a2e22;
  border: none;
  background: transparent;
  padding: 0;
}

.qty-input:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

/* Error Messages */
.error-msg {
  font-size: 0.85rem;
  color: #dc2626;
  font-weight: 500;
  min-height: 20px;
}

/* Submit Button */
.order-submit-btn {
  width: 100%;
  padding: 20px 32px;
  background: linear-gradient(135deg, #25d366 0%, #1ea952 50%, #128c50 100%);
  background-size: 200% 100%;
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 8px 28px rgba(37, 211, 102, 0.35),
    0 4px 12px rgba(37, 211, 102, 0.2);
  position: relative;
  overflow: hidden;
}

.order-submit-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.order-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 40px rgba(37, 211, 102, 0.4),
    0 6px 16px rgba(37, 211, 102, 0.25);
  background-position: 100% 0;
}

.order-submit-btn:hover::before {
  left: 100%;
}

.order-submit-btn:active {
  transform: translateY(-1px) scale(0.98);
}

.order-submit-btn svg {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Responsive Design */
@media (max-width: 992px) {
  .order-layout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .character-col {
    display: none;
  }
}

@media (max-width: 768px) {
  .order-section {
    padding: 4rem 0;
  }

  .order-form-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .form-section {
    margin-bottom: 2rem;
  }

  .form-section-title {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
  }

  .quantity-stepper {
    width: 100%;
    justify-content: center;
    padding: 12px;
  }

  .qty-input {
    flex: 1;
  }

  .order-submit-btn {
    padding: 16px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .order-form-card {
    padding: 1.5rem 1.25rem;
  }

  .form-label {
    font-size: 0.9rem;
  }

  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .qty-btn {
    width: 32px;
    height: 32px;
  }

  .qty-input {
    font-size: 1.1rem;
  }
}