/* style.css */

/* ===== CSS VARIABLES ===== */
:root {
  /* Pastel Color Palette */
  --color-primary: #A8D5BA;
  --color-primary-dark: #7FB89A;
  --color-primary-light: #C8E6D3;
  --color-secondary: #F4C2C2;
  --color-secondary-dark: #E89999;
  --color-accent: #FFD6A5;
  --color-accent-dark: #FFBC6B;
  --color-info: #B8D4E8;
  --color-info-dark: #8AB5D1;
  
  /* Neutral Colors */
  --color-white: #FFFFFF;
  --color-light: #F9F9F9;
  --color-light-gray: #E8E8E8;
  --color-gray: #CCCCCC;
  --color-dark-gray: #666666;
  --color-text: #333333;
  --color-text-light: #555555;
  --color-black: #1A1A1A;
  
  /* Gradient Backgrounds */
  --gradient-primary: linear-gradient(135deg, #A8D5BA 0%, #C8E6D3 100%);
  --gradient-secondary: linear-gradient(135deg, #F4C2C2 0%, #FFD6A5 100%);
  --gradient-hero: linear-gradient(135deg, rgba(168, 213, 186, 0.9) 0%, rgba(184, 212, 232, 0.9) 100%);
  --gradient-overlay: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  
  /* Typography */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Rubik', sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-round: 50%;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Layout */
  --header-height: 80px;
  --section-padding: 80px 0;
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-normal);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
  color: var(--color-black);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--color-text-light);
  font-size: 1.0625rem;
  line-height: 1.8;
}

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

a:hover {
  color: var(--color-primary-dark);
}

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

ul {
  list-style: none;
}

/* ===== BUTTON STYLES (GLOBAL) ===== */
.btn,
button,
input[type='submit'] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  line-height: 1.4;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-hero {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

/* ===== UTILITY CLASSES ===== */
.section-padding {
  padding: var(--section-padding);
}

.bg-light-nature {
  background: linear-gradient(180deg, var(--color-light) 0%, #F0F8F4 100%);
}

.text-center {
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.img-fluid {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.rounded {
  border-radius: var(--radius-md);
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  transition: var(--transition-fast);
}

.navbar-brand:hover {
  color: var(--color-primary-dark);
}

.navbar-nav {
  gap: var(--spacing-sm);
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

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

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: var(--header-height);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: var(--spacing-xl) var(--spacing-lg);
}

.hero-title {
  color: var(--color-white);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  color: var(--color-white);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  margin-bottom: var(--spacing-xl);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* Page Hero */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: var(--header-height);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  z-index: 1;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1,
.page-hero p {
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-hero-simple {
  padding: calc(var(--header-height) + 3rem) 0 3rem;
  background: var(--gradient-primary);
  text-align: center;
}

.page-hero-simple h1 {
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
}

.page-hero-simple p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
}

/* ===== SECTION HEADER ===== */
.section-header {
  margin-bottom: var(--spacing-xxl);
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: var(--spacing-md);
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-description {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 700px;
  margin: var(--spacing-md) auto 0;
  line-height: 1.8;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  background: var(--color-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
}

.feature-icon img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin: 0 auto;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-black);
}

.feature-card p {
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ===== ZONE CARDS ===== */
.zone-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.zone-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  margin: 0 auto;
}

.zone-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: var(--spacing-xl);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-primary-dark);
}

.card-content p {
  flex-grow: 1;
}

/* ===== STATISTICS SECTION ===== */
.stat-box {
  padding: var(--spacing-xl);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

.stat-label {
  font-size: 1.125rem;
  color: var(--color-text-light);
  font-weight: var(--font-weight-medium);
}

/* ===== PROCESS STEPS ===== */
.process-step {
  background: var(--color-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: var(--font-weight-bold);
  margin: 0 auto var(--spacing-lg);
  box-shadow: var(--shadow-md);
}

.process-step h3 {
  font-size: 1.375rem;
  margin-bottom: var(--spacing-md);
}

.progress-indicator {
  width: 100%;
  height: 6px;
  background: var(--color-light-gray);
  border-radius: 3px;
  margin-top: var(--spacing-lg);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 3px;
  transition: width var(--transition-slow);
}

/* ===== EVENTS CALENDAR ===== */
.event-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-primary);
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  margin: 0 auto var(--spacing-lg);
  box-shadow: var(--shadow-md);
}

.date-day {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  line-height: 1;
}

.date-month {
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.event-card p {
  flex-grow: 1;
  text-align: center;
}

.event-time {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  border-radius: var(--radius-sm);
  font-weight: var(--font-weight-medium);
  font-size: 0.9375rem;
  margin-top: var(--spacing-md);
  text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--color-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.testimonial-image {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--spacing-lg);
  border-radius: var(--radius-round);
  overflow: hidden;
  border: 4px solid var(--color-primary-light);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
}

.testimonial-text {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
  position: relative;
  padding: 0 var(--spacing-md);
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: var(--color-primary-light);
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: var(--color-black);
}

.testimonial-author span {
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

/* ===== TEAM SECTION ===== */
.team-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-card .card-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  margin: 0 auto;
}

.team-card:hover .card-image img {
  transform: scale(1.05);
}

.team-card .card-content {
  padding: var(--spacing-lg);
  text-align: center;
}

.team-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-black);
}

.team-role {
  display: block;
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-md);
}

/* ===== BLOG SECTION ===== */
.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  margin: 0 auto;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: var(--spacing-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-black);
}

.blog-content p {
  flex-grow: 1;
  margin-bottom: var(--spacing-md);
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition-fast);
  position: relative;
  padding-bottom: 2px;
}

.read-more::after {
  content: '→';
  transition: var(--transition-fast);
}

.read-more:hover {
  color: var(--color-primary-dark);
  gap: 0.75rem;
}

.read-more:hover::after {
  transform: translateX(4px);
}

/* ===== CASE STUDIES ===== */
.case-study-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.case-study-card:hover {
  box-shadow: var(--shadow-xl);
}

.case-study-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: var(--transition-slow);
  display: block;
}

.case-study-card:hover img {
  transform: scale(1.05);
}

.case-content {
  padding: var(--spacing-xl);
}

.case-content h3 {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-primary-dark);
}

/* ===== RESOURCES ===== */
.resource-card {
  background: var(--color-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid var(--color-light-gray);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.resource-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-black);
}

.resource-card p {
  flex-grow: 1;
  margin-bottom: var(--spacing-lg);
}

/* ===== CONTACT FORMS ===== */
.contact-form {
  background: var(--color-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-label {
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.9375rem;
}

.form-control,
select.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--color-light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  transition: var(--transition-fast);
  background: var(--color-white);
}

.form-control:focus,
select.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(168, 213, 186, 0.2);
}

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

/* ===== CONTACT INFO ===== */
.contact-info-card {
  background: var(--color-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
}

.contact-icon img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin: 0 auto;
}

.contact-info-card h3 {
  font-size: 1.375rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-black);
}

.contact-info-card p {
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ===== HOURS TABLE ===== */
.hours-table {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-lg);
  border-bottom: 1px solid var(--color-light-gray);
  transition: var(--transition-fast);
}

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

.hours-row:hover {
  background: var(--color-light);
}

.hours-day {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  font-size: 1.0625rem;
}

.hours-time {
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  font-size: 1.0625rem;
}

.hours-note {
  padding: var(--spacing-lg);
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
}

.hours-note p {
  color: var(--color-text);
  margin: 0;
  font-size: 0.9375rem;
}

/* ===== FAQ ACCORDION ===== */
.accordion-item {
  background: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  background: var(--color-white);
  padding: var(--spacing-lg);
  border: none;
  transition: var(--transition-fast);
}

.accordion-button:not(.collapsed) {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  filter: hue-rotate(90deg);
}

.accordion-body {
  padding: var(--spacing-lg);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

/* ===== MAP ===== */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-overlay {
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  text-align: center;
  max-width: 500px;
}

.map-overlay p {
  margin: 0;
  color: var(--color-white);
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding: var(--spacing-lg) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--spacing-xxl);
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.timeline-content {
  background: var(--color-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: calc(50% - 80px);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-primary-dark);
}

/* ===== VALUES & FEATURES ===== */
.value-card {
  background: var(--color-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
}

.value-icon img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin: 0 auto;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.feature-detailed {
  background: var(--color-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.feature-detailed h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-primary-dark);
}

/* ===== POLICY PAGES ===== */
.policy-content {
  background: var(--color-white);
  padding: calc(100px + var(--spacing-xl)) var(--spacing-xl) var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  line-height: 1.8;
}

.policy-content h2 {
  font-size: 1.75rem;
  color: var(--color-primary-dark);
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
}

.policy-content p {
  margin-bottom: var(--spacing-lg);
}

/* ===== SUCCESS PAGE ===== */
.success-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-primary-light) 100%);
}

.success-content {
  background: var(--color-white);
  padding: var(--spacing-xxl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.success-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto;
}

.success-content h1 {
  color: var(--color-primary-dark);
  margin-bottom: var(--spacing-lg);
}

.success-content .lead {
  font-size: 1.25rem;
  color: var(--color-text);
}

.success-actions {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: var(--color-white);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
  margin-top: var(--spacing-xxl);
}

.site-footer h3,
.site-footer h4 {
  color: var(--color-white);
  margin-bottom: var(--spacing-lg);
  font-size: 1.375rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-white);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: var(--transition-base);
  backdrop-filter: blur(10px);
  font-size: 0.9375rem;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* AOS Animation Overrides */
[data-aos] {
  pointer-events: auto;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991.98px) {
  :root {
    --section-padding: 60px 0;
    --spacing-xxl: 3rem;
  }

  .navbar-collapse {
    background: var(--color-white);
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }

  .hero-section {
    min-height: 70vh;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 80px;
  }

  .timeline-marker {
    left: 30px;
    transform: translateX(-50%);
  }

  .timeline-content {
    width: 100%;
    margin: 0 !important;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  :root {
    --section-padding: 50px 0;
    --spacing-xl: 2rem;
    --spacing-xxl: 2.5rem;
  }

  .hero-section {
    min-height: 60vh;
  }

  .page-hero {
    min-height: 40vh;
  }

  .section-header {
    margin-bottom: var(--spacing-xl);
  }

  .card-image,
  .blog-image {
    height: 250px;
  }

  .team-card .card-image {
    height: 300px;
  }

  .success-content {
    padding: var(--spacing-xl);
  }

  .success-actions {
    flex-direction: column;
  }

  .success-actions .btn {
    width: 100%;
  }

  .map-placeholder {
    height: 300px;
  }

  .social-links {
    flex-direction: column;
  }

  .social-links a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding: 0 var(--spacing-md);
  }

  .feature-card,
  .value-card,
  .process-step,
  .contact-info-card {
    padding: var(--spacing-lg);
  }

  .event-card,
  .testimonial-card,
  .blog-card,
  .resource-card {
    padding: var(--spacing-lg);
  }

  .contact-form {
    padding: var(--spacing-lg);
  }

  .stat-number {
    font-size: 2rem;
  }

  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .site-header,
  .site-footer,
  .btn,
  .social-links {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }

  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }

  img {
    max-width: 100%;
    page-break-inside: avoid;
  }
}
/* ============================================
   ABOUT & CONTACT PAGES
   ============================================ */

/* Page Hero */
.page-hero {
  padding: 7rem 0 4rem;
  background: var(--gradient-hero);
  background-size: cover;
  background-position: center;
}

.page-hero .page-title,
.page-hero h1 {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: var(--font-weight-bold);
}

.page-hero .page-subtitle,
.page-hero .lead {
  color: var(--color-text-light);
  font-size: 1.1rem;
}

.page-hero .img-fluid {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Section Padding & Backgrounds */
.section-padding {
  padding: var(--spacing-xxl) 0;
}

.bg-light-nature {
  background: linear-gradient(135deg, rgba(168, 213, 186, 0.1) 0%, rgba(244, 194, 194, 0.1) 100%);
}

.section-header {
  margin-bottom: var(--spacing-lg);
}

.section-header h2 {
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
}

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

/* Story Content */
.story-content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
}

.story-content h2 {
  color: var(--color-primary-dark);
}

.story-content p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
}

/* Mission & Value Cards */
.mission-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-primary);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.mission-card h3 {
  color: var(--color-primary-dark);
  margin-bottom: var(--spacing-xs);
}

.mission-card p {
  color: var(--color-text-light);
  line-height: 1.7;
}

.value-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  height: 100%;
  border-top: 3px solid var(--color-secondary);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-card h4 {
  color: var(--color-primary-dark);
  margin-bottom: var(--spacing-xs);
}

.value-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Team Section */
.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: none;
  height: 100%;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-card .card-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.team-card .card-content {
  padding: var(--spacing-md);
}

.team-card .card-content h3 {
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  font-size: 0.9rem;
  display: block;
  margin-bottom: var(--spacing-xs);
}

.team-card .card-content p:last-child {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Achievement List */
.achievement-list ul {
  list-style: none;
  padding: 0;
}

.achievement-list li {
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-accent);
}

.achievement-list li h4 {
  color: var(--color-primary-dark);
  margin-bottom: 0.25rem;
}

.achievement-list li p {
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Testimonials */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-image {
  margin-bottom: var(--spacing-sm);
}

.testimonial-image img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-round);
  object-fit: cover;
  border: 3px solid var(--color-primary);
}

.testimonial-card .testimonial-text {
  color: var(--color-text-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: var(--spacing-sm);
}

.testimonial-author h4 {
  color: var(--color-text);
  margin-bottom: 0;
}

.testimonial-author span {
  color: var(--color-dark-gray);
  font-size: 0.85rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* CTA Section */
.cta-section {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  text-align: center;
}

.cta-section h2 {
  color: var(--color-text);
}

.cta-section .lead {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto var(--spacing-lg);
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-primary-dark);
  color: var(--color-primary-dark);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s ease;
}

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

/* Contact Page */
.contact-info-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.contact-info-card h2 {
  color: var(--color-primary-dark);
  margin-bottom: var(--spacing-sm);
}

.contact-detail {
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--color-light-gray);
}

.contact-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-detail h3 {
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-detail p {
  color: var(--color-text-light);
  line-height: 1.7;
}

.contact-detail a {
  color: var(--color-primary-dark);
  text-decoration: none;
}

.contact-detail a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
  color: var(--color-primary-dark);
}

.contact-form .form-label {
  color: var(--color-text);
  font-weight: var(--font-weight-semibold);
}

.contact-form .form-control {
  border: 2px solid var(--color-light-gray);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(168, 213, 186, 0.2);
}

/* Map */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  display: block;
}

/* Info Cards */
.info-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
}

.info-icon {
  margin-bottom: var(--spacing-sm);
}

.info-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.info-card h3 {
  color: var(--color-primary-dark);
  margin-bottom: var(--spacing-xs);
}

.info-card p {
  color: var(--color-text-light);
  line-height: 1.7;
}

/* FAQ */
.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
}

.faq-item h3 {
  color: var(--color-primary-dark);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xs);
}

.faq-item p {
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero {
    padding: 5rem 0 3rem;
  }

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