:root {
  /* EARTHY NATURAL PALETTE */
  --bg-dark: #1b2621;
  /* Deep Warm Forest */
  --bg-darker: #131a16;
  /* Dark Earth */

  --text-light: #e8e6d9;
  /* Bone / Off-white */
  --text-muted: #9aa69c;
  /* Muted Sage Grey */

  /* HONEY BEE THEME */
  --accent-gold: #ffbf00;
  /* Rich Amber Honey */
  --accent-green: #5d7052;
  /* Moss Green */
  --accent-light: #a3bfa0;
  /* Pale Lichen */

  --sky: #1b2621;
  --sun: #c29b40;

  /* Additional earthy tones */
  --green1: #5d7052;
  --green2: #3e4f3a;
  --green3: #758a6d;
  --green4: #131a16;

  --teal: #365c50;
  /* Deep Pine */
  --orange: #c47e45;
  /* Terracotta */
  --brown: #6b5034;
  /* Bark */
  --cream: #f2f7f0;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  overflow-x: hidden;
  width: 100%;
}

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Nunito', sans-serif;
  overflow-x: hidden;
  width: 100%;
  cursor: none;
  animation: pageFadeIn 0.8s ease-out;
}

/* SCROLL PROGRESS BAR */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--accent-gold);
  z-index: 10000;
  transition: width 0.1s;
}

/* UNBLUR REVEAL */
.unblur-hidden {
  filter: blur(5px);
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-out;
}

.unblur-visible {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-green);
  border-radius: 5px;
  border: 2px solid var(--bg-darker);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ... existing body.home ... */

/* ... styles ... */

@media(max-width:900px) {
  .hero-title {
    font-size: 48px;
    /* Reduce from big size to fit mobile */
  }

  .hero-sub {
    font-size: 16px;
  }
}

body.home {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('maanmautoy.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Hide default cursor on interactive elements */
a,
button,
input,
select,
textarea,
label {
  cursor: none !important;
}

/* CURSOR */
/* CURSOR */
.cursor {
  font-size: 24px;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
  /* Reset old styles */
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
}

.cursor::after {
  content: '🐝';
  display: block;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px dashed var(--accent-light);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all .2s;
  opacity: .4;
  animation: spin 8s linear infinite;
}

@keyframes spin {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* POLLEN PARTICLES */
.pollen {
  position: fixed;
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  animation: drift 1.5s linear forwards;
}

@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }

  100% {
    transform: translate(var(--dx), var(--dy)) scale(0);
    opacity: 0;
  }
}



/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 64px;
  transition: all .4s;
}

nav.scrolled {
  background: rgba(26, 60, 47, 0.95);
  backdrop-filter: blur(16px);
  padding: 14px 64px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--accent-green);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  /* gap: 10px; Removed to keep MaanMaut together */
  transition: transform .3s;
}

.nav-logo .logo-leaf {
  margin-right: 10px;
}

.nav-logo:hover .logo-leaf {
  animation: leafWiggle .6s ease-in-out infinite;
  display: inline-block;
}

@keyframes leafWiggle {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  25% {
    transform: rotate(-15deg) scale(1.2);
  }

  75% {
    transform: rotate(15deg) scale(1.2);
  }
}



/* SERVICES PAGE */
body.services {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('consulting.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

body.services .services-sticky,
body.services .srv-item {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.services footer {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0;
}

@keyframes wiggle {

  0%,
  100% {
    transform: rotate(-8deg)
  }

  50% {
    transform: rotate(8deg)
  }
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
  transition: width .3s;
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--accent-gold);
}

.nav-links a.active::after {
  width: 100%;
}

/* HERO */
#home {
  min-height: 100vh;
  /* Background moved to body.home */
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

/* Sky/Sun/Ground disabled for realistic background image */
.sky-layer,
.sun,
.ground {
  display: none;
}

/* Floating nature elements */
.float-elem {
  position: absolute;
  pointer-events: none;
  animation: leafSway ease-in-out infinite;
  opacity: 0.6;
}

@keyframes leafSway {

  0%,
  100% {
    transform: rotate(-12deg) translateY(0)
  }

  50% {
    transform: rotate(12deg) translateY(-18px)
  }
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  width: 100%;
  max-width: 900px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
  border: 1px solid var(--accent-light);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 26px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .9s ease forwards .3s;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(60px, 9vw, 116px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -3px;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(12px);
  animation: fadeUp 1.1s ease forwards .5s;
  /* Removed heartbeat */
  color: var(--text-light);
  white-space: nowrap;
  position: relative;
  display: inline-block;
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero-title .w1 {
  background: linear-gradient(110deg, var(--text-light) 40%, #fff 50%, var(--text-light) 60%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 8s linear infinite;
  display: inline-block;
}

.hero-title .w2 {
  background: linear-gradient(110deg, var(--accent-gold) 40%, #fff 50%, var(--accent-gold) 60%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: normal;
  display: inline-block;
  margin-left: 0;
  animation: shimmer 8s linear infinite;
}

.hero-sub {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  max-width: 480px;
  margin: 22px auto 38px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards .8s;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards 1s;
}

.btn-primary {
  background: var(--accent-gold);
  color: #1a3c2f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 38px;
  border-radius: 30px 4px 30px 30px;
  /* Organic Honey Drop Shape */
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .3);
}

.btn-primary:hover {
  background: #e5b020;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px var(--accent-gold);
  /* Honey Glow */
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--accent-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 38px;
  border-radius: 999px;
  text-decoration: none;
  transition: all .3s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: var(--text-light);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  /* Centered perfectly */
  margin: 0 auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  /* Make it look clickable */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards 1.4s;
  z-index: 10;
}

.hero-scroll span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
}

.scroll-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(8px)
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* POLLEN PARTICLES */
.pollen {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0.6;
  pointer-events: none;
  animation: floatPollen 10s linear infinite;
  box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
  z-index: 1;
}

@keyframes floatPollen {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(-100px) translateX(50px);
    opacity: 0;
  }
}

/* SECTIONS */
section {
  padding: 110px 64px;
  position: relative;
  overflow: hidden;
}

.section-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-darker);
  border: 1px solid var(--accent-green);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 18px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
  color: var(--text-light);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-l {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal-l.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-r {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal-r.visible {
  opacity: 1;
  transform: translateX(0);
}

/* PRODUCTS */
#products {
  background-color: var(--bg-dark);
  background-image: linear-gradient(to bottom, rgba(27, 38, 33, 0.7), rgba(27, 38, 33, 0.5)), url('sunflowers.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 140px 24px 80px;
  min-height: 100vh;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}

.products-header-right {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 340px;
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
  transition: transform .4s, box-shadow .4s;
}

.product-card:hover {
  transform: translateY(-10px) rotate(.5deg);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .4);
}

.pc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s;
}

.product-card:hover .pc-bg {
  transform: scale(1.05);
}

.pc-1 .pc-bg {
  /* Fallback/Overlay if image fails or for tint */
  background-color: #132a21;
}

.pc-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(19, 30, 26, 0.95), transparent);
  padding: 30px;
  transform: translateY(6px);
  transition: transform .4s;
}

.product-card:hover .pc-content {
  transform: translateY(0);
}

.pc-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 5px;
}

.pc-name {
  font-family: 'Playfair Display', serif;
  font-size: 27px;
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 9px;
  line-height: 1;
}

.pc-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.55;
  margin-bottom: 13px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s .1s, transform .35s .1s;
}

.product-card:hover .pc-desc {
  opacity: 1;
  transform: translateY(0);
}

.pc-btn {
  display: inline-flex;
  align-items: center;
  background: var(--accent-gold);
  color: #1a3c2f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 30px 4px 30px 30px;
  /* Organic Honey Drop Shape */
  padding: 8px 18px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s .15s, transform .35s .15s, box-shadow .3s;
}

.product-card:hover .pc-btn {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 0 10px var(--accent-gold);
  /* Honey Glow */
}

/* FEATURE STRIP */
.feature-strip {
  background: var(--bg-darker);
  /* Honeycomb overlay */
  background-image:
    radial-gradient(circle at center, rgba(255, 191, 0, 0.03) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(255, 191, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;

  padding: 56px 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--accent-green);
  border-bottom: 1px solid var(--accent-green);
}

body.home .feature-strip {
  background-color: rgba(19, 26, 22, 0.3);
  /* Very transparent */
  backdrop-filter: blur(4px);
  border-color: rgba(255, 255, 255, 0.05);
}

.feature-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, .02) 20px, rgba(255, 255, 255, .02) 40px);
}

.fs-item {
  text-align: center;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, .05);
  border-radius: 20px;
  padding: 34px 26px;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid rgba(255, 255, 255, .1);
}

.fs-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
  border-color: var(--accent-gold);
}

.fs-icon {
  font-size: 44px;
  margin-bottom: 13px;
  display: block;
}

.fs-title {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 7px;
}

.fs-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* TESTIMONIAL */
.quote-section {
  background: linear-gradient(135deg, #1f4842, #1a3c2f);
  padding: 90px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

body.home .quote-section {
  background: rgba(20, 48, 40, 0.3);
  backdrop-filter: blur(4px);
}

.quote-bubble {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(19, 42, 33, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 52px 60px;
  position: relative;
  z-index: 1;
  box-shadow: 0 14px 56px rgba(0, 0, 0, .2);
  border: 1px solid var(--accent-light);
}

.quote-marks {
  font-family: 'Playfair Display', serif;
  font-size: 76px;
  color: var(--accent-gold);
  line-height: .55;
  display: block;
  margin-bottom: 14px;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.8vw, 32px);
  font-style: italic;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.42;
  margin-bottom: 26px;
}

.quote-author {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
}

/* SERVICES */
#services {
  background: transparent;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.services-sticky {
  position: sticky;
  top: 130px;
  padding: 50px;
  border-radius: 30px;
}

.services-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 38px;
}

.stats-row {
  display: flex;
  gap: 30px;
  padding-top: 30px;
  border-top: 1px dashed var(--accent-green);
  flex-wrap: wrap;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
}

.stat-unit {
  font-size: 18px;
}

.stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 3px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.srv-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 26px 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all .35s;
  cursor: none;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.srv-item:hover {
  border-color: var(--accent-gold);
  transform: translateX(8px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
  background: rgba(255, 255, 255, 0.07);
}

.srv-icon-box {
  width: 52px;
  height: 52px;
  background: var(--bg-darker);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  flex-shrink: 0;
  transition: background .3s;
  border: 1px solid var(--accent-green);
}

.srv-item:hover .srv-icon-box {
  background: var(--accent-green);
}

.srv-num {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 3px;
}

.srv-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-light);
}

.srv-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CONTACT */
#contact {
  background: var(--bg-dark);
}

/* CONTACT PAGE */
body.contact {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('contactphoto.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

body.contact #contact {
  background: transparent;
}

body.contact .contact-form-wrap,
body.contact .c-detail {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.contact footer {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.contact-title em {
  font-style: italic;
  color: var(--accent-gold);
  display: block;
}

.contact-tagline {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 38px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.c-detail {
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 13px;
  padding: 15px 18px;
  border: 1px solid var(--accent-green);
  transition: transform .3s, box-shadow .3s;
}

.c-detail:hover {
  transform: translateX(6px);
  box-shadow: 0 5px 18px rgba(0, 0, 0, .2);
  border-color: var(--accent-gold);
}

.c-icon {
  font-size: 21px;
}

.c-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-light);
}

.c-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
}

.contact-form-wrap {
  /* background handled by body.contact override or default transparent */
  border-radius: 26px;
  padding: 44px;
  border: 1px solid var(--accent-green);
  box-shadow: 0 10px 36px rgba(0, 0, 0, .2);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 26px;
  color: var(--text-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.form-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--accent-green);
  border-radius: 11px;
  padding: 12px 15px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, .1);
}

.form-select option {
  background: #131a16;
  /* matches --bg-darker */
  color: #fff;
}

.form-select {
  color-scheme: dark;
}

.form-textarea {
  resize: vertical;
  min-height: 115px;
}

.form-btn {
  background: var(--accent-gold);
  color: #1a3c2f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  padding: 15px 40px;
  cursor: none;
  transition: all .3s;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
  width: 100%;
  margin-top: 4px;
}

.form-btn:hover {
  background: #e5b020;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .4);
}

#form-success {
  display: none;
  background: var(--bg-darker);
  border: 1px solid var(--accent-gold);
  border-radius: 11px;
  padding: 15px 18px;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 15px;
  margin-top: 10px;
  text-align: center;
}

/* FOOTER */
footer {
  background: var(--bg-darker);
  padding: 46px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  border-top: 1px solid var(--accent-green);
  margin-top: 60px;
}

body.home footer {
  background: rgba(19, 26, 22, 0.3);
  backdrop-filter: blur(4px);
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 23px;
  font-weight: 900;
  color: var(--text-light);
  /* Removed flex/gap to let text flow naturally */
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: color .3s;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, .38);
}





@media(max-width:900px) {
  nav {
    padding: 16px 20px;
  }

  nav.scrolled {
    padding: 12px 20px;
  }

  section {
    padding: 80px 20px;
  }

  .products-grid,
  .feature-strip,
  .services-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    padding: 36px 20px;
  }

  .services-sticky {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 24px 18px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    display: none;
  }
}

/* --- MOBILE NAV & HAMBURGER --- */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text-light);
  transition: 0.3s;
}

/* CLICK RIPPLE */
.ripple {
  position: fixed;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.8;
}

@keyframes rippleAnim {
  to {
    transform: translate(-50%, -50%) scale(10);
    opacity: 0;
  }
}

/* SELECTION COLOR */
::selection {
  background: var(--accent-gold);
  color: var(--bg-dark);
}

/* FOOTER HEARTBEAT */
.footer-copy {
  animation: heartbeat 3s infinite ease-in-out;
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

@media(max-width:900px) {
  .hamburger {
    display: flex;
  }


  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    background: rgba(19, 26, 22, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    border-left: 1px solid var(--accent-green);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  /* Hamburger Animation */
  .nav-links.active+.hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-links.active+.hamburger span:nth-child(2) {
    opacity: 0;
  }

  .nav-links.active+.hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* --- STAGGERED ANIMATIONS --- */
.product-card:nth-child(1),
.srv-item:nth-child(1),
.c-detail:nth-child(1) {
  transition-delay: 0.1s;
}

.product-card:nth-child(2),
.srv-item:nth-child(2),
.c-detail:nth-child(2) {
  transition-delay: 0.2s;
}

.product-card:nth-child(3),
.srv-item:nth-child(3),
.c-detail:nth-child(3) {
  transition-delay: 0.3s;
}

/* --- BACK TO TOP BEE --- */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: scale(1.1) translateY(-5px);
}



/* PRODUCTS PAGE */
body.products {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('sunflowers.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

body.products #products {
  background: transparent;
}

body.products .product-card {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.products .pc-content {
  background: transparent;
  /* Remove gradient overlay on cards for cleaner look */
}

body.products footer {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0;
}