/* ══════════════════════════════════════════
   MAHA INTERNATIONAL — style.css
   ══════════════════════════════════════════ */

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

:root {
  --green:        #004d3d;
  --green-light:  #026b55;
  --gold:         #b8954e;
  --gold-light:   #d4ae5e;
  --white:        #ffffff;
  --slate-50:     #f8fafc;
  --slate-100:    #f1f5f9;
  --slate-400:    #94a3b8;
  --slate-500:    #64748b;
  --slate-600:    #475569;
  --slate-700:    #334155;
  --slate-800:    #1e293b;
  --slate-900:    #0f172a;
  --font-serif:   'Playfair Display', serif;
  --font-sans:    'Inter', sans-serif;
  --radius:       1.25rem;
  --radius-sm:    0.75rem;
  --shadow:       0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--slate-800);
  background: var(--white);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-serif); line-height: 1.2; }

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

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

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Shared Utilities ─── */
.gold-italic  { font-style: italic; color: var(--gold); }
.gold-text    { color: var(--gold); }
.eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow.light { color: rgba(212,174,94,.8); }

/* ─── Buttons ─── */
.btn-primary, .btn-outline, .btn-gold, .btn-gold-full, .btn-submit, .btn-green, .btn-partner {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; font-family: var(--font-sans); font-weight: 700;
  cursor: pointer; transition: all .25s; border: none; text-align: center;
}

.btn-primary {
  background: var(--gold); color: var(--white);
  padding: 1rem 2rem; border-radius: 3rem; font-size: .95rem;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-outline {
  background: rgba(255,255,255,.12); color: var(--white);
  border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(8px);
  padding: 1rem 2rem; border-radius: 3rem; font-size: .95rem;
}
.btn-outline:hover { background: rgba(255,255,255,.22); }

.btn-gold { background: var(--gold); color: var(--white); padding: .5rem 1.25rem; border-radius: 3rem; font-size: .85rem; }
.btn-gold:hover { background: var(--gold-light); }

.btn-gold-full { background: var(--gold); color: var(--white); padding: .75rem; border-radius: .75rem; font-weight: 700; width: 100%; margin-top: .5rem; }

.btn-submit {
  width: 100%; background: var(--green); color: var(--white);
  padding: 1.1rem; border-radius: var(--radius); font-size: 1.05rem;
  transition: background .2s;
}
.btn-submit:hover { background: var(--green-light); }

.btn-green {
  background: var(--green); color: var(--white);
  padding: .75rem 1.75rem; border-radius: var(--radius); font-size: .9rem;
}
.btn-green:hover { background: var(--green-light); }

.btn-partner {
  display: block; width: 100%; background: var(--gold); color: var(--white);
  padding: .65rem; border-radius: .75rem; font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 700; margin-top: 1rem;
}
.btn-partner:hover { background: var(--gold-light); }

.arrow { transition: transform .2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.25rem 0; transition: all .35s;
  background: rgba(0,77,61,.92); backdrop-filter: blur(16px);
}
.navbar.scrolled {
  background: rgba(0,77,61,.92); backdrop-filter: blur(16px);
  padding: .75rem 0; box-shadow: 0 2px 24px rgba(0,0,0,.2);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  /* 1. Set a fixed width/height for the layout "footprint" */
  width: 150px; 
  height: 56px; 
  position: relative; 
  z-index: 1001; /* Ensure it stays above the navbar background */
}
.logo-img {
  /* 2. Remove 'height: 56px' and use a larger value */
  height: 120px; 
  width: auto;
  object-fit: contain;
  
  /* 3. Positioning to make it "hang" out of the box */
  position: absolute;
  top: 0; /* Align top of image with top of navbar */
  left: 0;
  
  /* Keep your existing filter */
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.2));
  pointer-events: auto; /* Ensures the oversized logo remains clickable */
}
/* Responsive logo sizing */
@media (max-width: 768px) {
  .nav-logo { width: 120px; height: 48px; }
  .logo-img { height: 90px; }
}
@media (max-width: 420px) {
  .nav-logo { width: 100px; height: 40px; }
  .logo-img { height: 72px; }
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: .875rem; font-weight: 500;
  color: var(--white); transition: color .2s;
}
.nav-link:hover { color: var(--gold-light); }
.navbar:not(.scrolled) .nav-link { color: var(--white); }
.navbar:not(.scrolled) .nav-link:hover { color: var(--gold-light); }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }
.navbar:not(.scrolled) .hamburger span { background: var(--slate-800); }

.mobile-menu {
  display: none; flex-direction: column; gap: .5rem;
  background: var(--green); padding: 1.25rem 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); font-size: 1.1rem; padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative; height: 600px; min-height: 600px;
  display: flex; align-items: center; overflow: hidden;
  margin-bottom: 1rem;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; overflow: hidden;}
.slider-container {
  position: relative; width: 100%; height: 100%; overflow: hidden;
}
.slider {
  display: flex; width: auto; height: 100%; transition: transform 0.5s ease;
}
.slide {
  flex: 0 0 100%; height: 100%; opacity: 0; transition: opacity 0.5s ease;
}
.slide.active { opacity: 1; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,77,61,0.8); color: white; border: none;
  width: 50px; height: 50px; border-radius: 50%;
  font-size: 1.5rem; cursor: pointer; z-index: 10;
  transition: background 0.3s ease;
  pointer-events: auto;
}
.slider-btn:hover { background: rgba(0,77,61,1); }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }
.slider-dots {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 3;
}
.dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer;
  transition: background 0.3s ease;
}
.dot.active { background: white; }
.hero-overlay {
  position: absolute; inset: 0;
  background: transparent;
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   SLIDE IMAGE CROPPING — control visible area
   Use object-fit + object-position to choose the focal area
═══════════════════════════════════════════ */
.slider .slide { height: 100%; }
.slider .slide .hero-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;        /* keep cover, crop as needed */
  object-position: 50% 50%; /* default center */
}

/* Per-slide fine tuning (adjust these percentages to change visible area) */
.slider .slide:nth-child(1) .hero-img { object-position: 50% 50%; }
.slider .slide:nth-child(2) .hero-img { object-position: 50% 50%; }
.slider .slide:nth-child(3) .hero-img { object-position: 50% 50%; }
.slider .slide:nth-child(4) .hero-img { object-position: 50% 50%; }

/* Mobile defaults — show slightly higher crop on small screens */
@media (max-width: 768px) {
  .slider .slide .hero-img { object-position: 50% 35%; }
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; max-width: 700px; padding-top: 5rem; }
.badge {
  display: inline-block; padding: .35rem 1rem;
  background: rgba(184,149,78,.2); border: 1px solid rgba(184,149,78,.35);
  color: var(--gold-light); border-radius: 3rem; font-size: .7rem;
  font-weight: 700; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem); font-weight: 700;
  color: var(--white); margin-bottom: 1.5rem; line-height: 1.05;
}
.hero p { font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 500px; margin-bottom: 2.5rem; font-weight: 300; line-height: 1.7; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-footer {
  position: absolute; bottom: 2.5rem; left: 0; right: 0; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.trust-badges { display: flex; gap: 2.5rem; }
.trust-badges span {
  font-size: .65rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}
.scroll-hint {
  font-size: .7rem; font-weight: 700; letter-spacing: .15em;
  color: rgba(255,255,255,.45); text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(6px); } }

/* ═══════════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════════ */
.products-section { padding: 6rem 0; background: var(--slate-50); }
.section-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3.5rem; gap: 2rem; flex-wrap: wrap;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--green); margin-bottom: .75rem; }
.section-header p { color: var(--slate-600); max-width: 480px; line-height: 1.7; }

.filter-btns { display: flex; gap: .6rem; flex-wrap: wrap; }
.filter-btn {
  padding: .45rem 1.25rem; border: 1px solid var(--slate-100);
  background: var(--white); border-radius: 3rem; font-size: .8rem;
  font-weight: 700; color: var(--slate-500); cursor: pointer; transition: all .2s;
}
.filter-btn.active, .filter-btn:hover { border-color: var(--gold); color: var(--green); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}
.product-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); display: flex;
  flex-direction: column; transition: box-shadow .35s, transform .35s;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-card.hidden { display: none; }

.product-img-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-cat-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  color: var(--green); font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: 3rem;
}
.product-hover {
  position: absolute; inset: 0; background: rgba(0,77,61,.4);
  opacity: 0; transition: opacity .3s; display: flex;
  align-items: center; justify-content: center;
}
.product-card:hover .product-hover { opacity: 1; }
.hover-btn {
  width: 3rem; height: 3rem; border-radius: 50%; background: var(--white);
  color: var(--green); font-size: 1.1rem; border: none; cursor: pointer;
  transition: background .2s, color .2s; transform: translateY(12px);
  transition: all .3s;
}
.product-card:hover .hover-btn { transform: translateY(0); }
.hover-btn:hover { background: var(--gold); color: var(--white); }

.product-body { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; gap: .5rem; }
.product-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag { font-size: .65rem; color: var(--gold); font-weight: 700; text-transform: uppercase; }
.product-body h3 { font-size: 1.15rem; color: var(--slate-800); }
.product-body p { font-size: .85rem; color: var(--slate-500); line-height: 1.65; flex-grow: 1; }
.inquire-btn {
  background: none; border: none; color: var(--green); font-weight: 700;
  font-size: .85rem; cursor: pointer; text-align: left; padding: 0;
  transition: color .2s;
}
.inquire-btn:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about-section { padding: 4rem 0 5rem; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-frame { position: relative; border-radius: 1.75rem; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img-tint { position: absolute; inset: 0; background: rgba(0,77,61,.18); }
.stats-badge {
  position: absolute; bottom: -2.5rem; right: -2.5rem;
  background: var(--green); padding: 2.5rem; border-radius: 1.75rem;
  border-top: 6px solid var(--gold); box-shadow: var(--shadow-lg);
}
.stats-num { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; color: var(--white); }
.stats-label { font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); line-height: 1.4; margin-top: .25rem; }

.about-content { padding-bottom: 2rem; }
.about-content h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); color: var(--green); margin-bottom: 1.25rem; }
.about-content > p { color: var(--slate-600); line-height: 1.8; font-size: 1.05rem; margin-bottom: 2rem; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
.value-card {
  padding: 1.25rem; background: var(--slate-50); border-radius: var(--radius-sm);
  transition: background .2s, box-shadow .2s;
}
.value-card:hover { background: var(--white); box-shadow: var(--shadow); }
.value-icon { font-size: 1.5rem; margin-bottom: .75rem; }
.value-card h4 { font-family: var(--font-serif); font-size: .9rem; color: var(--green); margin-bottom: .4rem; }
.value-card p { font-size: .75rem; color: var(--slate-500); line-height: 1.6; }

.globe-badge {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.5rem 2rem; border: 1px solid var(--slate-100);
  border-radius: 1.5rem; background: linear-gradient(to right, var(--slate-50), var(--white));
}
.globe-icon { font-size: 2rem; }
.globe-badge p { font-size: .9rem; color: var(--slate-700); font-weight: 500; line-height: 1.4; }

/* ═══════════════════════════════════════════
   PAGE HEADER (for dedicated pages)
═══════════════════════════════════════════ */
.page-header {
  background: linear-gradient(to right, rgba(0,77,61,.9) 0%, rgba(0,77,61,.65) 55%, transparent 100%),
              url('https://images.unsplash.com/photo-1542831371-29b0f74f9713?auto=format&fit=crop&q=80&w=1920');
  background-size: cover;
  background-position: center;
  padding: 8rem 0 4rem;
  text-align: left;
  margin-top: 80px;
  min-height: 350px;
  display: flex;
  align-items: center;
}
.page-header-content { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; width: 100%; }
.page-header h1 { font-size: clamp(2.5rem, 6vw, 4rem); color: var(--white); margin-bottom: 1rem; }
.page-header p { font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 500px; }

.filter-btns-wrap { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2.5rem; justify-content: center; }

/* ═══════════════════════════════════════════
   FORM ENHANCEMENTS
═══════════════════════════════════════════ */
.required { color: #dc2626; font-weight: 700; }

/* ═══════════════════════════════════════════
   SECTION HEADER ACTION
═══════════════════════════════════════════ */

.contact-section {
  padding: 6rem 0; background: var(--green); color: var(--white);
  position: relative; overflow: hidden;
}
.contact-glow {
  position: absolute; top: 0; right: 0; width: 35%; height: 100%;
  background: rgba(184,149,78,.06); filter: blur(120px);
  border-radius: 50%; transform: translateX(50%);
}
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 2fr 3fr; gap: 5rem; align-items: start; }
.contact-info h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); color: var(--white); margin-bottom: 2.5rem; }
.gold-huge { font-style: italic; color: var(--gold); font-size: clamp(2.5rem, 5vw, 4rem); display: block; }

.contact-items { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 2.5rem; }
.contact-item { display: flex; gap: 1.25rem; }
.contact-icon {
  width: 2.25rem; height: 2.25rem; background: rgba(255,255,255,.04);
  border-radius: .6rem; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; color: var(--gold);
}
.contact-icon svg { width: 1.05rem; height: 1.05rem; display: block; }
.contact-icon svg path { fill: currentColor; }
.contact-item h4 { font-family: var(--font-serif); color: var(--slate-100); margin-bottom: .25rem; }
.contact-item p { color: var(--slate-400); font-size: .875rem; line-height: 1.6; }

.hours-box {
  background: rgba(184,149,78,.1); border: 1px solid rgba(184,149,78,.2);
  border-radius: 1.5rem; padding: 1.75rem;
}
.hours-header { font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-light); margin-bottom: .75rem; }
.hours-box p { color: var(--slate-300); font-size: .875rem; line-height: 1.7; }

.contact-form-wrap {
  background: var(--white); border-radius: 2.5rem;
  padding: 3rem; box-shadow: var(--shadow-lg); color: var(--slate-800);
}
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-400); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 1rem 1.25rem;
  border: 1px solid var(--slate-100); border-radius: var(--radius-sm);
  background: var(--slate-50); font-size: .875rem; font-family: var(--font-sans);
  color: var(--slate-800); outline: none; transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,149,78,.12);
}
.form-group textarea { resize: vertical; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' fill='none' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; cursor: pointer; }

.form-legal { font-size: .65rem; color: var(--slate-400); letter-spacing: .1em; text-transform: uppercase; text-align: center; }
.send-arrow { font-size: .8rem; }

.form-errors { background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--radius-sm); padding: 1rem 1.25rem; }
.form-errors p { color: #dc2626; font-size: .85rem; margin-bottom: .25rem; }

.form-success { text-align: center; padding: 3rem 1rem; }
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.75rem; color: var(--green); margin-bottom: .75rem; }
.form-success p { color: var(--slate-600); margin-bottom: 2rem; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer { background: var(--slate-900); color: var(--white); padding: 5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand p { color: var(--slate-400); font-size: .875rem; line-height: 1.7; margin: 1.25rem 0 1.5rem; }
.footer-logo { height: 72px; width: auto; object-fit: contain; }
.social-links { display: flex; gap: .75rem; }
.social-btn {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: rgba(255,255,255,.06); display: flex; align-items: center;
  justify-content: center; font-size: .8rem; font-weight: 700;
  color: var(--white); transition: background .2s;
}
.social-btn:hover { background: var(--gold); }

.footer-col h4 { font-family: var(--font-sans); font-size: .875rem; font-weight: 700; margin-bottom: 2rem; display: flex; align-items: center; gap: .5rem; }
.dash { display: inline-block; width: 1.25rem; height: 2px; background: var(--gold); border-radius: 2px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer-col a { color: var(--slate-400); font-size: .875rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }

.trade-box { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 1rem; padding: 1.25rem; }
.trade-box-inner { display: flex; align-items: center; gap: 1rem; margin-bottom: .5rem; }
.globe-lg { font-size: 1.5rem; }
.trade-box-inner strong { font-size: .85rem; }
.trade-box-inner span { font-size: .7rem; }

.footer-bottom {
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: .65rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--slate-500);
}
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { color: var(--slate-500); transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   MODAL
═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 9000; display: none; align-items: center; justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: 1.5rem; padding: 2.5rem;
  max-width: 420px; width: 100%; text-align: center; position: relative;
  box-shadow: var(--shadow-lg); animation: slideUp .3s ease;
}
@keyframes slideUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.modal-close {
  position: absolute; top: 1rem; right: 1rem; background: none;
  border: none; font-size: 1.1rem; cursor: pointer; color: var(--slate-400);
}
.modal h3 { font-size: 1.5rem; color: var(--green); margin-bottom: .75rem; }
.modal p { color: var(--slate-600); margin-bottom: 1.75rem; font-style: italic; }

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .5s, transform .5s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .stats-badge { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { justify-content: center; position: relative; }
  .hamburger { position: absolute; right: 1.5rem; }
  .hero-footer { display: none; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .trust-badges { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 2rem 1.25rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .slider-btn { width: 40px; height: 40px; font-size: 1.2rem; }
  .slider-btn.prev { left: 10px; }
  .slider-btn.next { right: 10px; }
  .slider-dots { bottom: 20px; }
  .dot { width: 10px; height: 10px; }
  /* reduce hero height on tablets/large phones */
  .hero { height: 420px; min-height: 420px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.5rem; }
  .hero-btns { flex-direction: column; }
  .products-grid { grid-template-columns: 1fr; }
}

/* smaller phones: show more page content by reducing hero further
   and show the whole image (contain) so users can see full photo */
@media (max-width: 420px) {
  .hero { height: 320px; min-height: 320px; }
  .slider .slide .hero-img {
    object-fit: contain;
    object-position: 50% 20%; /* show upper area when contained */
    height: 100%;
    width: 100%;
    background-color: transparent;
  }
}

/* ═══════════════════════════════════════════
   HERO FIX — push hero content below navbar
═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 600px;
  min-height: 600px;
  margin-top: 100px; /* reserve top space for fixed navbar */
  display: flex; flex-direction: column;
  overflow: hidden;
}
.hero-content {
  position: relative; z-index: 2;
  margin-top: 0;
  flex: 1; display: flex; align-items: center;
}
.hero-inner { padding-top: 2rem; padding-bottom: 2rem; }

/* ═══════════════════════════════════════════
   LOGO — bigger, transparent PNG
═══════════════════════════════════════════ */
.logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 6px rgba(0,0,0,.2));
  
}
.footer-logo {
  height: 88px;
  width: auto;
  object-fit: contain;
  background: transparent;
}

/* ═══════════════════════════════════════════
   PAGE HEADER — spices & juice image
═══════════════════════════════════════════ */
.page-header-spices {
  background: linear-gradient(to right, rgba(0,77,61,.88) 0%, rgba(0,77,61,.65) 55%, rgba(0,77,61,.3) 100%),
              url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat !important;
}

/* ═══════════════════════════════════════════
   ABOUT STORY SECTION
═══════════════════════════════════════════ */
.about-story-section {
  padding: 5rem 0;
  background: var(--slate-50);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-story-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--green);
  margin-bottom: 1.5rem;
}
.about-story-text > p {
  color: var(--slate-600);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.story-subheading {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--green);
  margin: 2rem 0 0.75rem;
}
.story-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.story-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--slate-600);
  line-height: 1.7;
  font-size: .95rem;
}
.story-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}
.story-quote {
  background: var(--green);
  color: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
}
.story-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 700;
  color: var(--gold-light);
  font-size: .85rem;
}
.about-story-side {
  position: relative;
}
.about-story-side .stats-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
}
.about-section-light {
  background: var(--white);
}

/* ═══════════════════════════════════════════
   FOUNDERS SECTION
═══════════════════════════════════════════ */
.founders-section {
  padding: 5rem 0;
  background: var(--green);
}
.section-title-center {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-title-center h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: .75rem;
}
.section-title-center p {
  color: var(--slate-400);
  max-width: 480px;
  margin: 0 auto;
}
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.founder-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(184,149,78,.15);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  padding: 1.5rem;
}
.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.founder-img-wrap {
  position: relative;
  flex-shrink: 0;
  width: 140px;
  min-width: 140px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 1rem;
}
.founder-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.founder-card:hover .founder-img-wrap img {
  transform: scale(1.05);
}
.founder-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,77,61,.7) 0%, transparent 60%);
}
.founder-info {
  flex: 1;
  padding: 0;
}
.founder-info h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: .15rem;
  font-weight: 600;
}
.founder-title {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}
.founder-info p {
  color: var(--slate-400);
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.founder-social {
  display: flex;
  gap: .6rem;
}
.founder-social-btn {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: var(--white);
  transition: background .2s;
}
.founder-social-btn:hover { background: var(--gold); }

/* ═══════════════════════════════════════════
   RESPONSIVE UPDATES
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-story-side { display: none; }
  .founders-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-content { margin-top: 72px; }
  .founder-img-wrap { aspect-ratio: 4/3; }
}
