/* ===================================
   PAVANSUBTI - PLAYFUL DYNAMIC DESIGN
   Pet Grooming Tools Website
   =================================== */

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

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

body {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  color: #2d2d2d;
  background: linear-gradient(135deg, #f8f5ff 0%, #fff5e6 100%);
  overflow-x: hidden;
}

/* TYPOGRAPHY - Playful & Dynamic */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #2C5F7D;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #2C5F7D 0%, #E8944F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInDown 0.8s ease-out;
}

h2 {
  font-size: 36px;
  position: relative;
  padding-bottom: 16px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #E8944F 0%, #2C5F7D 100%);
  border-radius: 10px;
  animation: growWidth 0.6s ease-out;
}

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

h4 {
  font-size: 20px;
}

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

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

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

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

/* ANIMATIONS */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes growWidth {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

/* HEADER */
header {
  background: #fff;
  box-shadow: 0 4px 20px rgba(44, 95, 125, 0.15);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideInDown 0.5s ease-out;
}

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

.logo img {
  height: 50px;
  transition: transform 0.3s ease;
}

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

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #2C5F7D;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #E8944F;
  transform: translateX(-50%);
  transition: width 0.3s ease;
  border-radius: 10px;
}

.main-nav a:hover {
  background: linear-gradient(135deg, #2C5F7D 0%, #E8944F 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(232, 148, 79, 0.4);
}

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

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #E8944F 0%, #2C5F7D 100%);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 2000;
  box-shadow: 0 6px 20px rgba(232, 148, 79, 0.5);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 8px 30px rgba(232, 148, 79, 0.7);
}

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 80px 30px 30px;
}

.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  padding: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  padding-left: 30px;
  border-left: 5px solid #fff;
}

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 40px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.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.5s ease, height 0.5s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 400px;
  height: 400px;
}

.btn-primary {
  background: linear-gradient(135deg, #E8944F 0%, #2C5F7D 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(232, 148, 79, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(232, 148, 79, 0.6);
  animation: pulse 0.5s ease;
}

.btn-secondary {
  background: #fff;
  color: #2C5F7D;
  border: 3px solid #E8944F;
  box-shadow: 0 4px 15px rgba(44, 95, 125, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #E8944F 0%, #2C5F7D 100%);
  color: #fff;
  border-color: #E8944F;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(232, 148, 79, 0.5);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #2C5F7D 0%, #E8944F 100%);
  color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: bounce 3s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #fff;
  -webkit-text-fill-color: #fff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
}

.hero .subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  color: #F4F1E8;
  font-weight: 600;
  animation: slideInUp 1s ease-out;
}

.hero .breadcrumbs {
  margin-bottom: 24px;
  font-size: 14px;
  color: #F4F1E8;
}

.hero .breadcrumbs a {
  color: #fff;
  text-decoration: underline;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: slideInUp 1.2s ease-out;
}

.trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: fadeIn 1.5s ease-out;
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.trust-badges span:hover {
  background: #fff;
  color: #E8944F;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.benefits,
.services,
.products,
.features,
.testimonials,
.breeds,
.criteria,
.recommendations,
.beginner-guide,
.breed-tips,
.maintenance,
.troubleshooting,
.story,
.mission,
.stats,
.location,
.contact-methods,
.office-location,
.directions,
.business-info,
.guide-cta,
.trust,
.consultation,
.help {
  margin-bottom: 60px;
  padding: 40px 20px;
  animation: fadeIn 1s ease-out;
}

/* FLEXBOX GRIDS - Playful & Dynamic */
.benefits-grid,
.services-grid,
.products-grid,
.features-grid,
.testimonials-grid,
.values-grid,
.stats-grid,
.methods-grid,
.directions-grid,
.trust-grid,
.recommendations-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

/* CARDS - Bright & Energetic */
.benefit-card,
.service-card,
.product-card,
.feature,
.testimonial-card,
.value,
.stat,
.method-card,
.direction,
.trust-item,
.recommendation-card,
.action-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  box-shadow: 0 8px 25px rgba(44, 95, 125, 0.15);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  overflow: hidden;
}

.benefit-card::before,
.service-card::before,
.product-card::before,
.recommendation-card::before,
.action-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(232, 148, 79, 0.1) 50%, transparent 70%);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.benefit-card:hover::before,
.service-card:hover::before,
.product-card:hover::before,
.recommendation-card:hover::before,
.action-card:hover::before {
  top: -80%;
  right: -80%;
}

.benefit-card:hover,
.service-card:hover,
.product-card:hover,
.method-card:hover,
.direction:hover,
.recommendation-card:hover,
.action-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(232, 148, 79, 0.3);
  border-color: #E8944F;
}

.benefit-card h3,
.service-card h3,
.product-card h3,
.recommendation-card h3,
.action-card h3 {
  color: #2C5F7D;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.benefit-card p,
.service-card p,
.product-card p,
.recommendation-card p,
.action-card p {
  color: #555;
  position: relative;
  z-index: 2;
}

/* PRICE STYLING */
.price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #E8944F;
  margin: 20px 0;
  text-shadow: 2px 2px 4px rgba(232, 148, 79, 0.2);
}

/* BADGES */
.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #E8944F 0%, #2C5F7D 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(232, 148, 79, 0.5);
  animation: pulse 2s infinite;
  z-index: 10;
}

/* TESTIMONIALS - High Contrast */
.testimonial-card {
  background: linear-gradient(135deg, #fff 0%, #f8f5ff 100%);
  border-left: 6px solid #E8944F;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
}

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

.testimonial-card .author {
  color: #2C5F7D;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 8px;
}

.testimonial-card .rating {
  color: #E8944F;
  font-size: 20px;
  font-style: normal;
}

/* BREED LIST, CRITERIA, TIPS */
.breed-list,
.criteria-list,
.tips-list,
.guide-steps,
.problems-list,
.maintenance-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.breed-item,
.criterion,
.tip-item,
.step,
.problem {
  background: #fff;
  border-radius: 15px;
  padding: 24px;
  border-left: 5px solid #E8944F;
  box-shadow: 0 6px 20px rgba(44, 95, 125, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.breed-item:hover,
.criterion:hover,
.tip-item:hover,
.step:hover,
.problem:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(232, 148, 79, 0.25);
  border-left-width: 8px;
}

.breed-item h3,
.criterion h3,
.tip-item h3,
.step h3,
.problem h3 {
  color: #2C5F7D;
  margin-bottom: 12px;
}

.maintenance-list p {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
  border-left: 4px solid #E8944F;
  box-shadow: 0 4px 15px rgba(44, 95, 125, 0.1);
  transition: all 0.3s ease;
}

.maintenance-list p:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(232, 148, 79, 0.2);
}

/* CTA SECTIONS */
.cta-final,
.cta,
.guide-cta,
.consultation,
.help,
.return-cta {
  background: linear-gradient(135deg, #2C5F7D 0%, #E8944F 100%);
  color: #fff;
  padding: 60px 20px;
  border-radius: 30px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.cta-final::before,
.cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

.cta-final h2,
.cta h2,
.guide-cta h2,
.consultation h2,
.help h2 {
  color: #fff;
  margin-bottom: 20px;
}

.cta-final h2::after,
.cta h2::after,
.guide-cta h2::after,
.consultation h2::after,
.help h2::after {
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
}

.cta-final p,
.cta p,
.guide-cta p,
.consultation p,
.help p {
  color: #F4F1E8;
  font-size: 18px;
  margin-bottom: 32px;
}

.guarantee,
.small {
  font-size: 14px;
  color: #F4F1E8;
  margin-top: 24px;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.legal-content .container {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(44, 95, 125, 0.15);
}

.text-section {
  margin-top: 32px;
}

.text-section h2 {
  color: #2C5F7D;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
}

.text-section p {
  margin-bottom: 16px;
  line-height: 1.8;
}

/* THANK YOU PAGE */
.thank-you-hero,
.thank-you-content {
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 60px;
}

.checkmark {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #E8944F 0%, #2C5F7D 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 60px;
  color: #fff;
  box-shadow: 0 10px 40px rgba(232, 148, 79, 0.4);
  animation: bounce 1s ease-out;
}

.confirmation .steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
}

.confirmation .step {
  background: #fff;
  border-radius: 15px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(44, 95, 125, 0.1);
  border-left: 5px solid #E8944F;
}

.confirmation .note {
  background: #F4F1E8;
  padding: 20px;
  border-radius: 10px;
  margin-top: 32px;
  border: 2px solid #E8944F;
}

/* CONTACT FORM NOTE */
.form-note {
  background: linear-gradient(135deg, #f8f5ff 0%, #fff5e6 100%);
  border: 3px solid #E8944F;
  border-radius: 15px;
  padding: 32px;
  margin-top: 32px;
  box-shadow: 0 6px 20px rgba(232, 148, 79, 0.2);
}

.form-note p {
  margin-bottom: 16px;
  color: #2d2d2d;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #2C5F7D 0%, #1a3d52 100%);
  color: #F4F1E8;
  padding: 60px 20px 30px;
  margin-top: 60px;
}

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

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

.footer-section h4 {
  color: #E8944F;
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  color: #F4F1E8;
  margin-bottom: 8px;
  font-size: 14px;
}

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

.footer-nav a {
  color: #F4F1E8;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-nav a:hover {
  color: #E8944F;
  padding-left: 10px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid rgba(244, 241, 232, 0.2);
  color: #F4F1E8;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C5F7D 0%, #E8944F 100%);
  color: #fff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  display: none;
  animation: slideInUp 0.5s ease-out;
}

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

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

.cookie-consent p {
  color: #fff;
  margin: 0;
  flex: 1 1 300px;
}

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

.cookie-buttons button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.cookie-accept {
  background: #fff;
  color: #2C5F7D;
}

.cookie-accept:hover {
  background: #F4F1E8;
  transform: scale(1.05);
}

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

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.2);
}

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

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease-out;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  animation: slideInUp 0.4s ease-out;
}

.cookie-modal-content h2 {
  color: #2C5F7D;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f5ff;
  border-radius: 10px;
  border-left: 4px solid #E8944F;
}

.cookie-category h3 {
  color: #2C5F7D;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 600;
}

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
    text-align: center;
  }
  
  .trust-badges {
    flex-direction: column;
  }
  
  /* Cards */
  .benefit-card,
  .service-card,
  .product-card,
  .feature,
  .testimonial-card,
  .value,
  .stat,
  .method-card,
  .direction,
  .trust-item,
  .recommendation-card,
  .action-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  /* Cookie Consent */
  .cookie-consent .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .service-card,
  .product-card,
  .recommendation-card,
  .action-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
}

/* ACCESSIBILITY */
*:focus {
  outline: 3px solid #E8944F;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid #E8944F;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none;
  }
  
  body {
    background: #fff;
  }
  
  .hero {
    background: #fff;
    color: #2C5F7D;
  }
}