@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@600;700;800&family=Hind+Siliguri:wght@400;500;600;700&family=Poppins:wght@500;600;700&display=swap');

:root {
  --red: #D72027;
  --red-dk: #961218;
  --gold: #F9B208;
  --gold-dk: #D69100;
  --green: #2E7D32;
  --cream: #FFF8EC;
  --ink: #211B17;
  --ink-soft: #5A4E46;
  --wa: #25D366;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Hind Siliguri", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Baloo Da 2", "Hind Siliguri", sans-serif;
  line-height: 1.2;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

.section {
  padding: 64px 0;
}

.section--cream {
  background: var(--cream);
}

.section--white {
  background: var(--white);
}

.section-title {
  font-family: "Baloo Da 2", sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--red-dk);
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 12px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--gold);
  border-radius: 2px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 50px;
  font-family: "Baloo Da 2", "Hind Siliguri", sans-serif;
  font-weight: 700;
  font-size: 17px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--red-dk);
  box-shadow: 0 4px 12px rgba(215, 32, 39, 0.2);
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
}

.btn--gold:hover {
  background: var(--gold-dk);
  box-shadow: 0 4px 12px rgba(249, 178, 8, 0.25);
}

.btn--wa {
  background: var(--wa);
  color: var(--white);
}

.btn--wa:hover {
  background: #20ba5a;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ==========================================================================
   SITE HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(184, 23, 29, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.18), 0 1px 8px rgba(249, 178, 8, 0.25);
  border-bottom: 2px solid var(--gold);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
}

.site-header__logo {
  height: 52px;
  display: block;
  transition: transform 0.2s ease;
}

.site-header__logo:hover {
  transform: scale(1.03);
}

/* Navigation List */
.site-nav {
  display: none; /* Mobile first hidden */
}

.site-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 10px 0;
}

.site-nav__link {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-decoration: none;
  padding: 8px 16px;
  position: relative;
  transition: color 0.3s ease;
  display: block;
  white-space: nowrap;
}

.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.site-nav__link:hover,
.site-nav__link:focus {
  color: var(--gold);
}

.site-nav__link:hover::after,
.site-nav__link:focus::after {
  width: calc(100% - 32px);
}

/* Hamburger toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 19px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-bar {
  width: 100%;
  height: 3px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger animations when menu is open */
.nav-toggle--active .hamburger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle--active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

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

/* Right contact styles */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
}

.site-header__phone svg {
  stroke: var(--gold);
  transition: transform 0.3s ease;
}

.site-header__phone:hover {
  color: var(--gold);
  background-color: rgba(255, 255, 255, 0.06);
}

.site-header__phone:hover svg {
  animation: header-phone-wiggle 0.5s ease-in-out;
}

@keyframes header-phone-wiggle {
  0%, 100% { transform: rotate(0) scale(1); }
  25% { transform: rotate(-12deg) scale(1.1); }
  75% { transform: rotate(12deg) scale(1.1); }
}

.site-header__btn {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 10px 22px;
  border-radius: 30px;
  border: 2px solid var(--gold);
  background-color: transparent;
  color: var(--gold);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.site-header__btn:hover {
  background: linear-gradient(135deg, #f9b208 0%, #d49500 100%);
  color: #1a1a1a;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(249, 178, 8, 0.35);
  transform: translateY(-2px);
}

/* Responsive styles for Header */
@media (max-width: 991px) {
  .site-nav--active {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--red-dk);
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .site-header__phone,
  .site-header__btn {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }
  .site-nav {
    display: block !important;
  }
  .site-nav__list {
    flex-direction: row;
    gap: 20px;
    padding: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .site-nav__list {
    gap: 8px;
  }
  .site-nav__link {
    padding: 8px 10px;
    font-size: 13px;
  }
  .site-header__actions {
    gap: 10px;
  }
  .lang-dropdown__trigger {
    padding: 6px 10px;
    font-size: 12px;
  }
  .site-header__phone {
    padding: 6px 8px;
    font-size: 13px;
  }
  .site-header__btn {
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: var(--ink);
}

.hero__slider {
  position: relative;
  width: 100%;
  height: clamp(360px, 60vh, 620px);
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.hero__slide--active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(150, 18, 24, 0.85) 0%, rgba(33, 27, 23, 0.45) 100%);
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero__content {
  color: var(--white);
  padding: 40px;
  border-radius: 16px;
  background: rgba(21, 16, 14, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(249, 178, 8, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  max-width: 580px;
  animation: hero-card-fade 0.6s ease-out;
}

@keyframes hero-card-fade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  .hero__content {
    padding: 24px;
    margin: 0 12px;
  }
}

.hero__slide-badge {
  display: inline-block;
  background-color: var(--gold);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
  font-family: "Hind Siliguri", sans-serif;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.hero__slide-title {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  font-family: "Baloo Da 2", sans-serif;
  margin-bottom: 12px;
  line-height: 1.1;
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero__slide-subtitle {
  font-size: clamp(18px, 2.2vw, 22px);
  font-family: "Hind Siliguri", sans-serif;
  font-weight: 500;
  margin-bottom: 28px;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.hero__slide-cta {
  box-shadow: 0 4px 15px rgba(249, 178, 8, 0.3);
}

/* Nav Controls */
.hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(33, 27, 23, 0.6);
  color: var(--white);
  border: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero__nav:hover {
  background-color: var(--red);
  transform: translateY(-50%) scale(1.08);
}

.hero__nav--prev {
  left: 16px;
}

.hero__nav--next {
  right: 16px;
}

/* Dot indicators */
.hero__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background-color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero__dot:hover {
  background-color: rgba(255, 255, 255, 0.85);
}

.hero__dot--active {
  background-color: var(--gold);
  transform: scale(1.25);
  box-shadow: 0 0 6px rgba(249, 178, 8, 0.6);
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust-strip {
  background-color: var(--gold);
  padding: 16px 0;
  border-bottom: 4px solid var(--gold-dk);
}

.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 36px;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.trust-strip__icon {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-strip__text {
  font-family: "Hind Siliguri", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-sec__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .about-sec__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.about-sec__heading {
  font-family: "Baloo Da 2", sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--red-dk);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.about-sec__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: var(--gold);
  border-radius: 2px;
}

.about-sec__text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.about-sec__points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.point-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background-color: var(--cream);
  border-radius: 10px;
  border-left: 5px solid var(--red);
  box-shadow: 0 2px 8px rgba(33, 27, 23, 0.04);
}

.point-card__icon {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.point-card__title {
  font-family: "Baloo Da 2", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

/* Image stacking */
.about-sec__images {
  position: relative;
  height: 320px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .about-sec__images {
    height: 440px;
    margin-top: 0;
  }
}

.about-sec__image-wrap {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(33, 27, 23, 0.15);
  border: 4px solid var(--white);
  transition: transform 0.3s ease, z-index 0.1s;
}

.about-sec__image-wrap--1 {
  top: 0;
  left: 0;
  width: 70%;
  z-index: 2;
}

.about-sec__image-wrap--2 {
  bottom: 0;
  right: 0;
  width: 60%;
  z-index: 3;
}

.about-sec__image-wrap:hover {
  transform: scale(1.03);
  z-index: 4;
}

.about-sec__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ==========================================================================
   SECTION 4 — PRODUCTS GRID
   ========================================================================== */
.products-sec {
  background-color: var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 576px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(33, 27, 23, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(33, 27, 23, 0.12);
}

.product-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 2px solid var(--cream);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.04);
}

.product-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__category {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  display: inline-block;
}

.product-card__title {
  font-family: "Baloo Da 2", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.2;
}

.product-card__tagline {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 14px;
  font-weight: 500;
}

.product-card__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}

.product-card__benefits li {
  color: var(--green);
}

.product-card__packs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  margin-bottom: 20px;
}

.pack-chip {
  background-color: rgba(249, 178, 8, 0.08);
  color: var(--ink);
  border: 1px solid var(--gold-dk);
  padding: 4px 10px;
  border-radius: 6px;
  font-family: "Hind Siliguri", sans-serif;
  font-weight: 700;
  font-size: 12px;
}

.product-card__actions {
  display: flex;
  gap: 8px;
}

.product-card__btn-detail,
.product-card__btn-inquiry {
  flex: 1;
  padding: 10px 12px;
  font-size: 15px;
  justify-content: center;
  border-radius: 30px;
}

/* ==========================================================================
   SECTION 5 — FEEDING GUIDE TABLE
   ========================================================================== */
.feeding-sec {
  background-color: var(--white);
}

.feeding-table-wrapper {
  overflow-x: auto;
  margin-bottom: 28px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(33, 27, 23, 0.05);
  border: 2px solid var(--red-dk);
}

.feeding-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-family: "Hind Siliguri", sans-serif;
}

.feeding-table th {
  background-color: var(--red);
  color: var(--white);
  padding: 16px 20px;
  font-size: 17px;
  font-weight: 700;
  border-bottom: 3px solid var(--red-dk);
}

.feeding-table td {
  padding: 14px 20px;
  font-size: 16px;
  border-bottom: 1px solid rgba(33, 27, 23, 0.08);
  color: var(--ink);
}

.feeding-table tbody tr:nth-child(even) {
  background-color: rgba(255, 248, 236, 0.45);
}

.feeding-table__animal {
  font-weight: 700;
  color: var(--red-dk);
}

.feeding-sec__note {
  text-align: center;
  font-size: 16px;
  color: var(--red-dk);
  background-color: rgba(215, 32, 39, 0.04);
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 700;
  border: 1px dashed var(--red);
  display: block;
}

/* Card layout on Mobile for the Table */
@media (max-width: 576px) {
  .feeding-table-wrapper {
    border: 0;
    box-shadow: none;
  }
  .feeding-table, 
  .feeding-table thead, 
  .feeding-table tbody, 
  .feeding-table th, 
  .feeding-table td, 
  .feeding-table tr {
    display: block;
    width: 100%;
  }
  .feeding-table thead {
    display: none;
  }
  .feeding-table tr {
    border: 2px solid var(--red-dk);
    border-radius: 12px;
    margin-bottom: 16px;
    padding: 12px;
    background-color: var(--white);
    box-shadow: 0 4px 10px rgba(33, 27, 23, 0.05);
  }
  .feeding-table td {
    border-bottom: 1px solid rgba(33, 27, 23, 0.06);
    position: relative;
    padding: 10px 8px 10px 48%;
    text-align: right;
    font-size: 15px;
  }
  .feeding-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 8px;
    top: 10px;
    width: 44%;
    text-align: left;
    font-weight: 700;
    color: var(--red-dk);
  }
  .feeding-table td:last-child {
    border-bottom: 0;
  }
}

/* ==========================================================================
   SECTION 6 — WHY US FEATURES
   ========================================================================== */
.why-sec {
  background-color: var(--cream);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 576px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  border-top: 5px solid var(--gold);
  box-shadow: 0 4px 16px rgba(33, 27, 23, 0.04);
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__title {
  font-family: "Baloo Da 2", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--red-dk);
  margin-bottom: 12px;
}

.feature-card__text {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ==========================================================================
   SECTION 7 — CONTACT SECTION
   ========================================================================== */
.contact-sec {
  background-color: var(--white);
}

.contact-sec__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .contact-sec__grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
}

.contact-sec__info {
  display: flex;
  flex-direction: column;
}

.contact-sec__subtitle {
  font-family: "Baloo Da 2", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--red-dk);
  margin-bottom: 6px;
}

.contact-sec__unit {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  opacity: 0.85;
}

.contact-sec__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-sec__item {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}

.contact-sec__phone-link {
  color: var(--gold-dk);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 17px;
  transition: color 0.2s ease;
  display: inline-block;
}

.contact-sec__phone-link:hover {
  color: var(--red);
}

.contact-sec__item a[href^="mailto:"] {
  color: var(--ink);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-sec__item a[href^="mailto:"]:hover {
  color: var(--red);
}

.contact-sec__badge-wrap {
  margin-bottom: 28px;
}

.contact-sec__actions {
  display: flex;
}

.contact-sec__btn-wa {
  padding: 14px 32px;
  font-size: 18px;
  display: inline-flex;
}

.contact-sec__map {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(33, 27, 23, 0.08);
  border: 1px solid rgba(33, 27, 23, 0.06);
}

/* ==========================================================================
   PRODUCT DETAIL PAGE (product.php)
   ========================================================================== */
.product-detail-sec {
  background-color: var(--white);
  padding: 48px 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: flex-start;
  }
}

/* Gallery styling */
.product-gallery {
  position: relative;
}

@media (min-width: 768px) {
  .product-gallery {
    position: sticky;
    top: 100px;
  }
}

.product-gallery__main-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(33, 27, 23, 0.08);
  border: 3px solid var(--gold);
  background-color: var(--cream);
  aspect-ratio: 1 / 1;
}

.product-gallery__main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-gallery__thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.product-gallery__thumb-btn {
  width: 76px;
  height: 76px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #E1D9D1;
  background-color: var(--white);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.product-gallery__thumb-btn:hover {
  transform: scale(1.05);
  border-color: var(--gold);
}

.product-gallery__thumb-btn--active {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(215, 32, 39, 0.15);
}

.product-gallery__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Product Info styling */
.product-info {
  display: flex;
  flex-direction: column;
}

.product-info__category {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--gold-dk);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 8px;
}

.product-info__title {
  font-family: "Baloo Da 2", sans-serif;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  color: var(--red-dk);
  margin-bottom: 6px;
  line-height: 1.1;
}

.product-info__subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 20px;
}

.product-info__tagline {
  font-family: "Hind Siliguri", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  background-color: rgba(249, 178, 8, 0.08);
  padding: 14px 20px;
  border-radius: 8px;
  border-left: 5px solid var(--gold);
  margin-bottom: 24px;
}

.product-info__desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.product-info__section-title {
  font-family: "Baloo Da 2", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  border-bottom: 2px dashed rgba(33, 27, 23, 0.1);
  padding-bottom: 6px;
}

.product-info__benefits-wrap {
  margin-bottom: 28px;
}

.product-info__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-info__benefits li {
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
}

.product-info__packs-wrap {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-info__packs-label {
  font-family: "Hind Siliguri", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.product-info__packs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-info__specs-wrap {
  margin-bottom: 32px;
}

/* Specs Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(33, 27, 23, 0.04);
  border: 1px solid rgba(33, 27, 23, 0.08);
}

.specs-table th {
  background-color: var(--red-dk);
  color: var(--white);
  padding: 12px 16px;
  font-weight: 700;
  font-size: 15px;
  text-align: left;
  border-bottom: 2px solid rgba(0, 0, 0, 0.15);
}

.specs-table td {
  padding: 12px 16px;
  font-size: 15px;
  border-bottom: 1px solid rgba(33, 27, 23, 0.06);
  color: var(--ink);
}

.specs-table tbody tr:nth-child(even) {
  background-color: rgba(255, 248, 236, 0.4);
}

/* Actions buttons spacing */
.product-info__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

@media (min-width: 576px) {
  .product-info__actions {
    flex-direction: row;
    gap: 16px;
  }
}

.product-info__btn-inquiry {
  flex: 1.3;
  justify-content: center;
  padding: 16px 24px;
  font-size: 18px;
}

.product-info__btn-wa {
  flex: 1;
  justify-content: center;
  padding: 16px 24px;
  font-size: 18px;
}

/* Related Products Strip spacing */
.related-products-sec {
  border-top: 1px solid rgba(33, 27, 23, 0.08);
  padding: 64px 0;
}

/* ==========================================================================
   INQUIRY MODAL SYSTEM
   ========================================================================== */
.modal-overlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 27, 23, 0.65);
  backdrop-filter: blur(5px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: opacity 0.3s ease;
}

.modal-card {
  background-color: var(--cream);
  border-radius: 16px;
  padding: 28px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--gold);
  max-height: 90vh;
  overflow-y: auto;
  animation: modalEnter 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes modalEnter {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--ink-soft);
  transition: color 0.2s ease;
  line-height: 1;
}

.modal-close:hover {
  color: var(--red);
}

.modal-title {
  font-family: "Baloo Da 2", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--red-dk);
  margin-bottom: 20px;
  border-bottom: 3px dashed var(--gold-dk);
  padding-bottom: 10px;
}

/* Modal Form Controls */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: "Hind Siliguri", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  font-family: "Hind Siliguri", sans-serif;
  font-size: 16px; /* Prevents auto-zoom in mobile Safari */
  border: 2px solid var(--ink-soft);
  border-radius: 8px;
  background-color: var(--white);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  border-color: var(--red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(215, 32, 39, 0.15);
}

.form-control::placeholder {
  color: #a3958c;
  font-weight: 400;
}

.modal-note {
  font-size: 14px;
  color: var(--red-dk);
  font-weight: 600;
  background-color: rgba(215, 32, 39, 0.06);
  padding: 10px;
  border-radius: 6px;
  border-left: 4px solid var(--red);
}

.modal-submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 18px;
  padding: 15px;
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #211B17 0%, #15100e 100%);
  color: #eae6e2;
  padding: 80px 0 40px;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 50%, var(--green) 100%);
}

.site-footer::after {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249, 178, 8, 0.04) 0%, rgba(249, 178, 8, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.site-footer__cta-wrap {
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}

.site-footer__cta {
  background: linear-gradient(135deg, rgba(215, 32, 39, 0.12) 0%, rgba(249, 178, 8, 0.06) 100%);
  border: 1px solid rgba(249, 178, 8, 0.15);
  padding: 32px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.site-footer__cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle at 100% 0%, rgba(249, 178, 8, 0.12) 0%, rgba(249, 178, 8, 0) 70%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .site-footer__cta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 36px 48px;
    gap: 40px;
  }
}

.site-footer__cta-info {
  flex: 1;
}

.site-footer__cta-title {
  font-family: "Baloo Da 2", "Hind Siliguri", sans-serif;
  font-size: clamp(20px, 2.5vw, 24px);
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.site-footer__cta-text {
  font-size: 14.5px;
  color: #c5beb7;
  line-height: 1.6;
  margin: 0;
}

.site-footer__cta-action {
  flex-shrink: 0;
}

.site-footer__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.site-footer__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 178, 8, 0.25);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 0.9fr 1.4fr;
    gap: 64px;
  }
}

.site-footer__col {
  display: flex;
  flex-direction: column;
}

.site-footer__logo {
  height: 58px;
  width: auto;
  align-self: flex-start;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.site-footer__logo:hover {
  transform: scale(1.03);
}

.site-footer__tagline {
  font-size: 14.5px;
  color: #c5beb7;
  line-height: 1.6;
  margin-bottom: 24px;
}

.site-footer__cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(249, 178, 8, 0.1) 0%, rgba(249, 178, 8, 0.02) 100%);
  border: 1px solid rgba(249, 178, 8, 0.3);
  color: var(--gold);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  align-self: flex-start;
}

.site-footer__cert-badge:hover {
  background: linear-gradient(135deg, rgba(249, 178, 8, 0.15) 0%, rgba(249, 178, 8, 0.05) 100%);
  border-color: rgba(249, 178, 8, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), 0 0 8px rgba(249, 178, 8, 0.1);
}

.site-footer__cert-badge-icon {
  flex-shrink: 0;
}

.site-footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.04);
  color: #c5beb7;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.site-footer__social-link svg {
  transition: transform 0.3s ease;
}

.site-footer__social-link:hover {
  color: var(--white);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.site-footer__social-link:hover svg {
  transform: rotate(8deg);
}

.site-footer__social-link--fb:hover {
  background-color: #1877F2;
  border-color: #1877F2;
}

.site-footer__social-link--yt:hover {
  background-color: #FF0000;
  border-color: #FF0000;
}

.site-footer__social-link--wa:hover {
  background-color: #25D366;
  border-color: #25D366;
}

.site-footer__title {
  font-family: "Baloo Da 2", "Hind Siliguri", sans-serif;
  font-size: 21px;
  color: var(--white);
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-footer__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.site-footer__col:hover .site-footer__title::after {
  width: 64px;
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__links a {
  color: #c5beb7;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.site-footer__links a::before {
  content: '→';
  margin-right: 8px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  color: var(--gold);
  font-family: "Poppins", sans-serif;
}

.site-footer__links a:hover {
  color: var(--gold);
  transform: translateX(6px);
}

.site-footer__links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.site-footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__company {
  font-size: 17px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: -4px;
  font-family: "Baloo Da 2", "Hind Siliguri", sans-serif;
  letter-spacing: 0.02em;
}

.site-footer__unit {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
}

.site-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.site-footer__contact-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
  transition: transform 0.3s ease;
}

.site-footer__contact-item:hover .site-footer__contact-icon {
  transform: scale(1.15) rotate(-5deg);
}

.site-footer__contact-text {
  font-size: 14.5px;
  color: #c5beb7;
  line-height: 1.55;
}

.site-footer__contact-text a {
  color: #eae6e2;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.site-footer__contact-text a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.site-footer__contact-text a:hover {
  color: var(--gold);
}

.site-footer__contact-text a:hover::after {
  width: 100%;
}

.site-footer__bottom {
  padding-top: 32px;
  position: relative;
  z-index: 2;
}

.site-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.site-footer__bottom p {
  font-size: 13.5px;
  color: #8c8279;
  margin: 0;
  font-family: "Poppins", "Hind Siliguri", sans-serif;
}

.site-footer__credit a {
  color: #c5beb7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.site-footer__credit a:hover {
  color: var(--gold);
}

.site-footer__scroll-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8c8279;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  font-family: "Hind Siliguri", sans-serif;
  padding: 6px 12px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer__scroll-top svg {
  transition: transform 0.3s ease;
}

.site-footer__scroll-top:hover {
  color: var(--gold);
  background-color: rgba(249, 178, 8, 0.05);
  border-color: rgba(249, 178, 8, 0.2);
  transform: translateY(-2px);
}

.site-footer__scroll-top:hover svg {
  transform: translateY(-2px);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background-color: var(--wa);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.wa-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--wa);
  border-radius: 50%;
  z-index: -1;
  animation: wa-pulse 2s infinite;
  opacity: 0.6;
}

.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  background-color: #20ba5a;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ==========================================================================
   LANGUAGE SWITCHER DROPDOWN
   ========================================================================== */
.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 14px;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

.lang-dropdown__trigger:hover,
.lang-dropdown:hover .lang-dropdown__trigger {
  border-color: var(--gold);
  background-color: rgba(0, 0, 0, 0.35);
  color: var(--white);
  box-shadow: 0 0 12px rgba(249, 178, 8, 0.2);
}

.lang-dropdown__globe {
  stroke: var(--gold);
}

.lang-dropdown__arrow {
  stroke: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
}

.lang-dropdown:hover .lang-dropdown__arrow {
  transform: rotate(180deg);
  stroke: var(--white);
}

.lang-dropdown__menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  background: rgba(150, 18, 24, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 6px;
  list-style: none;
  min-width: 125px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  display: none;
  transform-origin: top right;
  animation: dropdown-fade-in 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-dropdown__menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: transparent;
}

@keyframes dropdown-fade-in {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-5px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.lang-dropdown:hover .lang-dropdown__menu,
.lang-dropdown.lang-dropdown--active .lang-dropdown__menu {
  display: block;
}

.lang-dropdown__link {
  display: block;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lang-dropdown__link:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transform: translateX(2px);
}

.lang-dropdown__link--active {
  color: #1a1a1a !important;
  background: linear-gradient(135deg, #f9b208 0%, #d49500 100%) !important;
  box-shadow: 0 2px 8px rgba(249, 178, 8, 0.3);
}

@media (min-width: 992px) {
  .lang-dropdown {
    margin-right: 8px;
  }
}


/* ==========================================================================
   ACCESSIBILITY & REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .product-card:hover, .feature-card:hover, .about-sec__image-wrap:hover, .product-gallery__thumb-btn:hover {
    transform: none !important;
  }
}
