:root {
  --primary: #1e2a5e;
  --primary-rgb: 30, 42, 94;
  /* Enhanced premium gold with subtle gradient capability */
  --secondary: #d4af37;
  --secondary-rgb: 212, 175, 55;
  --secondary-light: #e5c07b;
  --secondary-dark: #b8860b;
  --neutral-light: #f9f7f3;
  --neutral-dark: #2c2c2c;
  --highlight: #c75c3a;
  --highlight-rgb: 199, 92, 58;
  --accent: #8aa29e;
  --accent-rgb: 138, 162, 158;

  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-accent: "Cormorant Garamond", serif;

  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* Dark mode variables */
[data-theme="dark"] {
  --primary: #0f1a3f;
  --primary-rgb: 15, 26, 63;
  --secondary: #d4af37;
  --secondary-rgb: 212, 175, 55;
  --secondary-light: #e5c07b;
  --secondary-dark: #b8860b;
  --neutral-light: #1a1a1a;
  --neutral-dark: #e0e0e0;
  --highlight: #ff6b6b;
  --highlight-rgb: 255, 107, 107;
  --accent: #6b8e23;
  --accent-rgb: 107, 142, 35;
}

/* Glass morphism effects */
.glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Glass variants for different opacities */
.glass-light {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.glass-medium {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-heavy {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--neutral-light);
  color: var(--neutral-dark);
  transition: background-color 0.3s ease, color 0.3s ease;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  line-height: 1.1;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

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

a:hover {
  color: var(--highlight);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  font-family: var(--font-body);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  /* Glass morphism effect for buttons */
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
  }
}

/* Dark mode buttons */
[data-theme="dark"] .btn {
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.1);
  }
}

/* Enhanced primary button with premium gold */
.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: white;
  border: none;
  /* Glass effect for primary button */
  @media (prefers-reduced-motion: no-preference) {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.8), rgba(184, 134, 11, 0.8));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
  }
}

/* Dark mode primary button */
[data-theme="dark"] .btn-primary {
  @media (prefers-reduced-motion: no-preference) {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.7), rgba(184, 134, 11, 0.7));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
  }
}

/* Enhanced secondary button */
.btn-secondary {
  background: var(--secondary-light);
  color: var(--primary);
  border: none;
  /* Glass effect for secondary button */
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(229, 192, 123, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
  }
}

/* Dark mode secondary button */
[data-theme="dark"] .btn-secondary {
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(229, 192, 123, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.1);
  }
}

/* Add subtle shine effect on hover */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

/* Enhanced hover states */
.btn-primary:hover {
  background-color: var(--highlight);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(199, 92, 58, 0.3);
  border-color: var(--highlight);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(199, 92, 58, 0.2);
}

.btn-secondary:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(30, 42, 94, 0.3);
  border-color: var(--primary);
}

.btn-secondary:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(30, 42, 94, 0.2);
}

/* Add outline variant for secondary use */
.btn-outline {
  background-color: transparent;
  border-color: var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background-color: var(--secondary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(229, 162, 56, 0.3);
}

.btn-outline:active {
  transform: translateY(-1px);
}

/* Button sizes */
.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.125rem;
}

/* Button groups */
.btn-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

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

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

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

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

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* NAVBAR */
.navbar {
  background-color: var(--primary);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  /* Glass morphism effect for navbar */
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(30, 42, 94, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Dark mode navbar glass effect */
[data-theme="dark"] .navbar {
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(15, 26, 63, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand h1 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin: 0;
}

.nav-brand .nav-tagline {
  font-size: 0.875rem;
  color: var(--secondary);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: white;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-menu a i {
  font-size: 0.9rem;
}

.nav-menu a:hover {
  color: var(--secondary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: var(--transition);
}

.nav-toggle:hover span {
  background-color: var(--secondary);
}

/* HERO SECTION */
.hero {
  position: relative;
  padding: 3rem 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.hero-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
  animation: float 6s ease-in-out infinite;
}

.hero-grid img:nth-child(2) {
  animation-delay: 2s;
}

.hero-grid img:nth-child(3) {
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.95;
  }
}

@keyframes pulse-text {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.9;
  }
}

.hero-grid img {
  animation: float 6s ease-in-out infinite, pulse 4s ease-in-out infinite;
}

.hero-grid img:nth-child(2) {
  animation-delay: 2s, 1s;
}

.hero-grid img:nth-child(3) {
  animation-delay: 4s, 2s;
}

.hero-content {
  text-align: center;
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--primary), #3a4a8c);
  color: white;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  animation: float-content 8s ease-in-out infinite;
  /* Glass morphism effect */
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(30, 42, 94, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }
}

/* Dark mode hero content */
[data-theme="dark"] .hero-content {
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(15, 26, 63, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }
}

@keyframes float-content {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.hero-content h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  animation: pulse-text 3s ease-in-out infinite;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  animation: pulse-text 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

/* CTA GRID */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 4rem 0;
}

.cta-card {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  /* Glass morphism effect */
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
}

/* Dark mode CTA card */
[data-theme="dark"] .cta-card {
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-icon {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.cta-card h3 {
  margin-bottom: 1rem;
}

.cta-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.doodle {
  position: absolute;
  opacity: 0.2;
  pointer-events: none;
}

.doodle-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
  opacity: 0.15;
}

.doodle-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: -50px;
}

.doodle-3 {
  width: 120px;
  height: 120px;
  top: 50%;
  left: -40px;
}

/* FEATURED STORIES */
.featured-stories {
  padding: 4rem 0;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.story-card {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  /* Glass morphism effect */
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
}

/* Dark mode story card */
[data-theme="dark"] .story-card {
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.story-card:hover {
  transform: scale(1.05);
}

/* Add subtle lift to story cards */
.story-card.hover-lift {
  transition: all 0.3s ease;
}

.story-card.hover-lift:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.story-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.story-content {
  padding: 1.5rem;
  background: white;
}

.story-content h3 {
  margin-bottom: 0.5rem;
}

.story-content a {
  color: var(--secondary);
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

/* NEWSLETTER */
.newsletter {
  background-color: var(--primary);
  color: white;
  padding: 4rem 2rem;
  border-radius: 8px;
  text-align: center;
  margin: 4rem 0;
}

.newsletter-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto 0;
  /* Glass morphism effect */
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
  }
}

/* Dark mode newsletter form */
[data-theme="dark"] .newsletter-form {
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
}

.newsletter-form button {
  min-width: 120px;
}

/* FOOTER */
.footer {
  background-color: var(--neutral-dark);
  color: white;
  padding: 3.5rem 0 1.5rem;
  margin-top: 6rem;
  position: relative;
  overflow: hidden;
}

/* Add subtle animated background pattern */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(229, 162, 56, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(199, 92, 58, 0.05) 0%, transparent 20%);
  pointer-events: none;
  z-index: 0;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* Glass morphism effect */
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
}

/* Dark mode footer section */
[data-theme="dark"] .footer-section {
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.footer-section h4 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--secondary);
}

.footer-section p {
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact {
  margin: 1rem 0;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: #ccc;
}

.footer-contact p i {
  width: 20px;
  margin-right: 0.5rem;
  color: var(--secondary);
}

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

.social-links a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background-color: rgba(229, 162, 56, 0.1);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 1px solid rgba(229, 162, 56, 0.2);
}

.social-links a:hover {
  background-color: var(--secondary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(229, 162, 56, 0.25);
}

.social-links a:active {
  transform: translateY(-1px);
}

.footer-section ul {
  list-style: none;
}

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

.footer-section ul li a {
  color: #ddd;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.footer-section ul li a i {
  font-size: 0.9rem;
  width: 20px;
  text-align: center;
  color: var(--secondary);
}

.footer-section ul li a:hover {
  color: var(--secondary);
  transform: translateX(5px);
}

.footer-section ul li a:active {
  transform: translateX(2px);
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  /* Glass morphism effect */
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 8px;
  }
}

/* Dark mode footer newsletter form */
[data-theme="dark"] .footer-newsletter-form {
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.footer-newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.02);
  color: white;
  font-family: var(--font-body);
  transition: var(--transition);
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-form input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px rgba(229, 162, 56, 0.15);
}

.footer-newsletter-form .btn {
  padding: 0 1.25rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.footer-newsletter-form .btn:active {
  transform: translateY(-1px);
}

#footerNewsletterNotification {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  min-height: 1.25rem;
}

.footer-section a {
  color: #ddd;
  transition: var(--transition);
}

.footer-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.footer-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-service-item i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.footer-service-item span {
  font-size: 0.85rem;
  text-align: center;
  color: #ccc;
}

.footer-service-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: rgba(229, 162, 56, 0.2);
}

.footer-service-item:active {
  transform: translateY(-1px);
}

.footer-section a:hover {
  color: var(--secondary);
}

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

.social-links a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background-color: rgba(229, 162, 56, 0.2);
  border-radius: 50%;
  font-size: 1.2rem;
}

.social-links a:hover {
  background-color: var(--secondary);
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #ddd;
  margin-top: 2rem;
  position: relative;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-bottom-links a {
  color: #ccc;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.footer-divider {
  color: #555;
  font-size: 0.9rem;
}

@keyframes pulse-subtle {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}

/* Apply subtle pulse to social icons on load */
.social-links a {
  animation: pulse-subtle 3s ease-in-out infinite;
}

.social-links a:nth-child(2) {
  animation-delay: 0.75s;
}

.social-links a:nth-child(3) {
  animation-delay: 1.5s;
}

.social-links a:nth-child(4) {
  animation-delay: 2.25s;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--primary), #3a4a8c);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 {
  color: white;
  font-size: 2.5rem;
}

.page-hero p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* ABOUT SECTION */
.about-section {
  padding: 4rem 0;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.about-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-illustration svg {
  max-width: 100%;
  height: auto;
}

.benefits-list {
  list-style: none;
  margin: 2rem 0;
}

.benefits-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.benefits-list i {
  position: absolute;
  left: 0;
  color: var(--secondary);
}

/* STATS */
.stats-section {
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  /* Glass morphism effect */
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
}

/* Dark mode stat card */
[data-theme="dark"] .stat-card {
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.stat-card h3 {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.stat-card p {
  margin-bottom: 0;
  color: #666;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Add subtle pulse to stat numbers on hover */
.stat-card:hover h3 {
  animation: pulse 1.5s infinite;
}

/* Micro-interactions for enhanced liveliness */

/* Pulse animation for highlighting important elements */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Subtle float animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Gentle hover lift */
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Button press effect */
.btn:active {
  transform: scale(0.98);
}

/* Loading state skeleton loader */
@keyframes pulse-loader {
  0% {
    background-color: #f0f0f0;
  }
  50% {
    background-color: #e0e0e0;
  }
  100% {
    background-color: #f0f0f0;
  }
}

.loader {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: pulse-loader 1.5s infinite ease-in-out;
  border-radius: 4px;
  height: 1rem;
  margin: 0.5rem 0;
}

/* Text loader */
.loader-text {
  display: inline-block;
  width: 100px;
  height: 1rem;
  background: #f0f0f0;
  border-radius: 4px;
  animation: pulse-loader 1.5s infinite ease-in-out;
  margin: 0.25rem 0;
}

/* Enhanced focus states for accessibility */
*:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* TEAM */
.team-section {
  padding: 4rem 0;
}

.team-category {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.team-member {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-8px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-member h4 {
  margin-bottom: 0.5rem;
}

.team-member .role {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-member .bio {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* PROGRAMS */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.program-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  /* Glass morphism effect */
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
}

/* Dark mode program card */
[data-theme="dark"] .program-card {
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.program-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.program-duration {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.media-lab-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: white;
  padding: 3rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.media-lab-image img {
  width: 100%;
  border-radius: 8px;
}

.assignments-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.assignments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.assignment-card {
  background: linear-gradient(135deg, var(--primary), #3a4a8c);
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
}

.assignment-card h4 {
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.assignment-card p {
  color: rgba(255, 255, 255, 0.9);
}

/* FORMS */
.program-form,
.booking-form,
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem 0;
}

.contact-form-wrapper {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(229, 162, 56, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pricing-table {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table thead {
  background-color: var(--primary);
  color: white;
}

table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

table tbody tr:hover {
  background-color: #f9f9f9;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  /* Glass morphism effect */
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
}

/* Dark mode service card */
[data-theme="dark"] .service-card {
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: none;
  margin: 1.5rem 0;
}

.service-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #666;
}

.service-card li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

/* GALLERY */
.gallery-section {
  padding: 4rem 0;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 42, 94, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: var(--transition);
  color: white;
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.gallery-open {
  padding: 8px 20px;
  background-color: var(--secondary);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-open:hover {
  background-color: white;
  color: var(--primary);
  transform: translateY(-2px);
}

.no-results {
  text-align: center;
  padding: 3rem;
  color: #666;
}

/* MODAL */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  max-width: 800px;
  width: 90%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  /* Glass morphism effect */
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
}

/* Dark mode modal content */
[data-theme="dark"] .modal-content {
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#modalImage {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.modal-info {
  padding: 2rem;
}

.modal-info h2 {
  margin-bottom: 1rem;
}

/* CASE STUDIES */
.case-studies {
  padding: 4rem 0;
}

.case-study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.case-study:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.case-study img {
  width: 100%;
  border-radius: 8px;
}

/* BLOG */
.blog-section {
  padding: 4rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  background-color: var(--secondary);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-card h3 {
  margin-bottom: 1rem;
}

.blog-card h3 a {
  color: var(--primary);
}

.blog-card h3 a:hover {
  color: var(--secondary);
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #999;
  margin: 1rem 0;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more {
  color: var(--secondary);
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

/* POST */
.post-container {
  display: flex;
  flex-direction: column;
}

.post-header {
  background: linear-gradient(135deg, var(--primary), #3a4a8c);
  color: white;
  padding: 3rem 0 0;
}

.post-header .container {
  position: relative;
  z-index: 2;
  padding: 2rem 20px;
}

.post-category {
  display: inline-block;
  background-color: rgba(229, 162, 56, 0.8);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.post-header h1 {
  color: white;
}

.post-meta {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.post-header-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.post-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  padding: 4rem 0;
}

.post-body {
  background: white;
  padding: 2rem;
  border-radius: 8px;
}

.post-body h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-body em {
  font-style: italic;
  color: var(--secondary);
}

.post-cta {
  background: linear-gradient(135deg, var(--primary), #3a4a8c);
  color: white;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.post-cta h3 {
  color: white;
}

.post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sidebar-card h4 {
  margin-bottom: 1rem;
}

.sidebar-card img {
  width: 100%;
  border-radius: 8px;
  margin: 1rem 0;
}

.sidebar-card h5 {
  margin: 1rem 0 0.5rem;
}

.sidebar-card p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.sidebar-card a {
  font-weight: 600;
}

.related-posts {
  list-style: none;
}

.related-posts li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.related-posts li:last-child {
  border-bottom: none;
}

.related-posts a {
  font-size: 0.95rem;
}

.sidebar-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-form input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin: 4rem 0;
}

.nav-link {
  padding: 12px 24px;
  background: white;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
}

.nav-link:hover {
  background-color: var(--primary);
  color: white;
}

/* CONTACT */
.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--secondary);
  min-width: 30px;
}

.info-item h4 {
  margin-bottom: 0.5rem;
}

.info-item p {
  margin-bottom: 0;
  color: #666;
}

.quick-links {
  padding: 4rem 0;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.quick-link-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.quick-link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.quick-link-card i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

/* NOTIFICATIONS */
.notification {
  position: fixed;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  z-index: 2000;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.notification.toaster {
  top: 20px;
  right: 20px;
}

.notification.success {
  background-color: #4caf50;
  color: white;
}

.notification.error {
  background-color: var(--highlight);
  color: white;
}

.notification.info {
  background-color: var(--primary);
  color: white;
}

.notification.warning {
  background-color: #ff9800;
  color: white;
}

/* Different animation styles for notifications */
.notification.slide-up {
  animation: slideUp 0.3s ease;
}

.notification.slide-down {
  animation: slideDown 0.3s ease;
}

.notification.scale-up {
  animation: scaleUp 0.3s ease;
}

.notification.fade-up {
  animation: fadeUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glass morphism for notifications */
.notification.glass {
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
}

[data-theme="dark"] .notification.glass {
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }
}

/* Color variations for glass notifications */
.notification.glass-success {
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(76, 175, 80, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: white;
  }
}

[data-theme="dark"] .notification.glass-success {
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(76, 175, 80, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: white;
  }
}

.notification.glass-error {
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(var(--highlight-rgb), 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--highlight-rgb), 0.3);
    color: white;
  }
}

[data-theme="dark"] .notification.glass-error {
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(var(--highlight-rgb), 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--highlight-rgb), 0.4);
    color: white;
  }
}

.notification.glass-info {
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(var(--primary-rgb), 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    color: white;
  }
}

[data-theme="dark"] .notification.glass-info {
  @media (prefers-reduced-motion: no-preference) {
    background: rgba(var(--primary-rgb), 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--primary-rgb), 0.4);
    color: white;
  }
}

.notification.inline {
  position: static;
  margin-bottom: 1rem;
  animation: none;
}

.notification.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

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

.notification-modal {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.notification-modal h3 {
  margin-bottom: 1rem;
}

.notification-modal p {
  margin-bottom: 1.5rem;
  color: #666;
}

.notification-modal-buttons {
  display: flex;
  gap: 1rem;
}

/* RESPONSIVE */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-split {
    grid-template-columns: 1fr;
  }

  .media-lab-content {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .post-content {
    grid-template-columns: 1fr;
  }

  .case-study {
    grid-template-columns: 1fr;
  }

  .quick-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--primary);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    padding: 0.75rem 1.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero-grid img {
    height: 200px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .quick-links-grid {
    grid-template-columns: 1fr;
  }

  .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .filter-buttons {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .nav-brand h1 {
    font-size: 1.2rem;
  }

  .hero {
    padding: 1.5rem 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-grid img {
    height: 200px;
  }

  .hero-content {
    padding: 1.5rem 0.5rem;
  }

  .hero-content h2 {
    font-size: 1.5rem;
  }

  .cta-grid {
    gap: 1.5rem;
  }

  .cta-card {
    padding: 1.5rem;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-card h3 {
    font-size: 1.5rem;
  }

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

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

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

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

  .post-header-image {
    height: 250px;
  }

  .sidebar-card {
    margin-top: 2rem;
  }

  .post-navigation {
    flex-direction: column;
    gap: 1rem;
  }

  .pricing-table {
    font-size: 0.85rem;
  }

  table th,
  table td {
    padding: 0.75rem 0.5rem;
  }

  .filter-buttons {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }

  .filter-btn {
    white-space: nowrap;
  }

  /* Enhance touch targets for mobile */
  .btn,
  .nav-toggle,
  .filter-btn,
  .gallery-open,
  .btn-search {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Enhance form elements for mobile */
  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px;
    font-size: 1.125rem;
  }

  .form-group label {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
  }

  .btn {
    min-height: 48px;
    min-width: 48px;
    padding: 0 1.5rem;
    font-size: 1.125rem;
  }

  /* Footer adjustments for mobile */
  .footer {
    padding: 2.5rem 0 1rem;
  }

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

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

  .footer-contact p {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-newsletter-form input {
    margin-bottom: 0.75rem;
  }

  .footer-bottom-content {
    text-align: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-divider {
    display: none;
  }
}
