/* ==========================================================================
   The Secret Siddha - Premium Organic Botanical E-Commerce Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Design Palette */
  --primary-dark: #0471a4;
  --primary-green: #0b95d6;
  --accent-emerald: #3e8e64;
  --light-sage: #e8f0eb;
  --soft-cream: #f9f8f3;
  --warm-card: #ffffff;
  --terracotta: #e37600;
  --gold-accent: #e8ba19;
  --text-dark: #303030;
  --text-muted: #565656;
  --border-light: #e2e8e4;
  --shadow-sm: 0 4px 12px rgba(27, 59, 43, 0.05);
  --shadow-md: 0 8px 24px rgba(27, 59, 43, 0.09);
  --shadow-lg: 0 16px 40px rgba(27, 59, 43, 0.15);

  /* Typography */
  --font-heading: 'Roboto Slab', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--soft-cream);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  font-size: 0.9rem;
  text-align: left;
  padding-left: 24px;
  color: #565656;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

/* Header & Navigation */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(249, 248, 243, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.top-bar {
  background-color: var(--primary-dark);
  color: #e2ede7;
  font-size: 0.85rem;
  padding: 6px 0;
  text-align: center;
  font-weight: 500;
}

.top-bar span {
  color: var(--gold-accent);
  font-weight: 600;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.brand-logo svg {
  width: 32px;
  height: 32px;
  fill: var(--primary-green);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-dark);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-emerald);
  border-radius: 2px;
}

.header-cta {
  background-color: var(--primary-green);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(45, 90, 67, 0.2);
}

.header-cta:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
}

/* Minimalist Hamburger Button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 42px;
  height: 38px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 105;
  transition: var(--transition-fast);
}

.hamburger-btn:hover {
  background-color: var(--light-sage);
  border-color: var(--accent-emerald);
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-dark);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

/* Animated Hamburger X Transformation */
.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Backdrop */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 30, 22, 0.5);
  backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-backdrop.active {
  opacity: 1;
  visibility: visible;
}

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

.page-content-container {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;

}

.column-left {
  flex: 1;
}

.column-right {
  flex: 2;
}




.main-content {
  flex: 1;
}

.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212, 163, 89, 0.15), transparent 50%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.15rem;
  color: #d1e3d7;
  max-width: 650px;
  margin: 0 auto;
}

/* ==========================================================================
   Hero Slider Component
   ========================================================================== */
.hero-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
  color: white;
}

.hero-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.hero-slide {
  min-width: 100%;
  padding: 90px 24px 100px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 59, 76, 0.75) 0%, rgba(2, 26, 38, 0.85) 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.slide-tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-accent);
  display: inline-block;
  margin-bottom: 12px;
  background: rgba(212, 163, 89, 0.15);
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(212, 163, 89, 0.3);
}

.slide-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-desc {
  font-size: 1.15rem;
  color: #d1e3d7;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Slider Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  transition: var(--transition-normal);
  user-select: none;
}

.slider-arrow:hover {
  background: var(--accent-emerald);
  border-color: var(--accent-emerald);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.slider-arrow-prev {
  left: 24px;
}

.slider-arrow-next {
  right: 24px;
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
}

.slider-dot.active {
  background: var(--gold-accent);
  width: 32px;
  border-radius: 12px;
}


/* Section Headings */
.section-title-wrap {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-emerald);
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition-normal);
  font-family: Plus Jakarta Sans', sans-serif;

}

.btn-primary {
  background-color: var(--primary-green);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(45, 90, 67, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
  padding: 8px 26px;

}

.btn-secondary:hover {
  background-color: var(--primary-dark);
  color: white;
}

.btn-accent {
  background-color: var(--terracotta);
  color: white;
}

.btn-accent:hover {
  background-color: #c46445;
  box-shadow: 0 6px 18px rgba(217, 119, 87, 0.35);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* Product Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: var(--warm-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: rgba(62, 142, 100, 0.3);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: var(--primary-dark);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-img-wrap {
  position: relative;
  height: 204px;
  background-color: var(--light-sage);
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  font-size: 0.8rem;
  color: var(--accent-emerald);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex: 1;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.product-rating {
  color: var(--gold-accent);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Modal Order Popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 30, 22, 0.7);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: var(--warm-card);
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-top: 5px solid var(--accent-emerald);
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 24px 28px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
}

.modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-title-icon {
  width: 42px;
  height: 42px;
  background-color: var(--light-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary-dark);
}

.modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background-color: var(--light-sage);
  color: var(--primary-dark);
}

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

.order-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.form-group label span {
  color: var(--terracotta);
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: #fafbf9;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-emerald);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(62, 142, 100, 0.15);
}

.form-control[readonly] {
  background-color: var(--light-sage);
  color: var(--primary-dark);
  font-weight: 700;
  cursor: not-allowed;
}

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

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

/* Feature Boxes */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin: 24px 0;
}

.feature-box {
  background-color: var(--warm-card);
  padding: 20px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 80px;
  height: 80px;
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
}

.feature-box h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Disease Grid */
.disease-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.disease-card {
  background-color: var(--warm-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.disease-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.disease-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(217, 119, 87, 0.12);
  color: var(--terracotta);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.disease-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary-dark);
}

.disease-symptoms {
  font-size: 0.85rem;
  color: var(--terracotta);
  font-weight: 600;
  margin-top: 4px;
}

.disease-body {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.recommended-remedy {
  background-color: var(--light-sage);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--primary-green);
  margin-bottom: 20px;
}

.remedy-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-green);
}

.remedy-name {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 0.98rem;
}

/* Contact Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  background-color: var(--primary-dark);
  color: white;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-info-card h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.contact-info-card p {
  color: #b7d1c2;
  margin-bottom: 32px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.info-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 0.95rem;
  color: white;
}

.info-text p {
  font-size: 0.9rem;
  color: #d1e3d7;
  margin-bottom: 0;
}

.contact-form-card {
  background-color: var(--warm-card);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

/* FAQ Accordion */
.faq-section {
  margin-top: 60px;
}

.faq-item {
  background-color: var(--warm-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 24px;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 24px 18px;
  font-size: 0.92rem;
  color: var(--text-muted);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Order Confirmation Screen */
.confirmation-card {
  max-width: 650px;
  margin: 60px auto;
  background-color: var(--warm-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-top: 6px solid var(--accent-emerald);
  text-align: center;
}

.success-badge {
  width: 70px;
  height: 70px;
  background-color: var(--light-sage);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 20px;
}

.receipt-details {
  background-color: var(--soft-cream);
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 24px 0;
  text-align: left;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.receipt-row:last-child {
  border-bottom: none;
}

.receipt-label {
  color: var(--text-muted);
  font-weight: 500;
}

.receipt-val {
  color: var(--primary-dark);
  font-weight: 700;
}

/* Footer */
footer {
  background-color: #0d0f12;
  color: white;
  padding: 60px 0 24px;
  margin-top: 80px;
}

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

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: white;
}

.footer-brand p {
  color: #ffffff;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: var(--gold-accent);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ffffff;
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #949494;
}

/* Responsive Breakpoints & Mobile Hamburger Navigation */
@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .header-cta {
    display: none;
    /* Hide header CTA in top bar on mobile; rendered inside mobile drawer */
  }

  .nav-menu {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background-color: var(--warm-card);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    border-bottom: 4px solid var(--accent-emerald);
    z-index: 99;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.34, 1.25, 0.64, 1), opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav-menu.mobile-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 14px 16px;
    font-size: 1.05rem;
    color: var(--primary-dark);
    border-bottom: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
  }

  .nav-link:hover,
  .nav-link.active {
    background-color: var(--light-sage);
    color: var(--primary-green);
    padding-left: 20px;
  }

  .nav-link.active::after {
    display: none;
  }

  .mobile-drawer-cta {
    display: block !important;
    margin-top: 16px;
    text-align: center;
    padding: 14px;
    font-size: 1rem;
  }

  .page-hero h1 {
    font-size: 2.1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-content-container {
    flex-direction: column !important;
  }

}