/* ================================================================
   Les Seigneurs de Montbel - Professional CSS Stylesheet
   Dog Breeding & Boarding Kennel Website
   ================================================================ */

/* ================================================================
   1. CSS VARIABLES & COLOR DEFINITIONS
   ================================================================ */
:root {
  --green-dark: #2c5530;
  --green-mid: #4a7c59;
  --green-light: #7fb069;
  --earth: #8b6f47;
  --earth-light: #c4a97d;
  --cream: #faf9f6;
  --cream-dark: #f0ece3;

  --text-dark: #1a1a1a;
  --text-light: #666;
  --border-light: #e5e5e5;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================================
   2. RESET & BASE STYLES
   ================================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--cream);
  overflow-x: hidden;
}

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

a {
  color: var(--green-mid);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--green-dark);
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ================================================================
   3. UTILITY CLASSES
   ================================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--green-mid);
  color: white;
}

.btn-primary:hover {
  background-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--green-mid);
  border-color: var(--green-mid);
}

.btn-outline:hover {
  background-color: var(--green-mid);
  color: white;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--earth);
  color: white;
}

.btn-secondary:hover {
  background-color: #704a2c;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-white:hover {
  background-color: var(--cream-dark);
}

/* Responsive Utilities */
.hidden-mobile {
  display: none;
}

.hidden-desktop {
  display: block;
}

/* ================================================================
   4. HEADER & NAVIGATION
   ================================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  background-color: transparent;
}

header.scrolled {
  background-color: white;
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.logo img {
  height: 55px;
  width: auto;
  transition: var(--transition);
}

/* White logo visible by default (transparent header on hero) */
.logo .logo-dark { display: none; }
.logo .logo-white { display: block; }

/* When header is scrolled: show dark logo, hide white */
header.scrolled .logo .logo-dark { display: block; }
header.scrolled .logo .logo-white { display: none; }

nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

nav a {
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

header.scrolled nav a {
  color: var(--text-dark);
}

header:not(.scrolled) nav a {
  color: white;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--green-mid);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  color: white;
  font-size: 1.5rem;
  border: none;
}

header.scrolled .mobile-menu-toggle {
  color: var(--green-dark);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* ================================================================
   5. PAGE HERO BANNER
   ================================================================ */
.page-hero {
  height: 50vh;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 60px;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  animation: fadeInUp 0.8s ease-out;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
  color: white;
}

/* ================================================================
   6. HERO SECTION (HOME PAGE)
   ================================================================ */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: white;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================================
   7. ABOUT SECTION
   ================================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-content h2 {
  margin-bottom: 1.5rem;
  color: var(--green-dark);
}

.about-content p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-mid);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ================================================================
   8. BREED CARDS & GRID
   ================================================================ */
.breed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.breed-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  animation: fadeIn 0.6s ease-out;
}

.breed-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.breed-card-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background-color: var(--cream-dark);
}

.breed-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.breed-card:hover .breed-card-image img {
  transform: scale(1.1);
}

.breed-card-content {
  padding: 2rem;
}

.breed-card h3 {
  margin-bottom: 0.5rem;
  color: var(--green-dark);
}

.breed-card-meta {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
}

.breed-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.6;
}

.breed-card .btn {
  width: 100%;
  text-align: center;
}

/* ================================================================
   9. BREED DETAIL PAGE
   ================================================================ */
.breed-detail {
  background-color: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.breed-hero {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-md);
}

.breed-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breed-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.breed-info h2 {
  color: var(--green-dark);
  margin-bottom: 2rem;
}

.characteristics-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.characteristics-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.characteristics-table td:first-child {
  font-weight: 600;
  color: var(--green-mid);
  width: 40%;
}

.breed-description {
  line-height: 1.8;
  color: var(--text-light);
  font-size: 1.05rem;
}

.breed-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.breed-gallery-item {
  position: relative;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.breed-gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.breed-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================================================================
   10. CTA BANNER SECTION
   ================================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 12px;
  margin: 3rem 0;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  min-width: 200px;
}

/* ================================================================
   11. PENSION FEATURES
   ================================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  animation: fadeIn 0.6s ease-out;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--green-mid);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--green-mid);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--green-dark);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ================================================================
   12. GALLERY GRID & LIGHTBOX
   ================================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.gallery-item {
  position: relative;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
  opacity: 0;
  transition: var(--transition);
  text-align: center;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
  height: auto;
  min-height: 300px;
}

@media (max-width: 768px) {
  .gallery-item-large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.gallery-overlay-icon {
  font-size: 2.5rem;
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--green-light);
}

/* ================================================================
   13. TESTIMONIALS
   ================================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  animation: fadeIn 0.6s ease-out;
  border-left: 4px solid var(--green-mid);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote {
  font-size: 2rem;
  color: var(--green-light);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--text-light);
}

.stars {
  color: #ffc107;
  margin-top: 1rem;
}

/* ================================================================
   14. LOCATION SECTION
   ================================================================ */
.location-section {
  background-color: var(--green-dark);
  color: white;
  padding: 4rem 2rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location-map {
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-lg);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-info h2 {
  color: white;
  margin-bottom: 2rem;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location-item {
  display: flex;
  gap: 1.5rem;
}

.location-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--green-light);
}

.location-text h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.location-text p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ================================================================
   15. CONTACT FORM & SIDEBAR
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  background-color: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.contact-form .btn {
  width: 100%;
  margin-top: 1rem;
}

.contact-sidebar {
  background-color: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.contact-sidebar h3 {
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  font-size: 1.35rem;
}

.contact-info-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.contact-info-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-label {
  font-weight: 600;
  color: var(--green-mid);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.contact-info-value {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-info-value a {
  color: var(--green-mid);
}

/* ================================================================
   16. FOOTER
   ================================================================ */
footer {
  background-color: var(--text-dark);
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-column h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--green-light);
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.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: white;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--green-mid);
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

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

/* ================================================================
   17. ANIMATIONS
   ================================================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays */
.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.fade-in-up:nth-child(4) { animation-delay: 0.4s; }
.fade-in-up:nth-child(5) { animation-delay: 0.5s; }

/* ================================================================
   18. SCROLL ANIMATIONS (Intersection Observer Triggered)
   ================================================================ */
.element-hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(20px);
}

.element-show {
  animation: slideIn 0.8s ease-out forwards;
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ================================================================
   19. RESPONSIVE DESIGN - TABLET (768px)
   ================================================================ */
@media (max-width: 968px) {
  .hidden-desktop {
    display: none;
  }

  .hidden-mobile {
    display: block;
  }

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

  nav {
    display: none;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }

  .breed-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-image img {
    height: 350px;
  }

  .breed-detail-grid {
    grid-template-columns: 1fr;
  }

  .breed-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-map {
    height: 300px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }

  .gallery-item {
    height: 200px;
  }
}

/* ================================================================
   20. RESPONSIVE DESIGN - MOBILE (max 768px)
   ================================================================ */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1.1rem;
  }

  .hero {
    height: 70vh;
  }

  .hero h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-cta {
    gap: 1rem;
  }

  .page-hero {
    height: 40vh;
    margin-top: 60px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .breadcrumb {
    font-size: 0.8rem;
    flex-wrap: wrap;
  }

  nav {
    display: none;
  }

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

  .header-content {
    padding: 1rem 1.5rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .breed-grid {
    grid-template-columns: 1fr;
  }

  .breed-card-image {
    height: 250px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 250px;
  }

  .breed-detail {
    padding: 1.5rem;
  }

  .breed-hero {
    height: 250px;
    margin-bottom: 2rem;
  }

  .breed-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .breed-gallery {
    grid-template-columns: 1fr;
  }

  .breed-gallery-item {
    height: 200px;
  }

  .characteristics-table {
    font-size: 0.9rem;
  }

  .characteristics-table td {
    padding: 0.75rem;
  }

  .cta-banner {
    padding: 2.5rem 1.5rem;
  }

  .cta-banner h2 {
    font-size: 1.75rem;
  }

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

  .location-map {
    height: 250px;
  }

  .location-details {
    gap: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-sidebar {
    padding: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }

  .gallery-item {
    height: 150px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .lightbox-close {
    top: -35px;
    font-size: 1.5rem;
  }
}

/* ================================================================
   21. EXTRA SMALL DEVICES (max 480px)
   ================================================================ */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .page-hero h1 {
    font-size: 1.5rem;
  }

  .section {
    padding: 1.5rem 0;
  }

  .btn {
    width: 100%;
    padding: 0.75rem 1rem;
  }

  .breed-card-content {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .contact-sidebar {
    padding: 1rem;
  }

  .cta-banner {
    padding: 2rem 1rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .footer-column h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .hero-cta {
    gap: 0.75rem;
  }

  .lightbox-image {
    max-width: 95%;
  }
}

/* ================================================================
   22. PRINT STYLES
   ================================================================ */
@media print {
  header,
  footer,
  .contact-form,
  .btn {
    display: none;
  }

  body {
    background-color: white;
    color: #000;
  }

  a {
    color: #000;
  }
}
