/* ===================================
   EGALIVANGA PET CARE - GRADIENT MODERN STYLE
   CSS Reset & Base Styles
   =================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

/* ===================================
   TYPOGRAPHY - GRADIENT MODERN
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Open Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #3D6B4D 0%, #4A7C59 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #34495e;
}

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

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

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

/* ===================================
   HEADER - GRADIENT MODERN
   =================================== */

header {
  background: linear-gradient(135deg, #3D6B4D 0%, #4A7C59 100%);
  box-shadow: 0 4px 20px rgba(61, 107, 77, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #E8A87C 0%, #f4a460 100%);
  transition: width 0.3s ease;
}

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

.main-nav a:hover {
  color: #E8A87C;
}

.header-cta {
  display: flex;
  align-items: center;
}

/* ===================================
   BUTTONS - GRADIENT MODERN
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #E8A87C 0%, #f4a460 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(232, 168, 124, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 168, 124, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #3D6B4D;
  border: 2px solid #3D6B4D;
  box-shadow: 0 4px 15px rgba(61, 107, 77, 0.1);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #3D6B4D 0%, #4A7C59 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61, 107, 77, 0.3);
}

/* ===================================
   MOBILE MENU - GRADIENT MODERN
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #E8A87C 0%, #f4a460 100%);
  border: none;
  color: #ffffff;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(232, 168, 124, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(232, 168, 124, 0.5);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #3D6B4D 0%, #4A7C59 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
  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: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  font-size: 32px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

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

.mobile-nav a:hover {
  background: rgba(232, 168, 124, 0.3);
  transform: translateX(8px);
}

/* ===================================
   HERO SECTION - GRADIENT MODERN
   =================================== */

.hero {
  background: linear-gradient(135deg, #3D6B4D 0%, #4A7C59 50%, #E8A87C 100%);
  padding: 100px 20px 80px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 168, 124, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  background: none;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subheadline {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

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

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-badges span {
  color: #ffffff;
  font-weight: 600;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  font-size: 14px;
  transition: all 0.3s ease;
}

.trust-badges span:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* ===================================
   PAGE HERO
   =================================== */

.page-hero {
  background: linear-gradient(135deg, #4A7C59 0%, #3D6B4D 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  color: #ffffff;
}

.page-hero h1 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 16px;
}

.page-hero p {
  color: #ffffff;
  font-size: 18px;
  opacity: 0.95;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: #E8A87C;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #ffffff;
}

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

.service-grid,
.service-detail-grid,
.boarding-grid,
.features-grid,
.testimonial-grid,
.facilities-grid,
.care-categories,
.approach-grid,
.certification-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card,
.service-detail-card,
.boarding-option,
.feature,
.testimonial-card,
.facility-feature,
.care-category,
.approach-item,
.certification-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(61, 107, 77, 0.1);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card::before,
.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3D6B4D 0%, #E8A87C 100%);
  border-radius: 16px 16px 0 0;
}

.service-card:hover,
.service-detail-card:hover,
.boarding-option:hover,
.approach-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(61, 107, 77, 0.2);
}

.service-card h3,
.service-detail-card h3,
.boarding-option h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.price {
  color: #E8A87C;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
}

/* ===================================
   TESTIMONIALS - READABLE COLORS
   =================================== */

.testimonials {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: #ffffff;
  border-left: 4px solid #E8A87C;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

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

.testimonial-author {
  color: #3D6B4D;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  margin-bottom: 0;
}

.trust-indicator {
  text-align: center;
  color: #E8A87C;
  font-weight: 700;
  font-size: 18px;
  margin-top: 32px;
}

/* ===================================
   SECTION STYLES
   =================================== */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: #5a6c7d;
}

.section-subheadline {
  font-size: 18px;
  color: #5a6c7d;
  text-align: center;
  margin-bottom: 32px;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

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

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

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

.our-story,
.our-facilities,
.our-team,
.certifications,
.facilities-overview,
.daily-routine,
.safety-protocols,
.who-needs-care,
.special-care-services,
.our-approach,
.medication-management,
.location-info,
.cleanliness-standards,
.whats-included,
.pricing-info,
.booking-process,
.faq-section {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.values-list,
.qualifications-list,
.features-list,
.services-list,
.medication-list,
.standards-list,
.pricing-notes,
.location-features,
.safety-grid {
  margin-top: 32px;
}

.values-list ul,
.qualifications-list ul,
.features-list ul,
.services-list ul,
.medication-list ul,
.standards-list ul,
.pricing-notes ul,
.location-features ul,
.safety-grid ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.values-list li,
.qualifications-list li,
.features-list li,
.services-list li,
.medication-list li,
.standards-list li,
.pricing-notes li,
.location-features li,
.safety-grid li {
  padding: 12px 12px 12px 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 8px;
  border-left: 3px solid #E8A87C;
  position: relative;
  color: #2c3e50;
  transition: all 0.3s ease;
}

.values-list li:hover,
.features-list li:hover,
.services-list li:hover {
  transform: translateX(8px);
  border-left-color: #3D6B4D;
}

.values-list li::before,
.qualifications-list li::before,
.features-list li::before,
.services-list li::before,
.medication-list li::before,
.standards-list li::before,
.pricing-notes li::before,
.location-features li::before,
.safety-grid li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #3D6B4D;
  font-weight: 700;
  font-size: 18px;
}

/* ===================================
   DAILY ROUTINE / PROCESS STEPS
   =================================== */

.routine-schedule,
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.routine-item,
.process-step {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 24px;
  border-radius: 12px;
  border-top: 4px solid #E8A87C;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.routine-item:hover,
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.routine-item h3,
.process-step h3 {
  color: #3D6B4D;
  margin-bottom: 12px;
  font-size: 18px;
}

.routine-note,
.booking-note,
.consultation-note,
.urgency-note,
.commitment-statement {
  text-align: center;
  font-style: italic;
  color: #5a6c7d;
  margin-top: 24px;
  padding: 16px;
  background: rgba(232, 168, 124, 0.1);
  border-radius: 8px;
}

/* ===================================
   CTA BANNER - GRADIENT MODERN
   =================================== */

.cta-banner {
  background: linear-gradient(135deg, #3D6B4D 0%, #4A7C59 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 168, 124, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.availability-note,
.location-info,
.urgency {
  color: #E8A87C;
  font-size: 14px;
  margin-top: 16px;
  font-weight: 600;
}

/* ===================================
   CONTACT & FORMS
   =================================== */

.contact-methods {
  padding: 60px 20px;
  margin-bottom: 40px;
}

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

.contact-method {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(61, 107, 77, 0.15);
}

.contact-method h3 {
  color: #3D6B4D;
  margin-bottom: 16px;
}

.contact-form-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  margin-bottom: 40px;
}

.form-description {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-description ul {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-description li {
  padding-left: 24px;
  position: relative;
  color: #34495e;
}

.form-description li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #E8A87C;
  font-size: 20px;
}

.privacy-note,
.contact-note {
  font-size: 14px;
  color: #5a6c7d;
  font-style: italic;
  text-align: center;
  margin-top: 24px;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #3D6B4D;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(61, 107, 77, 0.15);
}

.faq-item h3 {
  color: #3D6B4D;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #34495e;
  line-height: 1.8;
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you-hero {
  background: linear-gradient(135deg, #3D6B4D 0%, #4A7C59 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #E8A87C 0%, #f4a460 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #ffffff;
  margin: 0 auto 24px;
  animation: scaleIn 0.5s ease;
}

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

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

.thank-you-hero p {
  color: #ffffff;
  font-size: 18px;
}

.next-steps,
.while-you-wait {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.steps-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.step,
.resource-link {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step:hover,
.resource-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(61, 107, 77, 0.15);
}

.resource-link h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 48px;
  color: #E8A87C;
  margin-bottom: 8px;
}

.stat p {
  font-size: 16px;
  color: #5a6c7d;
}

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

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

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.last-updated {
  font-size: 14px;
  color: #5a6c7d;
  font-style: italic;
}

/* ===================================
   FOOTER - GRADIENT MODERN
   =================================== */

footer {
  background: linear-gradient(135deg, #2c5440 0%, #3D6B4D 100%);
  color: #ffffff;
  padding: 60px 20px 30px;
  margin-top: 60px;
}

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

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

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h3 {
  color: #E8A87C;
  margin-bottom: 16px;
  font-size: 18px;
  background: none;
  -webkit-text-fill-color: #E8A87C;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #E8A87C;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #E8A87C;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin: 0;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
}

.cookie-consent-text p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-consent-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-btn-accept {
  background: linear-gradient(135deg, #E8A87C 0%, #f4a460 100%);
  color: #ffffff;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 168, 124, 0.4);
}

.cookie-btn-reject {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-settings {
  background: transparent;
  color: #E8A87C;
  border: 1px solid #E8A87C;
}

.cookie-btn-settings:hover {
  background: rgba(232, 168, 124, 0.1);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.cookie-settings-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.cookie-settings-content h2 {
  margin-bottom: 24px;
  font-size: 28px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #E8A87C;
}

.cookie-category h3 {
  margin-bottom: 8px;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-category p {
  color: #5a6c7d;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #ccc;
  border-radius: 25px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #3D6B4D;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  top: 2px;
  left: 2px;
  transition: left 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 26px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

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

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

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  p { font-size: 15px; }

  /* Navigation */
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hero */
  .hero {
    padding: 60px 20px 50px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-subheadline {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  /* Cards - Stack on Mobile */
  .service-card,
  .service-detail-card,
  .boarding-option,
  .feature,
  .testimonial-card,
  .facility-feature,
  .care-category,
  .approach-item,
  .certification-item,
  .contact-method,
  .routine-item,
  .process-step {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Text-Image Sections */
  .text-image-section {
    flex-direction: column;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 50px 20px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    align-items: center;
  }

  /* Cookie Banner */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  /* Stats Grid */
  .stats-grid {
    gap: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablets */
  .service-card,
  .service-detail-card,
  .boarding-option,
  .routine-item,
  .process-step {
    flex: 1 1 calc(50% - 24px);
  }

  .feature,
  .care-category,
  .approach-item {
    flex: 1 1 calc(50% - 24px);
  }
}

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

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

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* ===================================
   ANIMATIONS
   =================================== */

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

.fade-in {
  animation: fadeIn 0.6s ease;
}

/* Smooth scrolling for all browsers */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #E8A87C;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cookie-settings-modal,
  .cta-banner,
  header,
  footer {
    display: none;
  }

  body {
    background: #ffffff;
  }

  h1, h2, h3 {
    color: #2c3e50 !important;
    -webkit-text-fill-color: #2c3e50 !important;
  }
}