/* ============================================
   SMOLDS & GOMB PET CARE - SCANDINAVIAN CLEAN DESIGN
   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', Roboto, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* ============================================
   TYPOGRAPHY - SCANDINAVIAN CLEAN
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Open Sans', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1a2930;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* ============================================
   CONTAINER & LAYOUT UTILITIES
   ============================================ */

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

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

.text-section {
  max-width: 800px;
  margin: 0 auto 32px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* ============================================
   BUTTONS - SCANDINAVIAN CLEAN STYLE
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Quicksand', sans-serif;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: #4A7C59;
  color: #ffffff;
  border-color: #4A7C59;
}

.btn-primary:hover {
  background-color: #3d6548;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

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

.btn-secondary:hover {
  background-color: #4A7C59;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

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

.logo img {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #2c3e50;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #4A7C59;
  transition: width 0.3s ease;
}

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

.header-cta {
  display: none;
}

/* ============================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ============================================ */

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #4A7C59;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #3d6548;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  z-index: 1002;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

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

.mobile-menu-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  background-color: transparent;
  color: #2c3e50;
  border: none;
  font-size: 28px;
  cursor: pointer;
  margin-bottom: 32px;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #4A7C59;
}

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

.mobile-nav a {
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #2c3e50;
  padding: 12px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #f5f8f6;
  color: #4A7C59;
}

/* ============================================
   HERO SECTION - SCANDINAVIAN CLEAN
   ============================================ */

.hero {
  background: linear-gradient(135deg, #f5f8f6 0%, #ffffff 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 40px;
  color: #1a2930;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.badge {
  background-color: #ffffff;
  color: #4A7C59;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

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

/* ============================================
   SERVICES GRID - FLEXBOX LAYOUT
   ============================================ */

.services-overview,
.why-choose-us,
.testimonials,
.how-it-works,
.pricing-tables,
.discounts {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.services-overview h2,
.why-choose-us h2,
.testimonials h2,
.how-it-works h2,
.pricing-tables h2,
.discounts h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-grid,
.benefits-grid,
.features-grid,
.accommodation-grid,
.pricing-grid,
.discount-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card,
.benefit-card,
.feature-card,
.accommodation-card,
.pricing-card,
.discount-card {
  flex: 1 1 300px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.service-card:hover,
.benefit-card:hover,
.feature-card:hover,
.accommodation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.service-card h3,
.benefit-card h3,
.feature-card h3,
.accommodation-card h3,
.pricing-card h3,
.discount-card h3 {
  color: #4A7C59;
  margin-bottom: 12px;
}

.service-card p,
.benefit-card p,
.feature-card p,
.accommodation-card p {
  color: #555;
  margin-bottom: 12px;
}

.service-card .price,
.pricing-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #4A7C59;
  margin-top: 16px;
}

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

/* ============================================
   TESTIMONIALS - SCANDINAVIAN CLEAN
   ============================================ */

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 400px;
  background-color: #f5f8f6;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #4A7C59;
  margin-bottom: 20px;
}

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

.testimonial-author {
  color: #2c3e50;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
}

.testimonial-author strong {
  color: #4A7C59;
  display: block;
  margin-bottom: 4px;
}

.testimonial-large {
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   STEPS / HOW IT WORKS
   ============================================ */

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

.step-card {
  flex: 1 1 250px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  margin-bottom: 20px;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: #4A7C59;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-card h3 {
  color: #1a2930;
  margin-bottom: 12px;
}

.step-card p {
  color: #555;
}

/* ============================================
   CTA BANNER - SCANDINAVIAN CLEAN
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, #4A7C59 0%, #3d6548 100%);
  padding: 60px 20px;
  text-align: center;
  margin: 60px 0;
  border-radius: 12px;
}

.cta-content h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-content p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-content .btn-primary {
  background-color: #ffffff;
  color: #4A7C59;
  border-color: #ffffff;
}

.cta-content .btn-primary:hover {
  background-color: #F4A460;
  color: #ffffff;
  border-color: #F4A460;
}

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

.location-info,
.contact-methods,
.contact-info {
  padding: 60px 20px;
  text-align: center;
}

.location-info h2,
.contact-methods h2,
.contact-info h2 {
  margin-bottom: 16px;
}

.contact-grid,
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.contact-block,
.contact-card,
.info-block {
  flex: 1 1 280px;
  background-color: #f5f8f6;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
}

.contact-block h3,
.contact-card h3,
.info-block h3 {
  color: #4A7C59;
  margin-bottom: 12px;
}

.contact-block p,
.contact-card p,
.info-block p {
  color: #555;
}

.contact-block a,
.info-block a {
  color: #4A7C59;
  font-weight: 600;
}

.contact-block a:hover,
.info-block a:hover {
  text-decoration: underline;
}

.contact-note,
.info-note {
  font-size: 14px;
  color: #777;
  font-style: italic;
  margin-top: 8px;
}

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */

.service-detail {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.service-detail h2 {
  text-align: center;
  margin-bottom: 8px;
}

.service-tagline {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
  font-style: italic;
}

.feature-list,
.included-list {
  max-width: 700px;
  margin: 24px auto;
  padding-left: 24px;
}

.feature-list li,
.included-list li {
  margin-bottom: 12px;
  color: #555;
  line-height: 1.7;
}

.pricing-info {
  font-size: 18px;
  font-weight: 600;
  color: #4A7C59;
  text-align: center;
  margin: 32px 0;
}

.service-detail .btn {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}

.ideal-for {
  font-size: 14px;
  color: #777;
  font-style: italic;
  margin-top: 16px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-intro,
.our-story,
.mission-values,
.team,
.certifications {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.values-grid,
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.value-card,
.team-card {
  flex: 1 1 300px;
  background-color: #f5f8f6;
  padding: 32px 24px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.value-card h4,
.team-card h3 {
  color: #4A7C59;
  margin-bottom: 12px;
}

.team-card .role {
  font-size: 14px;
  color: #777;
  font-style: italic;
  margin-bottom: 16px;
}

.certification-list {
  max-width: 700px;
  margin: 32px auto;
}

.certification-list ul {
  list-style: none;
  padding: 0;
}

.certification-list li {
  background-color: #f5f8f6;
  padding: 16px 24px;
  margin-bottom: 12px;
  border-radius: 6px;
  border-left: 4px solid #4A7C59;
  color: #555;
}

/* ============================================
   BOARDING PAGE
   ============================================ */

.boarding-overview,
.accommodation {
  padding: 40px 20px;
  margin-bottom: 40px;
}

/* ============================================
   GALLERY PAGE
   ============================================ */

.gallery-intro,
.social-media {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.social-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.social-card,
.suggestion-card {
  flex: 1 1 300px;
  background-color: #f5f8f6;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

.social-card h3,
.suggestion-card h3 {
  color: #4A7C59;
  margin-bottom: 12px;
}

.suggestion-card .btn {
  margin-top: 16px;
}

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

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

.faq-list {
  max-width: 800px;
  margin: 32px auto;
}

.faq-item {
  background-color: #f5f8f6;
  padding: 24px;
  margin-bottom: 16px;
  border-radius: 8px;
  border-left: 4px solid #4A7C59;
}

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

.faq-item p {
  color: #555;
  margin-bottom: 0;
}

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

.legal-content {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.legal-content h1 {
  text-align: center;
  margin-bottom: 8px;
}

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

.legal-content .text-section {
  max-width: 900px;
}

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

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

.what-next,
.while-waiting,
.testimonial-single {
  padding: 40px 20px;
  margin-bottom: 40px;
}

/* ============================================
   FOOTER - SCANDINAVIAN CLEAN
   ============================================ */

footer {
  background-color: #1a2930;
  color: #ffffff;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

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

.footer-section h4 {
  color: #F4A460;
  margin-bottom: 16px;
  font-size: 18px;
}

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

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

.footer-nav a {
  color: #b8c5cc;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #F4A460;
}

.footer-section a {
  color: #F4A460;
}

.footer-section a:hover {
  text-decoration: underline;
}

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

.footer-bottom p {
  color: #b8c5cc;
  font-size: 14px;
  margin: 0;
}

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

.legal-nav a {
  color: #b8c5cc;
  font-size: 14px;
  transition: color 0.3s ease;
}

.legal-nav a:hover {
  color: #F4A460;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a2930;
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.cookie-text {
  flex: 1 1 300px;
}

.cookie-text p {
  color: #b8c5cc;
  margin: 0;
  font-size: 14px;
}

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

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

.cookie-btn-accept {
  background-color: #4A7C59;
  color: #ffffff;
  border-color: #4A7C59;
}

.cookie-btn-accept:hover {
  background-color: #3d6548;
}

.cookie-btn-reject {
  background-color: transparent;
  color: #b8c5cc;
  border-color: #b8c5cc;
}

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

.cookie-btn-settings {
  background-color: transparent;
  color: #F4A460;
  border-color: #F4A460;
}

.cookie-btn-settings:hover {
  background-color: rgba(244, 164, 96, 0.1);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  padding: 32px;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h3 {
  color: #1a2930;
  margin: 0;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #2c3e50;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cookie-category:last-child {
  border-bottom: none;
}

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

.cookie-category h4 {
  color: #1a2930;
  margin: 0;
  font-size: 16px;
}

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

.cookie-toggle.active {
  background-color: #4A7C59;
}

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

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

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  color: #555;
  font-size: 14px;
  margin: 0;
}

.cookie-modal-footer {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */

@media (min-width: 768px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 36px;
  }

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

  .main-nav {
    display: flex;
  }

  .header-cta {
    display: block;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .services-grid,
  .benefits-grid,
  .features-grid {
    gap: 32px;
  }

  .service-card,
  .benefit-card,
  .feature-card {
    flex: 1 1 calc(50% - 16px);
  }

  .testimonial-grid {
    gap: 32px;
  }

  .steps-grid {
    gap: 32px;
  }

  .step-card {
    flex: 1 1 calc(50% - 16px);
  }

  .footer-bottom {
    flex-wrap: nowrap;
  }

  .cookie-content {
    flex-wrap: nowrap;
  }
}

/* ============================================
   RESPONSIVE DESIGN - DESKTOP
   ============================================ */

@media (min-width: 1024px) {
  .service-card,
  .benefit-card,
  .feature-card {
    flex: 1 1 calc(33.333% - 22px);
  }

  .accommodation-card,
  .pricing-card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .step-card {
    flex: 1 1 calc(25% - 18px);
  }

  .testimonial-card {
    flex: 1 1 calc(50% - 12px);
  }

  .cta-banner {
    margin: 80px 0;
  }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

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

.service-card,
.benefit-card,
.feature-card,
.testimonial-card,
.step-card {
  animation: fadeIn 0.6s ease forwards;
}

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

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

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

.mb-20 {
  margin-bottom: 20px;
}

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

.mb-40 {
  margin-bottom: 40px;
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
}