@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --color-primary: #304533;
  --color-primary-rgb: 48, 69, 51;
  --color-primary-light: #455e49;
  --color-accent: #888b70;
  --color-accent-rgb: 136, 139, 112;
  --color-cream: #f9e3bb;
  --color-cream-light: #faf6f0;
  --color-bg-dark: #161f17;
  --color-bg-light: #fcfbfa;
  --color-text-dark: #1b231c;
  --color-text-muted: #556256;
  --color-text-light: #faf6f0;
  --color-white: #ffffff;
  
  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 12px rgba(48, 69, 51, 0.08);
  --shadow-md: 0 12px 32px rgba(48, 69, 51, 0.12);
  --shadow-lg: 0 20px 48px rgba(48, 69, 51, 0.16);
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease;
  
  /* Layout */
  --container-max: 1200px;
}

/* Reset and Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.25;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

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

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

ul {
  list-style: none;
}

/* Common Layout Components */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}

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

.section-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(48, 69, 51, 0.08);
  transition: var(--transition-smooth);
}

header.scrolled {
  box-shadow: var(--shadow-sm);
  background-color: rgba(250, 246, 240, 0.95);
  padding: 0.5rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  background-color: #2f4435;
  padding: 6px;
  object-fit: contain;
  box-sizing: border-box;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.logo-img:hover {
  transform: scale(1.08);
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a:not(.nav-btn) {
  font-weight: 500;
  color: var(--color-text-dark);
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a:not(.nav-btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition-smooth);
}

.nav-links a:not(.nav-btn):hover::after,
.nav-links a:not(.nav-btn).active::after {
  width: 100%;
}

.nav-links a:not(.nav-btn):hover {
  color: var(--color-primary);
}

/* Call to Action Button in Nav */
.nav-btn {
  background-color: var(--color-primary);
  color: var(--color-cream) !important;
  padding: 0.8rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition-smooth);
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 12px rgba(48, 69, 51, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background-color: transparent;
  color: var(--color-primary) !important;
  box-shadow: 0 6px 16px rgba(48, 69, 51, 0.22);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 3px;
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(249, 227, 187, 0.4) 0%, rgba(240, 246, 240, 0.8) 100%);
  padding: 8rem 0 5rem 0;
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-subtitle {
  font-family: var(--font-title);
  color: var(--color-accent);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  color: var(--color-primary);
}

.hero h1 span {
  color: var(--color-accent);
  position: relative;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--color-text-muted);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 2px solid transparent;
  gap: 0.5rem;
}

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

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

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

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

.hero-image-wrapper {
  position: relative;
  opacity: 0;
  transform: scale(0.95);
  animation: scaleIn 1s 0.2s forwards cubic-bezier(0.25, 1, 0.5, 1);
}.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--color-white);
  aspect-ratio: 3/4;
  background-color: #2f4435;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}
.hero-image-frame:hover .hero-image {
  transform: scale(1.05);
}

.hero-deco-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--color-primary);
  color: var(--color-cream);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 10;
}

.hero-deco-number {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-cream);
}

.hero-deco-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* About Section */
.about {
  background-color: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-feature-item {
  display: flex;
  gap: 1rem;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(136, 139, 112, 0.15);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about-feature-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

/* Workshops & Conferences */
.workshops {
  background-color: var(--color-cream-light);
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.workshop-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(48, 69, 51, 0.05);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.workshop-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

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

.workshop-card:hover::before {
  transform: scaleX(1);
}

.workshop-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.workshop-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.workshop-card p {
  font-size: 0.95rem;
  flex-grow: 1;
}

/* Education / Featured Training */
.education {
  background-color: var(--color-white);
}

.edu-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.edu-intro h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.edu-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.edu-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(48, 69, 51, 0.08);
}

.edu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.edu-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-accent);
  margin-top: 0.5rem;
  flex-shrink: 0;
  position: relative;
}

.edu-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  opacity: 0.5;
}

.edu-info h4 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.edu-info span {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
}

/* Blog Section */
.blog {
  background-color: var(--color-cream-light);
}

.blog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.blog-actions {
  display: flex;
  gap: 1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

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

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: var(--color-primary);
}

.blog-card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.blog-card-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(48, 69, 51, 0.08);
  padding-top: 1rem;
  margin-top: auto;
}

.blog-read-more {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-read-more:hover {
  color: var(--color-accent);
}

.admin-actions {
  display: none;
  gap: 0.5rem;
}

body.admin-active .admin-actions {
  display: flex;
}

.btn-icon {
  background: none;
  border: 1px solid rgba(48, 69, 51, 0.2);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--color-text-muted);
}

.btn-icon:hover {
  background-color: var(--color-primary);
  color: var(--color-cream);
  border-color: var(--color-primary);
}

.btn-icon.delete:hover {
  background-color: #c93b3b;
  border-color: #c93b3b;
  color: #fff;
}

/* Modals & Forms (<dialog>) */
dialog {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  max-width: 600px;
  width: 90%;
  margin: auto;
  background-color: var(--color-bg-light);
}

dialog::backdrop {
  background-color: rgba(22, 31, 23, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.dialog-header h3 {
  font-size: 1.8rem;
}

.dialog-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-muted);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(48, 69, 51, 0.15);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: var(--color-white);
  transition: var(--transition-fast);
  color: var(--color-text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(48, 69, 51, 0.1);
}

.form-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
}

/* Integrations (Instagram & YouTube) */
.integrations {
  background-color: var(--color-white);
}

.integrations-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  background: none;
  border: none;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-text-muted);
  border-bottom: 3px solid transparent;
  transition: var(--transition-fast);
}

.tab-btn.active {
  color: var(--color-primary);
  border-color: var(--color-accent);
}

.integration-pane {
  display: none;
}

.integration-pane.active {
  display: block;
}

/* Social Feeds */
.youtube-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.youtube-card {
  background-color: var(--color-cream-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.youtube-img-wrapper {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background-color: #e5dfd5;
}

.youtube-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.youtube-card:hover .youtube-img-wrapper img {
  transform: scale(1.05);
}

.youtube-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(200, 30, 30, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.youtube-card:hover .youtube-overlay {
  opacity: 1;
}

.youtube-overlay-btn {
  background-color: var(--color-white);
  color: #ff0000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.youtube-overlay-btn:hover {
  transform: scale(1.1);
  background-color: var(--color-cream-light);
}

.youtube-info {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.youtube-caption {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.youtube-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  border-top: 1px solid rgba(48, 69, 51, 0.08);
  padding-top: 0.75rem;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.instagram-card {
  background-color: var(--color-cream-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.instagram-img-wrapper {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: #e5dfd5;
}

.instagram-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.instagram-card:hover .instagram-img-wrapper img {
  transform: scale(1.05);
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(48, 69, 51, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.instagram-card:hover .instagram-overlay {
  opacity: 1;
}

.instagram-overlay-btn {
  background-color: var(--color-white);
  color: var(--color-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
}

.instagram-info {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.instagram-caption {
  font-size: 0.85rem;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.instagram-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--color-accent);
  font-weight: 600;
  border-top: 1px solid rgba(48, 69, 51, 0.08);
  padding-top: 0.75rem;
}

/* Contact Footer Section */
.contact-section {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  position: relative;
}

.contact-section h2, .contact-section h3, .contact-section h4 {
  color: var(--color-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(249, 227, 187, 0.1);
  color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-detail-content span {
  display: block;
  font-size: 0.85rem;
  color: var(--color-accent);
  text-transform: uppercase;
}

.contact-detail-content p {
  color: var(--color-text-light);
  margin-bottom: 0;
  font-size: 1.05rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(250, 246, 240, 0.1);
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--color-accent);
  color: var(--color-bg-dark);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrapper {
  background-color: rgba(250, 246, 240, 0.03);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(250, 246, 240, 0.08);
}

.contact-form-wrapper p {
  color: var(--color-accent);
  margin-bottom: 2rem;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(250, 246, 240, 0.15);
  color: var(--color-text-light);
}

.contact-form-wrapper label {
  color: var(--color-cream);
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  border-color: var(--color-cream);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(249, 227, 187, 0.15);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: var(--transition-smooth);
  animation: pulseWhatsApp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseWhatsApp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-grid, .about-grid, .edu-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero {
    padding: 7rem 0 4rem 0;
  }
  
  .hero-image-wrapper {
    max-width: 450px;
    margin: 0 auto;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .navbar {
    padding: 1rem 5%;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-bg-light);
    flex-direction: column;
    padding: 6rem 2rem 2rem 2rem;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }
}

/* Responsive Instagram Feed */
.instagram-iframe {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background-color: var(--color-white);
  border: 1px solid rgba(48, 69, 51, 0.08);
  min-height: 600px;
}
