/* ============================================
   RASA THEME - MAIN STYLESHEET
   Version: 1.0.0
   ============================================ */

:root {
  --green-deep: #1E4D2B;
  --green-mid: #2D6A3F;
  --green-light: #4A8F5F;
  --green-pale: #C8E6C9;
  --green-mist: #EEF6EF;
  --cream: #FAF8F2;
  --warm-white: #FFFFFF;
  --text-dark: #1A2A1E;
  --text-mid: #3D5240;
  --text-light: #6B836F;
  --accent-gold: #B8955A;
  --accent-gold-light: #F0E4C8;
  --border: #D4E4D6;
  --shadow: 0 4px 32px rgba(30,77,43,0.08);
  --shadow-lg: 0 16px 64px rgba(30,77,43,0.14);
  --radius: 12px;
  --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; }

/* ── NAV ── */
#rasa-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,248,242,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#rasa-nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rasa-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--green-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-leaf {
  width: 12px; height: 18px;
  background: white;
  border-radius: 60% 0 60% 0;
  transform: rotate(-20deg);
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-menu li a {
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: .5px;
  transition: color .2s;
  position: relative;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}
.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--green-deep);
  transition: width .25s;
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a { color: var(--green-deep); }
.nav-menu li a:hover::after,
.nav-menu li.current-menu-item a::after,
.nav-menu li.current_page_item a::after { width: 100%; }

.nav-cta {
  background: var(--green-deep);
  color: white !important;
  padding: 11px 24px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--green-mid) !important; color: white !important; }

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: .3s;
  display: block;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 24px 32px;
  box-shadow: var(--shadow);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li { padding: 12px 0; border-bottom: 1px solid var(--border); }
.mobile-nav ul li:last-child { border-bottom: none; }
.mobile-nav ul li a { font-size: 16px; color: var(--text-dark); font-family: 'DM Sans', sans-serif; }

/* ── CONTAINERS ── */
.rasa-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── SECTION LABELS ── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--green-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
  font-family: 'DM Sans', sans-serif;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--green-deep);
  color: white;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, transform .15s;
  font-family: 'DM Sans', sans-serif;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); color: white; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--green-deep);
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--green-deep);
  transition: all .2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-outline:hover { background: var(--green-deep); color: white; }

.btn-light {
  display: inline-block;
  background: white;
  color: var(--green-deep);
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid white;
  transition: all .2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-light:hover { background: transparent; color: white; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all .2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-ghost:hover { border-color: white; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(160deg, var(--green-mist) 0%, var(--cream) 60%);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

/* Admin bar compensation */
.admin-bar #rasa-nav { top: 32px; }
.admin-bar .mobile-nav { top: calc(72px + 32px); }
@media screen and (max-width: 782px) {
  .admin-bar #rasa-nav { top: 46px; }
  .admin-bar .mobile-nav { top: calc(72px + 46px); }
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--green-pale) 0%, transparent 70%);
  opacity: .5;
  border-radius: 50%;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.1;
  margin-bottom: 24px;
}
.page-hero h1 em { font-style: italic; color: var(--accent-gold); }
.page-hero p { font-size: 17px; line-height: 1.75; color: var(--text-mid); font-weight: 300; }

/* HOME HERO */
.home-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding-top: 72px;
}

/* Admin bar compensation for home hero */
.admin-bar .home-hero { padding-top: calc(72px + 32px); }
@media screen and (max-width: 782px) {
  .admin-bar .home-hero { padding-top: calc(72px + 46px); }
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(200,230,201,0.45) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(184,149,90,0.12) 0%, transparent 60%);
}
.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--green-mid);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-family: 'DM Sans', sans-serif;
}
.hero-badge span { width: 6px; height: 6px; background: var(--green-light); border-radius: 50%; display: inline-block; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1.05;
  color: var(--green-deep);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--accent-gold); }
.hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 460px;
  margin-bottom: 40px;
  font-weight: 300;
  font-family: 'DM Sans', sans-serif;
}
.hero-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--text-light); margin-top: 4px; letter-spacing: .5px; font-family: 'DM Sans', sans-serif; }

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-grain-circle {
  width: 420px; height: 420px;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--green-mist) 100%);
  border-radius: 50%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.grain-inner {
  width: 320px; height: 320px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 4px 24px rgba(30,77,43,0.08);
}
.grain-emoji-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
  text-align: center;
}
.grain-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 10px; color: var(--text-light); font-weight: 500; font-family: 'DM Sans', sans-serif; }
.grain-icon {
  width: 48px; height: 48px;
  background: var(--green-mist);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  border: 2px solid var(--green-pale);
}
.float-tag {
  position: absolute;
  background: white;
  border-radius: 40px;
  padding: 10px 18px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500;
  color: var(--text-dark);
  box-shadow: 0 8px 24px rgba(30,77,43,0.12);
  border: 1px solid var(--border);
  animation: floatAnim 4s ease-in-out infinite;
  font-family: 'DM Sans', sans-serif;
}
.float-tag:nth-child(2) { animation-delay: -2s; }
.float-tag .dot { width: 8px; height: 8px; background: var(--green-light); border-radius: 50%; display: inline-block; }
.float-tag .dot.gold { background: var(--accent-gold); }
.ft-1 { top: 12%; right: -5%; }
.ft-2 { bottom: 18%; left: -8%; }
.ft-3 { top: 55%; right: -10%; }
@keyframes floatAnim { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ── PRODUCTS STRIP (dark) ── */
.products-strip { background: var(--green-deep); padding: 80px 0; }
.products-strip .section-label { color: var(--green-pale); }
.products-strip .section-title { color: white; }
.products-strip .section-desc { color: rgba(255,255,255,0.6); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.product-card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px 32px;
  transition: background .25s;
  cursor: pointer;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}
.product-card-dark:hover { background: rgba(255,255,255,0.08); }
.pc-icon { font-size: 40px; margin-bottom: 20px; display: block; }
.pc-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: white; margin-bottom: 8px; }
.pc-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; font-family: 'DM Sans', sans-serif; font-weight: 300; }
.pc-arrow { position: absolute; top: 40px; right: 32px; font-size: 18px; color: rgba(255,255,255,0.3); transition: color .2s, transform .2s; }
.product-card-dark:hover .pc-arrow { color: rgba(255,255,255,0.8); transform: translate(3px,-3px); }

/* ── WHY RASA ── */
.why-rasa { background: var(--green-mist); padding: 100px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 56px; }
.why-features { display: grid; gap: 28px; }
.feature-item { display: flex; gap: 20px; align-items: flex-start; }
.feature-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--green-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.feature-content h4 { font-size: 16px; font-weight: 500; color: var(--green-deep); margin-bottom: 6px; font-family: 'DM Sans', sans-serif; }
.feature-content p { font-size: 14px; color: var(--text-light); line-height: 1.65; font-weight: 300; font-family: 'DM Sans', sans-serif; }
.why-card { background: white; border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); text-align: center; }
.why-card-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--green-deep); margin-bottom: 8px; font-weight: 600; }
.why-card-sub { font-size: 13px; color: var(--text-light); margin-bottom: 36px; font-family: 'DM Sans', sans-serif; }
.cert-badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.cert-badge {
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 500;
  color: var(--green-mid);
  letter-spacing: .5px;
  font-family: 'DM Sans', sans-serif;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--cream); padding: 100px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testi-card { background: white; border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.testi-quote { font-size: 48px; color: var(--green-pale); font-family: 'Cormorant Garamond', serif; line-height: 1; margin-bottom: 16px; }
.testi-text { font-size: 14px; line-height: 1.75; color: var(--text-mid); margin-bottom: 24px; font-weight: 300; font-style: italic; font-family: 'DM Sans', sans-serif; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; background: var(--green-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.testi-name { font-size: 13px; font-weight: 500; color: var(--green-deep); font-family: 'DM Sans', sans-serif; }
.testi-role { font-size: 11px; color: var(--text-light); font-family: 'DM Sans', sans-serif; }
.stars { color: var(--accent-gold); font-size: 12px; letter-spacing: 2px; margin-bottom: 16px; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  top: -200px; right: -100px;
  border-radius: 50%;
}
.cta-band .section-label { color: var(--green-pale); }
.cta-band .section-title { color: white; }
.cta-band .section-desc { color: rgba(255,255,255,0.7); margin: 0 auto 40px; max-width: 560px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── PRODUCTS PAGE ── */
.products-main-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card-full { background: white; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; }
.product-card-full:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pc-header { padding: 48px 32px 32px; position: relative; overflow: hidden; min-height: 200px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; }
.pc-header-1 { background: linear-gradient(135deg,#d4edda 0%,#a8d5b5 100%); }
.pc-header-2 { background: linear-gradient(135deg,#c8e6c9 0%,#81c784 100%); }
.pc-header-3 { background: linear-gradient(135deg,#dcedc8 0%,#aed581 100%); }
.pc-header-4 { background: linear-gradient(135deg,#fff9c4 0%,#f0e68c 100%); }
.pc-header-5 { background: linear-gradient(135deg,#ffe0b2 0%,#ffb74d 100%); }
.pc-header-6 { background: linear-gradient(135deg,#e8f5e9 0%,#c8e6c9 100%); }
.pc-big-icon { position: absolute; right: 24px; top: 24px; font-size: 64px; opacity: .6; }
.pc-tag { background: rgba(255,255,255,0.7); border-radius: 40px; padding: 5px 14px; font-size: 11px; font-weight: 500; color: var(--green-deep); letter-spacing: .5px; margin-bottom: 12px; font-family: 'DM Sans', sans-serif; }
.pc-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: var(--green-deep); line-height: 1.2; }
.pc-body { padding: 28px 32px; }
.pc-local { font-size: 12px; color: var(--accent-gold); font-weight: 500; margin-bottom: 12px; letter-spacing: .5px; font-family: 'DM Sans', sans-serif; }
.pc-description { font-size: 14px; line-height: 1.75; color: var(--text-light); font-weight: 300; margin-bottom: 20px; font-family: 'DM Sans', sans-serif; }
.pc-specs { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.pc-spec { display: flex; justify-content: space-between; font-size: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); font-family: 'DM Sans', sans-serif; }
.pc-spec-label { color: var(--text-light); }
.pc-spec-val { color: var(--text-dark); font-weight: 500; }
.pc-benefits { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.benefit-tag { background: var(--green-mist); border: 1px solid var(--green-pale); border-radius: 40px; padding: 4px 12px; font-size: 11px; color: var(--green-mid); font-weight: 500; font-family: 'DM Sans', sans-serif; }
.pc-enquire { display: block; text-align: center; padding: 12px; background: var(--green-deep); color: white; border-radius: var(--radius); font-size: 13px; font-weight: 500; text-decoration: none; transition: background .2s; font-family: 'DM Sans', sans-serif; }
.pc-enquire:hover { background: var(--green-mid); color: white; }

/* Packaging section */
.packaging-section { background: var(--green-deep); padding: 100px 0; }
.packaging-section .section-label { color: var(--green-pale); }
.packaging-section .section-title { color: white; }
.pack-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.pack-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 36px 24px; text-align: center; transition: background .25s; }
.pack-card:hover { background: rgba(255,255,255,0.1); }
.pack-icon { font-size: 40px; margin-bottom: 16px; }
.pack-name { font-size: 16px; font-weight: 500; color: white; margin-bottom: 8px; font-family: 'DM Sans', sans-serif; }
.pack-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; font-family: 'DM Sans', sans-serif; font-weight: 300; }

/* ── ABOUT PAGE ── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-text p { font-size: 15px; line-height: 1.85; color: var(--text-mid); font-weight: 300; margin-bottom: 20px; font-family: 'DM Sans', sans-serif; }
.story-visual { background: var(--green-deep); border-radius: var(--radius-lg); padding: 56px 48px; color: white; position: relative; overflow: hidden; }
.story-visual::before { content: ''; position: absolute; bottom: -60px; right: -60px; width: 200px; height: 200px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.story-quote { font-family: 'Cormorant Garamond', serif; font-size: 52px; color: var(--green-pale); line-height: 1; margin-bottom: 16px; }
.story-blockquote { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.5; margin-bottom: 24px; }
.story-cite { font-size: 13px; color: rgba(255,255,255,0.5); font-family: 'DM Sans', sans-serif; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.value-card { background: white; border-radius: var(--radius-lg); padding: 40px 32px; border: 1px solid var(--border); box-shadow: var(--shadow); text-align: center; }
.value-icon { font-size: 40px; margin-bottom: 20px; }
.value-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--green-deep); margin-bottom: 12px; }
.value-desc { font-size: 14px; line-height: 1.7; color: var(--text-light); font-weight: 300; font-family: 'DM Sans', sans-serif; }

.timeline { margin-top: 56px; position: relative; }
.timeline::before { content: ''; position: absolute; left: 50%; transform: translateX(-50%); top: 0; bottom: 0; width: 1px; background: var(--border); }
.timeline-item { display: flex; gap: 60px; align-items: flex-start; margin-bottom: 48px; position: relative; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-item::before { content: ''; position: absolute; left: 50%; transform: translateX(-50%); width: 12px; height: 12px; background: var(--green-mid); border-radius: 50%; border: 3px solid var(--cream); top: 6px; z-index: 1; }
.tl-content { flex: 1; background: white; border-radius: var(--radius); padding: 28px 32px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.tl-year { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; color: var(--green-pale); margin-bottom: 8px; }
.tl-heading { font-size: 16px; font-weight: 500; color: var(--green-deep); margin-bottom: 8px; font-family: 'DM Sans', sans-serif; }
.tl-desc { font-size: 14px; color: var(--text-light); line-height: 1.65; font-weight: 300; font-family: 'DM Sans', sans-serif; }
.tl-space { flex: 1; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.team-card { background: white; border-radius: var(--radius-lg); padding: 36px 28px; border: 1px solid var(--border); box-shadow: var(--shadow); text-align: center; }
.team-avatar { width: 72px; height: 72px; background: var(--green-pale); border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 32px; }
.team-name { font-size: 17px; font-weight: 500; color: var(--green-deep); margin-bottom: 4px; font-family: 'DM Sans', sans-serif; }
.team-role { font-size: 12px; color: var(--accent-gold); font-weight: 500; letter-spacing: .5px; margin-bottom: 12px; text-transform: uppercase; font-family: 'DM Sans', sans-serif; }
.team-bio { font-size: 13px; color: var(--text-light); line-height: 1.65; font-weight: 300; font-family: 'DM Sans', sans-serif; }

/* ── QUALITY PAGE ── */
.process-steps { margin-top: 64px; display: grid; gap: 0; }
.step-row { display: grid; grid-template-columns: 80px 1fr; gap: 32px; align-items: flex-start; padding: 40px 0; border-bottom: 1px solid var(--border); }
.step-row:last-child { border-bottom: none; }
.step-num { width: 64px; height: 64px; background: var(--green-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: white; flex-shrink: 0; }
.step-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: var(--green-deep); margin-bottom: 8px; }
.step-content p { font-size: 14px; line-height: 1.8; color: var(--text-mid); font-weight: 300; max-width: 680px; font-family: 'DM Sans', sans-serif; }
.step-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.step-tag { background: var(--green-mist); border: 1px solid var(--green-pale); border-radius: 40px; padding: 5px 14px; font-size: 11px; color: var(--green-mid); font-weight: 500; font-family: 'DM Sans', sans-serif; }

.tests-table { width: 100%; border-collapse: collapse; margin-top: 48px; background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.tests-table th { background: var(--green-deep); color: white; padding: 16px 24px; text-align: left; font-size: 12px; font-weight: 500; letter-spacing: .8px; text-transform: uppercase; font-family: 'DM Sans', sans-serif; }
.tests-table td { padding: 16px 24px; font-size: 14px; color: var(--text-mid); border-bottom: 1px solid var(--border); font-family: 'DM Sans', sans-serif; }
.tests-table tr:last-child td { border-bottom: none; }
.tests-table tr:nth-child(even) td { background: var(--green-mist); }
.pass-badge { background: var(--green-pale); color: var(--green-deep); border-radius: 40px; padding: 3px 12px; font-size: 11px; font-weight: 500; }

.certs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.cert-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 24px; text-align: center; box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; }
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cert-icon { font-size: 40px; margin-bottom: 16px; }
.cert-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--green-deep); margin-bottom: 8px; }
.cert-desc { font-size: 12px; color: var(--text-light); line-height: 1.65; font-weight: 300; font-family: 'DM Sans', sans-serif; }
.cert-status { display: inline-block; margin-top: 12px; background: var(--green-mist); border: 1px solid var(--green-pale); border-radius: 40px; padding: 4px 14px; font-size: 10px; color: var(--green-mid); font-weight: 500; font-family: 'DM Sans', sans-serif; }

.markets-section { background: var(--green-deep); padding: 100px 0; }
.markets-section .section-label { color: var(--green-pale); }
.markets-section .section-title { color: white; }
.markets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; }
.market-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 32px; transition: background .25s; }
.market-card:hover { background: rgba(255,255,255,0.09); }
.market-flag { font-size: 32px; margin-bottom: 12px; }
.market-region { font-size: 11px; color: var(--green-pale); letter-spacing: 1px; margin-bottom: 8px; font-weight: 500; text-transform: uppercase; font-family: 'DM Sans', sans-serif; }
.market-name { font-size: 16px; font-weight: 500; color: white; margin-bottom: 8px; font-family: 'DM Sans', sans-serif; }
.market-reqs { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; font-family: 'DM Sans', sans-serif; }

/* ── CONTACT PAGE ── */
.contact-section { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: flex-start; }
.contact-info h2 { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 600; color: var(--green-deep); margin-bottom: 16px; line-height: 1.2; }
.contact-info > p { font-size: 15px; line-height: 1.75; color: var(--text-mid); font-weight: 300; margin-bottom: 40px; font-family: 'DM Sans', sans-serif; }
.info-items { display: grid; gap: 24px; margin-bottom: 40px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon { width: 44px; height: 44px; background: var(--green-mist); border: 1px solid var(--green-pale); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.info-label { font-size: 11px; color: var(--text-light); letter-spacing: .5px; font-weight: 500; text-transform: uppercase; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; }
.info-value { font-size: 15px; color: var(--text-dark); font-family: 'DM Sans', sans-serif; }
.info-value a { color: var(--green-deep); text-decoration: none; }
.whatsapp-btn { display: flex; align-items: center; gap: 10px; background: #25D366; color: white; padding: 14px 24px; border-radius: 40px; font-size: 14px; font-weight: 500; text-decoration: none; margin-top: 24px; width: fit-content; transition: background .2s; font-family: 'DM Sans', sans-serif; }
.whatsapp-btn:hover { background: #1ebe5d; color: white; }
.social-links { display: flex; gap: 12px; margin-top: 32px; }
.social-link { width: 40px; height: 40px; background: var(--green-mist); border: 1px solid var(--green-pale); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 18px; text-decoration: none; transition: background .2s; }
.social-link:hover { background: var(--green-pale); }

.contact-form-wrap { background: white; border-radius: var(--radius-lg); padding: 48px; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--green-deep); margin-bottom: 8px; }
.form-sub { font-size: 14px; color: var(--text-light); margin-bottom: 32px; font-weight: 300; font-family: 'DM Sans', sans-serif; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 500; color: var(--text-mid); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 8px; font-family: 'DM Sans', sans-serif; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 14px; font-family: 'DM Sans', sans-serif; color: var(--text-dark); background: var(--cream); transition: border-color .2s, background .2s; outline: none; -webkit-appearance: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-mid); background: white; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; padding: 16px; background: var(--green-deep); color: white; border: none; border-radius: 40px; font-size: 15px; font-weight: 500; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: background .2s; margin-top: 8px; }
.form-submit:hover { background: var(--green-mid); }
.form-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 16px; font-weight: 300; font-family: 'DM Sans', sans-serif; }
.wpcf7-form .wpcf7-submit { width: 100%; padding: 16px; background: var(--green-deep); color: white; border: none; border-radius: 40px; font-size: 15px; font-weight: 500; cursor: pointer; transition: background .2s; margin-top: 8px; font-family: 'DM Sans', sans-serif; }
.wpcf7-form .wpcf7-submit:hover { background: var(--green-mid); }

.offices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.office-card { background: white; border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.office-flag { font-size: 32px; margin-bottom: 16px; }
.office-country { font-size: 11px; color: var(--green-light); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; font-family: 'DM Sans', sans-serif; }
.office-type { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--green-deep); margin-bottom: 12px; }
.office-detail { font-size: 13px; color: var(--text-light); line-height: 1.75; font-weight: 300; font-family: 'DM Sans', sans-serif; }
.office-detail strong { color: var(--text-dark); font-weight: 500; display: block; margin-bottom: 4px; }

.faq-grid { max-width: 800px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); padding: 28px 0; cursor: pointer; }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.faq-question { font-size: 16px; font-weight: 500; color: var(--green-deep); font-family: 'DM Sans', sans-serif; }
.faq-icon { font-size: 20px; color: var(--green-light); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { font-size: 14px; line-height: 1.8; color: var(--text-mid); font-weight: 300; margin-top: 16px; display: none; font-family: 'DM Sans', sans-serif; }
.faq-item.open .faq-answer { display: block; }

/* ── FOOTER ── */
.rasa-footer { background: #1A2A1E; color: rgba(255,255,255,0.7); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { font-size: 13px; line-height: 1.75; margin-top: 16px; color: rgba(255,255,255,0.5); max-width: 280px; font-weight: 300; font-family: 'DM Sans', sans-serif; }
.footer-col h5 { font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; font-family: 'DM Sans', sans-serif; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; transition: color .2s; font-family: 'DM Sans', sans-serif; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.3); font-family: 'DM Sans', sans-serif; }

/* ── SECTION SPACING ── */
.rasa-section { padding: 100px 0; }
.bg-mist { background: var(--green-mist); }
.bg-cream { background: var(--cream); }
.bg-deep { background: var(--green-deep); }
.text-center { text-align: center; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-main-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .pack-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .timeline::before { left: 20px; }
  .timeline-item { flex-direction: column; gap: 20px; padding-left: 48px; }
  .timeline-item:nth-child(even) { flex-direction: column; }
  .timeline-item::before { left: 20px; }
  .tl-space { display: none; }
  .step-row { grid-template-columns: 1fr; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .products-main-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 24px; }
}

/* ── PAGE LOAD ANIMATION ── */
.site-content { animation: fadeIn .6s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
