/* styles.css - Shared across all pages */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
:root {
  --white: #ffffff;
  --light-gray: #f8f8f8;
  --dark-brown: #463E31;
  --accent: #8b7355;
  --light-brown: #a08c70;
}
body {
  background-color: var(--white);
  color: #333;
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Header */
header {
  background-color: var(--dark-brown);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  position: relative;
}
.logo img {
  height: 60px;
}
nav ul {
  display: flex;
  list-style: none;
}
nav ul li {
  margin-left: 30px;
}
nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
nav ul li a:hover {
  color: var(--accent);
}
.mobile-menu {
  display: none;
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
  padding: 5px 10px;
}
/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn:hover {
  background-color: var(--dark-brown);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* Fullscreen Image */
.fullscreen-image {
  width: 100%;
  height: 50vh;
  overflow: hidden;
  position: relative;
}
.fullscreen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
/* Hero Section */
.hero {
  padding: 80px 0;
  background-color: var(--light-gray);
  text-align: center;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.hero h2 {
  font-size: 48px;
  color: var(--dark-brown);
  margin-bottom: 20px;
}
.hero p {
  font-size: 20px;
  color: #555;
  margin-bottom: 30px;
}
/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 36px;
  color: var(--dark-brown);
  margin-bottom: 15px;
}
.section-title p {
  font-size: 18px;
  color: #777;
  max-width: 700px;
  margin: 0 auto;
}
/* Services */
.services {
  padding: 80px 0;
  background-color: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.service-card {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
  border-left: 4px solid var(--accent);
}
.service-card:hover {
  transform: translateY(-10px);
}
.service-icon {
  font-size: 50px;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 22px;
  color: var(--dark-brown);
  margin-bottom: 15px;
}
.service-card p {
  color: #777;
  margin-bottom: 20px;
}
.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}
.all-services-btn-wrapper {
  text-align: center;
    margin-top: 40px; /* Add space above the button */
}
/* About */
.about {
  padding: 40px 0 10px 0; /* 40px top, 80px bottom */
  background-color: var(--light-gray);
}
.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}
.about-text {
  flex: 1;
}
.about-text h2 {
  font-size: 36px;
  color: var(--dark-brown);
  margin-bottom: 20px;
}
.about-text p {
  margin-bottom: 20px;
  color: #555;
}
.about-image {
  flex: 1;
  text-align: center;
}
.about-image img {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
/* Pricing */
.pricing {
  padding: 80px 0;
  background-color: var(--white);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.pricing-card.featured {
  border: 2px solid var(--accent);
  transform: scale(1.05);
}
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}
.pricing-icon {
  font-size: 50px;
  color: var(--accent);
  margin-bottom: 20px;
}
.pricing-card h3 {
  font-size: 24px;
  color: var(--dark-brown);
  margin-bottom: 15px;
}
.pricing-card .price {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 25px;
}
.pricing-card ul {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}
.pricing-card ul li {
  padding: 10px 0;
  position: relative;
  padding-left: 25px;
}
.pricing-card ul li::before {
  content: '✔'; /* Heavy checkmark */
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}
.pricing-note {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  border-left: 4px solid var(--accent);
}
.pricing-note p {
  margin-bottom: 10px;
}
.pricing-note p:last-child {
  margin-bottom: 0;
}
.important-note {
  font-size: 14px;
  color: var(--dark-brown);
  margin: 5px 0;
}
/* Contact */
.contact {
  padding: 80px 0;
  background-color: var(--light-gray);
}
.contact-container {
  display: flex;
  gap: 50px;
}
.contact-info {
  flex: 1;
}
.contact-info h2 {
  font-size: 36px;
  color: var(--dark-brown);
  margin-bottom: 20px;
}
.contact-info p {
  color: #555;
  margin-bottom: 30px;
}
.contact-details {
  margin-bottom: 30px;
}
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.contact-item i {
  width: 30px;
  color: var(--accent);
  font-size: 18px;
}
.contact-form {
  flex: 1;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-brown);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea {
  min-height: 150px;
  resize: vertical;
}
/* Map */
.map-section {
  height: 400px;
}
.map-container {
  width: 100%;
  height: 100%;
}
/* ===== GOOGLE REVIEW POPUP ===== */
.google-review-popup {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  padding: 20px;
  width: 320px;
  z-index: 9999;
  border-left: 4px solid var(--accent);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
  display: none;
}
.google-review-popup.show {
  transform: translateY(0);
  opacity: 1;
  display: block;
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}
.review-title {
  font-size: 18px;
  color: var(--dark-brown);
  font-weight: 600;
  margin: 0;
}
.close-review {
  background: none;
  border: none;
  font-size: 20px;
  color: #777;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}
.close-review:hover {
  color: var(--accent);
}
.review-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.review-stars {
  display: flex;
  margin-bottom: 10px;
}
.review-stars i {
  color: #FFC107;
  font-size: 18px;
  margin: 0 2px;
}
.review-rating {
  margin-bottom: 15px;
}
.rating-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-brown);
}
.rating-text {
  font-size: 14px;
  color: #777;
}
.review-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  width: 100%;
  border: none;
  cursor: pointer;
}
.review-btn:hover {
  background: var(--dark-brown);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.review-btn i {
  font-size: 18px;
}
/* ===== DIERENBOOK SPECIFIC STYLES ===== */
/* Dierenboek section matching index.html styling */
.dierenboek {
  padding: 80px 0;
  background-color: var(--white);
}
/* Gallery grid matching services grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
/* Animal cards matching service cards */
.animal-card {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
  border-left: 4px solid var(--accent);
  cursor: pointer;
}
.animal-card:hover {
  transform: translateY(-10px);
}
.animal-image {
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}
.animal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%; /* Default position */
}
.animal-card:hover .animal-image img {
  transform: scale(1.05);
}
.animal-info h3 {
  font-size: 22px;
  color: var(--dark-brown);
  margin-bottom: 15px;
}
.animal-info p {
  color: #777;
  margin-bottom: 20px;
  line-height: 1.6;
}
.animal-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}
/* Verbeterde afbeelding positioning voor specifieke dieren */
.animal-card[data-animal="paco"] .animal-image img {
  object-position: center 20%;
}
.animal-card[data-animal="kara"] .animal-image img {
  object-position: center 40%;
}
.animal-card[data-animal="smook"] .animal-image img {
  object-position: center 30%;
}
/* Animal Modal */
.animal-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  overflow: auto;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: var(--dark-brown);
  transition: color 0.3s;
  z-index: 2001; /* Added to ensure it's above modal content */
}
.close-modal:hover {
  color: var(--accent);
}
.modal-animal-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 25px;
  position: relative;
}
.modal-animal-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #f5f5f5;
}
.modal-animal-info h3 {
  font-size: 28px;
  color: var(--dark-brown);
  margin-bottom: 20px;
  text-align: center;
}
.modal-animal-info p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 16px;
}
.modal-animal-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #eee;
  color: var(--accent);
  font-weight: 500;
  font-size: 16px;
}
/* ===== DIENSTEN PAGE SPECIFIC STYLES ===== */
/* Page Hero */
.page-hero {
  background-color: var(--light-gray);
  padding: 100px 0;
  text-align: center;
}
.page-hero h1 {
  font-size: 48px;
  color: var(--dark-brown);
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 20px;
  color: #555;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
/* Services Overview */
.services-overview {
  padding: 80px 0;
  background-color: var(--white);
}
.services-quick-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.service-quick-card {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
  border-left: 4px solid var(--accent);
  cursor: pointer;
}
.service-quick-card:hover {
  transform: translateY(-10px);
}
.quick-icon {
  font-size: 50px;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-quick-card h3 {
  font-size: 22px;
  color: var(--dark-brown);
  margin-bottom: 15px;
}
.service-quick-card p {
  color: #777;
}
/* Detailed Services Page */
.detailed-services-page {
  padding: 80px 0;
  background-color: var(--light-gray);
}
.service-category {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  overflow: hidden;
}
.category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background-color: var(--dark-brown);
  color: white;
  cursor: pointer;
}
.category-icon {
  font-size: 40px;
}
.category-title h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
.category-title p {
  font-size: 16px;
  opacity: 0.9;
}
.category-content {
  padding: 30px;
}
/* Category Hero with Image */
.category-hero {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  padding: 30px;
  background: var(--light-gray);
  border-radius: 10px;
}
.category-hero img {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* VIDEO: 100% identical to old GIF */
.category-hero .hero-video {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #000; /* fallback while loading */
  flex-shrink: 0;   /* prevents shrinking on small screens */
}

.category-hero-text {
  flex: 1;
}
.category-hero-text p {
  font-size: 18px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}
/* Sub-categories */
.sub-category {
  margin-bottom: 40px;
}
.subcategory-title {
  font-size: 24px;
  color: var(--dark-brown);
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--light-gray);
}
.subcategory-content {
  max-height: none;
  overflow: visible;
}
/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}
.service-item {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s;
  border-left: 3px solid var(--accent);
  position: relative;
}
.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.service-item-icon {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 15px;
}
.service-item h5 {
  font-size: 18px;
  color: var(--dark-brown);
  margin-bottom: 10px;
}
.service-item p {
  color: #777;
  font-size: 14px;
  margin-bottom: 15px;
}
.service-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 15px;
}
.service-info-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}
.service-info-btn:hover {
  background: var(--dark-brown);
}
/* Service Highlights */
.service-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
}
.highlight-item i {
  color: var(--accent);
  font-size: 18px;
}
/* Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.pricing-card-small {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s;
}
.pricing-card-small:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.pricing-card-small h5 {
  font-size: 18px;
  color: var(--dark-brown);
  margin-bottom: 15px;
}
.price-main {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}
/* Extras & Packages */
.extras, .package-pricing {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
}
.extras h5, .package-pricing h5 {
  font-size: 18px;
  color: var(--dark-brown);
  margin-bottom: 20px;
  text-align: center;
}
.extra-item, .package-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}
.extra-item:last-child, .package-item:last-child {
  border-bottom: none;
}
/* Walk Options */
.walk-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}
.walk-option {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}
.walk-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.walk-option.featured {
  border: 2px solid var(--accent);
  transform: scale(1.05);
}
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.walk-option h5 {
  font-size: 20px;
  color: var(--dark-brown);
  margin-bottom: 15px;
}
.walk-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}
.walk-option ul {
  list-style: none;
  text-align: left;
}
.walk-option ul li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
}
.walk-option ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}
/* Stamp Card */
.stamp-card-promo {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark-brown), var(--accent));
  color: var(--white);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.stamp-icon {
  font-size: 50px;
  margin-right: 20px;
}
.stamp-text strong {
  font-size: 20px;
  display: block;
  margin-bottom: 5px;
}
/* Service Modal */
.service-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}
.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 30px;
  border-radius: 10px;
  width: 80%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}
.close-modal:hover {
  color: var(--accent);
}
.modal-body h3 {
  color: var(--dark-brown);
  margin-bottom: 20px;
  font-size: 24px;
}
.modal-body p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.modal-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin: 20px 0;
}
/* Service Modal Content - Single Box Style */
.service-modal-content {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 25px;
  margin: 20px 0;
  border-left: 4px solid var(--accent);
}
.service-modal-content h4 {
  color: var(--dark-brown);
  margin: 20px 0 10px 0;
  font-size: 18px;
}
.service-modal-content h4:first-child {
  margin-top: 0;
}
.service-modal-content p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.6;
}
.service-modal-content p:last-child {
  margin-bottom: 0;
}
.service-modal-content strong {
  color: var(--dark-brown);
}
.service-modal-content em {
  color: var(--accent);
  font-style: italic;
}
/* Contact Button */
.contact-btn-small {
  text-align: center;
  margin-top: 30px;
}
/* ===== FOOTER STYLES ===== */
footer {
  background-color: var(--dark-brown);
  color: var(--light-gray);
  padding: 50px 0 20px;
  width: 100%;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
  gap: 30px;
}
.footer-column {
  max-width: 600px;
  width: 100%;
}
.footer-column h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--white);
}
.footer-column ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}
.footer-column ul li {
  margin-bottom: 0;
}
.footer-column ul li a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s;
  padding: 5px 10px;
}
.footer-column ul li a:hover {
  color: var(--white);
}
/* Footer Logo & Info */
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-direction: column;
}
.footer-logo img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
.footer-logo h3 {
  font-size: 20px;
  margin-bottom: 0;
  color: var(--white);
}
.footer-column p {
  color: var(--light-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}
/* Contact Info */
.contact-info {
  margin-top: 20px;
}
.contact-info p {
  margin: 8px 0;
  font-size: 14px;
  color: var(--light-gray);
  line-height: 1.4;
}
.contact-info strong {
  color: var(--white);
}
/* Legal Links */
.legal-links {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.legal-links a {
  color: var(--light-gray);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
.legal-links a:hover {
  color: var(--white);
}
/* Copyright */
.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-gray);
  font-size: 14px;
}
/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--light-gray);
  transition: all 0.3s;
}
.social-links a:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}
/* WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--accent);
  color: white;
  padding: 15px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s;
  z-index: 1000;
  font-weight: 500;
}
.whatsapp-widget:hover {
  background-color: var(--dark-brown);
  transform: scale(1.05);
}
.whatsapp-widget i {
  font-size: 24px;
}
.whatsapp-widget span {
  display: none;
}
/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--dark-brown);
    flex-direction: column;
    padding: 20px;
    z-index: 1000;
  }
  nav ul.show { display: flex; }
  nav ul li { margin: 10px 0; margin-left: 0; }
  .mobile-menu { display: block; }
  .page-hero h1 { font-size: 36px; }
  .page-hero p { font-size: 18px; }
  .fullscreen-image { height: 40vh; }
  .service-grid { grid-template-columns: 1fr; }
  .walk-option.featured { transform: none; }
  .stamp-card-promo { flex-direction: column; text-align: center; }
  .stamp-icon { margin-right: 0; margin-bottom: 15px; }
  .services-quick-nav { grid-template-columns: 1fr; }
  .category-hero {
    flex-direction: column;
    text-align: center;
  }
  .category-hero img {
    width: 300px;
    height: 300px;
  }
 .category-hero .hero-video {
    width: 300px;
    height: 300px;
  } 
  .about-content {
    flex-direction: column;
  }
  .contact-container {
    flex-direction: column;
  }
  .category-header {
    flex-direction: column;
    text-align: center;
  }
  .category-icon {
    margin-bottom: 15px;
  }
  .about-image img {
    width: 300px;
    height: 300px;
  }
  .modal-content {
    margin: 10% auto;
    padding: 30px 25px;
    width: 95%;
  }
   .close-modal {
    top: 10px;
    right: 15px;
    font-size: 32px;
    background: rgba(255,255,255,0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 2002; /* Higher z-index for mobile */
  }
    .modal-animal-image {
    height: 300px;
    margin-top: 10px;
  }
  /* Footer Mobile */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
 
  .footer-logo {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
 
  .footer-logo img {
    margin-right: 0;
    margin-bottom: 10px;
  }
 
  .footer-column {
    text-align: center;
  }
 
  .contact-info {
    text-align: center;
  }
 
  .legal-links {
    text-align: center;
  }
 
  .social-links {
    justify-content: center;
  }
 
  /* Google Review Popup Mobile */
  .google-review-popup {
    width: 280px;
    right: 10px;
    bottom: 80px;
  }
 
  .whatsapp-widget span {
    display: inline;
  }
  
}
@media (min-width: 768px) {
  .whatsapp-widget span { display: inline; }
}
@media (max-width: 480px) {
  .google-review-popup {
    width: calc(100% - 40px);
    right: 20px;
    left: 20px;
  }
 
  .footer-column ul {
    flex-direction: column;
    gap: 10px;
  }
}
/* ===== ADMIN STYLES ===== */
.admin-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 40px;
  background: var(--light-gray);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.login-form, .admin-panel {
  display: none;
}
.login-form.active, .admin-panel.active {
  display: block;
}
.admin-form-group {
  margin-bottom: 20px;
}
.admin-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-brown);
}
.admin-form-group input, .admin-form-group textarea, .admin-form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}
.animal-form {
  background: white;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.animals-list {
  background: white;
  padding: 30px;
  border-radius: 10px;
}
.animal-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
}
.animal-item:last-child {
  border-bottom: none;
}
.animal-info {
  flex: 1;
}
.delete-btn {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
}
.logout-btn {
  background: var(--dark-brown);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 20px;
}

/* === NEW: LIVE IMAGE POSITIONING (ADMIN PREVIEW) === */
.image-preview-container {
  margin-top: 15px;
  border: 2px dashed #ddd;
  border-radius: 8px;
  padding: 15px;
  background: #fafafa;
}

/* Same ratio as public gallery: 200px height in 300px+ card → aspect-ratio: 1 / 0.6 */
.dierenboek-ratio {
  aspect-ratio: 1 / 0.6;
}
.dierenboek-ratio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: object-position 0.1s ease;
}

.preview-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  background: #f0f0f0;
  cursor: move;
  user-select: none;
}
.preview-wrapper.dragging {
  cursor: grabbing;
}

.position-controls {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}
.position-input {
  width: 70px;
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}
.position-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
}
.position-btn:hover {
  background: var(--dark-brown);
}
.position-display {
  font-size: 14px;
  color: #555;
  margin-left: auto;
  white-space: nowrap;
}

.drag-instructions {
  text-align: center;
  color: #888;
  font-size: 14px;
  margin: 8px 0 0;
  padding: 8px;
  background: #f8f8f8;
  border-radius: 4px;
}

/* Responsive admin */
@media (max-width: 768px) {
  .admin-container {
    margin: 20px auto;
    padding: 20px;
  }
  .animal-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .position-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .position-display {
    margin-left: 0;
    text-align: center;
  }
}

/* ===== TEAM SECTION STYLES ===== */
.team {
  padding: 80px 0;
  background-color: var(--light-gray);
}

/* Add margin to team-grid to match services-grid spacing */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 40px; /* This matches the services-grid spacing */
}

.team-member {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.team-member:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 30px;
  text-align: center;
}

.team-info h3 {
  font-size: 24px;
  color: var(--dark-brown);
  margin-bottom: 8px;
}

.team-role {
  font-size: 18px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.team-info p:not(.team-role) {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.team-qualifications {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.qualification {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--dark-brown);
  font-weight: 500;
}

.qualification i {
  color: var(--accent);
}

/* ===== CENTERED ABOUT SECTION ===== */
.about-centered {
  text-align: center;
}

.about-centered .about-text {
  max-width: 800px;
  margin: 0 auto;
}

.about-centered .about-text h2 {
  margin-bottom: 30px;
}

.about-centered .about-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .team-info {
    padding: 20px;
  }
  
  .team-info h3 {
    font-size: 1.3rem;
  }
  
  .team-role {
    font-size: 1rem;
  }
}

/* Service quick card subtitle */
.service-quick-card .subtitle {
  display: block;
  font-style: italic;
  font-weight: bold;
  font-size: 14px;
  color: var(--accent);
  margin: -10px 0 15px 0;
  line-height: 1.3;
}

/* ——— FORCE HERO TITLE CENTER ON MOBILE ——— */
@media (max-width: 768px) {
  /* 1. Kill all padding/margin that breaks centering */
  .hero,
  .hero .container,
  .hero .hero-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 2. Force the title to be perfectly centered */
  #hero-title {
    font-size: 36px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    display: block !important;
    width: fit-content !important;
    margin: 0 auto 20px auto !important;
    padding: 0 15px !important; /* safe inner padding */
    transform: none !important;
  }

  /* 3. Ensure paragraph and button are centered */
  .hero p,
  .hero .btn {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .hero p {
    font-size: 18px !important;
    max-width: 90% !important;
    padding: 0 15px !important;
  }

  .hero .btn {
    width: fit-content !important;
    padding: 12px 30px !important;
  }
}