/* =============================================
   HAPPY BAMBOO PVT. LTD. — Global Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --green-deep:   #1A4D2E;
  --green-mid:    #2D6A4F;
  --green-soft:   #52946B;
  --green-light:  #C8E6C9;
  --green-mist:   #EAF4EC;
  --beige:        #F5F0E8;
  --cream:        #FDFAF5;
  --gold:         #B8975A;
  --gold-light:   #D4B483;
  --text-dark:    #1C2B1E;
  --text-mid:     #3D5240;
  --text-soft:    #6B7F6E;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 12px rgba(26,77,46,0.08);
  --shadow-md:    0 8px 32px rgba(26,77,46,0.12);
  --shadow-lg:    0 24px 64px rgba(26,77,46,0.16);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    28px;
  --radius-full:  9999px;
  --transition:   all 0.35s cubic-bezier(0.4, 0, 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: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  color: var(--green-deep);
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

::selection { background: var(--green-mid); color: var(--white); }

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

.section { padding: 100px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 140px 0; }

.eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--green-deep);
  margin-bottom: 20px;
}

.section-title em { font-style: italic; color: var(--green-mid); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 560px;
  font-weight: 300;
  line-height: 1.8;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--green-deep);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(26,77,46,0.25);
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(26,77,46,0.3); }

.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid var(--green-mid);
}
.btn-outline:hover { background: var(--green-mist); transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--green-deep);
}
.btn-white:hover { background: var(--beige); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
  
}


.navbar.scrolled {
  background: rgba(253, 250, 245, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;

}

.logo-mark {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-sm);
  
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .logo-text { color: var(--green-deep); }

.logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: block;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}

.navbar.scrolled .logo-tagline { color: var(--text-soft); }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--white); }

.navbar.scrolled .nav-link { color: var(--text-soft); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: var(--green-deep); }

.navbar-cta {
  background: var(--white);
  color: var(--green-deep) !important;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.navbar-cta:hover { background: var(--beige); transform: translateY(-1px); }
.navbar.scrolled .navbar-cta { background: var(--green-deep); color: var(--white) !important; }
.navbar.scrolled .navbar-cta:hover { background: var(--green-mid); }
.navbar.scrolled .navbar-cta::after { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--green-deep); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu .nav-link { font-size: 1.8rem; font-family: 'Cormorant Garamond', serif; font-weight: 300; color: var(--green-deep); }
.mobile-menu .nav-link::after { background: var(--gold); }
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  font-size: 28px;
  color: var(--green-deep);
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(26,77,46,0.85) 0%, rgba(45,106,79,0.7) 50%, rgba(26,77,46,0.6) 100%),
    url('https://images.unsplash.com/photo-1518531933037-91b2f5f229cc?w=1800&q=80') center/cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(26,77,46,0.2) 0%, rgba(26,77,46,0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--gold-light); }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--green-deep);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number em { color: var(--gold-light); font-style: italic; }

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Feature Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,230,201,0.4);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 52px; height: 52px;
  background: var(--green-mist);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--green-deep);
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.8;
}

/* ── Two-Col Layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.col-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.col-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.col-image:hover img { transform: scale(1.04); }

.col-image-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(253,250,245,0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.badge-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--green-deep);
  line-height: 1;
}

.badge-text { font-size: 0.75rem; color: var(--text-soft); font-weight: 300; }

/* ── Timeline ── */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--green-mid), var(--green-light));
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateX(-16px);
  transition: all 0.5s ease;
}
.timeline-item.visible { opacity: 1; transform: translateX(0); }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--green-mid);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.2);
}

.timeline-year {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.timeline-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 6px;
}

.timeline-text { font-size: 0.88rem; color: var(--text-soft); font-weight: 300; }

/* ── Service Cards ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,230,201,0.4);
  transition: var(--transition);
  display: grid;
  grid-template-columns: 200px 1fr;
}

.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.service-card-image {
  overflow: hidden;
}
.service-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-image img { transform: scale(1.08); }

.service-card-body {
  padding: 32px;
}

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 12px;
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.service-card-text {
  font-size: 0.88rem;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--green-mid);
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; color: var(--green-deep); }

/* ── Product Cards ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,230,201,0.3);
  transition: var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }

.product-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-image img { transform: scale(1.08); }

.product-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(253,250,245,0.92);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
}

.product-body {
  padding: 24px 28px;
}

.product-name {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--green-mist);
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--green-deep);
}

.product-enquire {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--green-mid);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.product-enquire:hover { color: var(--green-deep); gap: 8px; }

/* ── Filter Tabs ── */
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-tab {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  background: var(--white);
  color: var(--text-soft);
  border: 1.5px solid rgba(200,230,201,0.6);
  cursor: pointer;
  transition: var(--transition);
}
.filter-tab:hover { border-color: var(--green-mid); color: var(--green-deep); }
.filter-tab.active { background: var(--green-deep); color: var(--white); border-color: var(--green-deep); }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info { }

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px; height: 44px;
  background: var(--green-mist);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 400;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(200,230,201,0.4);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group.full { grid-column: 1 / -1; }

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(200,230,201,0.8);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--green-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.08);
}

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

/* ── Map placeholder ── */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  background: var(--green-mist);
  position: relative;
}

.map-container iframe {
  width: 100%; height: 100%;
  border: none;
}

/* ── WhatsApp float ── */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 900;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }

/* ── Footer ── */
footer {
  background: var(--green-deep);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
  
}



.footer-logo-mark {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.social-icon:hover { background: rgba(255,255,255,0.15); color: var(--white); transform: translateY(-2px); }

.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  font-weight: 300;
}
.footer-link:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-icon { font-size: 14px; margin-top: 2px; color: var(--gold-light); }
.footer-contact-text { font-size: 0.85rem; color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.6; }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1503785640985-f62e3aeee448?w=1400&q=80') center/cover;
  opacity: 0.15;
}

.page-hero-content { position: relative; z-index: 1; text-align: center; }

.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero-title em { color: var(--gold-light); font-style: italic; }

.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ── Value Pills ── */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.value-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(200,230,201,0.5);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-pill:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-pill-icon { font-size: 22px; }
.value-pill-text { font-size: 0.92rem; font-weight: 500; color: var(--green-deep); }

/* ── Team Card ── */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 600px; }

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,230,201,0.4);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin: 0 auto 16px;
}

.team-name { font-size: 1.1rem; font-weight: 400; color: var(--green-deep); margin-bottom: 4px; }
.team-role { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.team-contact { font-size: 0.82rem; color: var(--text-soft); font-weight: 300; }

/* ── Bg Variants ── */
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-mist { background: var(--green-mist); }
.bg-dark { background: var(--green-deep); }
.bg-beige { background: var(--beige); }

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s 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; }

/* ── Tag ── */
.tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--green-mist);
  color: var(--green-mid);
  margin-bottom: 16px;
}

/* ── Blockquote style ── */
.quote-block {
  border-left: 3px solid var(--gold);
  padding: 24px 32px;
  background: var(--beige);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 40px 0;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.5;
  margin-bottom: 12px;
}

.quote-author {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(2n) { border-right: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .card-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .navbar-nav, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .service-card { grid-template-columns: 1fr; }
  .service-card-image { height: 200px; }
  .form-row { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form { padding: 32px 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
