@import url('styles.css');

/* ---- Solid nav for light-hero pages ---- */
.kanasu-nav {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(111,184,120,0.18) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07) !important;
}
.kanasu-nav .logo-name { color: #1a1a1a !important }
.kanasu-nav .logo-sub  { color: #4a8a5e !important }
.kanasu-nav .nav-link  { color: #1a1a1a !important }
.kanasu-nav .ham-bar   { background: #1a1a1a !important }

/* ---- Page Hero ---- */
.page-hero {
  background: linear-gradient(135deg, #f0f7f0 0%, #e8f5e8 50%, #f5f5f5 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111,184,120,0.15), transparent 70%);
  pointer-events: none;
}

/* ---- Tabs ---- */
.section-tabs {
  display: flex;
  gap: 0;
  background: #fff;
  border-bottom: 2px solid rgba(111,184,120,0.2);
  position: sticky;
  top: 64px;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.section-tab {
  flex: 1;
  padding: 16px 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: -2px;
  position: relative;
}
.section-tab:hover { color: #4a8a5e; background: rgba(111,184,120,0.05); }
.section-tab.active {
  color: #2d5a3d;
  border-bottom-color: #6fb878;
  background: rgba(111,184,120,0.06);
}
.section-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  background: #6fb878;
  border-radius: 50%;
}

/* ---- Tab Panels ---- */
.tab-panel {
  display: none;
  animation: panelIn 0.4s cubic-bezier(0.22,1,0.36,1) both;
}
.tab-panel.active {
  display: block;
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Stats Bar ---- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(111,184,120,0.15);
  border: 1px solid rgba(111,184,120,0.2);
  max-width: 320px;
}
.stat-box {
  background: #fff;
  padding: 1.25rem 1rem;
  text-align: center;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2d5a3d;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.5);
}

/* ---- Section divider ---- */
.section-divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, #6fb878, #2d5a3d);
  margin: 0.75rem 0 1.5rem;
}

/* ---- Founder Cards ---- */
/* ---- Team Section ---- */
.team-section {
  background: linear-gradient(180deg, #f8faf8 0%, #ffffff 100%);
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
.team-card {
  background: #fff;
  border: 1px solid rgba(111,184,120,0.18);
  box-shadow: 0 4px 28px rgba(0,0,0,0.05);
  padding: 2rem 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(45,90,61,0.1);
  border-color: rgba(111,184,120,0.35);
}
.team-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.team-avatar {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #6fb878, #2d5a3d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(45,90,61,0.2);
}
.team-avatar--alt {
  background: linear-gradient(135deg, #4a8a5e, #1e3d2a);
}
.team-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.25;
  margin: 0 0 0.35rem;
}
.team-role {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4a8a5e;
  margin: 0;
}
.team-card-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #6fb878, transparent);
  margin-bottom: 1.25rem;
}
.team-bio {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(26,26,26,0.68);
  margin: 0 0 1.25rem;
}
.team-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.team-highlights li {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  color: rgba(26,26,26,0.6);
  padding-left: 1.1rem;
  position: relative;
}
.team-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6fb878;
}
.team-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #2d5a3d;
  text-decoration: none;
  padding-top: 1rem;
  border-top: 1px solid rgba(111,184,120,0.15);
  width: 100%;
  transition: color 0.2s ease;
}
.team-contact-link:hover { color: #6fb878; }
.team-contact-icon { font-size: 0.9rem; }

/* ---- Value Cards ---- */
.value-card {
  padding: 2rem 1.75rem;
  background: #fff;
  border: 1px solid rgba(111,184,120,0.18);
  box-shadow: 0 2px 18px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(45,90,61,0.1);
}

/* ---- Why Items ---- */
.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.why-icon-box {
  width: 50px; height: 50px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #6fb878, #2d5a3d);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

/* ---- Contact Info Cards ---- */
.contact-info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid rgba(111,184,120,0.18);
  box-shadow: 0 2px 14px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.contact-info-card:hover {
  box-shadow: 0 8px 28px rgba(45,90,61,0.1);
  transform: translateY(-2px);
}
.contact-icon-box {
  width: 46px; height: 46px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #6fb878, #4a8a5e);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-info-card a { color: #1a1a1a; transition: color 0.2s; }
.contact-info-card a:hover { color: #2d5a3d; }

/* ---- Form ---- */
.form-label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.55);
  margin-bottom: 0.45rem;
}
.form-ctrl {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(26,26,26,0.12);
  background: #fafafa;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-ctrl:focus {
  border-color: #6fb878;
  box-shadow: 0 0 0 3px rgba(111,184,120,0.15);
  background: #fff;
}
.form-ctrl::placeholder { color: rgba(26,26,26,0.28); }

/* ---- Product Select Detail ---- */
.product-select-detail {
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, rgba(111,184,120,0.08), rgba(45,90,61,0.04));
  border: 1px solid rgba(111,184,120,0.22);
  border-left: 3px solid #4a8a5e;
}
.product-select-detail.hidden { display: none; }
.product-select-detail-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.25rem;
}
.product-select-detail-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  color: rgba(26,26,26,0.55);
  margin: 0;
  line-height: 1.5;
}

/* ---- Order Summary ---- */
.order-summary {
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(111,184,120,0.25);
  border-left: 3px solid #4a8a5e;
}
.order-summary.hidden { display: none; }
.order-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.35rem 0;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
}
.order-summary-row.hidden { display: none; }
.order-summary-label { color: rgba(26,26,26,0.55); }
.order-summary-value { color: #1a1a1a; font-weight: 500; }
.order-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.65rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(111,184,120,0.3);
}
.order-summary-total .order-summary-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: #2d5a3d;
}
.order-summary-total-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #2d5a3d;
}
.order-summary-note {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  color: rgba(26,26,26,0.4);
  margin: 0.65rem 0 0;
  line-height: 1.5;
}

/* ---- Map ---- */
.map-wrap {
  width: 100%;
  height: 340px;
  overflow: hidden;
  border: 1px solid rgba(111,184,120,0.2);
  box-shadow: 0 4px 28px rgba(0,0,0,0.08);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ---- WhatsApp Button ---- */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
  text-decoration: none;
}
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.4);
  color: #fff;
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .section-tab { font-size: 0.58rem; padding: 12px 6px; letter-spacing: 0.1em; }
  .map-wrap { height: 240px; }
  .team-card { padding: 1.5rem 1.25rem; }
  .team-card-header { gap: 1rem; }
  .team-avatar { width: 60px; height: 60px; font-size: 1.15rem; }
  .team-name { font-size: 1.25rem; }
}
