/* ============================================
   SHARMA PAAN NEW ZEALAND — MAIN STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Nunito:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&display=swap');

/* ─── CSS VARIABLES ─────────────────────────── */
:root {
  --green-dark:    #1a4731;
  --green-mid:     #255c3e;
  --green-leaf:    #2e7d32;
  --green-light:   #4caf50;
  --red:           #c1121f;
  --red-dark:      #8b0000;
  --gold:          #c9a84c;
  --gold-light:    #e8c97e;
  --gold-pale:     #f5e6b8;
  --cream:         #fdf6e3;
  --cream-dark:    #f5ead4;
  --cream-mid:     #ede0be;
  --white:         #ffffff;
  --text-dark:     #1a1a1a;
  --text-mid:      #3d3d3d;
  --text-light:    #6b6b6b;
  --shadow-sm:     0 2px 12px rgba(26,71,49,0.10);
  --shadow-md:     0 8px 32px rgba(26,71,49,0.15);
  --shadow-lg:     0 20px 60px rgba(26,71,49,0.20);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── SCROLLBAR ─────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--green-dark); border-radius: 3px; }

/* ─── UTILITY CLASSES ───────────────────────── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
  padding-left: 36px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 28px; height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
}

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

.section-title span { color: var(--red); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
  margin-bottom: 50px;
}

.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px 0 40px;
}
.divider span { font-size: 1.2rem; color: var(--gold); }
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.divider::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,71,49,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(193,18,31,0.3);
}

/* ─── ORNAMENT ──────────────────────────────── */
.ornament {
  width: 60px;
  margin: 0 auto 30px;
  opacity: 0.35;
}

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--green-mid);
  color: var(--cream);
  padding: 10px 0;
  font-size: 0.85rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
  z-index: 1002;
  width: 100%;
}

.top-bar.hide {
  transform: translateY(-100%);
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-left i {
  color: var(--gold-light);
  font-size: 0.9rem;
}

.top-bar-left span {
  font-size: 0.85rem;
  color: var(--white);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.top-bar-phone {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  font-size: 0.85rem;
}

.top-bar-phone:hover {
  color: var(--gold-light);
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar-social a {
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}

.top-bar-social a:hover {
  color: var(--gold-light);
}

/* ========== HEADER ADJUSTMENT FOR TOP BAR ========== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-mid);
  transition: top 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

/* When top bar is visible, push header down */
.top-bar:not(.hide) + #header {
  top: 44px;
}

/* Scrolled header styling */
#header.scrolled {
  background: var(--cream);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 105px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 110px;
  width: auto;
}

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

.nav-menu a {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-dark);
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: calc(100% - 32px);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--red);
}

.nav-cta {
  background: var(--green-dark);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
}

.nav-cta:hover {
  background: var(--red) !important;
  color: var(--white) !important;
}

.nav-cta::after {
  display: none !important;
}

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

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

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

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

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

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  
  .top-bar:not(.hide) + #header {
    top: 0;
  }
}
/* ─── PAGE BANNER ───────────────────────────── */
.page-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--green-leaf) 100%);
  padding: 100px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 14px;
}
.page-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  margin-top: 16px;
}
.breadcrumb a { color: var(--gold-light); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.5); }


/* ═══════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 480px;
  overflow: hidden;
  margin-top: 80px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.hero-slide.active img { transform: scale(1); }

.hero-controls {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active {
  background: var(--white);
  width: 28px;
  border-radius: 5px;
}

.hero-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.hero-arrow:hover { background: var(--green-dark); border-color: var(--green-dark); }
.hero-arrow.prev { left: 28px; }
.hero-arrow.next { right: 28px; }

/* ═══════════════════════════════════════════
   WELCOME SECTION
═══════════════════════════════════════════ */
.welcome-section {
  background: var(--white);
  padding: 60px 0;
  overflow: hidden;
}
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.welcome-image-wrap {
  position: relative;
}
.welcome-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.welcome-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--green-dark);
  color: var(--white);
  width: 120px; height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--cream);
}
.welcome-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--gold-light);
}
.welcome-badge span {
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}

.welcome-text p {
  color: var(--text-mid);
  margin-bottom: 20px;
  font-size: 1rem;
}
/* ========== READ MORE TOGGLE ========== */
.read-more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.read-more-content.open {
  max-height: 500px; /* Adjust based on your content length */
}

/* ═══════════════════════════════════════════
   PRODUCTS SECTION
═══════════════════════════════════════════ */
.products-section {
  background: var(--cream);
  padding: 50px 0;
}
.products-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.products-section .section-label,
.products-section .divider { justify-content: center; }
.products-section .section-subtitle { margin: 0 auto 0; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-card:hover .product-img { transform: scale(1.06); }

.product-img-wrap {
  overflow: hidden;
  height: 220px;
  background: var(--cream-dark);
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.product-info {
  padding: 20px;
}
.product-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.product-info .product-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 14px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--red);
}
.product-btn {
  background: var(--green-dark);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
}
.product-btn:hover { background: var(--red); }

/* ═══════════════════════════════════════════
   BENEFITS SECTION
═══════════════════════════════════════════ */
.benefits-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.benefits-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3Ccircle cx='40' cy='40' r='20'/%3E%3Ccircle cx='40' cy='40' r='10'/%3E%3C/g%3E%3C/svg%3E");
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.benefits-image img {
  width: 100%;
  /* border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  border: 4px solid rgba(255,255,255,0.15); */
}
.benefits-content .section-label { color: var(--gold-light); }
.benefits-content .section-label::before { background: var(--gold-light); }
.benefits-content .section-title { color: var(--white); }

.benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: var(--transition);
}
.benefit-item:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}
.benefit-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.benefit-item h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════
   VIDEO SECTION
═══════════════════════════════════════════ */
.video-section {
  background: var(--cream-dark);
  padding: 50px 0;
}
.video-section .section-header { 
  text-align: center; 
  margin-bottom: 50px; 
}
.video-section .section-label,
.video-section .divider { 
  justify-content: center; 
}
.videos-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  justify-items: center;
}
.video-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--text-dark);
  transition: var(--transition);
  max-width: 280px; /* Limit width for 9:16 shorts */
  width: 100%;
}
.video-card:hover { 
  transform: translateY(-6px); 
  box-shadow: var(--shadow-lg); 
}
.video-card iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: none;
  display: block;
}


/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials-section {
  background: var(--white);
  padding: 50px 0;
  overflow: hidden;
}

.testimonials-section .section-header { 
  text-align: center; 
  margin-bottom: 60px; 
}

.testimonials-section .section-label,
.testimonials-section .divider { 
  justify-content: center; 
}

.testi-slider {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.testi-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testi-card {
  min-width: 100%;
  padding: 15px 40px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-mid);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.testi-stars { 
  color: #f5a623; 
  margin-bottom: 20px; 
  font-size: 1.1rem;
  letter-spacing: 3px;
}

.testi-card p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
  position: relative;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.testi-author {
  text-align: center;
  border-top: 1px solid var(--cream-mid);
  padding-top: 20px;
  margin-top: 8px;
}

.testi-author h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}

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

/* Controls */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--green-dark);
  background: transparent;
  color: var(--green-dark);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.testi-btn:hover { 
  background: var(--green-dark); 
  color: var(--white); 
}

.testi-dots {
  display: flex;
  gap: 10px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-mid);
  cursor: pointer;
  transition: var(--transition);
}

.testi-dot.active { 
  background: var(--green-dark); 
  width: 28px; 
  border-radius: 6px;
}

/* ═══════════════════════════════════════════
   INFO STRIP
═══════════════════════════════════════════ */
.info-strip {
  background: var(--cream-dark);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 60px 0;
}
.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.info-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-leaf));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.info-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.info-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: linear-gradient(180deg, #0f2918 0%, #0a1f10 100%);
  color: rgba(255,255,255,0.75);
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 110px; width: auto; }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 24px;
  line-height: 1.5;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text-dark);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 14px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--gold);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.contact-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.contact-item strong {
  display: block;
  color: var(--white);
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--gold-light); }

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.about-section {
  background: var(--white);
  padding: 50px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-image-stack { position: relative; }
.about-image-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-image-accent {
  position: absolute;
  width: 200px; height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
  bottom: -30px; right: -30px;
}
.about-stat-row {
  display: flex;
  gap: 30px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--cream-mid);
  border-bottom: 1px solid var(--cream-mid);
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
}
.stat span { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }

.about-text p { color: var(--text-mid); margin-bottom: 18px; font-size: 0.97rem; }

/* ═══════════════════════════════════════════
   GALLERY PAGE
═══════════════════════════════════════════ */
.gallery-section {
  background: var(--cream);
  padding: 50px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1/1;
  cursor: pointer;
  background: var(--cream-dark);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,71,49,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
}
.gallery-overlay .zoom-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%) scale(0.5);
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  transition: var(--transition);
  opacity: 0;
}
.gallery-item:hover .zoom-icon {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-height: 85vh;
  max-width: 90vw;
  border-radius: var(--radius-md);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
}
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }

/* ═══════════════════════════════════════════
   LOCATION PAGE
═══════════════════════════════════════════ */
.location-section { background: var(--white); padding: 50px 0; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.location-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border-left: 5px solid var(--green-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.location-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.location-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cream-mid);
}
.location-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.location-detail-icon {
  width: 36px; height: 36px;
  background: var(--green-dark);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.location-detail p { font-size: 0.92rem; color: var(--text-mid); }
.location-detail strong { display: block; color: var(--text-dark); font-size: 0.88rem; margin-bottom: 2px; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Form */
.contact-form-section {
  background: var(--cream-dark);
  padding: 50px 0;
}
.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact-form-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--green-dark);
  margin-bottom: 20px;
}
.contact-form-info p { color: var(--text-mid); margin-bottom: 36px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.ci-icon {
  width: 48px; height: 48px;
  background: var(--green-dark);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ci-text strong { display: block; color: var(--green-dark); font-size: 0.9rem; margin-bottom: 4px; }
.ci-text p { font-size: 0.88rem; color: var(--text-mid); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 42px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--cream-mid);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-dark);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26,71,49,0.07);
}
.form-group textarea { min-height: 140px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; border-radius: var(--radius-md); }

/* Success message */
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  color: #2e7d32;
  font-weight: 600;
  margin-top: 16px;
  align-items: center;
  gap: 12px;
}
.form-success.show { display: flex; }

/* ═══════════════════════════════════════════
   SCROLL TO TOP
═══════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  border: none;
  z-index: 500;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--red); transform: translateY(-3px); }

/* ─── ANIMATIONS ────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.from-left { transform: translateX(-28px); }
.reveal.from-right { transform: translateX(28px); }
.reveal.visible { opacity: 1; transform: translate(0); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .welcome-grid,
  .benefits-grid,
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .welcome-image-wrap img { height: 380px; }
  .benefits-image { order: -1; }
  .videos-row { grid-template-columns: 1fr 1fr; }
  .testi-card { min-width: calc(50% - 12px); }
  .location-grid,
  .contact-form-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .benefits-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 104px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 28px 24px 40px;
    gap: 6px;
    border-bottom: 1px solid var(--cream-mid);
    box-shadow: var(--shadow-md);
    display: none;
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 16px; width: 100%; border-radius: 8px; }
  .hamburger { display: flex; }

  .hero-slider { min-height: 200px; height: 25vh; }
  .hero-arrow { width: 42px; height: 42px; font-size: 1rem; }
  .hero-arrow.prev { left: 12px; }
  .hero-arrow.next { right: 12px; }

  .videos-row { grid-template-columns: 1fr; }
  .testi-card { min-width: calc(100%); margin-right: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .info-strip-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .about-image-accent { display: none; }
  .welcome-badge { bottom: -14px; right: -14px; width: 100px; height: 100px; }
  .welcome-badge strong { font-size: 1.5rem; }
  .products-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .about-stat-row { gap: 16px; }
}
