/*
 * Custom styles for Marie's Riverstick Groomers website
 *
 * This stylesheet defines a simple and approachable design inspired
 * by the business' existing branding. The palette is drawn from the
 * original business card with light blues, dark navy text and soft
 * backgrounds. The layout uses flexbox and grid to ensure the site
 * looks great on both desktop and mobile devices.
 */

/* Self-hosted Poppins font (GDPR compliant - no Google tracking) */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/poppins-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/poppins-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/poppins-600.woff2') format('woff2');
}

:root {
  /* Colour palette – inspired by the original business card */
  --primary-color: #7fb6e8;      /* soft sky blue for headers and accents */
  --secondary-color: #eaf4fc;    /* very light blue for section backgrounds */
  --section-dark-bg: #BFD8F2;    /* light blue for dark section backgrounds */
  --dark-color: #102548;         /* deep navy for text and nav bar */
  --accent-color: #e7a4b5;       /* subtle pink for highlights */
  --accent-green: #8DB600;       /* jeep green - for CTAs and accents */
  --accent-green-dark: #6f9900;  /* darker green for buttons */
  --accent-green-darker: #5c8200; /* darkest green for hover states */
  --white: #ffffff;
  --max-width: 1200px;
  --border-radius: 6px;
}

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

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--secondary-color);
}

a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: #5a9dd8;
}

header {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 0.8rem 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header .container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: visible;
}

header h1 {
  font-size: 1.5rem;
  font-weight: 600;
}

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

.header-logo {
  height: 55px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

nav a:hover {
  color: var(--primary-color);
}

nav a:focus-visible {
  color: var(--primary-color);
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

nav a.active {
  color: var(--primary-color);
}

/* Hero section on the home page */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  text-align: center;
  padding: 4rem 1.5rem 3.5rem;
}

.hero-content {
  max-width: 800px;
  padding: 0.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-jeep {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

.hero-logo {
  max-width: 350px;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.hero h1,
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.hero .hero-heading {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
}

.btn:hover,
.btn:focus {
  background-color: #d0859b;
  color: var(--white);
  text-decoration: none;
  outline: 3px solid var(--dark-color);
  outline-offset: 2px;
}

.btn-green {
  background-color: var(--accent-green-dark);
  color: var(--white);
}

.btn-green:hover,
.btn-green:focus {
  background-color: var(--accent-green-darker);
  color: var(--white);
  outline: 3px solid var(--dark-color);
  outline-offset: 2px;
}

/* Contact buttons (WhatsApp, Call) */
.contact-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: var(--accent-green-dark);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  flex: 1;
  min-width: 180px;
  max-width: 250px;
}

.contact-btn:hover,
.contact-btn:focus {
  background-color: var(--accent-green-darker);
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.2);
  color: white;
  outline: 3px solid var(--dark-color);
  outline-offset: 2px;
}

.contact-btn__icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.contact-btn__title {
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-btn__subtitle {
  font-size: 0.9rem;
  font-weight: normal;
  opacity: 0.95;
}

@media (max-width: 480px) {
  .contact-btn {
    flex: 0 0 auto;
    width: 200px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .credentials-gallery {
    gap: 1.5rem;
  }
  
  .credential-item img {
    height: 220px;
  }
  
  .map__info {
    margin-top: 1.5rem;
  }
}

/* Section styles */
section {
  padding: 3.5rem 1.25rem;
}

.section-light {
  background-color: var(--secondary-color);
}

.section-dark {
  background-color: var(--section-dark-bg);
  color: var(--dark-color);
}

/* Ensure service items inside dark sections maintain their white background and dark text */
.section-dark .service-item {
  background-color: var(--white);
  color: var(--dark-color);
}

.section-dark .service-item h3 {
  color: var(--dark-color);
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
}

.section-dark .section-title {
  color: var(--dark-color);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* About page */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.about-content img {
  flex: 1 1 300px;
  max-width: 400px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  object-fit: cover;
}

.about-text {
  flex: 2 1 400px;
}

.about-text p {
  margin-bottom: 1rem;
}

/* Credentials Gallery */
.credentials-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

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

.credential-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.credential-item img:hover {
  transform: scale(1.05);
}

.credential-caption {
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Services page */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-item {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s ease-in-out;
}

.services-list .service-item {
  min-height: 350px;
}

.service-item:hover {
  transform: translateY(-4px);
}

/* Add spacing between service items when not in a grid */
.container > .service-item + .service-item {
  margin-top: 1rem;
}

.service-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  color: var(--dark-color);
}

.service-item p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* Gallery page */
.gallery-section-desc {
  margin-bottom: 2rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  background-color: #f8f8f8;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.gallery-grid--contain img {
  object-fit: contain;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Lightbox styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(5px);
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark-color);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.2s, transform 0.2s;
  z-index: 10000;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: white;
  transform: scale(1.1);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  line-height: 1;
  width: 50px;
  height: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
  
  .lightbox-prev,
  .lightbox-next {
    font-size: 1.5rem;
    padding: 0.3rem 0.7rem;
  }
}

/* Contact page */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 1rem;
}

.contact-info a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
}

.contact-info a:hover {
  color: #5a9dd8;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 2rem 1rem;
}

footer .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

footer ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

footer a {
  color: var(--white);
  font-size: inherit;
  transition: color 0.2s ease-in-out;
}

footer a:hover {
  color: var(--accent-color);
}

footer .privacy-link {
  color: inherit;
  text-decoration: underline;
  opacity: 0.8;
  font-size: inherit;
  white-space: nowrap;
}

footer .privacy-link:hover {
  opacity: 1;
  color: var(--accent-color);
}

.developer-credit {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Copyright year - automatically updated via JavaScript */
.copyright-year {
  /* Year is updated automatically by script.js on page load */
}

/* Social media icons styling */
.social-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* SVG icons encoded as data URIs - white fill for dark backgrounds */
.social-icon-instagram {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
}

/* Colored Instagram icon for light backgrounds */
.social-icon-instagram-colored {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E4405F'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
}

.social-icon-facebook {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
}

/* Colored Facebook icon for light backgrounds */
.social-icon-facebook-colored {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231877F2'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
}

.social-icon-tiktok {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19.59 6.69a4.83 4.83 0 0 1-3.77-4.25V2h-3.45v13.67a2.89 2.89 0 0 1-5.2 1.74 2.89 2.89 0 0 1 2.31-4.64 2.93 2.93 0 0 1 .88.13V9.4a6.84 6.84 0 0 0-1-.05A6.33 6.33 0 0 0 5 20.1a6.34 6.34 0 0 0 10.86-4.43v-7a8.16 8.16 0 0 0 4.77 1.52v-3.4a4.85 4.85 0 0 1-1-.1z'/%3E%3C/svg%3E");
}

/* Colored TikTok icon for light backgrounds */
.social-icon-tiktok-colored {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000000'%3E%3Cpath d='M19.59 6.69a4.83 4.83 0 0 1-3.77-4.25V2h-3.45v13.67a2.89 2.89 0 0 1-5.2 1.74 2.89 2.89 0 0 1 2.31-4.64 2.93 2.93 0 0 1 .88.13V9.4a6.84 6.84 0 0 0-1-.05A6.33 6.33 0 0 0 5 20.1a6.34 6.34 0 0 0 10.86-4.43v-7a8.16 8.16 0 0 0 4.77 1.52v-3.4a4.85 4.85 0 0 1-1-.1z'/%3E%3C/svg%3E");
}

/* Social media button links (coloured buttons with icons) */
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, opacity 0.2s ease;
  min-width: 160px;
}

.social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  color: white;
  outline: 3px solid var(--dark-color);
  outline-offset: 2px;
}

.social-btn-instagram {
  background: #E4405F;
}

.social-btn-facebook {
  background: #1877F2;
}

.social-btn-tiktok {
  background: #000;
}

.social-btn .social-icon {
  width: 24px;
  height: 24px;
}

/* Mobile menu toggle button */
.menu-toggle {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  display: none;
  order: 2;
}

/* Responsive navigation */
@media (max-width: 768px) {
  header {
    overflow: visible;
  }
  header .container {
    flex-wrap: nowrap;
  }
  .header-logo-link {
    order: 1;
    flex: 1;
  }
  .menu-toggle {
    display: block;
    order: 2;
    margin-left: auto;
  }
  nav {
    order: 3;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    z-index: 100;
    transform: translateX(110%);
    transition: transform 0.3s ease-in-out;
  }
  nav.show {
    transform: translateX(0);
  }
  nav ul {
    flex-direction: column;
    gap: 1rem;
    background-color: var(--dark-color);
    padding: 1rem;
    box-shadow: -2px 2px 4px rgba(0,0,0,0.1);
    margin: 0;
  }
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}

/* ===== Utility Classes ===== */

/* Text Alignment */
.text-center {
  text-align: center;
}

/* Margins - using t-shirt sizing (xs, sm, md, lg, xl) */
.m-0 {
  margin: 0;
}

.mt-xs {
  margin-top: 0.5rem;
}

.mt-sm {
  margin-top: 1rem;
}

.mt-md {
  margin-top: 1.5rem;
}

.mt-lg {
  margin-top: 2rem;
}

.mb-sm {
  margin-bottom: 1rem;
}

.mb-md {
  margin-bottom: 1.5rem;
}

.mb-lg {
  margin-bottom: 2rem;
}

.ml-sm {
  margin-left: 1.2rem;
}

.ml-md {
  margin-left: 1.5rem;
}

/* Typography */
.text-sm {
  font-size: 0.85rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.05rem;
}

.text-xl {
  font-size: 1.1rem;
}

.font-semibold {
  font-weight: 600;
}

.font-normal {
  font-weight: normal;
}

.italic {
  font-style: italic;
}

/* Opacity */
.opacity-90 {
  opacity: 0.9;
}

.opacity-95 {
  opacity: 0.95;
}

/* Colors */
.text-muted {
  color: #666;
}

.text-dark {
  color: var(--dark-color);
}

.text-warning {
  color: #856404;
}

/* Borders */
.border-0 {
  border: 0;
}

/* Layout - Flexbox */
.flex-center {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.flex-center-gap-sm {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
}

.flex-center-gap-md {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

/* Layout - Grid */
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 1rem;
}

.grid-single {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* ===== Component Classes ===== */

/* Pricing Section */
.pricing__disclaimer {
  background: #fff9e6;
  padding: 1.2rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  text-align: center;
  border: 2px solid #f1d78c;
}

.pricing__disclaimer p {
  margin: 0;
  font-weight: 600;
  font-size: 1.05rem;
}

.pricing__addons {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border: 1px solid rgba(0,0,0,0.08);
  border-left: 4px solid var(--primary-color);
  border-radius: var(--border-radius);
}

/* Section Backgrounds */
.section--warning {
  background: #fff9e6;
}

.section--info {
  background: #f0f8ff;
}

.section--white {
  background: #fff;
}

/* Service Items */
.service__list-item {
  margin-top: 0.5rem;
  margin-left: 1.2rem;
}

.service__price {
  margin-top: 0.5rem;
}

/* Testimonials */
.testimonial {
  flex: 1 1 300px;
  max-width: 400px;
  padding: 1.5rem;
  background: #f8f9fa;
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  margin: 0;
}

@media (max-width: 768px) {
  .testimonial {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.testimonial__text {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial__author {
  font-weight: bold;
  color: var(--dark-color);
}

/* Social Links */
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.social-link__icon {
  width: 28px;
  height: 28px;
}

/* Call-to-Action Buttons */
.cta__button--map {
  display: inline-block;
  background: var(--accent-green-dark);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, outline 0.2s ease;
}

.cta__button--map:hover {
  background: var(--accent-green-darker);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  outline: 3px solid var(--dark-color);
  outline-offset: 2px;
}

/* Closed Periods */
.closed-periods {
  padding: 2rem;
  background: linear-gradient(135deg, #fff9e6 0%, #fff2d9 100%);
  border-radius: var(--border-radius);
  border: 2px solid #f1d78c;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

.closed-periods__title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #8a6a0a;
}

.closed-periods__item {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.closed-periods__item strong {
  color: #8a6a0a;
}

/* Map */
.map {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.map iframe {
  border: 0;
  pointer-events: none;
}

.map--interactive iframe {
  pointer-events: auto;
}

.map__info {
  text-align: center;
}

.map__info p:first-child {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.map__note {
  color: #666;
  margin-top: 1rem;
}