/* =========================================
   BuyoraNest – Main Stylesheet
   Color Palette: Warm Beige / Sage Green / Rich Terracotta
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --beige: #f5f0e8;
  --beige-mid: #ede4d0;
  --beige-dark: #d4c9b0;
  --sage: #7c9e7c;
  --sage-dark: #5a7a5a;
  --sage-light: #a8c5a0;
  --terracotta: #c4694a;
  --terracotta-dark: #a3503a;
  --forest: #3a5a3a;
  --cream: #fcf9f4;
  --white: #ffffff;
  --text-dark: #2c2c2c;
  --text-mid: #5a5a5a;
  --text-light: #888888;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

/* --- 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-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--beige); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 10px; }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(252, 249, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 201, 176, 0.4);
  padding: 0 2rem;
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(252, 249, 244, 0.98);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-img {
  height: 44px; width: 44px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--sage);
}
.nav-brand-text {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.5px;
}
.nav-brand-text span { color: var(--terracotta); }
.nav-menu {
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-mid);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%;
  transform: translateX(-50%); width: 0; height: 2px;
  background: var(--sage); border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--forest); }
.nav-link:hover::after { width: 60%; }
.nav-link.active { color: var(--sage-dark); font-weight: 600; }
.nav-link.active::after { width: 60%; }
.nav-cta {
  padding: 0.55rem 1.4rem;
  background: var(--sage);
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 600; font-size: 0.875rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(124, 158, 124, 0.3);
}
.nav-cta:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 158, 124, 0.4);
}
.nav-cta::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 5px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--forest); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/images/hero-bg.jpg');
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(58, 90, 58, 0.75) 0%,
    rgba(40, 60, 40, 0.55) 40%,
    rgba(196, 105, 74, 0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 8rem 2rem 4rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px; font-size: 0.8rem;
  font-weight: 500; letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage-light); animation: pulse 2s infinite;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700; color: var(--white);
  line-height: 1.1; margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-title .highlight {
  color: var(--sage-light);
  font-style: italic;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 560px; margin-bottom: 2.5rem;
  font-weight: 300; line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-buttons {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.9rem 2rem;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50px; font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(196, 105, 74, 0.4);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(196, 105, 74, 0.5);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.9rem 2rem;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50px; font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-3px);
}
.btn-sage {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.9rem 2rem;
  background: var(--sage);
  color: var(--white);
  border-radius: 50px; font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(124, 158, 124, 0.35);
}
.btn-sage:hover {
  background: var(--sage-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(124, 158, 124, 0.45);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--sage-dark);
  border: 2px solid var(--sage);
  border-radius: 50px; font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-3px);
}
.hero-stats {
  display: flex; gap: 3rem; margin-top: 3rem;
  animation: fadeInUp 0.8s ease 0.8s both;
}
.stat-item { color: var(--white); }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 700;
  color: var(--sage-light);
}
.stat-label { font-size: 0.8rem; opacity: 0.8; letter-spacing: 0.5px; }

/* =========================================
   SECTIONS COMMON
   ========================================= */
section { padding: 5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  color: var(--white);
  border-radius: 50px; font-size: 0.75rem;
  font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--forest);
  line-height: 1.2; margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-mid);
  max-width: 580px; line-height: 1.8;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* =========================================
   TRUST STRIP
   ========================================= */
.trust-strip {
  background: var(--forest);
  padding: 1.2rem 2rem;
}
.trust-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 500;
}
.trust-item svg { color: var(--sage-light); flex-shrink: 0; }

/* =========================================
   CATEGORIES
   ========================================= */
.categories { background: var(--beige); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.category-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.category-card img {
  width: 100%; height: 280px; object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover img { transform: scale(1.08); }
.category-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(58,90,58,0.85) 0%, transparent 55%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.5rem;
}
.category-title {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.3rem;
}
.category-count { font-size: 0.8rem; color: rgba(255,255,255,0.75); }
.category-btn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 0.8rem; padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white); border-radius: 50px;
  font-size: 0.8rem; font-weight: 500;
  transition: var(--transition);
}
.category-btn:hover { background: var(--white); color: var(--forest); }

/* =========================================
   FEATURED PRODUCTS / LIFESTYLE
   ========================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--beige-mid);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-light);
}
.product-img-wrap {
  position: relative; overflow: hidden;
}
.product-img-wrap img {
  width: 100%; height: 240px; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 0.3rem 0.8rem;
  background: var(--terracotta);
  color: var(--white); border-radius: 50px;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.product-info { padding: 1.5rem; }
.product-category {
  font-size: 0.75rem; font-weight: 600;
  color: var(--sage); text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 0.4rem;
}
.product-name {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 600;
  color: var(--forest); margin-bottom: 0.5rem;
}
.product-desc { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; }
.product-footer {
  display: flex; align-items: center;
  justify-content: space-between; margin-top: 1rem;
  padding-top: 1rem; border-top: 1px solid var(--beige-mid);
}
.product-price {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 700;
  color: var(--terracotta);
}
.enquire-btn {
  padding: 0.45rem 1.1rem;
  background: var(--sage);
  color: var(--white);
  border-radius: 50px; font-size: 0.8rem;
  font-weight: 600; transition: var(--transition);
}
.enquire-btn:hover { background: var(--sage-dark); }

/* =========================================
   ABOUT PREVIEW
   ========================================= */
.about-section { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%; height: 500px; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-md);
  text-align: center; min-width: 140px;
}
.about-badge-float .num {
  font-family: var(--font-heading);
  font-size: 2.2rem; font-weight: 700;
  color: var(--terracotta); display: block;
}
.about-badge-float .label {
  font-size: 0.8rem; color: var(--text-mid); font-weight: 500;
}
.about-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.feature-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem; background: var(--beige);
  border-radius: var(--radius); transition: var(--transition);
}
.feature-item:hover { background: var(--beige-mid); transform: translateX(5px); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--sage); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
}
.feature-info h4 {
  font-weight: 600; color: var(--forest); font-size: 0.95rem;
}
.feature-info p { font-size: 0.825rem; color: var(--text-mid); margin-top: 2px; }

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  position: relative; overflow: hidden;
  background-image: url('assets/images/cta-bg.jpg');
  background-size: cover; background-position: center;
  background-attachment: fixed;
  padding: 6rem 2rem;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(58,90,58,0.88) 0%,
    rgba(40,60,40,0.75) 100%);
}
.cta-content {
  position: relative; z-index: 2;
  max-width: 700px; margin: 0 auto; text-align: center;
}
.cta-content .section-title { color: var(--white); }
.cta-content .section-subtitle { color: rgba(255,255,255,0.85); margin: 0 auto 2.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials { background: var(--beige); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-mid);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 6rem; line-height: 1;
  color: var(--beige-dark); position: absolute;
  top: 1rem; right: 1.5rem; font-weight: 700;
}
.stars { color: #f4a93a; font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.95rem; color: var(--text-mid);
  line-height: 1.8; margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--forest));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; color: var(--forest); font-size: 0.9rem; }
.author-location { font-size: 0.78rem; color: var(--text-light); }

/* =========================================
   ENQUIRY / CONTACT FORM
   ========================================= */
.enquiry-section { background: var(--cream); }
.form-container {
  max-width: 820px; margin: 3rem auto 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--beige-mid);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.85rem; font-weight: 600;
  color: var(--forest); letter-spacing: 0.3px;
}
.form-group label span { color: var(--terracotta); }
.form-control {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--beige-mid);
  border-radius: var(--radius);
  font-size: 0.9rem; color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition); outline: none;
}
.form-control:focus {
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(124, 158, 124, 0.15);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.checkbox-group {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 1.2rem; background: var(--beige);
  border-radius: var(--radius);
  border: 1px solid var(--beige-mid);
  cursor: pointer;
}
.checkbox-group input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 2px;
  accent-color: var(--sage); flex-shrink: 0; cursor: pointer;
}
.checkbox-group label {
  font-size: 0.83rem; color: var(--text-mid);
  line-height: 1.6; cursor: pointer;
  font-weight: 400 !important;
}
.checkbox-group label a { color: var(--sage-dark); text-decoration: underline; }
.form-submit-btn {
  width: 100%; padding: 1rem;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: var(--white); border-radius: 50px;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(124, 158, 124, 0.35);
}
.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(124, 158, 124, 0.45);
}
.form-success {
  display: none; text-align: center; padding: 2rem;
  color: var(--sage-dark);
}
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.error-msg { font-size: 0.78rem; color: var(--terracotta); display: none; }

/* =========================================
   SERVICES
   ========================================= */
.services-hero {
  min-height: 55vh;
  background-image: url('assets/images/services-bg.jpg');
  background-size: cover; background-position: center;
  position: relative; display: flex;
  align-items: center; padding: 8rem 2rem 4rem;
}
.services-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(58,90,58,0.8) 0%, rgba(40,60,40,0.6) 100%);
}
.services-hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-mid);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-light);
}
.service-icon {
  width: 72px; height: 72px; border-radius: 20px;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 1.2rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--sage), var(--forest));
}
.service-title {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 600;
  color: var(--forest); margin-bottom: 0.7rem;
}
.service-desc { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; }

/* =========================================
   PAGE HERO (Inner Pages)
   ========================================= */
.page-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, var(--forest) 0%, var(--sage-dark) 100%);
  text-align: center; color: var(--white);
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700; margin-bottom: 1rem;
}
.page-hero p { font-size: 1.05rem; opacity: 0.85; max-width: 500px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-bottom: 1rem;
  font-size: 0.85rem; opacity: 0.75;
}
.breadcrumb a { color: var(--white); }
.breadcrumb a:hover { opacity: 1; }

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.value-card {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-mid);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-light);
}
.value-emoji { font-size: 2.5rem; margin-bottom: 1rem; }
.value-title {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 600;
  color: var(--forest); margin-bottom: 0.5rem;
}
.value-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }
.team-section { background: var(--beige); }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-bottom: 3rem;
}
.contact-info-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-mid);
  transition: var(--transition);
}
.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.contact-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 1rem;
}
.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem; color: var(--forest);
  margin-bottom: 0.5rem;
}
.contact-info-card p, .contact-info-card a {
  font-size: 0.9rem; color: var(--text-mid);
}
.contact-info-card a:hover { color: var(--sage-dark); }

/* =========================================
   POLICY PAGES
   ========================================= */
.policy-content {
  max-width: 860px; margin: 0 auto;
  padding: 4rem 2rem;
}
.policy-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem; color: var(--forest);
  margin: 2rem 0 0.8rem;
}
.policy-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem; color: var(--sage-dark);
  margin: 1.5rem 0 0.5rem;
}
.policy-content p {
  color: var(--text-mid); line-height: 1.8;
  margin-bottom: 1rem; font-size: 0.95rem;
}
.policy-content ul {
  list-style: disc; padding-left: 1.5rem;
  color: var(--text-mid); margin-bottom: 1rem;
}
.policy-content ul li {
  margin-bottom: 0.5rem; line-height: 1.7;
  font-size: 0.95rem;
}
.policy-content strong { color: var(--forest); }
.policy-date {
  background: var(--beige); border-radius: var(--radius);
  padding: 1rem 1.5rem; margin-bottom: 2rem;
  border-left: 4px solid var(--sage);
  font-size: 0.875rem; color: var(--text-mid);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: var(--forest);
  color: rgba(255,255,255,0.85);
  padding: 5rem 2rem 0;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand-text {
  font-family: var(--font-heading);
  font-size: 1.6rem; font-weight: 700;
  color: var(--white); margin-bottom: 1rem;
}
.footer-brand-text span { color: var(--sage-light); }
.footer-desc {
  font-size: 0.875rem; line-height: 1.8;
  opacity: 0.75; margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 0.75rem; }
.social-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--white);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
}
.social-btn:hover {
  background: var(--sage);
  border-color: var(--sage);
  transform: translateY(-3px);
}
.footer-heading {
  font-size: 0.9rem; font-weight: 700;
  color: var(--white); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 1.2rem;
  position: relative; padding-bottom: 0.6rem;
}
.footer-heading::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px; background: var(--sage-light);
  border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.875rem; opacity: 0.75;
  transition: var(--transition); display: flex;
  align-items: center; gap: 6px;
}
.footer-links a:hover { opacity: 1; color: var(--sage-light); padding-left: 4px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 0.8rem;
}
.footer-contact-item svg { color: var(--sage-light); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span {
  font-size: 0.85rem; opacity: 0.8; line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem; padding: 1.5rem 0;
  max-width: 1200px; margin: 3rem auto 0;
}
.footer-bottom-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap;
  gap: 1rem; font-size: 0.8rem; opacity: 0.6;
  padding: 1.5rem 0;
}
.footer-bottom-inner a { opacity: 1; }
.footer-bottom-inner a:hover { color: var(--sage-light); }

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0; transform: translateY(35px);
  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; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid { gap: 3rem; }
}
@media (max-width: 768px) {
  section { padding: 4rem 1.5rem; }
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--beige-mid);
    flex-direction: column;
    padding: 1.5rem;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    box-shadow: var(--shadow-md);
    gap: 0.3rem;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-link { padding: 0.75rem 1rem; width: 100%; }
  .nav-link::after { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge-float { right: 0; bottom: -16px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-container { padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .cta-section { background-attachment: scroll; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons a { text-align: center; justify-content: center; }
  .trust-strip-inner { gap: 1.5rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
