/* ============================================
   GLITTER PETS - PLAYFUL DYNAMIC DESIGN
   CSS Reset & Base Styles
   ============================================ */

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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.7;
  color: #2C3E50;
  background: linear-gradient(135deg, #FFF5EB 0%, #FFE4D1 100%);
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY - PLAYFUL & ENERGETIC
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Comic Sans MS', cursive, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #E67E22;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(230, 126, 34, 0.1);
}

h1 {
  font-size: 48px;
  animation: bounceIn 0.8s ease-out;
}

h2 {
  font-size: 36px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #E67E22, #F39C12, #E67E22);
  border-radius: 2px;
  animation: shimmer 2s infinite;
}

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

h4 {
  font-size: 20px;
}

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

a {
  color: #E67E22;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

strong {
  font-weight: 700;
  color: #C55A11;
}

blockquote {
  border-left: 5px solid #E67E22;
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  font-size: 20px;
  color: #34495E;
  background: rgba(230, 126, 34, 0.05);
  padding: 20px 24px;
  border-radius: 8px;
}

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

li {
  margin-bottom: 12px;
  color: #2C3E50;
}

/* ============================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   ============================================ */

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

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

/* ============================================
   HEADER - COLORFUL & ANIMATED
   ============================================ */

header {
  background: linear-gradient(135deg, #E67E22 0%, #F39C12 50%, #E67E22 100%);
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
  box-shadow: 0 4px 20px rgba(230, 126, 34, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1) rotate(5deg);
  animation: wiggle 0.5s ease;
}

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

.main-nav a {
  color: #FFF;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.main-nav a::before {
  content: '🐾';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.main-nav a:hover::before {
  opacity: 1;
  left: -10px;
}

/* ============================================
   MOBILE MENU - BURGER NAVIGATION
   ============================================ */

.mobile-menu-toggle {
  display: none;
  background: #FFF;
  color: #E67E22;
  border: 3px solid #E67E22;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #E67E22;
  color: #FFF;
  transform: rotate(90deg) scale(1.1);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #E67E22 0%, #F39C12 100%);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  z-index: 1999;
  padding: 80px 30px 30px;
  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: #FFF;
  color: #E67E22;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #C55A11;
  color: #FFF;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background: #FFF;
  color: #E67E22;
  transform: translateX(10px) scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ============================================
   BUTTONS - FUN & ENERGETIC
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 30px;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  margin: 8px;
}

.btn::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:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #E67E22, #F39C12);
  color: #FFF;
  border-color: #E67E22;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #C55A11, #E67E22);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
  background: #FFF;
  color: #E67E22;
  border-color: #E67E22;
}

.btn-secondary:hover {
  background: #E67E22;
  color: #FFF;
  transform: translateY(-4px) scale(1.05);
}

/* ============================================
   HERO SECTION - DYNAMIC & PLAYFUL
   ============================================ */

.hero {
  background: linear-gradient(135deg, #FFE4D1 0%, #FFF5EB 50%, #FFE4D1 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '🐕🐈🐾';
  position: absolute;
  top: 20px;
  left: -50px;
  font-size: 100px;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '🎾🦴🐾';
  position: absolute;
  bottom: 20px;
  right: -50px;
  font-size: 100px;
  opacity: 0.1;
  animation: float 8s ease-in-out infinite reverse;
}

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

.hero h1 {
  color: #E67E22;
  margin-bottom: 24px;
  font-size: 56px;
}

.hero-subheadline {
  font-size: 20px;
  color: #2C3E50;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badge {
  font-size: 16px;
  color: #8B4513;
  font-weight: 600;
  padding: 12px 24px;
  background: rgba(230, 126, 34, 0.1);
  border-radius: 25px;
  display: inline-block;
  border: 2px dashed #E67E22;
}

/* ============================================
   HERO INTERNAL PAGES
   ============================================ */

.hero-internal {
  background: linear-gradient(135deg, #E67E22, #F39C12);
  padding: 60px 20px;
  text-align: center;
  color: #FFF;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(230, 126, 34, 0.3);
}

.hero-internal h1 {
  color: #FFF;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 16px;
}

.hero-internal p {
  font-size: 20px;
  color: #FFF5EB;
  font-weight: 400;
}

/* ============================================
   CARDS & GRID LAYOUTS - FLEXBOX ONLY
   ============================================ */

.services-grid,
.features-grid,
.team-grid,
.testimonials-grid,
.packages-grid,
.contact-grid,
.photo-grid,
.seasons-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.service-card,
.feature,
.team-member,
.testimonial-card,
.package-card,
.contact-method,
.value,
.photo-description,
.season,
.link-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFF;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.15);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  border: 3px solid transparent;
}

.service-card::before,
.package-card::before {
  content: '✨';
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 40px;
  opacity: 0;
  transition: all 0.3s ease;
}

.service-card:hover,
.feature:hover,
.team-member:hover,
.package-card:hover,
.link-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(230, 126, 34, 0.3);
  border-color: #E67E22;
}

.service-card:hover::before,
.package-card:hover::before {
  opacity: 1;
  top: -10px;
  right: -10px;
  animation: spin 1s linear infinite;
}

.service-card h3,
.feature h3,
.team-member h3,
.package-card h3 {
  margin-bottom: 12px;
}

.service-card p,
.feature p,
.team-member p {
  margin-bottom: 12px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #E67E22;
  margin-top: 16px;
}

.package-price {
  font-size: 32px;
  font-weight: 700;
  color: #E67E22;
  margin: 16px 0;
}

.savings {
  background: linear-gradient(135deg, #2ECC71, #27AE60);
  color: #FFF;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-top: 12px;
}

/* ============================================
   TESTIMONIALS - READABLE CONTRAST
   ============================================ */

.testimonial-card {
  background: linear-gradient(135deg, #FFF 0%, #FFF5EB 100%);
  border-left: 5px solid #E67E22;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card p {
  color: #2C3E50;
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-card .author {
  color: #8B4513;
  font-weight: 600;
  font-style: normal;
}

.rating {
  color: #F39C12;
  font-size: 20px;
  letter-spacing: 4px;
}

/* ============================================
   SECTIONS - COLORFUL BACKGROUNDS
   ============================================ */

.services-overview,
.why-choose-us,
.mission-values,
.pricing-intro,
.tips-intro,
.gallery-intro {
  background: linear-gradient(135deg, #FFF 0%, #FFF5EB 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.section-intro {
  font-size: 18px;
  color: #34495E;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   TEXT-IMAGE SECTIONS - FLEXBOX ALIGNMENT
   ============================================ */

.text-image-section,
.text-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-section {
  flex-direction: column;
  align-items: flex-start;
}

/* ============================================
   CTA SECTIONS - ENERGETIC
   ============================================ */

.cta-banner,
.cta-section,
.expert-consultation-cta,
.cta-final {
  background: linear-gradient(135deg, #E67E22, #F39C12);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 8px 30px rgba(230, 126, 34, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.cta-banner h2,
.cta-section h2,
.expert-consultation-cta h2,
.cta-final h2 {
  color: #FFF;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner h2::after,
.cta-section h2::after {
  background: rgba(255, 255, 255, 0.5);
}

.cta-banner p,
.cta-section p,
.expert-consultation-cta p,
.cta-final p {
  color: #FFF5EB;
  font-size: 18px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

/* ============================================
   PRICING TABLES - PLAYFUL LAYOUT
   ============================================ */

.price-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}

.price-item {
  flex: 1 1 calc(50% - 20px);
  min-width: 250px;
  background: #FFF;
  padding: 24px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.15);
  border-left: 5px solid #E67E22;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.price-item:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 25px rgba(230, 126, 34, 0.25);
}

.category-list,
.facilities-list,
.promise-list,
.hours-list,
.benefits-list {
  list-style: none;
  margin-left: 0;
}

.category-list li,
.facilities-list li,
.promise-list li,
.hours-list li,
.benefits-list li {
  padding: 12px 0;
  padding-left: 40px;
  position: relative;
  border-bottom: 1px dashed rgba(230, 126, 34, 0.2);
}

.category-list li::before,
.facilities-list li::before,
.promise-list li::before,
.hours-list li::before,
.benefits-list li::before {
  content: '🐾';
  position: absolute;
  left: 0;
  font-size: 20px;
}

/* ============================================
   TIPS & CONTENT SECTIONS
   ============================================ */

.tips-category,
.service-detailed,
.story,
.facilities,
.pricing-breakdown,
.package-pricing,
.additional-costs,
.price-promise,
.seasonal-tips,
.before-after-showcase,
.customer-photos,
.breed-gallery,
.testimonials-with-context,
.contact-intro,
.contact-methods,
.contact-form-section,
.location-info,
.opening-hours,
.quick-questions,
.service-area {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.tip,
.faq-item {
  background: #FFF;
  padding: 24px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #F39C12;
  transition: all 0.3s ease;
}

.tip:hover,
.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.2);
}

.tip h3,
.faq-item h3 {
  color: #E67E22;
  margin-bottom: 12px;
}

/* ============================================
   LOCATION & CONTACT INFO
   ============================================ */

.location,
.location-info,
.location-details {
  background: linear-gradient(135deg, #FFF5EB 0%, #FFE4D1 100%);
  padding: 60px 20px;
  border-radius: 20px;
  margin-bottom: 60px;
  text-align: center;
}

.address {
  font-size: 20px;
  font-weight: 700;
  color: #E67E22;
  margin-bottom: 16px;
}

.note,
.privacy-note,
.confirmation-note,
.reassurance {
  font-size: 14px;
  color: #8B4513;
  font-style: italic;
  margin-top: 24px;
  padding: 16px;
  background: rgba(230, 126, 34, 0.05);
  border-radius: 10px;
  border: 1px dashed #E67E22;
}

/* ============================================
   THANK YOU PAGE - CELEBRATION STYLE
   ============================================ */

.thank-you-hero {
  background: linear-gradient(135deg, #2ECC71, #27AE60);
  padding: 80px 20px;
  text-align: center;
  color: #FFF;
  margin-bottom: 60px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.success-icon {
  font-size: 80px;
  width: 120px;
  height: 120px;
  background: #FFF;
  color: #2ECC71;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  animation: bounceIn 1s ease-out;
}

.thank-you-hero h1 {
  color: #FFF;
}

.lead {
  font-size: 20px;
  margin-bottom: 0;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.step {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #FFF 0%, #FFF5EB 100%);
  padding: 24px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.step h3 {
  color: #E67E22;
  margin-bottom: 12px;
}

.offer {
  font-size: 28px;
  color: #E67E22;
  font-weight: 700;
  margin: 24px 0;
  padding: 20px;
  background: #FFF;
  border-radius: 15px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.2);
}

.validity {
  font-size: 14px;
  color: #8B4513;
  font-style: italic;
}

/* ============================================
   LEGAL PAGES - CLEAN & READABLE
   ============================================ */

.legal-page {
  background: #FFF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.last-updated {
  font-size: 14px;
  color: #8B4513;
  margin-bottom: 32px;
}

/* ============================================
   FOOTER - COLORFUL & ORGANIZED
   ============================================ */

footer {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 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 250px;
}

.footer-section h3,
.footer-section h4 {
  color: #F39C12;
  margin-bottom: 16px;
}

.footer-section h3::after,
.footer-section h4::after {
  display: none;
}

.footer-section p {
  color: #ECF0F1;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 24px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.footer-links a {
  color: #ECF0F1;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #F39C12;
  transform: translateY(-2px);
}

.copyright {
  text-align: center;
  color: #BDC3C7;
  font-size: 14px;
}

/* ============================================
   COOKIE CONSENT BANNER - FIXED BOTTOM
   ============================================ */

.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C3E50, #34495E);
  color: #FFF;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  animation: slideUp 0.5s ease-out;
}

.cookie-consent.active {
  display: block;
}

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

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
}
.cookie-text p {
  color: white;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 20px;
  border: 2px solid #FFF;
  background: transparent;
  color: #FFF;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-btn:hover {
  background: #FFF;
  color: #2C3E50;
  transform: translateY(-2px);
}

.cookie-btn-accept {
  background: #E67E22;
  border-color: #E67E22;
}

.cookie-btn-accept:hover {
  background: #C55A11;
  border-color: #C55A11;
  color: #FFF;
}

/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  z-index: 2001;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal.active {
  display: block;
  animation: popIn 0.3s ease-out;
}

.cookie-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
}

.cookie-overlay.active {
  display: block;
}

.cookie-category {
  padding: 16px 0;
  border-bottom: 1px solid #ECF0F1;
}

.cookie-category h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.toggle-switch {
  width: 50px;
  height: 26px;
  background: #BDC3C7;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #E67E22;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #FFF;
  border-radius: 50%;
  transition: left 0.3s ease;
}

.toggle-switch.active::after {
  left: 27px;
}

/* ============================================
   ANIMATIONS - PLAYFUL & ENERGETIC
   ============================================ */

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

@keyframes shimmer {
  0%, 100% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0.8);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

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

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  /* Hero sections */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  /* Card layouts */
  .service-card,
  .feature,
  .team-member,
  .testimonial-card,
  .package-card,
  .contact-method,
  .value,
  .step {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Text-image sections */
  .text-image-section {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  /* Buttons */
  .btn {
    display: block;
    width: 100%;
  }
  
  /* Price items */
  .price-item {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 30px 16px;
  }
  
  .cookie-modal {
    padding: 24px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.mb-0 {
  margin-bottom: 0;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */

*:focus {
  outline: 3px solid #E67E22;
  outline-offset: 2px;
}

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: #E67E22;
  color: #FFF;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 9999;
}

.skip-to-content:focus {
  top: 0;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cookie-overlay {
    display: none !important;
  }
  
  body {
    background: #FFF;
  }
  
  a {
    text-decoration: underline;
  }
}

/* END OF CSS */