/*
 * ============================================================
 *  SHRADHHA ENTERPRISE — MASTER STYLESHEET
 *  style.css  |  Version 1.0
 *  Covers: index, about, contact, all product pages
 * ============================================================
 */

/* ================================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ================================================================ */
:root {
  /* Brand Colours */
  --gold:         #C8922A;
  --gold-light:   #D9A83C;
  --gold-dark:    #A6751E;
  --accent-green: #2C6E2F;

  /* Background Scale */
  --light-bg:  #FFFFFF;
  --light-bg2: #F8F9FA;
  --light-bg3: #F1F2F4;
  --light-bg4: #E9ECEF;

  /* Text Scale */
  --text-dark:  #1A1E24;
  --text-muted: #5B626E;
  --text-dim:   #7C838F;

  /* Borders */
  --border-light:  rgba(0, 0, 0, 0.08);
  --border-medium: rgba(0, 0, 0, 0.12);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.02);

  /* Radii */
  --radius:    4px;
  --radius-lg: 12px;
}


/* ================================================================
   2. RESET & BASE
   ================================================================ */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--light-bg);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
  font-weight: 400;
  font-feature-settings: "ss02", "calt";
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--light-bg3); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 10px; }

/* Selection */
::selection { background: var(--gold); color: white; }

/* Utility container */
.container { max-width: 1200px; margin: 0 auto; }


/* ================================================================
   3. PAGE LOADER
   ================================================================ */
#loader {
  position: fixed; inset: 0;
  background: var(--light-bg);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hide { opacity: 0; visibility: hidden; }

.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--gold);
  letter-spacing: 2px; font-weight: 700;
}
.loader-bar {
  width: 200px; height: 2px;
  background: var(--light-bg4);
  border-radius: 10px; overflow: hidden;
}
.loader-bar-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  animation: loadfill 1.8s ease forwards;
}
@keyframes loadfill { to { width: 100%; } }


/* ================================================================
   4. TOPBAR
   ================================================================ */
.topbar {
  background: var(--light-bg2);
  border-bottom: 1px solid var(--border-light);
  padding: 0.45rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: var(--text-muted); font-weight: 500;
}
.topbar a { color: var(--gold-dark); text-decoration: none; transition: color 0.2s; font-weight: 500; }
.topbar a:hover { color: var(--gold); }
.topbar-left, .topbar-right { display: flex; gap: 1.5rem; align-items: center; }
@media (max-width: 640px) { .topbar { display: none; } }


/* ================================================================
   5. NAVBAR
   ================================================================ */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 800; color: var(--text-dark);
  text-decoration: none; letter-spacing: -0.2px;
  display: flex; align-items: center; gap: 0.6rem;
}
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: white;
}

.nav-links { display: flex; gap: 2.2rem; align-items: center; list-style: none; }
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.9rem; font-weight: 600; letter-spacing: -0.2px;
  position: relative; transition: color 0.25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-dark); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold); color: white;
  padding: 0.55rem 1.4rem; border-radius: var(--radius);
  font-weight: 700; font-size: 0.85rem;
  text-decoration: none; transition: all 0.25s;
  border: 2px solid var(--gold); white-space: nowrap; letter-spacing: -0.2px;
}
.nav-cta:hover { background: transparent; color: var(--gold-dark); border-color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 5px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-dark); border-radius: 2px; transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: var(--light-bg); border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 2rem 2rem; z-index: 99;
  flex-direction: column; gap: 0;
  transform: translateY(-20px); opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; }
.mobile-menu a {
  color: var(--text-muted); text-decoration: none;
  padding: 0.9rem 0; border-bottom: 1px solid var(--border-light);
  font-size: 1rem; font-weight: 600; transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold-dark); }
.mobile-menu .nav-cta {
  margin-top: 1.2rem; text-align: center;
  display: block; border-bottom: none;
  background: var(--gold); color: white;
}

@media (max-width: 900px) {
  .nav-links, nav > .nav-cta { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) { nav { padding: 0 1.2rem; } }


/* ================================================================
   6. BREADCRUMB  (common style — used in all inner pages)
   ================================================================ */
.breadcrumb {
  background: var(--light-bg2);
  border-bottom: 1px solid var(--border-light);
  padding: 0.9rem 2.5rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--text-dim); font-weight: 600;
}
.breadcrumb a {
  color: var(--text-dim); text-decoration: none; transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .current { color: var(--gold-dark); font-weight: 700; }
@media (max-width: 640px) { .breadcrumb { padding: 0.9rem 1.2rem; } }


/* ================================================================
   7. SHARED SECTION HELPERS
   ================================================================ */
section { padding: 6rem 2.5rem; }
@media (max-width: 640px) { section { padding: 4rem 1.2rem; } }

.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--gold-dark); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem;
}
.section-tag::before { content: ''; width: 30px; height: 2px; background: var(--gold); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--text-dark);
  line-height: 1.2; margin-bottom: 1rem; letter-spacing: -0.5px;
}
.section-title span { color: var(--gold); }

.section-sub {
  font-size: 1rem; color: var(--text-muted);
  max-width: 560px; line-height: 1.75; font-weight: 450;
}
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-tag { justify-content: center; }
.section-header.center .section-tag::before { display: none; }
.section-header.center .section-sub { margin: 0 auto; }

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Gold decorative line */
.gold-line {
  display: block; width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 10px; margin-top: 0.8rem;
}


/* ================================================================
   8. BUTTONS
   ================================================================ */
.btn-primary {
  background: var(--gold); color: white;
  padding: 0.85rem 2.2rem; border-radius: var(--radius);
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: all 0.3s; letter-spacing: -0.2px;
  box-shadow: 0 0 0 0 rgba(200, 146, 42, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 146, 42, 0.28);
  background: var(--gold-dark);
}

.btn-secondary {
  background: transparent; color: var(--text-dark);
  padding: 0.85rem 2.2rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.9rem; text-decoration: none;
  border: 1.5px solid;
  border-color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: all 0.3s;
  color: var(--gold);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-dark {
  background: white; color: var(--gold-dark);
  padding: 0.9rem 2.2rem; border-radius: var(--radius);
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  transition: all 0.3s; letter-spacing: -0.2px;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-dark:hover { background: var(--light-bg2); transform: translateY(-2px); color: var(--gold); }

.btn-outline-dark {
  background: transparent; color: white;
  padding: 0.9rem 2.2rem; border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.7);
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline-dark:hover { background: white; color: var(--gold-dark); }

.btn-outline-white {
  background: transparent; color: white;
  padding: 0.9rem 2.2rem; border-radius: var(--radius);
  border: 2px solid white;
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline-white:hover { background: white; color: var(--gold-dark); }


/* ================================================================
   9. WHATSAPP FLOATING BUTTON
   ================================================================ */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  width: 54px; height: 54px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  animation: whatsappPulse 3s infinite; transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes whatsappPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70%  { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-btn {
  background: #25D366; color: white;
  padding: 0.85rem; border-radius: var(--radius);
  text-decoration: none; text-align: center;
  font-weight: 700; font-size: 0.88rem;
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.whatsapp-btn:hover { background: #20b857; transform: translateY(-2px); }


/* ================================================================
   10. FOOTER  (common across all pages)
   ================================================================ */
footer {
  background: var(--light-bg2);
  border-top: 1px solid var(--border-light);
  padding: 4rem 2.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; max-width: 1200px; margin: 0 auto 3rem;
}
.footer-brand {}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--text-dark);
  margin-bottom: 0.8rem; font-weight: 800; letter-spacing: -0.5px;
}
.footer-logo img { height: 48px; width: auto; margin-bottom: 0.5rem; }
.footer-tagline {
  font-size: 0.85rem; color: var(--text-dim);
  line-height: 1.7; max-width: 280px; margin-bottom: 1.5rem; font-weight: 450;
}
.social-links { display: flex; gap: 0.7rem; }
.social-link {
  width: 38px; height: 38px; background: white;
  border: 1px solid var(--border-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--text-muted);
  font-size: 1rem; transition: all 0.25s; font-weight: 700;
}
.social-link:hover { background: var(--gold); color: white; border-color: var(--gold); }

.footer-col-title {
  font-weight: 700; color: var(--text-dark);
  font-size: 0.9rem; margin-bottom: 1.2rem; letter-spacing: -0.2px;
}
.footer-links {
  list-style: none; display: flex; flex-direction: column; gap: 0.7rem;
}
.footer-links a {
  color: var(--text-dim); text-decoration: none;
  font-size: 0.85rem; transition: color 0.2s; font-weight: 500;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex; gap: 0.6rem; align-items: flex-start;
  margin-bottom: 0.8rem; font-size: 0.85rem; color: var(--text-dim); font-weight: 500;
}
.footer-contact-item span:first-child { color: var(--gold); margin-top: 2px; }
.footer-contact-item a { color: inherit; text-decoration: none; }

.footer-bottom {
  border-top: 1px solid var(--border-light); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: 0 auto; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); font-weight: 450; }
.footer-bottom a { color: var(--gold-dark); text-decoration: none; font-weight: 500; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  footer { padding: 3rem 1.2rem 1.5rem; }
}


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

/* Slide images — crossfade */
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

/* Dark overlay */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(10,10,10,0.62) 0%,
    rgba(10,10,10,0.45) 60%,
    rgba(10,10,10,0.55) 100%
  );
}

/* Grain */
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.03; z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Center content */
.hero-content {
  position: relative; z-index: 3;
  max-width: 820px; width: 100%;
  display: flex; flex-direction: column; align-items: center;
  padding: 0 2rem;
  animation: heroIn 1s ease 0.3s both;
}
@keyframes heroIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(200,146,42,0.18); border: 1px solid rgba(200,146,42,0.5);
  color: #f5d08a; padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 1.8rem;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold-light); border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.08; font-weight: 800; color: #ffffff;
  margin-bottom: 1.5rem; letter-spacing: -1.5px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero h1 span { color: var(--gold-light); }

.hero-desc {
  font-size: 1.08rem; color: rgba(255,255,255,0.88);
  max-width: 600px; line-height: 1.8; margin-bottom: 2.5rem; font-weight: 450;
  text-align: center; text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.hero-stats {
  display: flex; gap: 3rem; margin-top: 4rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: wrap; justify-content: center; text-align: center; width: 100%;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 800; color: var(--gold-light); letter-spacing: -0.5px;
}
.stat-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 1px; margin-top: 0.1rem; font-weight: 600;
}

/* Arrows */
.slider-arrow {
  position: absolute; top: 50%; z-index: 4;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: white; font-size: 1.4rem; font-weight: 700;
  width: 48px; height: 48px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, transform 0.25s;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: rgba(200,146,42,0.55); transform: translateY(-50%) scale(1.08); }
.slider-prev { left: 1.8rem; }
.slider-next { right: 1.8rem; }

/* Dots */
.slider-dots {
  position: absolute; bottom: 5.5rem; left: 50%;
  transform: translateX(-50%); z-index: 4;
  display: flex; gap: 0.6rem; align-items: center;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer; transition: all 0.3s;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.slider-dot.active {
  background: var(--gold-light); border-color: var(--gold-light);
  width: 24px; border-radius: 4px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.6); font-size: 0.75rem; letter-spacing: 1px;
  text-transform: uppercase; animation: floatDown 2s infinite;
  z-index: 4; font-weight: 600;
}
.hero-scroll span {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(200,146,42,0.8), transparent);
}
@keyframes floatDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 640px) {
  .hero-content { padding: 0 1.2rem; }
  .hero-stats { gap: 1.5rem; }
  .slider-arrow { width: 38px; height: 38px; font-size: 1.1rem; }
  .slider-prev { left: 0.8rem; }
  .slider-next { right: 0.8rem; }
  .slider-dots { bottom: 5rem; }
}


/* ================================================================
   12. HOME PAGE — FEATURES STRIP
   ================================================================ */
.features-strip {
  background: var(--light-bg2);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 2.5rem;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.feat-item { display: flex; align-items: flex-start; gap: 1rem; }
.feat-icon {
  width: 44px; height: 44px; background: rgba(200,146,42,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
  color: var(--gold); border: 1px solid rgba(200,146,42,0.2);
}
.feat-title { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 0.2rem; letter-spacing: -0.2px; }
.feat-desc { font-size: 0.78rem; color: var(--text-dim); line-height: 1.5; font-weight: 450; }


/* ================================================================
   13. HOME PAGE — ABOUT SECTION
   ================================================================ */
.about-section { background: var(--light-bg2); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; border-radius: var(--radius-lg); object-fit: cover;
  height: 500px; display: flex;
  background: linear-gradient(135deg, var(--light-bg3) 0%, var(--light-bg4) 100%);
  border: 1px solid var(--border-light);
  align-items: center; justify-content: center; font-size: 8rem;
}
.about-img-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gold); color: white;
  padding: 1.2rem 1.5rem; border-radius: var(--radius-lg);
  text-align: center; box-shadow: var(--shadow-md);
}
.about-img-badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; line-height: 1; }
.about-img-badge span { font-size: 0.75rem; font-weight: 600; opacity: 0.85; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; margin: 1.5rem 0 2rem; }
.about-list li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.88rem; color: var(--text-muted); font-weight: 500;
}
.about-list li::before {
  content: '✓'; color: var(--gold); font-weight: 800;
  font-size: 0.9rem; margin-top: 0.1rem; flex-shrink: 0;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 3rem; } .about-img-badge { right: 0; } }


/* ================================================================
   14. HOME PAGE — PRODUCTS GRID
   ================================================================ */
.products-section { background: var(--light-bg); }
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 0;
}
.product-card {
  background: white; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(200, 146, 42, 0.25);
}
.product-img-bg {
  height: 200px; background: var(--light-bg3);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.product-img-bg img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 1.5rem; }
.product-tag {
  font-size: 0.7rem; font-weight: 700; color: var(--gold-dark);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.5rem;
  background: rgba(200,146,42,0.08); border: 1px solid rgba(200,146,42,0.15);
  display: inline-block; padding: 0.2rem 0.6rem; border-radius: 50px;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-weight: 800; font-size: 1.1rem; color: var(--text-dark);
  margin-bottom: 0.6rem; letter-spacing: -0.3px;
}
.product-desc { font-size: 0.82rem; color: var(--text-dim); line-height: 1.65; font-weight: 450; margin-bottom: 1rem; }
.product-arrow {
  font-size: 0.8rem; font-weight: 700; color: var(--gold);
  display: flex; align-items: center; gap: 0.3rem; transition: gap 0.2s;
}
.product-card:hover .product-arrow { gap: 0.6rem; }


/* ================================================================
   15. HOME PAGE — PROCESS SECTION
   ================================================================ */
.process-section { background: var(--light-bg2); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
  margin-top: 0; background: white;
}
.process-step {
  padding: 2.5rem 2rem; border-right: 1px solid var(--border-light);
  transition: background 0.3s;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: rgba(200,146,42,0.02); }
.process-num {
  font-family: 'Playfair Display', serif; font-size: 4rem;
  font-weight: 800; color: rgba(200,146,42,1);
  line-height: 1; margin-bottom: 1rem;
}
.process-icon { font-size: 2rem; margin-bottom: 1rem; }
.process-title { font-weight: 700; color: var(--text-dark); font-size: 1rem; margin-bottom: 0.5rem; letter-spacing: -0.2px; }
.process-desc { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; font-weight: 450; }
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border-light); }
  .process-step:last-child { border-bottom: none; }
}


/* ================================================================
   16. HOME PAGE — NUMBERS / STATS BANNER
   ================================================================ */
.numbers-section {
  background: linear-gradient(135deg, var(--light-bg3), var(--light-bg));
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 5rem 2.5rem;
}
.numbers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; max-width: 1000px; margin: 0 auto; text-align: center;
}
.num-val {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 800; color: var(--gold);
  line-height: 1; letter-spacing: -2px;
}
.num-plus { font-size: 2rem; }
.num-label {
  font-size: 0.8rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 1.5px; margin-top: 0.5rem; font-weight: 600;
}
@media (max-width: 700px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); } }


/* ================================================================
   17. HOME PAGE — WHY US
   ================================================================ */
.why-section { background: var(--light-bg); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.why-card {
  background: var(--light-bg2); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover { border-color: var(--gold-light); transform: translateY(-3px); }
.why-card-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.why-card-title { font-weight: 700; color: var(--text-dark); font-size: 0.95rem; margin-bottom: 0.4rem; letter-spacing: -0.2px; }
.why-card-desc { font-size: 0.82rem; color: var(--text-dim); line-height: 1.6; font-weight: 450; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .why-cards { grid-template-columns: 1fr; } }


/* ================================================================
   18. CTA BANNER (Home page & product pages)
   ================================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 5rem 2.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::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.1'%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");
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); color: white;
  margin-bottom: 1rem; position: relative; font-weight: 800; letter-spacing: -1px;
}
.cta-section p {
  color: rgba(255,255,245,0.9); max-width: 520px;
  margin: 0 auto 2.5rem; font-size: 1rem; font-weight: 500; position: relative;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* Full-width CTA used on product/about pages */
.cta-full {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 5rem 2.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-full::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.1'%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");
}
.cta-full h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); color: white;
  margin-bottom: 0.8rem; font-weight: 800; letter-spacing: -1px;
  position: relative; z-index: 1;
}
.cta-full p {
  color: rgba(255,255,245,0.88); max-width: 520px;
  margin: 0 auto 2rem; font-size: 0.96rem; font-weight: 500;
  position: relative; z-index: 1;
}
.cta-full-btns {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; position: relative; z-index: 1;
}


/* ================================================================
   19. HOME PAGE — CONTACT SECTION
   ================================================================ */
.contact-section { background: var(--light-bg2); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; max-width: 1200px; margin: 0 auto; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon {
  width: 46px; height: 46px; background: rgba(200,146,42,0.1);
  border: 1px solid rgba(200,146,42,0.2); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0; color: var(--gold);
}
.contact-item-label {
  font-size: 0.75rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.3rem; font-weight: 600;
}
.contact-item-val { color: var(--text-dark); font-size: 0.95rem; font-weight: 500; }
.contact-item-val a { color: var(--text-dark); text-decoration: none; transition: color 0.2s; }
.contact-item-val a:hover { color: var(--gold); }

.contact-form {
  background: white; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.5px; font-weight: 600; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--light-bg2); border: 1px solid var(--border-light);
  color: var(--text-dark); padding: 0.8rem 1rem; border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem;
  transition: border-color 0.25s; outline: none; resize: none; font-weight: 500;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: white; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); font-weight: 400; }

.form-submit {
  width: 100%; background: var(--gold); color: white;
  padding: 1rem; border: none; border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  transition: all 0.3s; letter-spacing: 0.2px;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.form-submit:hover { background: var(--gold-dark); transform: translateY(-1px); }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }
@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
}


/* ================================================================
   20. PRODUCT PAGES — HERO
   ================================================================ */
.product-hero {
  background: linear-gradient(160deg, rgba(248,249,250,0.98) 0%, rgba(255,255,255,0.95) 100%);
  padding: 5rem 2.5rem 0;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}
.product-hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: end;
}
.product-hero-content { padding-bottom: 4rem; }
.product-hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(200,146,42,0.1); border: 1px solid rgba(200,146,42,0.2);
  color: var(--gold-dark); padding: 0.35rem 1rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.product-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; color: var(--text-dark);
  line-height: 1.1; margin-bottom: 1.2rem; letter-spacing: -1px;
}
.product-hero h1 span { color: var(--gold); }
.product-hero-desc {
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.85; max-width: 480px; margin-bottom: 2rem; font-weight: 450;
}

.hero-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.hero-tag {
  background: white; border: 1px solid var(--border-medium);
  color: var(--text-muted); font-size: 0.72rem; font-weight: 600;
  padding: 0.3rem 0.8rem; border-radius: 50px;
}
.hero-tag.highlight {
  background: rgba(200,146,42,0.08);
  border-color: rgba(200,146,42,0.25); color: var(--gold-dark);
}

.product-hero-meta {
  display: flex; gap: 2.5rem; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid var(--border-light); flex-wrap: wrap;
}
.meta-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 800; color: var(--gold); line-height: 1;
}
.meta-label {
  font-size: 0.72rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 1px; margin-top: 0.2rem; font-weight: 600;
}

.product-hero-visual {
  position: relative; align-self: end;
  animation: heroVisualIn 1s ease 0.4s both;
}
@keyframes heroVisualIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.product-hero-img-wrap {
  background: var(--light-bg3); border: 1px solid var(--border-light);
  border-bottom: none; border-radius: 14px 14px 0 0;
  height: 420px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-hero-img-wrap img{
  width: 100%;
    height: 100%;
    object-fit: cover;
  }
.product-big-icon {
  font-size: 9rem;
  filter: drop-shadow(0 0 28px rgba(200,146,42,0.2));
  animation: floatIcon 4s ease-in-out infinite;
  position: relative; z-index: 1;
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-14px) rotate(2deg); }
}
.product-hero-img-tags {
  position: absolute; top: 1.5rem; right: 1.5rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.img-tag {
  background: rgba(255,255,255,0.9); border: 1px solid var(--border-light);
  padding: 0.35rem 0.8rem; border-radius: 50px;
  font-size: 0.72rem; color: var(--gold-dark); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  backdrop-filter: blur(4px); box-shadow: var(--shadow-sm);
}

@media (max-width: 900px) {
  .product-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .product-hero-img-wrap { height: 260px; border-radius: 14px; border: 1px solid var(--border-light); }
  .product-hero { padding: 3rem 1.2rem 0; }
  .product-hero-content { padding-bottom: 0; }
}


/* ================================================================
   21. PRODUCT PAGES — STAGES / SPECS STRIP
   ================================================================ */
.stages-strip { background: var(--light-bg2); border-bottom: 1px solid var(--border-light); }
.stages-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.stage-cell {
  padding: 1.4rem 1.2rem; border-right: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 0.8rem;
}
.stage-cell:last-child { border-right: none; }
.stage-num {
  width: 28px; height: 28px;
  background: rgba(200,146,42,0.12); border: 1px solid rgba(200,146,42,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; color: var(--gold-dark); flex-shrink: 0;
}
.stage-label {
  font-size: 0.68rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.15rem; font-weight: 600;
}
.stage-val { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); }
@media (max-width: 900px) { .stages-inner { grid-template-columns: repeat(3, 1fr); } }

/* Key specs strip (oil-mill, rotary-cold-press, etc.) */
.specs-strip { background: var(--light-bg2); border-bottom: 1px solid var(--border-light); }
.specs-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.spec-cell {
  padding: 1.5rem 1.4rem; border-right: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 0.9rem; transition: background 0.2s;
}
.spec-cell:last-child { border-right: none; }
.spec-cell:hover { background: rgba(200,146,42,0.04); }
.spec-cell-icon { font-size: 1.6rem; flex-shrink: 0; }
.spec-cell-label {
  font-size: 0.7rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.2rem; font-weight: 600;
}
.spec-cell-val { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }
@media (max-width: 900px) {
  .specs-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .spec-cell:nth-child(2n) { border-right: none; }
  .spec-cell { border-bottom: 1px solid var(--border-light); }
}


/* ================================================================
   22. PRODUCT PAGES — MAIN + SIDEBAR LAYOUT
   ================================================================ */
.main-with-sidebar {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 320px;
  gap: 3rem; padding: 6rem 2.5rem;
}
@media (max-width: 1000px) {
  .main-with-sidebar { grid-template-columns: 1fr; padding: 4rem 1.2rem; }
}

/* Sidebar CTA band */
.cta-band {
  background: var(--light-bg2); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 2rem;
  position: sticky; top: 90px; box-shadow: var(--shadow-sm);
}
.cta-band h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.3rem;
}
.cta-band p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.2rem; }

.divider { height: 1px; background: var(--border-light); margin: 1rem 0; }
.cta-band-contact { display: flex; flex-direction: column; gap: 0.8rem; }
.cta-band-item { display: flex; align-items: center; gap: 0.8rem; font-size: 0.85rem; color: var(--text-muted); }
.cta-band-item a { color: var(--text-dark); text-decoration: none; transition: color 0.2s; font-weight: 500; }
.cta-band-item a:hover { color: var(--gold); }
.cta-band-item span:first-child { color: var(--gold); font-size: 1.1rem; }

.sidebar-products { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.8rem; }
.sp-link {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.65rem 0.8rem; background: white;
  border: 1px solid var(--border-light); border-radius: var(--radius);
  text-decoration: none; color: var(--text-muted);
  font-size: 0.82rem; font-weight: 600; transition: all 0.25s;
}
.sp-link:hover { border-color: var(--gold-light); color: var(--gold-dark); transform: translateX(3px); }
.sp-link.active {
  background: rgba(200,146,42,0.08);
  border-color: rgba(200,146,42,0.25); color: var(--gold-dark);
}


/* ================================================================
   23. PRODUCT PAGES — HIGHLIGHT BOX & FEATURE ITEMS
   ================================================================ */
.highlight-box {
  background: var(--light-bg2); border: 1px solid var(--border-light);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg); padding: 1.5rem 1.8rem; margin: 2rem 0;
}
.ov-feat {
  background: var(--light-bg2); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 1.3rem 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem; transition: all 0.3s;
}
.ov-feat:hover { border-color: rgba(200,146,42,0.3); transform: translateX(4px); background: white; }
.ov-feat-icon {
  width: 42px; height: 42px; background: rgba(200,146,42,0.1);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold); border: 1px solid rgba(200,146,42,0.15); flex-shrink: 0;
}
.ov-feat-title { font-weight: 700; font-size: 0.92rem; color: var(--text-dark); margin-bottom: 0.25rem; }
.ov-feat-desc { font-size: 0.82rem; color: var(--text-dim); line-height: 1.6; }


/* ================================================================
   24. PRODUCT PAGES — QUALITY / QC CARDS
   ================================================================ */
.quality-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; margin-top: 2rem;
}
.qc-card {
  background: var(--light-bg); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 1.5rem 1.3rem;
  text-align: center; transition: all 0.3s; box-shadow: var(--shadow-sm);
}
.qc-card:hover { border-color: rgba(200,146,42,0.25); transform: translateY(-4px); }
.qc-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.qc-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900; color: var(--gold);
  line-height: 1; margin-bottom: 0.3rem;
}
.qc-label { font-size: 0.75rem; font-weight: 700; color: var(--text-dark); text-transform: uppercase; letter-spacing: 1px; }
.qc-desc { font-size: 0.78rem; color: var(--text-dim); margin-top: 0.3rem; }
@media (max-width: 640px) { .quality-grid { grid-template-columns: 1fr 1fr; } }


/* ================================================================
   25. PRODUCT PAGES — APPLICATIONS / APP CARDS
   ================================================================ */
.apps-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.app-card {
  background: var(--light-bg); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); text-align: center;
  padding: 1.2rem 0.8rem; transition: all 0.3s; box-shadow: var(--shadow-sm);
}
.app-card:hover { border-color: rgba(200,146,42,0.3); transform: translateY(-4px); }
.app-icon { font-size: 2.4rem; margin-bottom: 0.5rem; }
.app-name { font-weight: 700; font-size: 0.88rem; color: var(--text-dark); margin-bottom: 0.2rem; }
.app-detail { font-size: 0.74rem; color: var(--text-dim); }


/* ================================================================
   26. PRODUCT PAGES — COMPONENTS GRID
   ================================================================ */
.components-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.component-card {
  background: white; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.3s; box-shadow: var(--shadow-sm);
}
.component-card:hover { border-color: rgba(200,146,42,0.3); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.07); }
.comp-img {
  height: 140px; background: var(--light-bg3);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; position: relative;
}
.comp-num {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(200,146,42,0.15); border: 1px solid rgba(200,146,42,0.2);
  color: var(--gold-dark); font-size: 0.7rem; font-weight: 700;
  padding: 0.25rem 0.65rem; border-radius: 50px;
}
.comp-body { padding: 1.2rem 1.4rem; }
.comp-title {
  font-weight: 800; font-size: 0.95rem; color: var(--text-dark);
  margin-bottom: 0.4rem; font-family: 'Playfair Display', serif;
}
.comp-desc { font-size: 0.82rem; color: var(--text-dim); line-height: 1.6; }
.comp-spec {
  margin-top: 0.6rem; font-size: 0.74rem; font-weight: 700; color: var(--gold-dark);
  background: rgba(200,146,42,0.08); display: inline-block;
  padding: 0.2rem 0.6rem; border-radius: 4px;
}


/* ================================================================
   27. PRODUCT PAGES — SPECS TABLE & CAPACITY BARS
   ================================================================ */
.specs-section { background: var(--light-bg2); padding: 6rem 2.5rem; }
.specs-layout {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 5rem; max-width: 1200px; margin: 0 auto;
}

table {
  width: 100%; border-collapse: collapse;
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
thead th {
  background: rgba(200,146,42,0.08); padding: 1rem 1.2rem;
  text-align: left; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--gold-dark);
  border-bottom: 1px solid var(--border-light);
}
tbody tr { border-bottom: 1px solid var(--border-light); transition: background 0.2s; }
tbody tr:hover { background: rgba(200,146,42,0.02); }
tbody td { padding: 0.95rem 1.2rem; font-size: 0.88rem; color: var(--text-muted); vertical-align: middle; }
tbody td:first-child { color: var(--text-dark); font-weight: 600; }

.capacity-card {
  background: white; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); margin-bottom: 1.5rem;
}
.capacity-card-title {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); margin-bottom: 1.2rem;
}
.capacity-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.capacity-label { font-size: 0.82rem; color: var(--text-muted); min-width: 100px; font-weight: 500; }
.capacity-bar-wrap { flex: 1; height: 6px; background: var(--light-bg4); border-radius: 10px; overflow: hidden; }
.capacity-bar {
  height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 10px; width: 0;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.capacity-val { font-size: 0.8rem; font-weight: 700; color: var(--gold-dark); min-width: 55px; text-align: right; }

@media (max-width: 900px) { .specs-layout { grid-template-columns: 1fr; gap: 3rem; } .specs-section { padding: 4rem 1.2rem; } }


/* ================================================================
   28. PRODUCT PAGES — FAQ ACCORDION
   ================================================================ */
.faq-item { border-bottom: 1px solid var(--border-light); overflow: hidden; }
.faq-question {
  width: 100%; background: none; border: none;
  text-align: left; padding: 1.5rem 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  color: var(--text-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem; font-weight: 700; transition: color 0.2s;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon {
  width: 28px; height: 28px; background: rgba(200,146,42,0.1);
  border: 1px solid rgba(200,146,42,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold); transition: all 0.3s; flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(200,146,42,0.2); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 0 1.5rem; font-size: 0.88rem; color: var(--text-muted); line-height: 1.85; }


/* ================================================================
   29. PRODUCT PAGES — ICE TYPES (ice-making-plant)
   ================================================================ */
.ice-types-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2rem;
}
.ice-type-card {
  background: var(--light-bg); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden; transition: all 0.35s; box-shadow: var(--shadow-sm);
}
.ice-type-card:hover { border-color: rgba(200,146,42,0.3); transform: translateY(-6px); }
.itc-header {
  padding: 1.4rem; background: var(--light-bg3);
  border-bottom: 1px solid var(--border-light); text-align: center;
}
.itc-icon { font-size: 3rem; margin-bottom: 0.6rem; }
.itc-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 800; color: var(--text-dark); }
.itc-body { padding: 1.3rem 1.4rem; }
.itc-spec {
  display: flex; justify-content: space-between;
  padding: 0.5rem 0; border-bottom: 1px solid var(--border-light); font-size: 0.83rem;
}
.itc-spec:last-child { border-bottom: none; }
.itc-spec-label { color: var(--text-dim); }
.itc-spec-val { color: var(--text-dark); font-weight: 700; }
@media (max-width: 768px) { .ice-types-grid { grid-template-columns: 1fr; } }


/* ================================================================
   30. PRODUCT PAGES — ROTARY COLD PRESS — OILS GRID
   ================================================================ */
.oils-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.oil-card {
  background: var(--light-bg); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); text-align: center;
  padding: 1.4rem 0.8rem; transition: all 0.3s; box-shadow: var(--shadow-sm);
}
.oil-card:hover { border-color: rgba(200,146,42,0.3); transform: translateY(-5px); }
.oil-icon { font-size: 2.4rem; margin-bottom: 0.5rem; }
.oil-name { font-weight: 700; font-size: 0.85rem; color: var(--text-dark); margin-bottom: 0.2rem; }
.oil-pct { font-size: 0.75rem; color: var(--gold-dark); font-weight: 700; }


/* ================================================================
   31. PRODUCT PAGES — ESSENTIAL OIL — METHODS & BOTANICALS
   ================================================================ */
.method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.method-card {
  background: var(--light-bg); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden; transition: all 0.35s; box-shadow: var(--shadow-sm);
}
.method-card:hover { transform: translateY(-6px); box-shadow: 0 22px 52px rgba(0,0,0,0.08); }
.mc-header {
  padding: 1.4rem 1.6rem; border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 0.9rem;
}
.mc-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.mc-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 800; color: var(--text-dark); }
.mc-subtitle { font-size: 0.73rem; color: var(--text-dim); font-weight: 500; margin-top: 0.15rem; }
.mc-body { padding: 1.3rem 1.6rem; }
.mc-row { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.7rem; font-size: 0.83rem; color: var(--text-muted); }
.mc-dot { width: 6px; height: 6px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; background: var(--gold); }
.mc-best {
  background: rgba(200,146,42,0.08); border-top: 1px solid rgba(200,146,42,0.1);
  padding: 0.75rem 1.6rem; font-size: 0.78rem; color: var(--gold-dark); font-weight: 600;
}
@media (max-width: 640px) { .method-grid { grid-template-columns: 1fr; } }

.botanicals-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.bot-card {
  background: var(--light-bg); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); text-align: center;
  padding: 1.2rem 0.8rem; transition: all 0.3s; box-shadow: var(--shadow-sm);
}
.bot-card:hover { border-color: rgba(200,146,42,0.3); transform: translateY(-4px); }
.bot-icon { font-size: 2.2rem; margin-bottom: 0.5rem; }
.bot-name { font-weight: 700; font-size: 0.85rem; color: var(--text-dark); margin-bottom: 0.15rem; }
.bot-type { font-size: 0.72rem; color: var(--text-dim); }


/* ================================================================
   32. PRODUCT PAGES — CASTOR — GRADE CARDS & MARKET GRID
   ================================================================ */
.grade-card {
  background: var(--light-bg); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 1.5rem; transition: all 0.3s; box-shadow: var(--shadow-sm);
}
.grade-card:hover { border-color: rgba(200,146,42,0.3); transform: translateY(-4px); }
.grade-icon { font-size: 2.2rem; margin-bottom: 0.7rem; }
.grade-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: 0.3rem; }
.grade-spec {
  font-size: 0.72rem; font-weight: 700; color: var(--gold-dark);
  background: rgba(200,146,42,0.08); border: 1px solid rgba(200,146,42,0.15);
  padding: 0.2rem 0.65rem; border-radius: 50px; display: inline-block; margin-bottom: 0.5rem;
}
.grade-use { font-size: 0.8rem; color: var(--text-dim); line-height: 1.55; }

.grades-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.2rem; margin-top: 2rem;
}

.market-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem; margin-top: 2rem;
}
.market-card {
  background: var(--light-bg); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 1.5rem; transition: all 0.3s; box-shadow: var(--shadow-sm);
}
.market-card:hover { border-color: rgba(200,146,42,0.3); transform: translateY(-4px); }
.market-icon { font-size: 2rem; margin-bottom: 0.7rem; }
.market-title { font-weight: 700; font-size: 0.92rem; color: var(--text-dark); margin-bottom: 0.3rem; }
.market-desc { font-size: 0.8rem; color: var(--text-dim); line-height: 1.6; }


/* ================================================================
   33. PRODUCT PAGES — PROCESS FLOW TIMELINE
   ================================================================ */
.flow-timeline { position: relative; padding-left: 2rem; margin-top: 2rem; }
.flow-timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--gold), rgba(200,146,42,0.1));
}
.flow-step { position: relative; padding-bottom: 2.5rem; }
.flow-step:last-child { padding-bottom: 0; }
.flow-dot {
  position: absolute; left: -2.6rem; top: 0.2rem;
  width: 24px; height: 24px; border-radius: 50%;
  background: white; border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.flow-step-num { width: 14px; height: 14px; background: var(--gold); border-radius: 50%; }
.flow-content { }
.flow-title { font-weight: 700; color: var(--text-dark); font-size: 0.95rem; margin-bottom: 0.4rem; }
.flow-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }


/* ================================================================
   34. ABOUT PAGE
   ================================================================ */
.about-hero {
  background: linear-gradient(160deg, rgba(248,249,250,0.96) 0%, rgba(255,255,255,0.92) 100%);
  padding: 5rem 2.5rem 0; min-height: 60vh; display: flex; align-items: center;
}
.about-hero-content { max-width: 700px; }
.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800;
  color: var(--text-dark); line-height: 1.1; margin-bottom: 1.2rem; letter-spacing: -1px;
}
.about-hero h1 span { color: var(--gold); }
.about-hero p { font-size: 1rem; color: var(--text-muted); line-height: 1.8; max-width: 520px; }

.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.intro-img-box {
  background: var(--light-bg3); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); height: 400px;
  display: flex; align-items: center; justify-content: center; font-size: 8rem;
  overflow: hidden;
}
.intro-img-box img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center; margin: 3rem 0;
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* Timeline */
.timeline { position: relative; max-width: 900px; margin: 3rem auto 0; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--gold), rgba(200,146,42,0.1));
  transform: translateX(-50%);
}
.tl-item { display: grid; grid-template-columns: 1fr 60px 1fr; margin-bottom: 2rem; }
.tl-year { font-weight: 800; color: var(--gold-dark); margin-bottom: 0.3rem; }
.tl-title { font-weight: 700; color: var(--text-dark); margin-bottom: 0.3rem; }
.tl-desc { font-size: 0.85rem; color: var(--text-muted); }
.tl-left { text-align: right; padding-right: 2rem; }
.tl-right { padding-left: 2rem; }
.tl-dot {
  width: 40px; height: 40px; background: white;
  border: 2px solid rgba(200,146,42,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto; font-size: 1.1rem;z-index: 9;
}
@media (max-width: 700px) {
  .timeline::before { left: 20px; }
  .tl-item { grid-template-columns: 50px 1fr; }
  .tl-left, .tl-right { padding: 0 0 0 1.5rem; text-align: left; }
  .tl-dot { margin: 0; }
  .tl-left .tl-year { display: none; }
}

/* Values */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.value-card {
  background: white; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 1.8rem; transition: all 0.3s;
}
.value-card:hover { border-color: rgba(200,146,42,0.3); transform: translateY(-4px); }
.value-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.value-title { font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.value-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; font-weight: 450; }


/* ================================================================
   35. CONTACT PAGE
   ================================================================ */
/* Page hero (contact) */
.page-hero {
  background:
    linear-gradient(160deg, rgba(255,255,245,0.9) 0%, rgba(255,255,250,0.88) 100%),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1800&q=80') center/cover no-repeat;
  padding: 6rem 2.5rem 4rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 50%, rgba(200,146,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 700px; position: relative; z-index: 2;
  animation: heroIn 0.9s ease 0.2s both;
}
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(200,146,42,0.1); border: 1px solid rgba(200,146,42,0.3);
  color: var(--gold-dark); padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.page-hero-badge::before {
  content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1; font-weight: 800; color: var(--text-dark);
  margin-bottom: 1.2rem; letter-spacing: -1.5px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: 1.05rem; color: var(--text-muted); max-width: 520px; line-height: 1.8; font-weight: 450; }
@media (max-width: 640px) { .page-hero { padding: 4rem 1.2rem 3rem; } }

/* Quick contact strip */
.quick-strip {
  background: var(--gold);
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.quick-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.6rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.2);
  transition: background 0.25s; text-decoration: none;
}
.quick-item:last-child { border-right: none; }
.quick-item:hover { background: var(--gold-dark); }
.quick-icon {
  width: 46px; height: 46px; background: rgba(255,255,255,0.15);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.2);
}
.quick-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,245,0.8); margin-bottom: 0.2rem; }
.quick-val { font-size: 0.92rem; color: white; font-weight: 600; }
@media (max-width: 768px) {
  .quick-strip { grid-template-columns: 1fr; }
  .quick-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .quick-item:last-child { border-bottom: none; }
}
@media (max-width: 640px) { .quick-item { padding: 1.2rem 1.5rem; } }

/* Contact main section */
.contact-main { background: var(--light-bg2); }
.contact-main-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 4rem; max-width: 1200px; margin: 0 auto; align-items: start;
}
.contact-info-side {}
.info-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.info-card {
  background: white; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 1.4rem 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}
.info-card:hover { border-color: var(--gold-light); transform: translateX(4px); box-shadow: var(--shadow-md); }
.info-card-icon {
  width: 48px; height: 48px; background: rgba(200,146,42,0.1);
  border: 1px solid rgba(200,146,42,0.2); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.info-card-label { font-size: 0.72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.35rem; font-weight: 700; }
.info-card-val { color: var(--text-dark); font-size: 0.92rem; font-weight: 600; line-height: 1.6; }
.info-card-val a { color: var(--text-dark); text-decoration: none; transition: color 0.2s; }
.info-card-val a:hover { color: var(--gold); }

/* Business hours card */
.hours-card {
  background: white; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 1.5rem; margin-top: 1rem; box-shadow: var(--shadow-sm);
}
.hours-title {
  font-weight: 700; font-size: 0.9rem; color: var(--text-dark);
  margin-bottom: 1rem; letter-spacing: -0.2px;
  display: flex; align-items: center; gap: 0.5rem;
}
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.5rem 0; border-bottom: 1px solid var(--border-light); font-size: 0.85rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-muted); font-weight: 500; }
.hours-time { color: var(--text-dark); font-weight: 600; }
.hours-badge {
  background: rgba(44,110,47,0.1); color: var(--accent-green);
  font-size: 0.68rem; font-weight: 700; padding: 0.2rem 0.5rem;
  border-radius: 30px; text-transform: uppercase; letter-spacing: 0.5px;
}
.hours-badge.closed { background: rgba(200,146,42,0.1); color: var(--gold-dark); }

/* Contact form wrap */
.contact-form-wrap {
  background: white; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 2.8rem;
  box-shadow: var(--shadow-md); position: sticky; top: 90px;
}
.form-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 800; color: var(--text-dark);
  margin-bottom: 0.4rem; letter-spacing: -0.5px;
}
.form-sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 2rem; font-weight: 450; line-height: 1.6; }
.form-group label { text-transform: uppercase; font-weight: 700; }
.form-note { font-size: 0.75rem; color: var(--text-dim); text-align: center; margin-top: 0.8rem; font-weight: 450; }

/* Interest chips */
.interest-group { margin-bottom: 1.2rem; }
.interest-label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.5px; font-weight: 700; text-transform: uppercase; margin-bottom: 0.7rem; display: block; }
.interest-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip-input { display: none; }
.chip-label {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--light-bg2); border: 1.5px solid var(--border-light);
  color: var(--text-muted); padding: 0.4rem 0.9rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; cursor: pointer; transition: all 0.2s; user-select: none;
}
.chip-input:checked + .chip-label {
  background: rgba(200,146,42,0.1); border-color: var(--gold); color: var(--gold-dark);
}

@media (max-width: 1000px) { .contact-main-grid { grid-template-columns: 1fr; gap: 3rem; } .contact-form-wrap { position: static; } }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } .contact-form-wrap { padding: 1.8rem 1.4rem; } }

/* Map section */
.map-section { background: var(--light-bg); padding: 0; }
.map-container {
  max-width: 1200px; margin: 0 auto; padding: 6rem 2.5rem;
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start;
}
.map-embed {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-light); box-shadow: var(--shadow-md);
  height: 420px; background: var(--light-bg3);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem; position: relative;
}
.map-placeholder { text-align: center; color: var(--text-dim); }
.map-placeholder .map-pin { font-size: 3rem; margin-bottom: 0.5rem; }
.map-placeholder p { font-size: 0.9rem; font-weight: 500; }
.map-placeholder small { font-size: 0.78rem; color: var(--text-dim); }
.map-open-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: white; padding: 0.65rem 1.4rem;
  border-radius: var(--radius); font-size: 0.82rem; font-weight: 700;
  text-decoration: none; transition: all 0.25s; margin-top: 0.5rem;
}
.map-open-btn:hover { background: var(--gold-dark); transform: translateY(-2px); }
.map-directions { margin-top: 2rem; }
.directions-title { font-weight: 700; color: var(--text-dark); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: -0.2px; }
.direction-item {
  display: flex; gap: 0.8rem; align-items: flex-start;
  padding: 0.8rem 0; border-bottom: 1px solid var(--border-light);
  font-size: 0.85rem; color: var(--text-muted);
}
.direction-item:last-child { border-bottom: none; }
.dir-icon { font-size: 1.1rem; margin-top: 0.1rem; flex-shrink: 0; }
.dir-text { font-weight: 500; line-height: 1.5; }
.dir-text strong { color: var(--text-dark); font-weight: 700; display: block; margin-bottom: 0.1rem; }
@media (max-width: 900px) { .map-container { grid-template-columns: 1fr; padding: 4rem 1.2rem; } }

/* Enquiry section */
.enquiry-section { background: var(--light-bg2); }
.enquiry-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem; max-width: 1200px; margin: 3.5rem auto 0;
}
.enquiry-card {
  background: white; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 1.8rem;
  transition: all 0.3s; box-shadow: var(--shadow-sm);
  text-decoration: none; display: block; color: inherit;
}
.enquiry-card:hover { border-color: var(--gold-light); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.07); }
.eq-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.eq-title { font-weight: 700; color: var(--text-dark); font-size: 1rem; margin-bottom: 0.5rem; letter-spacing: -0.2px; }
.eq-desc { font-size: 0.83rem; color: var(--text-dim); line-height: 1.6; font-weight: 450; }
.eq-link { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--gold); font-size: 0.8rem; font-weight: 700; margin-top: 0.8rem; transition: gap 0.2s; }
.enquiry-card:hover .eq-link { gap: 0.6rem; }

/* Toast notification */
.toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--accent-green); color: white;
  padding: 1rem 2rem; border-radius: var(--radius-lg);
  font-size: 0.9rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.7rem;
  box-shadow: 0 8px 24px rgba(44,110,47,0.25);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
  z-index: 1000; opacity: 0;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }