/* ============================================
   FRESH SPROUT - PLAYFUL DYNAMIC DESIGN STYLES
   ============================================ */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background: linear-gradient(135deg, #fef5e7 0%, #fff 100%);
  overflow-x: hidden;
}

/* TYPOGRAPHY - Playful & Dynamic */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2D5F44;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #2D5F44 0%, #4A9B6F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h2 {
  font-size: 36px;
  color: #2D5F44;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #F8B84E 0%, #C68A1F 100%);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: #1F4230;
}

p {
  margin-bottom: 16px;
  color: #333;
  font-size: 16px;
}

a {
  color: #4A9B6F;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

a:hover {
  color: #2D5F44;
  transform: translateY(-2px);
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  color: #333;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* HEADER - Bouncy & Energetic */
header {
  background: linear-gradient(135deg, #2D5F44 0%, #1F4230 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(45, 95, 68, 0.3);
  animation: slideDown 0.5s ease-out;
}

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

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

header img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

header img:hover {
  transform: scale(1.1) rotate(5deg);
}

/* MAIN NAVIGATION - Desktop */
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(248, 184, 78, 0.3), transparent);
  transition: left 0.5s ease;
}

.main-nav a:hover::before {
  left: 100%;
}

.main-nav a:hover {
  background: rgba(248, 184, 78, 0.2);
  transform: translateY(-3px);
  color: #F8B84E;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #F8B84E 0%, #C68A1F 100%);
  color: #1F4230;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(248, 184, 78, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(248, 184, 78, 0.6);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #2D5F44 0%, #1F4230 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F8B84E;
  color: #1F4230;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: scale(1.1) rotate(90deg);
  background: #C68A1F;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav a:hover {
  background: rgba(248, 184, 78, 0.2);
  transform: translateX(10px);
  color: #F8B84E;
}

/* SECTIONS - Energetic Spacing */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

section {
  padding: 60px 20px;
  margin-bottom: 40px;
  position: relative;
}

/* HERO SECTION - Dynamic & Attention-Grabbing */
.hero {
  background: linear-gradient(135deg, #4A9B6F 0%, #2D5F44 100%);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(248, 184, 78, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}

.hero-subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  color: #f0f0f0;
  animation: fadeInUp 1s ease-out 0.3s backwards;
}

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

/* BUTTONS - Playful & Interactive */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.btn-primary,
.btn-secondary {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  cursor: pointer;
  border: 3px solid transparent;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #F8B84E 0%, #C68A1F 100%);
  color: #1F4230;
  box-shadow: 0 6px 20px rgba(248, 184, 78, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(248, 184, 78, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #2D5F44;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.trust-badge {
  margin-top: 24px;
  font-size: 14px;
  color: #f0f0f0;
  font-weight: 600;
  animation: fadeIn 1.5s ease-out 0.6s backwards;
}

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

/* HERO INTERNAL */
.hero-internal {
  background: linear-gradient(135deg, #4A9B6F 0%, #2D5F44 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
}

.hero-internal h1 {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
  font-size: 42px;
}

.hero-internal p {
  font-size: 18px;
  color: #f0f0f0;
}

/* CARDS & GRIDS - Bouncy Layout */
.problem-grid,
.benefits-grid,
.services-grid,
.testimonials-grid,
.services-detailed,
.pricing-grid,
.subscription-plans,
.discount-grid,
.steps-grid,
.details-grid,
.contact-grid,
.hours-grid,
.links-grid,
.stats-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.problem-item,
.benefit-card,
.service-card,
.testimonial-card,
.service-detail,
.pricing-item,
.plan,
.discount-item,
.step-item,
.detail-item,
.contact-item,
.hours-item,
.link-card,
.stat-mini {
  flex: 1 1 300px;
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(45, 95, 68, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.problem-item::before,
.benefit-card::before,
.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(248, 184, 78, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.problem-item:hover::before,
.benefit-card:hover::before,
.service-card:hover::before {
  opacity: 1;
}

.problem-item:hover,
.benefit-card:hover,
.service-card:hover,
.service-detail:hover,
.pricing-item:hover,
.plan:hover,
.step-item:hover,
.detail-item:hover,
.contact-item:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(45, 95, 68, 0.25);
}

.problem-item h3,
.benefit-card h3,
.service-card h3,
.service-detail h3 {
  color: #2D5F44;
  margin-bottom: 16px;
  position: relative;
}

.testimonial-card {
  background: linear-gradient(135deg, #fff 0%, #fef5e7 100%);
  border-left: 5px solid #F8B84E;
  padding: 32px;
}

.testimonial-card p {
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.testimonial-card .author {
  font-weight: 700;
  color: #2D5F44;
  font-style: normal;
  font-size: 14px;
}

/* PRICE & TIME LABELS */
.price {
  font-size: 24px;
  font-weight: 700;
  color: #F8B84E;
  margin: 16px 0;
}

.time {
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

/* SECTION SUBTITLE */
.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
}

/* STATS SECTION */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
  padding: 24px;
  background: linear-gradient(135deg, #fff 0%, #fef5e7 100%);
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(45, 95, 68, 0.1);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.1) rotate(-2deg);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #F8B84E;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* BENEFITS LIST */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.benefit-item {
  background: #fff;
  padding: 32px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(45, 95, 68, 0.1);
  border-left: 5px solid #4A9B6F;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(45, 95, 68, 0.2);
}

.proof {
  background: linear-gradient(135deg, #fef5e7 0%, #fff 100%);
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 16px;
  font-weight: 600;
  color: #2D5F44;
  border-left: 3px solid #F8B84E;
}

/* STEP NUMBERS */
.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #F8B84E 0%, #C68A1F 100%);
  color: #1F4230;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(248, 184, 78, 0.4);
}

/* LISTS IN SECTIONS */
section ul {
  list-style: none;
  padding-left: 0;
}

section ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
  color: #333;
}

section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4A9B6F;
  font-weight: 700;
  font-size: 20px;
}

/* CTA SECTIONS */
.cta-final,
.cta-services,
.cta-why-us,
.cta-pricing,
.cta-process,
.cta-contact {
  background: linear-gradient(135deg, #4A9B6F 0%, #2D5F44 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 60px 0;
}

.cta-final h2,
.cta-services h2,
.cta-why-us h2,
.cta-pricing h2,
.cta-process h2,
.cta-contact h2 {
  color: #fff;
  margin-bottom: 20px;
}

.cta-final h2::after,
.cta-services h2::after,
.cta-why-us h2::after,
.cta-pricing h2::after,
.cta-process h2::after,
.cta-contact h2::after {
  background: #F8B84E;
}

.cta-final p,
.cta-services p,
.cta-why-us p,
.cta-pricing p,
.cta-process p,
.cta-contact p {
  color: #f0f0f0;
  font-size: 18px;
  margin-bottom: 32px;
}

.availability {
  font-size: 14px;
  color: #f0f0f0;
  margin-top: 24px;
  font-weight: 600;
}

/* CONTACT PAGE SPECIFICS */
.contact-value {
  font-size: 20px;
  font-weight: 700;
  color: #2D5F44;
  margin: 16px 0;
}

.contact-value a {
  color: #2D5F44;
}

.contact-value a:hover {
  color: #4A9B6F;
}

.hours {
  font-size: 14px;
  color: #666;
  margin: 12px 0;
}

.form-info {
  background: #fff;
  padding: 32px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(45, 95, 68, 0.1);
  margin-top: 32px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #4A9B6F 0%, #2D5F44 100%);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 0;
}

.thank-you-content h1 {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}

.success-message {
  font-size: 20px;
  color: #F8B84E;
  font-weight: 700;
  margin-top: 16px;
}

.next-steps {
  background: #fff;
  padding: 32px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(45, 95, 68, 0.1);
  margin-top: 32px;
}

.contact-reminder {
  margin-top: 24px;
  font-weight: 700;
  color: #2D5F44;
}

/* LEGAL CONTENT */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.text-section {
  background: #fff;
  padding: 32px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(45, 95, 68, 0.1);
  margin-bottom: 32px;
}

.last-updated {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 40px;
}

/* FOOTER - Clean & Organized */
footer {
  background: linear-gradient(135deg, #1F4230 0%, #0f2318 100%);
  color: #fff;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 200px;
}

.footer-section h3 {
  color: #F8B84E;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
  color: #d0d0d0;
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-nav a:hover {
  color: #F8B84E;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #999;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1F4230 0%, #2D5F44 100%);
  color: #fff;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text p {
  color: white;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, #F8B84E 0%, #C68A1F 100%);
  color: #1F4230;
}

.cookie-accept:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(248, 184, 78, 0.4);
}

.cookie-reject {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cookie-reject:hover {
  background: #fff;
  color: #2D5F44;
}

.cookie-settings {
  background: transparent;
  color: #F8B84E;
  border: 2px solid #F8B84E;
}

.cookie-settings:hover {
  background: #F8B84E;
  color: #1F4230;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.cookie-modal-content {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background: #f9f9f9;
  border-radius: 10px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: #2D5F44;
  cursor: pointer;
}

.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-category p {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN - Mobile First */
@media (max-width: 768px) {
  /* Show mobile menu button, hide desktop nav */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-internal h1 {
    font-size: 32px;
  }
  
  /* Sections */
  section {
    padding: 40px 16px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-internal {
    padding: 50px 20px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Cards and grids */
  .problem-grid,
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .services-detailed,
  .pricing-grid,
  .subscription-plans,
  .discount-grid,
  .steps-grid,
  .details-grid,
  .contact-grid,
  .hours-grid,
  .stats-grid {
    flex-direction: column;
    gap: 20px;
  }
  
  .problem-item,
  .benefit-card,
  .service-card,
  .testimonial-card,
  .service-detail,
  .pricing-item,
  .plan,
  .discount-item,
  .step-item,
  .detail-item,
  .contact-item,
  .stat-item {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  /* Further mobile optimizations */
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 30px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 15px;
  }
  
  .mobile-menu {
    width: 90%;
  }
}

/* ANIMATIONS & TRANSITIONS */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

.btn-primary:active {
  animation: wiggle 0.3s ease;
}

/* SCROLLBAR STYLING */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #4A9B6F 0%, #2D5F44 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2D5F44;
}

/* ACCESSIBILITY */
.btn-primary:focus,
.btn-secondary:focus,
.mobile-menu-toggle:focus,
.mobile-menu-close:focus,
a:focus {
  outline: 3px solid #F8B84E;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none;
  }
}