:root {
  --primary: #0c4833; /* Dark Green */
  --secondary: #f6ffec; /* Pista */
  --accent: #0c4833; /* Use dark green as accent for consistency */
  --background: #f6ffec; /* Pista */
  --text: #0c4833; /* Dark Green for text */
  --cta: #0c4833; /* Dark Green for call to action */
  --cta-gradient: linear-gradient(90deg, #0c4833 0%, #f6ffec 100%);
  --shadow: 0 4px 24px rgba(12, 72, 51, 0.08);
  --shadow-hover: 0 8px 32px rgba(12, 72, 51, 0.16);
  --radius: 18px;
  --font-title: "League Spartan", "Playfair Display", Arial, sans-serif;
  --font-main: "Public Sans", "Inter", "DM Sans", Arial, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --section-padding: 5.5rem 0 4.5rem 0;
  --container-max: 1200px;
}
html {
  scroll-behavior: smooth;
  background: var(--background);
}
body {
  font-family: var(--font-main);
  background: var(--background);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  overflow-x: hidden;
}

header,
section,
footer {
  width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}
/* Universal spacing and border radius */
.container,
.about-container,
.product-grid,
.testimonial-carousel,
.contact-container,
.footer-container {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
  border-radius: 0;
}
/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.7em;
  transition: var(--transition);
}
h1 {
  font-size: 3.1rem;
}
h2 {
  font-size: 2.1rem;
}
h3 {
  font-size: 1.3rem;
}
@media (max-width: 900px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.3rem;
  }
}
/* Center hero image */
.parallax-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; /* so it doesn't block mouse events */
  z-index: 5;
}

.parallax-image {
  height: 80pc;
  width: 80pc;
  transition: transform 0.2s ease, scale 0.3s ease;
  will-change: transform;
}

/* Vitara Cursor System */
.circle {
  height: 24px;
  width: 24px;
  border-radius: 24px;
  background-color: black;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999999; /* so that it stays on top of all other elements */
}
@media (pointer: coarse) {
  .circle {
    display: none;
  }
}


/* New Premium Hero Section */
.premium-hero {
  margin-top: 0 !important;
  padding-top: 40px !important;
  position: relative;
  max-height: 100vh;
  width: 100vw;
  background: url("images/HOME 1 BACKGROUND NEW.png") center center/cover
    no-repeat;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  box-shadow: 0 8px 32px rgba(60, 47, 47, 0.07);
  min-height: 100vh;
}

.premium-hero-bg,
.premium-hero-img-wrap,
.premium-hero-img,
.premium-hero-img-overlay,
.premium-hero-right {
  display: none !important;
}

.premium-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100vw;
  max-width: 1400px;
  margin: 0 auto;
  padding: 7rem 2.5rem 3rem 0; /* remove left padding */
  max-width: 1600px; /* or increase if needed */
  margin-left: 3rem; /* optional */
  gap: 3.5rem;
  height: 100vh;
}

.premium-hero-left {
  flex: 1 1 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
  max-width: 700px;
  padding-right: 0.5rem;
  text-align: left;
  height: auto;
  animation: heroFadeIn 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-intro {
  font-family: "Playfair Display", cursive, serif;
  font-size: 1.3rem;
  color: #0c4833;
  font-style: italic;
  margin-bottom: 1.1em;
  opacity: 0.85;
}

.hero-main-heading {
  font-family: "League Spartan", "Playfair Display", Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #0c4833;
  letter-spacing: 1.2px;
  margin-bottom: 0.7em;
  line-height: 1.08;
}

.hero-subheading {
  font-family: "Public Sans", Arial, sans-serif;
  font-size: 1.18rem;
  color: #0c4833;
  font-weight: 400;
  margin-bottom: 0.7em;
  line-height: 1.5;
}

.hero-brand {
  font-family: "League Spartan", "Playfair Display", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #0c4833;
  letter-spacing: 2px;
  margin-bottom: 1.2em;
  line-height: 1.1;
}

.hero-cta {
  margin-bottom: 2.2em;
}

.hero-feature-row {
  display: flex;
  flex-direction: row;
  gap: 2.2rem;
  margin-top: 10rem;
  margin-right: 20px;
  align-items: center;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  font-family: "Public Sans", Arial, sans-serif;
  font-size: 0.8rem;
  color: #0c4833;
  font-weight: 600;
  background: transparent;
  border-radius: 6px;
  padding: 0.45em 1.1em;
  box-shadow: 0 1px 6px 0 rgba(12, 72, 51, 0.06);
  letter-spacing: 0.5px;
}

.hero-feature-icon {
  font-size: 1.2em;
  margin-right: 0.6em;
  display: inline-block;
}

@media (max-width: 900px) {
  .premium-hero-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 0.5rem 1.5rem 0.5rem;
    height: 100vh;
    margin-left: 0;
  }
  .premium-hero-left {
    max-width: 100vw;
    padding-right: 0;
  }
  .hero-main-heading {
    font-size: 2.2rem;
  }
  .hero-subheading {
    font-size: 1.1rem;
  }
  .hero-feature-row {
    margin-top: 6rem;
    gap: 1.5rem;
  }
  .hero-feature-item {
    font-size: 0.75rem;
    padding: 0.4em 0.8em;
  }
}

@media (max-width: 600px) {
  .premium-hero {
    min-height: 100vh;
    background-position: center center;
  }
  .premium-hero-content {
    padding: 3rem 0.5rem 1rem 0.5rem;
    margin-left: 0;
  }
  .hero-main-heading {
    font-size: 1.8rem;
    letter-spacing: 0.8px;
  }
  .hero-subheading {
    font-size: 1rem;
  }
  .hero-brand {
    font-size: 1.2rem;
  }
  .hero-feature-row {
    margin-top: 4rem;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .hero-feature-item {
    font-size: 0.7rem;
    padding: 0.3em 0.6em;
  }
}

@media (max-width: 480px) {
  .premium-hero-content {
    padding: 2.5rem 0.3rem 1rem 0.3rem;
  }
  .hero-main-heading {
    font-size: 1.6rem;
    letter-spacing: 0.6px;
  }
  .hero-subheading {
    font-size: 0.9rem;
  }
  .hero-brand {
    font-size: 1.1rem;
  }
  .hero-feature-row {
    margin-top: 3rem;
    gap: 0.8rem;
  }
  .hero-feature-item {
    font-size: 0.65rem;
    padding: 0.25em 0.5em;
  }
}

/* Hero section 2 */
.v-hero-alt {
  display: none;
  background: url("images/HERO 2 BACKGROUND.jpg") center center / cover
    no-repeat; /* Replace with your hero image */
  color: #0c4833; /* Dark green */
  font-family: "Public Sans", sans-serif;
  height: 100vh;
  width: 100%;
  padding: 3rem 2rem;
  box-sizing: border-box;
  position: relative;
}

.v-hero-alt-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.v-hero-alt-text {
  margin-top: 5rem;
}

.v-hero-alt-heading {
  font-family: "League Spartan", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.v-hero-alt-subtext {
  font-size: 1.1rem;
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #ffffff;
}

.v-hero-alt-brand {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
}

.v-hero-alt-brand span {
  display: inline-block;
  font-family: "League Spartan", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-top: 0.5rem;
  color: #ffffff;
}

.v-hero-alt-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: "Public Sans", sans-serif;
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}

.v-hero-alt-feature {
  background: rgba(12, 72, 51, 0.08);
  border: 1px solid #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  color: #ffffff;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .v-hero-alt-heading {
    font-size: 2rem;
  }
  .v-hero-alt-subtext {
    font-size: 1rem;
  }
  .v-hero-alt-brand {
    font-size: 1.3rem;
  }
  .v-hero-alt-brand span {
    font-size: 1.5rem;
  }
  .v-hero-alt-features {
    flex-direction: column;
    bottom: 1rem;
    left: 1rem;
  }
}

@media (max-width: 1648px) {
  .v-hero-alt {
    display: block;
  }
  .premium-hero {
    display: none;
  }
}

/* About Section */
/* Prevent X-axis scrolling */
body {
  margin: 0;
  overflow-x: hidden;
}

html,
body {
  height: 100%;
}

/* Fixed section with background */
.jute-section-with-bg {
  display: flex;
  flex-wrap: wrap; /* Ensures responsiveness */
  align-items: center;
  justify-content: center;
  /* height: 100vh; */
  width: 100%;
  background-image: url("images/HOME 2 BACKGROUND NEW.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: "Public Sans", sans-serif;
  padding: 4rem 2rem;
  box-sizing: border-box;
  position: relative;
  color: #0c4833;
  overflow: hidden; /* Stops inner items from escaping */
}

/* Framed image */
.jute-frame-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 480px; /* increased from 420px */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0.5rem; /* reduced from 1rem */
  box-sizing: border-box;
}

.jute-frame {
  border: 8px solid #f6ffec;
  padding: 10px;
  background-color: white;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  transform: scale(1.05); /* subtle confidence boost */
}

.jute-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-text-col {
  flex: 1 1 380px;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 3rem 2.2rem 2.2rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 270px;
  opacity: 0;
  transform: translateY(40px);
  transition: var(--transition);
}

.about-feature-icon {
  width: 100px;
  height: 100px;
}

.about-text-col.visible {
  opacity: 1;
  transform: translateY(0);
}
.about-title {
  font-family: var(--font-title);
  font-size: 2.1rem;
  color: var(--primary);
  margin-bottom: 1.1rem;
  text-align: left;
}
.about-desc {
  color: var(--text);
  font-size: 1.13rem;
  line-height: 1.7;
  text-align: left;
}
.about-signature {
  display: block;
}

/* Content section */
.jute-content {
  flex: 1;
  padding-left: 2rem;
  box-sizing: border-box;
  max-width: 700px;
}

.jute-content h2 {
  font-family: "League Spartan", sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.jute-content .intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature h3 {
  font-family: "League Spartan", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #0c4833;
}

.feature p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===========================
   📱 Responsive Styles (Mobile / Tablets)
   =========================== */
@media (max-width: 768px) {
  .jute-section-with-bg {
    flex-direction: column;
    padding: 2rem 1rem;
    height: auto;
  }

  .jute-frame-wrapper {
    max-width: 100%;
    padding: 1rem 0;
  }

  .jute-frame {
    width: 90%;
    aspect-ratio: 3 / 4;
    transform: scale(1); /* Remove the scale on mobile */
  }

  .jute-content {
    padding-left: 0;
    padding-top: 1rem;
    max-width: 100%;
    text-align: center;
  }

  .jute-content h2 {
    font-size: 2rem;
  }

  .jute-content .intro {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature h3 {
    font-size: 1.1rem;
  }

  .feature p {
    font-size: 0.9rem;
  }

  .about-feature-icon {
    width: 80px;
    height: 80px;
  }
}

/* Why Us */
.v-choose-exact {
  /* height: 85vh; */
  background: url("images/HOME 3 BACKGROUND.jpg") center center / cover
    no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  color: #ffffff;
  font-family: "Public Sans", sans-serif;
}

.v-choose-inner {
  max-width: 1200px;
  width: 100%;
}

.v-choose-pretitle {
  font-family: "Playfair Display", cursive, serif;
  font-style: italic;
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
  color: #ffffff;
}

.v-choose-heading {
  font-family: "League Spartan", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ffffff;
}

.v-choose-subtext {
  max-width: 720px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #ffffff;
}

.v-choose-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.v-feature {
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.v-feature img {
  height: 95px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1); /* Make white */
}

.v-feature h4 {
  font-family: "League Spartan", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.v-feature p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #ffffff;
}

@media (max-width: 768px) {
  .v-choose-exact {
    height: auto;
    padding: 3rem 1rem;
    text-align: center;
  }

  .v-choose-heading {
    font-size: 2rem;
  }

  .v-choose-pretitle {
    font-size: 1.3rem;
  }

  .v-choose-subtext {
    font-size: 0.98rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .v-choose-features {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .v-feature {
    width: 100%;
    max-width: 320px;
  }

  .v-feature img {
    height: 75px; /* Adjust for better scaling */
  }
}

/* Products Section */
.products-section {
  padding: 4rem 2rem;
  background: #f6ffec;
  font-family: "Public Sans", sans-serif;
  text-align: center;
}

.products-subtitle {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #0c4833;
}

.products-title {
  font-family: "League Spartan", sans-serif;
  font-size: 2.5rem;
  color: #0c4833;
  font-weight: 800;
  margin-bottom: 2rem;
}

.product-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 1.5rem;
  padding: 0;
  margin-bottom: 3rem;
  border-bottom: 1px solid #0c4833;
  padding-bottom: 0.5rem;
}

.product-categories li {
  font-weight: 600;
  font-size: 0.95rem;
  color: #0c4833;
  cursor: pointer;
  transition: color 0.3s;
}

.product-categories li:hover {
  color: #1a664e;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0c4833;
  margin-bottom: 0.5rem;
}

.stars {
  font-size: 0.9rem;
  color: #f7c948;
  margin-bottom: 0.3rem;
}

.price {
  font-weight: 600;
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.add-to-cart {
  background-color: #0c4833;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  border-radius: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.add-to-cart:hover {
  background-color: #083926;
}

.product-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  margin-top: 2rem;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch; /* for smooth iOS scroll */
}

.product-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 220px;
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}

/* Our Fabric */
.fabric-section {
  background: url("images/HOME 5 BACKGROUND.jpg") center center / cover
    no-repeat;
  padding: 6rem 2rem;
  text-align: center;
  overflow-x: hidden; /* Prevents horizontal overflow */
}

.fabric-title {
  font-family: "League Spartan", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #0c4833;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.fabric-intro {
  font-family: "Playfair Display", cursive, serif;
  font-size: 1.6rem;
  color: #0c4833;
  font-style: italic;
  opacity: 0.85;
}

/* Desktop Grid Layout */
.fabric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 5rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.fabric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}

.fabric-item img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.fabric-item img:hover {
  transform: scale(1.05);
}

.fabric-item p {
  font-family: "Public Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0c4833;
  margin-top: 0.5rem;
  letter-spacing: 0.3px;
}

/* Mobile: Horizontal Scroll */
/* Override grid only on smaller screens */
@media (max-width: 768px) {
  .fabric-grid {
    display: block;
    white-space: nowrap;
    overflow-x: auto;
    padding: 1rem 1.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .fabric-item {
    display: inline-block;
    vertical-align: top;
    width: 180px;
    margin-right: 1rem;
    scroll-snap-align: start;
  }

  .fabric-item img {
    width: 160px;
    height: 160px;
  }

  .fabric-item p {
    font-size: 1rem;
  }
}

/* Vintara Stats */
.vintara-stats-section {
  background: url("images/HOME 6 Background.jpg") center center/cover no-repeat;
  padding: 6rem 1rem;
  color: #0c4833;
  font-family: "Public Sans", Arial, sans-serif;
  text-align: center;
  position: relative;
}

.vintara-stats-overlay {
  background: rgba(246, 255, 236, 0.85); /* optional soft tint */
  padding: 3rem 2rem;
  border-radius: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.vintara-stats-subtag {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #d4f4cf;
  color: #0c4833;
  padding: 0.4rem 1rem;
  border-radius: 12px;
  font-family: "Public Sans", sans-serif;
  display: inline-block;
  margin-bottom: 1.2rem;
}

.vintara-stats-title {
  font-family: "League Spartan", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #0c4833;
}

.vintara-stats-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #0c4833;
  line-height: 1.6;
}

.vintara-stats-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.vintara-stat-box {
  background: #ffffff;
  /* padding: 2rem 2.5rem; */
  border-radius: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  flex: 1 1 250px;
  padding-top: 30px;
  padding-bottom: 30px;
  min-width: 220px;
}

.vintara-stat-number {
  font-size: 2rem;
  font-weight: 800;
  font-family: "League Spartan", sans-serif;
  color: #0c4833;
  margin-bottom: 0.5rem;
}

.vintara-stat-label {
  font-size: 0.95rem;
  color: #0c4833;
}

/* Testimonial Section */
.testimonial-section {
  background-color: #0c4833;
  color: #f6ffec;
  padding: 5rem 1.5rem;
  padding-right: 1.5rem;
  font-family: "Public Sans", sans-serif;
  text-align: center;
  overflow: hidden;
  width: 100%;
}

.testimonial-heading h2 {
  font-family: "League Spartan", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #f6ffec;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  animation: scrollSlider 50s linear infinite;
  gap: 2rem;
  width: max-content;
}

.testimonial-card {
  flex: 0 0 600px;
  max-width: 90vw;
  background-color: #ffffff;
  color: #0c4833;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease-in-out;
}

.testimonial-card:hover {
  transform: scale(1.02);
}

.testimonial-image {
  flex: 1 1 40%;
  min-width: 160px;
}

.testimonial-image img {
  width: 100%;
  padding-bottom: 1rem;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 15px;
}

.testimonial-content {
  flex: 1 1 60%;
  padding: 1.8rem 2rem;
  text-align: left;
}

.testimonial-content h4 {
  font-family: "League Spartan", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}

.testimonial-content .subtext {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.testimonial-content .quote {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

/* CTA Button */
.testimonial-cta {
  margin-top: 3rem;
}

.btn-green {
  background-color: #f6ffec;
  color: #0c4833;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  font-family: "Public Sans", sans-serif;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-green:hover {
  background-color: #e4f3db;
}

/* Carousel Animation */
@keyframes scrollSlider {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-heading h2 {
    font-size: 1.8rem;
  }

  .testimonial-track {
    animation-duration: 60s;
  }

  .testimonial-card {
    flex-direction: column;
    flex: 0 0 85vw;
    min-height: auto;
  }

  .testimonial-image img {
    border-radius: 50%;
    width: 120px; /* or any equal value */
    height: 120px;
  }

  .testimonial-content {
    padding: 0.8rem 1rem 0.5rem 1rem;
    text-align: center;
  }

  .testimonial-content h4 {
    font-size: 1.1rem;
  }

  .testimonial-content .subtext,
  .testimonial-content .quote {
    font-size: 0.95rem;
  }

  .btn-green {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .testimonial-heading h2 {
    font-size: 1.3rem;
  }

  .testimonial-content .quote {
    font-size: 1rem;
  }

  .testimonial-card {
    flex: 0 0 95vw;
  }
}

/* Apply this globally to ensure all elements respect box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Ensures no horizontal scroll on body */
}

.testimonial-section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  padding: 3rem 5vw;
}

.testimonial-section h2 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 0rem;
}

/* Scrollable container */
.testimonial-cards-wrapper {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonial-cards-wrapper::-webkit-scrollbar {
  display: none;
}

/* Card Styling */
.testimonial-card {
  width: 320px; /* Or your preferred fixed width */
  flex-shrink: 0; /* Prevent it from shrinking inside flex */
  height: auto; /* Let height be based on content */
  padding: 1rem 1rem 0rem 1rem;
  border-radius: 12px;
  background: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

/* Contact Section */
.contact-us {
  background: var(--background);
  padding: var(--section-padding);
}
.contact-container {
  display: flex;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact-form-col {
  flex: 1 1 340px;
  min-width: 270px;
  background: var(--background);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 3rem 2.2rem 2.2rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.contact-title {
  font-family: var(--font-title);
  font-size: 2.1rem;
  color: var(--primary);
  margin-bottom: 1.3rem;
  text-align: left;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-form input,
.contact-form textarea {
  padding: 1.1rem 1.2rem;
  border: 1.5px solid var(--secondary);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-main);
  background: var(--background);
  color: var(--text);
  resize: none;
  outline: none;
  box-shadow: 0 0 0 0 rgba(193, 154, 107, 0);
  transition: var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(193, 154, 107, 0.13);
}
.contact-form button {
  background: var(--cta);
  background-image: var(--cta-gradient);
  color: var(--background);
  border: none;
  padding: 1rem 2.2rem;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-family: var(--font-main);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.2rem;
  box-shadow: var(--shadow);
}
.contact-form button:hover {
  background: var(--accent);
  color: var(--primary);
  box-shadow: var(--shadow-hover);
}
.contact-success {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  color: var(--primary);
  min-height: 1.2em;
  font-family: var(--font-main);
  transition: color 0.2s;
}
.contact-info-col {
  flex: 1 1 340px;
  min-width: 270px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.contact-info-box {
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 3rem 2.2rem 2.2rem 2.2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  justify-content: flex-start;
}
.contact-info-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.7rem;
}
.contact-info-item {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.2rem;
  font-family: var(--font-main);
}
.contact-map-placeholder {
  margin-top: 1.2rem;
  background: var(--secondary);
  color: var(--accent);
  border-radius: 10px;
  padding: 1.2rem;
  text-align: center;
  font-size: 1rem;
  font-style: italic;
  opacity: 0.7;
}
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 2.2rem;
    padding: 0 0.5rem;
  }
  .contact-form-col,
  .contact-info-col {
    min-width: 0;
    width: 100%;
    padding: 0;
  }
  .contact-info-box {
    padding: 2rem 1.1rem 1.5rem 1.1rem;
  }
}
@media (max-width: 600px) {
  .contact-title {
    font-size: 1.3rem;
  }
  .contact-info-title {
    font-size: 1.05rem;
  }
  .contact-info-item,
  .contact-map-placeholder {
    font-size: 0.98rem;
  }
}
/* Footer */
.v-footer {
  background-image: url("images/footerBackground.jpg");
  background-size: cover;
  background-position: center;
  color: #f6ffec;
  font-family: "Public Sans", sans-serif;
  padding: 4rem 2rem 2rem 2rem;
}

.v-footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}

.v-footer-column {
  flex: 1 1 300px;
  color: #f6ffec;
}

.v-footer-column h4 {
  font-family: "League Spartan", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.v-footer-column p,
.v-footer-column a {
  font-size: 1rem;
  line-height: 1.6;
  color: #f6ffec;
  text-decoration: none;
}

.v-footer-column a:hover {
  text-decoration: underline;
}

.v-footer-logo img {
  max-height: 200px; /* Increased from 100px */
  margin: 0 auto;
  display: block;
  transition: transform 0.3s ease;
}

.v-footer-logo img:hover {
  transform: scale(1.05);
}

.v-footer-social {
  margin-top: 2rem;
  text-align: center;
}

.v-footer-social a {
  color: #f6ffec;
  margin: 0 12px;
  font-size: 1.3rem;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.v-footer-social a:hover {
  transform: translateY(-3px) scale(1.1);
  color: #e4f3db;
}

.v-footer-bottom {
  margin-top: 2rem;
  text-align: center;
  font-family: "Playfair Display", cursive;
  font-size: 1.05rem;
  color: #f6ffec;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
  .v-footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .v-footer-column {
    flex: 1 1 100%;
  }

  .v-footer-logo img {
    max-height: 90px;
  }
}

/* === VINTARA BUTTON SYSTEM === */
.v-btn,
button:not(.testimonial-dot) {
  display: inline-block;
  font-family: "League Spartan", "Playfair Display", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.72em 2.2em;
  border: 2px solid #0c4833;
  background: transparent;
  color: #0c4833;
  border-radius: 5px;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  transition: background 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.32s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.32s,
    border-color 0.32s, transform 0.18s;
  position: relative;
  overflow: hidden;
}
.v-btn:after,
button:not(.testimonial-dot):after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: #0c4833;
  opacity: 0.08;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 0;
}
.v-btn:hover,
button:not(.testimonial-dot):hover {
  background: #0c4833;
  color: #fff;
  border-color: #0c4833;
  box-shadow: 0 2px 16px 0 rgba(12, 72, 51, 0.1), 0 0 0 2px #0c483322;
  transform: scale(1.045);
}
.v-btn:hover:after,
button:not(.testimonial-dot):hover:after {
  width: 220%;
  height: 220%;
  opacity: 0.13;
}
.v-btn:active,
button:not(.testimonial-dot):active {
  box-shadow: 0 1px 4px 0 rgba(12, 72, 51, 0.13) inset;
  transform: scale(0.98);
}
.v-btn:focus,
button:not(.testimonial-dot):focus {
  border-color: #0c4833;
  box-shadow: 0 0 0 2px #0c483355;
}
@media (max-width: 700px) {
  .v-btn,
  button:not(.testimonial-dot) {
    width: 100%;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 1.01rem;
  }
}
/* === END BUTTON SYSTEM === */

/* === NAVBAR === */
.v-sticky-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  height: 100px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 0 8px 32px rgba(12, 72, 51, 0.13);
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease,
    box-shadow 0.4s ease;
}

.v-navbar-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 100%;
}

.v-navbar-left {
  display: flex;
  align-items: center;
}

.v-navbar-logo {
  height: 200px;
  margin: 0;
  padding: 8px;
  margin-right: 2rem;
  transition: 0.3s ease;
}

/* Logo visibility on scroll */
.v-sticky-navbar-scrolled .logo-white {
  display: none;
}
.v-sticky-navbar-scrolled .logo-green {
  display: block;
}

/* For index page: always show green logo */
body:has(.v-sticky-navbar-transparent) .v-navbar-logo.logo-green {
  display: block;
}
body:has(.v-sticky-navbar-transparent) .v-navbar-logo.logo-white {
  display: none;
}

.v-navbar-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.v-navbar-link {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  color: #0c4833; /* Deep green */
  transition: color 0.3s ease;
  position: relative;
}
.v-navbar-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #0c4833; /* Deep green */
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}
.v-navbar-link:hover::after {
  width: 100%;
}

/* ENQUIRE button */
.v-btn.v-navbar-enquire {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none; /* ✅ Fix underline */
}
.v-btn.v-navbar-enquire:hover {
  background: white;
  color: var(--primary);
}

@media (max-width: 1024px) {
  .v-navbar-right .v-btn.v-navbar-enquire {
    display: none !important;
  }
}

/* === HAMBURGER MENU === */
.v-navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none; /* This removes the border */
  cursor: pointer;
  z-index: 1200;
  transition: all 0.3s ease;
}
.v-navbar-hamburger span {
  height: 3px;
  width: 24px;
  background: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hamburger animation when active */
.v-navbar-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.v-navbar-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.v-navbar-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hide hamburger on desktop, show on mobile/tablet */
@media (max-width: 1024px) {
  .v-navbar-menu {
    display: none !important;
  }
  .v-navbar-hamburger {
    display: flex !important;
  }
  .v-navbar-right .v-btn.v-navbar-enquire {
    display: none !important;
  }
}

/* Ensure hamburger is hidden on larger screens */
@media (min-width: 1025px) {
  .v-navbar-hamburger {
    display: none !important;
  }
  .v-navbar-menu {
    display: flex !important;
  }
  .v-navbar-right .v-btn.v-navbar-enquire {
    display: inline-block !important;
  }
}

/* === MOBILE MENU === */
.v-mobile-logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  /* margin-bottom: 2.5rem; */
}

.v-mobile-logo {
  max-width: 240px;
  height: auto;
  transition: transform 0.3s ease;
}

.v-mobile-logo:hover {
  transform: scale(1.05);
}

.v-navbar-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 30vw;
  max-width: 280px;
  background: white;
  /* background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 0 8px 32px rgba(12, 72, 51, 0.13); */
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  opacity: 0;
  pointer-events: none;
  z-index: 1100;
}

.v-navbar-mobile-menu.active {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
}
.v-navbar-mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.v-navbar-mobile-menu .v-navbar-link {
  font-size: 1.2rem;
  font-family: var(--font-title);
  color: var(--primary);
  text-decoration: none;
}

.v-navbar-mobile-menu .v-navbar-link:hover {
  color: #176b4c;
}

.v-navbar-mobile-menu .v-btn.v-navbar-enquire {
  margin-top: 1rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  text-align: center;
  text-decoration: none; /* ✅ Fix underline */
}
.v-navbar-mobile-menu ul li {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.v-navbar-mobile-menu.active ul li {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive width on small screens */
@media (max-width: 480px) {
  .v-navbar-mobile-menu {
    width: 100vw; /* Full width on very small screens */
  }
}

@media (max-width: 480px) {
  .v-navbar-mobile-menu {
    width: 100%;
    padding: 4rem 1.2rem;
  }
}

@media (max-width: 1024px) {
  .v-navbar-inner {
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  .about-content h1 {
    font-size: 2.4rem;
  }
  .about-content p {
    font-size: 1rem;
  }

  .v-navbar-mobile-menu {
    width: 100%;
    padding: 5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .v-navbar-mobile-menu {
    padding: 4rem 1rem;
  }

  .v-navbar-mobile-menu .v-navbar-link {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .v-sticky-navbar {
    height: 90px; /* Reduce from 100px to 70px (or any size you prefer) */
  }

  .v-navbar-logo {
    height: 180px; /* Also scale logo to match smaller navbar */
  }
}

/* =============== FAQ SECTION =============== */
/* FAQ Section Styles */
.v-faq-section {
  padding: 5.5rem 1rem;
  background-color: #f6ffec;
  position: relative;
  overflow: hidden;
}

.v-faq-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.v-faq-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  position: relative;
}

.v-faq-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #0c4833;
  border-radius: 2px;
}

.v-faq-header h2 {
  font-family: "League Spartan", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0c4833;
  letter-spacing: -0.5px;
}

.v-faq-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: #0c4833;
  opacity: 0.9;
}

.v-faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.v-faq-item {
  background: white;
  /* border-radius: 12px; */
  margin-bottom: 1.25rem;
  box-shadow: 0 5px 20px rgba(12, 72, 51, 0.05);
  overflow: hidden;
  border: 1px solid rgba(12, 72, 51, 0.08);
  transition: all 0.3s ease;
}

.v-faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(12, 72, 51, 0.1);
}

.v-faq-question {
  width: 100%;
  text-align: left;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "League Spartan", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #0c4833;
  background-color: rgba(12, 72, 51, 0.02);
  transition: background-color 0.3s ease;
}
.v-faq-question {
  display: flex;
  justify-content: space-between; /* pushes the icon all the way to the right */
  align-items: center;
}

.v-faq-question:hover {
  background-color: rgba(12, 72, 51, 0.05);
}

.v-faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 1rem;
}

.v-faq-icon::before,
.v-faq-icon::after {
  content: "";
  position: absolute;
  background-color: #0c4833;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.v-faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.v-faq-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.v-faq-item.active .v-faq-icon::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}

.v-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  color: #0c4833;
  font-size: 1.05rem;
  line-height: 1.7;
}

.v-faq-item.active .v-faq-answer {
  max-height: 500px;
}

.v-faq-answer-content {
  padding: 0 2rem 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease 0.1s;
}

.v-faq-item.active .v-faq-answer-content {
  opacity: 1;
  transform: translateY(0);
}

.v-faq-answer p {
  margin-bottom: 1rem;
}

.v-faq-answer ul {
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

.v-faq-answer li {
  margin-bottom: 0.8rem;
  position: relative;
}

.v-faq-answer li::before {
  content: "•";
  position: absolute;
  left: -1rem;
  color: #0c4833;
  font-weight: bold;
}

/* ─── ABSOLUTE ICON + ANIMATION ─── */
.v-faq-question {
  position: relative; /* container for absolute icon */
  padding-right: 3rem !important; /* make room for the icon */
  white-space: normal; /* allow question to wrap */
}

.v-faq-icon {
  position: absolute !important;
  top: 50% !important;
  right: 1rem !important; /* distance from right edge */
  width: 24px !important;
  height: 24px !important;
  transform: translateY(-50%) !important;
  flex-shrink: 0 !important;
  transition: transform 0.3s ease !important;
}

/* build the plus from two bars */
.v-faq-icon::before,
.v-faq-icon::after {
  content: "" !important;
  position: absolute !important;
  background-color: #0c4833 !important;
  top: 50% !important;
  left: 50% !important;
  transform-origin: center center !important;
  transition: transform 0.3s ease, opacity 0.3s ease !important;
}

.v-faq-icon::before {
  width: 100% !important;
  height: 2px !important;
  transform: translate(-50%, -50%) rotate(0deg) !important;
}

.v-faq-icon::after {
  width: 2px !important;
  height: 100% !important;
  transform: translate(-50%, -50%) rotate(0deg) !important;
}

/* on open: fade & rotate the vertical bar away */
.v-faq-item.active .v-faq-icon::after {
  opacity: 0 !important;
  transform: translate(-50%, -50%) rotate(90deg) !important;
}

/* Decorative elements */
.v-faq-decoration {
  position: absolute;
  z-index: 1;
  opacity: 0.05;
  pointer-events: none;
}

.v-faq-leaf-1 {
  top: 40px;
  left: 10%;
  width: 120px;
  transform: rotate(15deg);
}

.v-faq-leaf-2 {
  bottom: 40px;
  right: 10%;
  width: 100px;
  transform: rotate(-20deg);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .v-faq-section {
    padding: 4rem 1rem;
  }

  .v-faq-header h2 {
    font-size: 2rem;
  }

  .v-faq-header p {
    font-size: 1rem;
  }

  .v-faq-question {
    font-size: 0.5rem;
    padding: 10px;
  }

  .v-faq-answer {
    font-size: 1rem;
  }

  .v-faq-answer-content {
    padding: 0 1.5rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .v-faq-section {
    padding: 3rem 1rem;
  }

  .v-faq-header h2 {
    font-size: 1.7rem;
  }

  .v-faq-question {
    font-size: 1rem;
    padding: 1.1rem 1.1rem 1.1rem 1.3rem;
  }

  .v-faq-icon {
    width: 20px;
    height: 20px;
  }
}
/* ─── MOBILE TEXT & PADDING OVERRIDES ─── */
@media (max-width: 768px) {
  .v-faq-question,
  .v-faq-item.active .v-faq-question {
    font-size: 1rem !important; /* smaller, fixed size */
    padding: 1rem 1.5rem !important; /* add breathing space */
  }

  .v-faq-answer-content,
  .v-faq-item.active .v-faq-answer-content {
    font-size: 0.95rem !important; /* smaller answer text */
    padding: 0.75rem 1.5rem 1.25rem !important;
  }
}

@media (max-width: 480px) {
  .v-faq-question,
  .v-faq-item.active .v-faq-question {
    font-size: 0.95rem !important;
    padding: 0.9rem 1.25rem !important;
  }

  .v-faq-answer-content,
  .v-faq-item.active .v-faq-answer-content {
    font-size: 0.9rem !important;
    padding: 0.75rem 1.25rem 1.2rem !important;
  }
}

/* ─── ENSURE ACTIVE STATE DOESN’T BUMP FONT-SIZE ─── */
.v-faq-item .v-faq-question,
.v-faq-item.active .v-faq-question {
  font-size: inherit !important;
}

/* =================================Footer Section======================================= */
/* Footer Styling */
.site-footer {
  background: url("images/END BACKGROUND.jpg") center center / cover no-repeat;
  padding: 4rem 2rem;
  color: #f6ffec;
  font-family: "Public Sans", sans-serif;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #f6ffec;
  margin-bottom: 0.6rem;
  font-family: "League Spartan", sans-serif;
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #f6ffec;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 1rem;
}

.footer-socials a {
  color: #f6ffec;
  font-size: 1.1rem;
  margin: 0 0.5rem;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #ffffff;
}

/* Bottom line */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.95rem;
  color: #f6ffec;
  font-style: italic;
  font-family: "Public Sans", sans-serif;
  text-align: center;
}

@media (max-width: 768px) {
  .premium-hero,
  .products-section,
  .fabric-section,
  .vintara-stats-section,
  .v-faq-section,
  .contact-us,
  .site-footer {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    box-sizing: border-box;
  }
  .footer-content {
    width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .premium-hero,
  .products-section,
  .fabric-section,
  .vintara-stats-section,
  .v-faq-section,
  .contact-us,
  .site-footer {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .footer-content {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }
}

.v-navbar-hamburger,
.v-navbar-hamburger * {
  border: none !important;
  box-shadow: none !important;
}
