/* ===== CSS VARIABLES ===== */
:root {
  --cream: #FFF8E1;
  --cream-dark: #F5EDCC;
  --olive: #556B2F;
  --olive-dark: #3d4e22;
  --olive-light: #7a9445;
  --brown: #8D6E63;
  --brown-light: #A98B82;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-muted: #6b6b6b;
  --shadow: 0 4px 24px rgba(85, 107, 47, 0.10);
  --shadow-md: 0 8px 40px rgba(85, 107, 47, 0.14);
  --shadow-lg: 0 16px 64px rgba(85, 107, 47, 0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1480px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

.section-pad {
  padding: 100px 0;
}

.bg-cream-dark {
  background: var(--cream-dark);
}

/* ===== PAGE LOADER ===== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 24px;
  animation: pulse 1.4s ease-in-out infinite;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 248, 225, 0.3);
  border-top-color: var(--cream);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--olive-dark);
  color: var(--cream);
  font-size: 0.82rem;
  padding: 0 32px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: hidden;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

.topbar-left a {
  color: var(--cream);
  opacity: 0.9;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-left a:hover {
  opacity: 1;
  color: #c8e6a0;
}

.topbar-left a i {
  color: var(--olive-light);
  font-size: 0.78rem;
}

.topbar-divider {
  color: rgba(255, 255, 255, 0.25);
  font-size: 1rem;
}

/* ===== TICKER ===== */
.topbar-ticker {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  color: rgba(255, 248, 225, 0.8);
  font-size: 0.8rem;
  letter-spacing: 0.3px;
}

.ticker-track span {
  padding-right: 0;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== 3D SOCIAL ICONS ===== */
.topbar-right {
  flex-shrink: 0;
}

.topbar-socials {
  display: flex;
  gap: 10px;
}

.social-3d {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform-style: preserve-3d;
  color: white !important;
  text-decoration: none;
}

.social-3d::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
  transform: translateY(4px) translateZ(-4px);
  transition: transform 0.2s ease;
}

.social-3d:hover {
  transform: translateY(-4px) rotateX(15deg);
}

.social-3d:hover::after {
  transform: translateY(8px) translateZ(-6px);
}

.social-3d:active {
  transform: translateY(0px);
}

/* Brand colors */
.social-3d.facebook {
  background: linear-gradient(145deg, #1877F2, #0d5bbf);
  box-shadow: 0 4px 0 #0a4a9e, 0 6px 10px rgba(24, 119, 242, 0.4);
}

.social-3d.facebook::after {
  background: #0a4a9e;
}

.social-3d.instagram {
  background: linear-gradient(145deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 0 #8a1165, 0 6px 10px rgba(220, 39, 67, 0.4);
}

.social-3d.instagram::after {
  background: #8a1165;
}

.social-3d.twitter {
  background: linear-gradient(145deg, #1DA1F2, #0d8dd4);
  box-shadow: 0 4px 0 #0a6fa8, 0 6px 10px rgba(29, 161, 242, 0.4);
}

.social-3d.twitter::after {
  background: #0a6fa8;
}

.social-3d.youtube {
  background: linear-gradient(145deg, #FF0000, #cc0000);
  box-shadow: 0 4px 0 #990000, 0 6px 10px rgba(255, 0, 0, 0.4);
}

.social-3d.youtube::after {
  background: #990000;
}

/* Footer social size */
.footer-socials .social-3d {
  width: 38px;
  height: 38px;
  font-size: 0.9rem;
  border-radius: 10px;
}

@media(max-width: 768px) {
  .topbar {
    display: none;
  }
}

/* ===== NAVBAR ===== */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 248, 225, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(85, 107, 47, 0.08);
  transition: var(--transition);
}

#navbar.scrolled {
  box-shadow: 0 4px 32px rgba(85, 107, 47, 0.15);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--olive);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--olive);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(85, 107, 47, 0.3);
}

.logo-text span {
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 400;
  display: block;
  line-height: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--olive);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--olive);
}

.nav-link:hover::after,
.nav-link.active::after {
  left: 16px;
  right: 16px;
}

.nav-cta {
  padding: 10px 24px;
  background: var(--olive);
  color: var(--cream) !important;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(85, 107, 47, 0.3);
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--olive-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(85, 107, 47, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--olive);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media(max-width: 960px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(85, 107, 47, 0.12);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    margin: 8px 0 0;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--olive);
  color: var(--cream);
  box-shadow: 0 4px 16px rgba(85, 107, 47, 0.3);
}

.btn-primary:hover {
  background: var(--olive-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(85, 107, 47, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== 3D WHATSAPP BUTTON ===== */
.btn-3d-wa {
  display: inline-flex;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  transform-style: preserve-3d;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  margin-top: 4px;
}

.btn3d-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  background: linear-gradient(145deg, #25d366, #1da851);
  color: white;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 0 #128a3a, 0 8px 16px rgba(37, 211, 102, 0.35);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  letter-spacing: 0.3px;
}

.btn3d-top i {
  font-size: 1rem;
}

.btn-3d-wa:hover .btn3d-top {
  box-shadow: 0 8px 0 #128a3a, 0 12px 24px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

.btn-3d-wa:active .btn3d-top {
  box-shadow: 0 2px 0 #128a3a, 0 4px 8px rgba(37, 211, 102, 0.3);
  transform: translateY(4px);
}

.btn3d-side {
  display: none;
}

/* ===== SHAKE ANIMATION every 3s ===== */
@keyframes shake3d {

  0%,
  80%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  82% {
    transform: translateY(-4px) rotate(-4deg);
  }

  84% {
    transform: translateY(2px) rotate(4deg);
  }

  86% {
    transform: translateY(-3px) rotate(-3deg);
  }

  88% {
    transform: translateY(2px) rotate(2deg);
  }

  90% {
    transform: translateY(-1px) rotate(-1deg);
  }

  92% {
    transform: translateY(0) rotate(0deg);
  }
}

.shake-btn .btn3d-top {
  animation: shake3d 3s ease-in-out infinite;
}

/* ===== SECTION HEADS ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brown);
  background: rgba(141, 110, 99, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(141, 110, 99, 0.2);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--olive-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 580px;
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.section-head .section-sub {
  margin: 0 auto;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
  margin-top: 18%;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #c8e6a0;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: none;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: #c8e6a0;
  display: block;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  margin: 8px auto 0;
  animation: scrollAnim 1.5s ease-in-out infinite;
}

@keyframes scrollAnim {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.6);
    opacity: 0.4;
  }
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(85, 107, 47, 0.1), transparent);
  z-index: 1;
}

.img-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.img-frame:hover img {
  transform: scale(1.04);
}

.about-image {
  position: relative;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--olive);
  color: var(--cream);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-label {
  font-size: 0.78rem;
  opacity: 0.85;
  line-height: 1.4;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.97rem;
  line-height: 1.8;
}

.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feat-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(85, 107, 47, 0.1);
  transition: var(--transition);
}

.feat-item:hover {
  box-shadow: var(--shadow);
  transform: translateX(6px);
}

.feat-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--olive), var(--olive-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1rem;
  flex-shrink: 0;
}

.feat-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--olive-dark);
  margin-bottom: 2px;
}

.feat-item p {
  font-size: 0.83rem;
  color: var(--text-muted);
}

@media(max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-badge {
    bottom: -16px;
    right: 16px;
  }
}

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: 3px 80px ;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(85, 107, 47, 0.06);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--olive);
  color: var(--cream);
  font-size: 0.73rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card-body {
  padding: 28px;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(85, 107, 47, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--olive-dark);
  margin-bottom: 10px;
}

.card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

@media(max-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== WHY CHOOSE US – SLIDER (ws-) ===== */
.ws-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

/* The visible window — OVERFLOW HIDDEN clips the sliding strip */
.ws-viewport {
  flex: 1;
  overflow: hidden;
  /* ← THE only overflow:hidden needed */
  min-width: 0;
}

/* The sliding strip — transform moves it */
.ws-inner {
  display: flex;
  gap: 28px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Individual card — width set by JS after paint */
.ws-card {
  flex: 0 0 auto;
  /* JS sets exact px width */
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 0 rgba(85, 107, 47, 0.15), 0 14px 40px rgba(85, 107, 47, 0.13);
  border: 1px solid rgba(85, 107, 47, 0.08);
  text-align: center;
  padding-bottom: 32px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ws-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 0 rgba(85, 107, 47, 0.10), 0 28px 60px rgba(85, 107, 47, 0.20);
}

.ws-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.ws-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ws-card:hover .ws-img img {
  transform: scale(1.08);
}

.ws-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(40, 60, 15, 0.55));
}

.ws-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--olive), var(--olive-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1.4rem;
  margin: -30px auto 18px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 0 var(--olive-dark), 0 6px 16px rgba(85, 107, 47, 0.4);
  border: 3px solid var(--white);
}

.ws-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--olive-dark);
  margin: 0 20px 10px;
  font-weight: 600;
}

.ws-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 0 24px;
  line-height: 1.7;
}

/* Arrow buttons */
.ws-btn {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--olive);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  transition: var(--transition);
  border: 2px solid rgba(85, 107, 47, 0.15);
  cursor: pointer;
}

.ws-btn:hover {
  background: var(--olive);
  color: var(--cream);
  transform: scale(1.08);
}

/* Dots */
.ws-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.ws-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(85, 107, 47, 0.2);
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}

.ws-dot.active {
  background: var(--olive);
  width: 26px;
  border-radius: 5px;
}

@media(max-width: 540px) {
  .ws-btn {
    width: 38px;
    height: 38px;
  }
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gal-hover {
  position: absolute;
  inset: 0;
  background: rgba(85, 107, 47, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: white;
  font-size: 1.4rem;
}

.gallery-item:hover .gal-hover {
  opacity: 1;
}

.gallery-item:first-child {
  grid-row: span 2;
}

@media(max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item:first-child {
    grid-row: span 1;
  }

  .gallery-item {
    height: 180px;
  }
}

@media(max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 200px;
  }
}

/* ===== TESTIMONIALS CAROUSEL ===== */
.testi-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi-track-outer {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
}

.testi-track {
  display: flex;
  gap: 28px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-card {
  flex: 0 0 calc(33.333% - 19px);
  min-width: 0;
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(85, 107, 47, 0.06);
  transition: var(--transition);
  position: relative;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testi-quote {
  color: rgba(85, 107, 47, 0.12);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 8px;
}

.testi-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 14px;
  display: flex;
  gap: 4px;
}

.testi-card>p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(85, 107, 47, 0.2);
  flex-shrink: 0;
}

.testi-avatar-fallback {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--olive), var(--olive-light));
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--olive-dark);
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Carousel nav */
.testi-prev,
.testi-next {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--olive);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  transition: var(--transition);
  border: 2px solid rgba(85, 107, 47, 0.15);
}

.testi-prev:hover,
.testi-next:hover {
  background: var(--olive);
  color: var(--cream);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(85, 107, 47, 0.2);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.testi-dot.active {
  background: var(--olive);
  width: 24px;
  border-radius: 4px;
}

@media(max-width: 900px) {
  .testi-card {
    flex: 0 0 calc(50% - 14px);
  }
}

@media(max-width: 560px) {
  .testi-card {
    flex: 0 0 100%;
  }

  .testi-prev,
  .testi-next {
    width: 36px;
    height: 36px;
  }
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--olive), var(--olive-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--olive-dark);
  margin-bottom: 2px;
}

.contact-item p,
.contact-item a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

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

.map-placeholder {
  margin-top: 8px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--olive-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(85, 107, 47, 0.15);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--olive);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(85, 107, 47, 0.08);
}

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

.form-msg {
  margin-top: 12px;
  font-size: 0.85rem;
  text-align: center;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.form-msg.success {
  background: rgba(85, 107, 47, 0.1);
  color: var(--olive-dark);
}

.form-msg.error {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
}

@media(max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--olive-dark);
  color: rgba(255, 248, 225, 0.85);
}

.footer-top {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo i {
  color: #c8e6a0;
}

.footer-logo span {
  color: rgba(255, 248, 225, 0.6);
  font-size: 0.85rem;
  font-weight: 400;
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.8;
  opacity: 0.75;
  margin-bottom: 24px;
}

.footer-links h4,
.footer-products h4,
.footer-contact h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links ul li,
.footer-products ul li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-products a {
  font-size: 0.86rem;
  opacity: 0.7;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover,
.footer-products a:hover {
  opacity: 1;
  color: #c8e6a0;
  padding-left: 4px;
}

.footer-links a i,
.footer-products a i {
  font-size: 0.7rem;
  color: var(--olive-light);
}

.footer-contact p {
  font-size: 0.86rem;
  opacity: 0.75;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--olive-light);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 20px;
  background: #25d366;
  color: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-bottom p {
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.5;
}

.footer-bottom i {
  color: #ff6b6b;
}

@media(max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media(max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }
}

/* ===== SCROLL TO TOP ===== */
#scrollTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--olive);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(85, 107, 47, 0.4);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 999;
}

#scrollTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollTop:hover {
  background: var(--olive-dark);
  transform: translateY(-4px);
}

/* ===== RESPONSIVE ===== */
@media(max-width: 600px) {
  .section-pad {
    padding: 64px 0;
  }

  .container {
    padding: 0 20px;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }
}