@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Beehive Theme Variables */
:root {
  --honey-gold: #FFB347;
  --honey-amber: #FF8C00;
  --honey-dark: #8B4513;
  --honey-light: #FFF8DC;
  --honey-cream: #F5DEB3;
  --honey-brown: #D2691E;
  --honey-yellow: #FFD700;
  --honey-orange: #FFA500;
  --honey-text: #4A3728;
  --honey-bg: #FFFEF7;
}

/* Honeycomb Pattern */
.honeycomb-bg {
  background-image: 
    radial-gradient(circle at 50% 50%, transparent 0, transparent 20px, rgba(255, 179, 71, 0.03) 20px, rgba(255, 179, 71, 0.03) 22px, transparent 22px),
    radial-gradient(circle at 25% 25%, transparent 0, transparent 15px, rgba(255, 140, 0, 0.02) 15px, rgba(255, 140, 0, 0.02) 17px, transparent 17px),
    radial-gradient(circle at 75% 75%, transparent 0, transparent 18px, rgba(255, 215, 0, 0.02) 18px, rgba(255, 215, 0, 0.02) 20px, transparent 20px);
  background-size: 60px 60px, 40px 40px, 50px 50px;
  background-position: 0 0, 20px 20px, 40px 40px;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: linear-gradient(135deg, var(--honey-bg) 0%, var(--honey-light) 50%, var(--honey-cream) 100%);
  color: var(--honey-text);
  margin: 0;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 20%, transparent 0, transparent 30px, rgba(255, 179, 71, 0.02) 30px, rgba(255, 179, 71, 0.02) 32px, transparent 32px),
    radial-gradient(circle at 80% 80%, transparent 0, transparent 25px, rgba(255, 140, 0, 0.015) 25px, rgba(255, 140, 0, 0.015) 27px, transparent 27px);
  background-size: 100px 100px, 80px 80px;
  background-position: 0 0, 50px 50px;
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--honey-dark);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 0;
}

img {
  max-width: 100%;
  border-radius: 12px;
}

.modern-nav {
  background: linear-gradient(135deg, var(--honey-cream) 0%, var(--honey-light) 100%);
  box-shadow: 0 4px 24px rgba(139, 69, 19, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-radius: 0 0 12px 12px;
  transition: box-shadow 0.3s;
  border-bottom: 3px solid var(--honey-gold);
}

.modern-nav.scrolled {
  box-shadow: 0 8px 32px rgba(139, 69, 19, 0.25);
}

.modern-nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  min-height: 72px;
  height: 88px;
  box-sizing: border-box;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  height: 100%;
}

.nav-logo {
  height: 48px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(139, 69, 19, 0.2);
}

.nav-title {
  font-size: 2rem;
  color: var(--honey-dark);
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-title::before {
  content: '🐝';
  font-size: 1.8rem;
}

.nav-subtitle {
  font-size: 1.1rem;
  color: var(--honey-amber);
  font-weight: 600;
  margin-left: 0.5rem;
  letter-spacing: 0.5px;
}

/* Hamburger menu for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1200;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: var(--honey-dark);
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-btn-group {
  display: flex;
  gap: 1.2rem;
  height: 100%;
  align-items: center;
}

.nav-btn {
  background: var(--honey-light);
  color: var(--honey-dark);
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--honey-gold);
  border-radius: 2rem;
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(139, 69, 19, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.5px;
  outline: none;
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:focus {
  outline: 2px solid var(--honey-amber);
  outline-offset: 2px;
}

.nav-btn:hover, .nav-btn:focus-visible {
  background: var(--honey-gold);
  color: var(--honey-dark);
  box-shadow: 0 4px 16px rgba(139, 69, 19, 0.25);
  transform: translateY(-2px) scale(1.04);
  border-color: var(--honey-amber);
}

/* Login button specific styles */
.login-btn {
  background: var(--honey-amber) !important;
  color: white !important;
  border: 2px solid var(--honey-amber);
}

.login-btn:hover, .login-btn:focus-visible {
  background: var(--honey-brown) !important;
  border-color: var(--honey-brown);
  color: white !important;
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 248, 220, 0.98);
  z-index: 1100;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 90px;
  transition: opacity 0.3s;
}

.mobile-nav-overlay.active {
  display: flex;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  font-size: 1.2rem;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  background: var(--honey-light);
  color: var(--honey-dark);
  box-shadow: 0 2px 8px rgba(139, 69, 19, 0.15);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--honey-gold);
}

.mobile-nav-links a:hover, .mobile-nav-links a:focus {
  background: var(--honey-gold);
  color: var(--honey-dark);
  box-shadow: 0 4px 16px rgba(139, 69, 19, 0.25);
  transform: translateY(-2px) scale(1.04);
  border-color: var(--honey-amber);
}

/* Dashboard access styles */
#dashboardAccess {
  background: rgba(255, 248, 220, 0.9);
  padding: 1.5rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 2px solid var(--honey-gold);
}

#dashboardBtn {
  background: var(--honey-amber);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#dashboardBtn:hover, #dashboardBtn:focus-visible {
  background: var(--honey-brown);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  color: white;
  font-weight: 600;
  z-index: 10000;
  animation: slideIn 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.notification-success {
  background: #27ae60;
}

.notification-error {
  background: #e74c3c;
}

.notification-info {
  background: var(--honey-amber);
}

.immersive-hero, .hero-section {
  background: linear-gradient(135deg, var(--honey-light) 0%, var(--honey-cream) 50%, var(--honey-gold) 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg { display: none; }

.hero-content {
  max-width: 800px;
  padding: 2rem;
  z-index: 2;
  position: relative;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeIn 1.2s; }

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--honey-dark);
  text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.1);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--honey-text);
  line-height: 1.6;
}

.hero-visuals {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-btn {
  background: var(--honey-amber);
  color: white;
  padding: 1rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid var(--honey-amber);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
}

.cta-btn:focus {
  outline: 2px solid var(--honey-dark);
  outline-offset: 2px;
}

.cta-btn:hover, .cta-btn:focus-visible {
  background: var(--honey-brown);
  border-color: var(--honey-brown);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

.hero-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.subject-icon {
  font-size: 2rem;
  color: var(--honey-amber);
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 179, 71, 0.1);
}

.subject-icon:hover, .subject-icon:focus {
  color: var(--honey-dark);
  transform: scale(1.2) rotate(5deg);
  background: rgba(255, 179, 71, 0.2);
}

.about-section, .services-section, .testimonials-section, .faq-section, .contact-section {
  padding: 4rem 2rem;
  text-align: center;
  background: var(--honey-bg);
  position: relative;
}

.about-section h2, .services-section h2, .testimonials-section h2, .faq-section h2, .contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--honey-dark);
}

.about-desc {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  color: var(--honey-text);
}

.signature {
  font-style: italic;
  color: var(--honey-amber);
  font-weight: 600;
  font-size: 1.1rem;
}

.services-cards.subject-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.services-cards:not(.subject-grid) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  justify-items: center;
}

.service-card {
  background: var(--honey-light);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.1);
  border: 2px solid var(--honey-gold);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.05) 0%, rgba(255, 140, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:focus-within {
  outline: 2px solid var(--honey-amber);
  outline-offset: 2px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(139, 69, 19, 0.2);
  border-color: var(--honey-amber);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card .subject-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--honey-amber);
  transition: all 0.3s ease;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--honey-dark);
}

.service-card p {
  color: var(--honey-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-card .learn-more-btn {
  background: var(--honey-amber);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--honey-amber);
  display: inline-block;
}

.service-card .learn-more-btn:focus {
  outline: 2px solid var(--honey-dark);
  outline-offset: 2px;
}

.service-card .learn-more-btn:hover, .service-card .learn-more-btn:focus-visible {
  background: var(--honey-brown);
  border-color: var(--honey-brown);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--honey-amber);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#scrollToTopBtn:focus {
  outline: 2px solid var(--honey-dark);
  outline-offset: 2px;
}

#scrollToTopBtn:hover {
  background: var(--honey-brown);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.footer {
  background: linear-gradient(135deg, var(--honey-dark) 0%, var(--honey-brown) 100%);
  color: var(--honey-light);
  padding: 3rem 2rem 1rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--honey-gold);
}

.footer-links a {
  color: var(--honey-light);
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s ease;
  font-weight: 600;
}

.footer-links a:focus {
  outline: 2px solid var(--honey-gold);
  outline-offset: 2px;
}

.footer-links a:hover {
  color: var(--honey-gold);
}

.footer-social a {
  color: var(--honey-light);
  font-size: 1.5rem;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.footer-social a:focus {
  outline: 2px solid var(--honey-gold);
  outline-offset: 2px;
}

.footer-social a:hover {
  color: var(--honey-gold);
}

.footer-address {
  color: var(--honey-cream);
  font-style: italic;
}

/* Floating Bee Animation */
.floating-bee {
  position: fixed;
  font-size: 1.5rem;
  pointer-events: none;
  z-index: 999;
  animation: beeFlight 8s linear infinite;
  opacity: 0.7;
}

@keyframes beeFlight {
  0% {
    transform: translateX(-50px) translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateX(calc(100vw + 50px)) translateY(-50px) rotate(360deg);
    opacity: 0;
  }
}

/* Hexagon Utility Classes */
.hexagon {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hexagon:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.hexagon-small {
  width: 60px;
  height: 70px;
}

.hexagon-medium {
  width: 80px;
  height: 92px;
}

.hexagon-large {
  width: 100px;
  height: 115px;
}

/* Honeycomb Grid */
.honeycomb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 4px;
  max-width: 600px;
  margin: 0 auto;
}

.honeycomb-cell {
  aspect-ratio: 1;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--honey-light);
  border: 2px solid var(--honey-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  color: var(--honey-dark);
  position: relative;
}

.honeycomb-cell:hover {
  background: var(--honey-gold);
  color: var(--honey-dark);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
  z-index: 2;
}

.honeycomb-cell.available {
  background: var(--honey-light);
  border-color: var(--honey-amber);
}

.honeycomb-cell.unavailable {
  background: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

.honeycomb-cell.today {
  background: var(--honey-amber);
  color: white;
  border-color: var(--honey-brown);
}

/* Bee Wiggle Animation */
@keyframes beeWiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  75% { transform: rotate(-5deg); }
}

.bee-wiggle:hover {
  animation: beeWiggle 0.5s ease-in-out;
}

/* Responsive Design */
@media (max-width: 900px) {
  .footer-content, .services-cards.subject-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .services-cards:not(.subject-grid),
  .reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 800px;
  }
  
  .contact-content.playful-contact-flex {
    flex-direction: column;
    max-width: 600px;
    gap: 2rem;
  }
  
  .contact-info-sym, .contact-details {
    width: 100%;
  }
  
  .modern-nav-content {
    padding: 0 1rem;
  }
  
  .nav-btn-group {
    gap: 1rem;
  }
  
  .logo-group {
    gap: 0.5rem;
  }
}

@media (max-width: 700px) {
  .modern-nav-content {
    padding: 0 0.5rem;
  }
  
  .nav-btn-group {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .services-cards:not(.subject-grid),
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    padding: 0 1rem;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-links a {
    margin: 0;
  }
  
  .footer-social a {
    margin: 0 1rem;
  }
  
  .footer-address {
    margin-top: 1rem;
  }
  
  .footer-content > div {
    margin-bottom: 1rem;
  }
  
  .footer-content img {
    height: 24px;
  }
  
  .footer {
    padding: 2rem 1rem 1rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p, .about-desc, .service-card p {
    font-size: 1rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
  }
  
  .service-card p {
    font-size: 0.9rem;
  }
  
  .about-section h2, .services-section h2 {
    font-size: 2rem;
  }
  
  .signature {
    font-size: 1rem;
  }
  
  .modern-nav-content {
    padding: 0 0.5rem;
  }
  
  .nav-title {
    font-size: 1.5rem;
  }
  
  .nav-logo {
    height: 36px;
  }
}

/* Hide certain elements on mobile */
.floating-whatsapp, .service-icon, .value-card, .teacher-img.placeholder, .whatsapp-btn, .instagram-follow { display: none !important; }

/* Reviews Section */
.reviews-section {
  background: var(--honey-bg);
  padding: 4rem 2rem;
}

.reviews-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--honey-dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  justify-items: center;
}

.review-card {
  background: var(--honey-light);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.1);
  border: 2px solid var(--honey-gold);
  transition: all 0.3s ease;
  position: relative;
}

.review-card:hover, .review-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(139, 69, 19, 0.2);
  border-color: var(--honey-amber);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--honey-text);
  line-height: 1.6;
}

.review-author {
  font-weight: 600;
  color: var(--honey-amber);
  text-align: right;
}

@media (max-width: 700px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .review-card {
    padding: 1.5rem;
  }
}

/* FAQ Section */
.faq-section {
  background: var(--honey-bg);
  padding: 4rem 2rem;
}

.faq-section h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--honey-dark);
}

.services-cards .service-card {
  text-align: left;
}

.enroll-gold {
  background: linear-gradient(135deg, var(--honey-gold) 0%, var(--honey-amber) 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--honey-gold);
}

.enroll-gold:after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.enroll-gold:hover:after, .enroll-gold:focus-visible:after {
  left: 100%;
}

.enroll-gold:hover, .enroll-gold:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.3);
  border-color: var(--honey-amber);
}

/* Calendar Styles */
.fc-day-today, .fc .fc-daygrid-day.fc-day-today {
  background: var(--honey-amber) !important;
  color: white !important;
}

.fc .fc-daygrid-day:hover {
  background: var(--honey-gold) !important;
  color: var(--honey-dark) !important;
  transform: scale(1.02);
  transition: all 0.3s ease;
}

/* Contact Section */
.contact-content.playful-contact-flex {
  display: flex;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: center;
  padding: 0 2rem;
}

.contact-info-sym {
  flex: 1;
  background: var(--honey-light);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.1);
  border: 2px solid var(--honey-gold);
}

.contact-form {
  flex: 1;
  background: var(--honey-light);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.1);
  border: 2px solid var(--honey-gold);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 2px solid var(--honey-gold);
  border-radius: 0.5rem;
  font-family: 'Poppins', Arial, sans-serif;
  background: var(--honey-bg);
  color: var(--honey-text);
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--honey-amber);
  box-shadow: 0 0 0 3px rgba(255, 179, 71, 0.2);
}

.playful-btn {
  background: var(--honey-amber);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', Arial, sans-serif;
  border: 2px solid var(--honey-amber);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
}

.playful-btn:hover, .playful-btn:focus-visible {
  background: var(--honey-brown);
  border-color: var(--honey-brown);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

.contact-emoji {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  animation: bounce 2s infinite;
}

.animated-bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.animated-wave {
  animation: wave 2s infinite;
}

@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(20deg); }
  75% { transform: rotate(-20deg); }
}

.animated-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@media (max-width: 900px) {
  .contact-content.playful-contact-flex {
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-info-sym, .contact-details {
    order: 2;
  }
  
  .contact-form {
    order: 1;
  }
}

/* Plans Modal */
.plans-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.plans-modal-content {
  background: var(--honey-light);
  margin: 5% auto;
  padding: 2rem;
  border-radius: 1rem;
  width: 90%;
  max-width: 800px;
  position: relative;
  border: 3px solid var(--honey-gold);
  box-shadow: 0 20px 40px rgba(139, 69, 19, 0.3);
}

.close-modal {
  color: var(--honey-dark);
  float: right;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--honey-amber);
}

.plans-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.plan-card {
  background: var(--honey-bg);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  border: 2px solid var(--honey-gold);
  transition: all 0.3s ease;
  position: relative;
}

.plan-card:hover, .plan-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(139, 69, 19, 0.2);
  border-color: var(--honey-amber);
}

.plan-card h3 {
  color: var(--honey-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.plan-card p {
  color: var(--honey-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.book-plan-btn {
  background: var(--honey-amber);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--honey-amber);
}

.book-plan-btn:hover, .book-plan-btn:focus {
  background: var(--honey-brown);
  border-color: var(--honey-brown);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .plans-modal-content {
    margin: 10% auto;
    padding: 1.5rem;
  }
  
  .plans-list {
    grid-template-columns: 1fr;
  }
  
  .plan-card {
    padding: 1.5rem;
  }
}

/* Notes Section */
.notes-bubbles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.note-bubble {
  background: var(--honey-light);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.1);
  border: 2px solid var(--honey-gold);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: var(--honey-text);
}

.note-bubble:hover, .note-bubble:focus {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(139, 69, 19, 0.2);
  border-color: var(--honey-amber);
  color: var(--honey-dark);
}

@media (max-width: 600px) {
  .notes-bubbles {
    grid-template-columns: 1fr;
  }
  
  .note-bubble {
    padding: 1.5rem;
  }
} 