/* ===========================
   UV BIO PRODUCTS - styles.css
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Nunito+Sans:wght@300;400;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  --forest:   #1B5E3B;
  --sage:     #2E8B57;
  --mint:     #52B788;
  --pale:     #B7E4C7;
  --cream:    #F8F4EC;
  --tan:      #E6D2AA;
  --brown:    #7B5E3A;
  --dark-br:  #4A3728;
  --white:    #FFFFFF;
  --charcoal: #1C2B1E;
  --gray:     #6B7A6E;
  --light-g:  #F0EDE6;

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito Sans', sans-serif;
  --shadow-sm: 0 2px 12px rgba(27,94,59,.10);
  --shadow-md: 0 8px 32px rgba(27,94,59,.15);
  --shadow-lg: 0 20px 60px rgba(27,94,59,.20);
  --radius:    14px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(82,183,136,.12);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 48px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(46,139,87,.35);
}
.btn-primary:hover {
  background: var(--forest);
  box-shadow: 0 8px 28px rgba(27,94,59,.45);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--sage);
  border: 2px solid var(--sage);
}
.btn-outline:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--forest);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--sage), var(--forest));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 22px; height: 22px; fill: #fff; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: .02em;
}
.logo-tagline {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brown);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--charcoal);
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--sage);
  border-radius: 2px;
  transition: width .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--sage); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.navbar.scrolled .nav-links a { color: var(--charcoal); }
.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,.9); }
.navbar:not(.scrolled) .nav-links a:hover { color: #fff; }
.navbar:not(.scrolled) .logo-name { color: #fff; }
.navbar:not(.scrolled) .logo-tagline { color: rgba(255,255,255,.75); }
.navbar:not(.scrolled) .logo-icon { background: rgba(255,255,255,.25); border: 1.5px solid rgba(255,255,255,.4); }
.navbar:not(.scrolled) .logo-icon svg { fill: #fff; }

.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar:not(.scrolled) .hamburger span { background: #fff; }

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 16px;
  animation: slideDown .3s ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 10px 0;
  border-bottom: 1px solid var(--light-g);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--sage); }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #0d3b22 0%, #1B5E3B 45%, #2E8B57 100%);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(82,183,136,.18) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(183,228,199,.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.04) 0%, transparent 60%);
}
.hero-leaves {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.leaf {
  position: absolute;
  opacity: .08;
  animation: floatLeaf linear infinite;
}
.leaf svg { fill: #fff; }
.leaf:nth-child(1) { width: 120px; top: 10%; right: 8%; animation-duration: 20s; animation-delay: 0s; }
.leaf:nth-child(2) { width: 80px;  top: 60%; left: 4%; animation-duration: 25s; animation-delay: -8s; }
.leaf:nth-child(3) { width: 160px; bottom: 15%; right: 25%; animation-duration: 30s; animation-delay: -15s; }
.leaf:nth-child(4) { width: 60px;  top: 30%; left: 30%; animation-duration: 18s; animation-delay: -5s; }
.leaf:nth-child(5) { width: 100px; top: 75%; right: 40%; animation-duration: 22s; animation-delay: -12s; }
@keyframes floatLeaf {
  0%   { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(-30px) rotate(10deg); }
  100% { transform: translateY(0) rotate(0deg); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pale);
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: #52B788;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.4); }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title span { color: var(--pale); }
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 4px;
}
/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
}
.hero-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 24px 20px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: var(--transition);
}
.hero-card:hover {
  background: rgba(255,255,255,.17);
  transform: translateY(-4px);
}
.hero-card-icon {
  width: 44px; height: 44px;
  background: rgba(82,183,136,.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.hero-card-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.hero-card-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.hero-card.wide {
  grid-column: 1/-1;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

/* ============================================================
   WAVE DIVIDER
   ============================================================ */
.wave-top { display: block; width: 100%; margin-bottom: -2px; line-height: 0; }
.wave-bottom { display: block; width: 100%; margin-top: -2px; line-height: 0; }

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-preview {
  padding: 100px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-stack {
  position: relative;
  height: 460px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 360px;
  background: linear-gradient(135deg, #1B5E3B 0%, #2E8B57 60%, #52B788 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 240px;
  background: var(--tan);
  border-radius: var(--radius);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-badge-float {
  position: absolute;
  top: 50%; left: -28px;
  transform: translateY(-50%);
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 3;
}
.about-badge-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
}
.about-badge-txt {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray);
  text-align: center;
}
.about-text .section-sub { margin-bottom: 28px; }
.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feat-icon {
  min-width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--sage), var(--mint));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(46,139,87,.3);
}
.feat-body h4 {
  font-weight: 700;
  font-size: .95rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.feat-body p { font-size: .88rem; color: var(--gray); }

/* Decorative SVG art inside about image boxes */
.about-art-svg {
  width: 100%; height: 100%;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

/* ============================================================
   PRODUCTS HIGHLIGHT
   ============================================================ */
.products-highlight {
  padding: 100px 0;
  background: var(--white);
}
.ph-header { text-align: center; }
.ph-header .section-sub { margin: 0 auto 52px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.prod-card {
  background: var(--white);
  border: 1.5px solid #E8EDE9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.prod-card:hover {
  border-color: var(--mint);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.prod-card-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #e8f5ee, #f0f9f3);
  position: relative;
  overflow: hidden;
}
.prod-card-img::before {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(82,183,136,.12);
}
.prod-visual {
  width: 130px; height: 110px;
  position: relative;
  z-index: 1;
}
.bag-svg { filter: drop-shadow(0 8px 16px rgba(46,139,87,.2)); }
.prod-card-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--forest);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .06em;
}
.prod-card-body { padding: 24px; }
.prod-size {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.prod-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
}
.spec-label { color: var(--gray); font-weight: 600; }
.spec-val { color: var(--forest); font-weight: 700; }
.prod-card-action {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--sage);
  font-weight: 700;
  font-size: .88rem;
  transition: gap .25s;
}
.prod-card:hover .prod-card-action { gap: 10px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  padding: 100px 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.why-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(82,183,136,.12) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(183,228,199,.08) 0%, transparent 40%);
}
.why-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.why-inner .section-tag { color: var(--pale); background: rgba(183,228,199,.15); }
.why-inner .section-title { color: #fff; }
.why-inner .section-sub { color: rgba(255,255,255,.7); margin: 0 auto 52px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.why-card:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-6px);
  border-color: rgba(82,183,136,.4);
}
.why-icon {
  width: 60px; height: 60px;
  background: rgba(82,183,136,.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: rgba(82,183,136,.35); }
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 10px;
}
.why-card p { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: linear-gradient(120deg, var(--tan) 0%, var(--cream) 100%);
  padding: 80px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--charcoal);
  margin-bottom: 8px;
}
.cta-text p { color: var(--gray); font-size: 1rem; }
.cta-buttons { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--charcoal);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 52px;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand .logo-name,
.footer-brand .logo-tagline { color: #fff !important; }
.footer-brand .logo-tagline { color: rgba(255,255,255,.6) !important; }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--sage);
  color: #fff;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--sage);
  border-radius: 2px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .25s;
}
.footer-links a:hover { color: var(--mint); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.fc-icon {
  min-width: 32px; height: 32px;
  background: rgba(82,183,136,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}
.fc-text { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.5; }
.fc-text a { color: rgba(255,255,255,.6); transition: color .2s; }
.fc-text a:hover { color: var(--mint); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: var(--mint); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-btns {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.fab {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 13px 20px 13px 16px;
  font-size: .88rem;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.fab:hover { transform: scale(1.06); box-shadow: 0 10px 30px rgba(37,211,102,.5); }
.fab.call { background: var(--sage); box-shadow: 0 6px 24px rgba(46,139,87,.4); }
.fab.call:hover { background: var(--forest); box-shadow: 0 10px 30px rgba(27,94,59,.5); }
.fab-icon { font-size: 1.15rem; }
.fab-label { display: inline; }

/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left  { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal-left.visible, .reveal-right.visible { transform: translateX(0); }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--forest), var(--sage));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(183,228,199,.15) 0%, transparent 50%);
}
.page-header-inner { position: relative; z-index: 1; }
.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: #fff;
  margin-bottom: 12px;
}
.page-header p { color: rgba(255,255,255,.75); font-size: 1.1rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--pale); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-full { padding: 100px 0; background: var(--white); }
.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.about-full p { color: var(--gray); margin-bottom: 18px; font-size: .97rem; line-height: 1.8; }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
}
.mv-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 28px;
  border-left: 4px solid var(--sage);
}
.mv-card h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--forest);
  margin-bottom: 12px;
}
.mv-card p { color: var(--gray); font-size: .92rem; }
.values-section {
  background: var(--cream);
  padding: 80px 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.val-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.val-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.val-icon { font-size: 2.4rem; margin-bottom: 16px; }
.val-card h4 { font-family: var(--font-head); font-size: 1.2rem; color: var(--charcoal); margin-bottom: 8px; }
.val-card p { font-size: .87rem; color: var(--gray); }
.team-section { padding: 80px 0; }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-full { padding: 80px 0; }
.products-all-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}
.prod-full-card {
  background: var(--white);
  border: 1.5px solid #E4EEE7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.prod-full-card:hover {
  border-color: var(--mint);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.prod-full-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.prod-full-body { padding: 28px; }
.prod-full-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.prod-full-subtitle {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sage);
  margin-bottom: 18px;
}
.prod-full-specs {
  background: var(--cream);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
}
.spec-line {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.spec-line:last-child { border-bottom: none; }
.spec-k { color: var(--gray); font-weight: 600; }
.spec-v { color: var(--forest); font-weight: 700; }
.prod-actions { display: flex; gap: 10px; }
.prod-actions .btn { flex: 1; justify-content: center; padding: 11px 16px; font-size: .85rem; }

/* Specs Table */
.specs-table-section {
  background: var(--cream);
  padding: 80px 0;
}
.specs-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: .92rem;
}
.specs-table thead {
  background: linear-gradient(90deg, var(--forest), var(--sage));
}
.specs-table thead th {
  padding: 18px 22px;
  text-align: left;
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.specs-table tbody tr { border-bottom: 1px solid #eef2ee; transition: background .2s; }
.specs-table tbody tr:hover { background: rgba(82,183,136,.06); }
.specs-table tbody td {
  padding: 16px 22px;
  color: var(--charcoal);
}
.specs-table tbody td:first-child {
  font-weight: 700;
  color: var(--gray);
  width: 60px;
}
.specs-table tbody td .size-badge {
  display: inline-block;
  background: rgba(82,183,136,.12);
  color: var(--forest);
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: .85rem;
}
.specs-table tbody td .thick-pill {
  display: inline-block;
  background: rgba(123,94,58,.1);
  color: var(--brown);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .85rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 100px 0; background: var(--white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form-wrap { }
.contact-form-wrap h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.contact-form-wrap > p { color: var(--gray); margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: .87rem; font-weight: 700; color: var(--charcoal); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  border: 1.5px solid #DDE5DE;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(46,139,87,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 15px; }
.form-success {
  display: none;
  background: rgba(82,183,136,.12);
  border: 1.5px solid var(--mint);
  border-radius: 10px;
  padding: 18px 24px;
  color: var(--forest);
  font-weight: 700;
  font-size: .95rem;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}
.contact-info { }
.info-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.info-card h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-card h4 span {
  width: 36px; height: 36px;
  background: var(--sage);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
}
.info-line { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: .9rem; color: var(--gray); }
.info-line a { color: var(--sage); font-weight: 600; }
.map-section { padding: 0 0 100px; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
  border: 3px solid var(--pale);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section { padding: 80px 0; background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gal-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: linear-gradient(135deg, var(--sage), var(--forest));
}
.gal-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gal-item:nth-child(4) { grid-column: span 2; }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,94,59,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  color: #fff;
  font-size: 1.5rem;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-stack { height: 300px; }
  .about-badge-float { left: auto; right: 0; top: auto; bottom: -20px; transform: none; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .products-all-grid { grid-template-columns: 1fr 1fr; }
  .about-full-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .gal-item:nth-child(4) { grid-column: span 1; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media(max-width: 700px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: 1fr; }
  .products-all-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .fab-label { display: none; }
  .fab { padding: 13px 14px; border-radius: 50%; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}
