/* ===== CSS VARIABLES ===== */
:root {
  --green: #2e7d32;
  --orange: #e67e22;
  --red: #c0392b;
  --blue: #2980b9;
  --cream: #f9f5f0;
  --softcream: #fcf8f3;
  --darkbrown: #3d2b1f;
  --border-card: #ddd6cd;
}

/* ===== RESET & BASE ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, Helvetica, sans-serif; background: var(--cream); color: var(--darkbrown); line-height: 1.5; }
.container { max-width: 1200px; margin: 0 auto; padding: 0.5rem 1rem; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { padding-left: 1.2rem; }

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher { text-align: right; padding: 0.3rem 0 0.2rem; font-size: 0.75rem; }
.lang-btn { display: inline-block; padding: 0.1rem 0.6rem; border-radius: 20px; background: transparent; color: var(--darkbrown); margin-left: 0.2rem; opacity: 0.5; font-weight: 700; transition: 0.15s; }
.lang-btn.active { opacity: 1; background: var(--green); color: white; }
.lang-btn:hover { opacity: 1; text-decoration: none; }

/* ===== HEADER ===== */
header { padding: 0.8rem 0 0.4rem; border-bottom: 2px solid var(--green); margin-bottom: 0.4rem; }
.brand-lockup { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.1rem 0.4rem; }
.brand-lockup .paw { font-size: 1.6rem; color: var(--green); }
.brand-lockup .title-small { font-size: 1.1rem; font-weight: 300; color: var(--darkbrown); opacity: 0.7; }
.brand-lockup .title-big { font-size: 1.8rem; font-weight: 700; font-family: Georgia, serif; color: var(--green); letter-spacing: -0.5px; }

/* ===== NAVIGATION ===== */
nav { display: flex; flex-wrap: wrap; gap: 0.2rem 0.3rem; margin-top: 0.4rem; padding-top: 0.3rem; border-top: 1px solid var(--border-card); }
nav a { font-size: 0.78rem; font-weight: 600; color: var(--darkbrown); padding: 0.2rem 0.5rem; border-radius: 20px; transition: 0.15s; white-space: nowrap; }
nav a:hover, nav a.active { background: var(--green); color: white; text-decoration: none; }

/* ===== BREADCRUMBS ===== */
.breadcrumb { margin-bottom: 0.2rem; }

/* ===== FOOTER ===== */
.footer-note { text-align: center; font-size: 0.8rem; padding: 1.5rem 0 0.5rem; margin-top: 1.5rem; border-top: 1px solid var(--border-card); color: var(--darkbrown); opacity: 0.7; }
.footer-note a { color: var(--green); font-size: 0.7rem; }

/* ===== SECTION HEADER ===== */
.section-head { display: flex; align-items: center; gap: 0.6rem; margin: 0.5rem 0 0.5rem; }
.section-head i { font-size: 2rem; }
.section-head h2 { font-family: Georgia, serif; color: var(--green); font-size: 1.5rem; }

/* ===== SEARCH BAR ===== */
.search-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.5rem 0 1rem; background: white; padding: 0.6rem 1rem; border-radius: 30px; border: 1px solid var(--border-card); align-items: center; }
.search-bar input[type="text"] { flex: 1; min-width: 140px; padding: 0.4rem 0.8rem; border: 1px solid var(--border-card); border-radius: 20px; font-size: 0.95rem; outline: none; transition: 0.15s; }
.search-bar input[type="text"]:focus { border-color: var(--green); }
.search-bar select { padding: 0.4rem 0.8rem; border: 1px solid var(--border-card); border-radius: 20px; font-size: 0.9rem; background: white; outline: none; }
.search-bar select:focus { border-color: var(--green); }

/* ===== BUTTONS & BADGES ===== */
.btn { background: var(--green); color: white; border: none; padding: 0.6rem 1.8rem; border-radius: 30px; font-weight: 700; font-family: Georgia, serif; cursor: pointer; transition: 0.15s; font-size: 1rem; }
.btn:hover { background: #1f5a22; }
.btn-outline { background: transparent; border: 2px solid var(--green); color: var(--green); padding: 0.4rem 1.2rem; border-radius: 30px; cursor: pointer; font-weight: 700; text-decoration: none; display: inline-block; font-size: 0.85rem; transition: 0.15s; }
.btn-outline:hover { background: var(--green); color: white; text-decoration: none; }
.brush { display: inline-block; background: var(--green); color: white; padding: 0.4rem 1.2rem; border-radius: 30px; font-weight: 700; font-size: 0.9rem; font-family: Georgia, serif; border: none; cursor: pointer; transition: 0.15s; }
.brush:hover { opacity: 0.8; text-decoration: none; }
.status-badge { display: inline-block; padding: 0.15rem 0.6rem; border-radius: 20px; font-size: 0.7rem; font-weight: 700; }
.status-badge.missing { background: var(--red); color: white; }
.status-badge.found { background: var(--green); color: white; }
.back-link { display: inline-block; margin: 0.3rem 0 0.8rem; color: var(--blue); text-decoration: none; }
.back-link:hover { text-decoration: underline; }

/* ===== HOMEPAGE ===== */
.highlight { color: var(--green); font-weight: 700; }
.heart { display: inline-block; margin: 0.3rem 0; }
.facebook-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.facebook-link-card { background: white; padding: 0.6rem 1rem; border-radius: 8px; border: 1px solid var(--border-card); }
.facebook-link-card a { font-weight: 600; color: #1877f2; display: flex; align-items: center; gap: 0.4rem; }
.facebook-link-card a i { font-size: 1.2rem; }

/* ---- INDEX PAGE PARAGRAPH SPACING ---- */
.home-intro p {
    margin-bottom: 1rem;
}

/* ===== CAROUSEL ===== */
.carousel-section { margin: 1rem 0; }
.carousel-wrapper { position: relative; display: flex; align-items: center; gap: 0.2rem; }
.carousel-track { display: flex; gap: 0.8rem; overflow-x: auto; scroll-behavior: smooth; padding: 0.4rem 0.2rem; flex: 1; scrollbar-width: thin; -webkit-overflow-scrolling: touch; }
.carousel-track::-webkit-scrollbar { height: 6px; }
.carousel-track::-webkit-scrollbar-thumb { background: var(--border-card); border-radius: 10px; }
.carousel-item { flex: 0 0 auto; min-width: 160px; max-width: 200px; background: white; border-radius: 12px; padding: 0.6rem; text-align: center; border: 1px solid var(--border-card); cursor: pointer; transition: 0.2s; box-shadow: 0 2px 6px rgba(0,0,0,0.04); }
.carousel-item:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); border-color: var(--green); }
.carousel-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 8px; background: #eee; }
.carousel-item h4 { margin: 0.3rem 0 0.1rem; color: var(--green); font-family: Georgia, serif; }
.carousel-item p { font-size: 0.8rem; opacity: 0.7; margin: 0.1rem 0; }
.carousel-item .pet-tags { font-size: 0.7rem; opacity: 0.6; display: flex; flex-wrap: wrap; gap: 0.2rem; justify-content: center; margin-top: 0.2rem; }
.carousel-item .pet-tags span { background: var(--softcream); padding: 0.05rem 0.4rem; border-radius: 10px; }
.carousel-item.hidden { display: none; }
.carousel-btn { background: var(--softcream); border: 1px solid var(--border-card); border-radius: 50%; min-width: 40px; min-height: 40px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--darkbrown); cursor: pointer; flex-shrink: 0; transition: 0.15s; }
.carousel-btn:hover { background: var(--green); color: white; }

/* ===== MODAL ===== */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; z-index: 999; padding: 1rem; }
.modal-overlay.active { display: flex; }
.modal-box { background: white; max-width: 600px; width: 100%; border-radius: 16px; padding: 1.2rem; position: relative; max-height: 90vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.modal-close { position: absolute; top: 0.4rem; right: 0.8rem; font-size: 2rem; background: none; border: none; cursor: pointer; color: var(--darkbrown); opacity: 0.6; transition: 0.15s; }
.modal-close:hover { opacity: 1; }
.modal-gallery { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.6rem; }
.modal-gallery img, .modal-gallery video { max-width: 100%; max-height: 300px; object-fit: cover; border-radius: 8px; flex: 1 1 120px; background: #eee; }
.modal-name { font-family: Georgia, serif; font-size: 1.5rem; color: var(--green); }
.modal-info { font-size: 0.95rem; opacity: 0.8; margin: 0.2rem 0 0.4rem; }
.modal-details { display: flex; flex-wrap: wrap; gap: 0.3rem 0.8rem; font-size: 0.85rem; margin-bottom: 0.5rem; }
.modal-details span { background: var(--softcream); padding: 0.05rem 0.6rem; border-radius: 12px; }
.modal-contact { display: flex; flex-wrap: wrap; gap: 0.4rem 0.8rem; padding-top: 0.5rem; border-top: 1px solid var(--border-card); font-size: 0.9rem; }
.modal-contact a, .modal-contact span { display: inline-flex; align-items: center; gap: 0.2rem; color: var(--blue); }
.modal-contact span { color: var(--darkbrown); }

/* ===== GUIDE PAGE ===== */
.guide-hero { text-align: center; padding: 1rem 0.5rem; background: var(--softcream); border-radius: 16px; margin-bottom: 1rem; }
.guide-hero .title-small { font-size: 1.2rem; font-weight: 300; opacity: 0.7; }
.guide-hero .title-big { font-family: Georgia, serif; font-size: 2rem; color: var(--green); }
.guide-hero .subtitle { font-weight: 700; font-size: 0.9rem; margin: 0.2rem 0; }
.guide-hero .quote { font-style: italic; font-size: 1rem; color: var(--darkbrown); opacity: 0.8; margin-top: 0.4rem; }
.guide-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 1rem 0; }
.guide-tabs button { background: white; border: 2px solid var(--border-card); padding: 0.4rem 1.5rem; border-radius: 30px; font-weight: 700; cursor: pointer; font-size: 0.95rem; transition: 0.15s; }
.guide-tabs button.active { background: var(--green); border-color: var(--green); color: white; }
.guide-tabs button:hover:not(.active) { border-color: var(--green); }
.guide-content { display: none; }
.guide-content.active { display: block; }
.guide-safety { background: var(--softcream); padding: 1rem 1.2rem; border-radius: 12px; margin-bottom: 1.2rem; }
.guide-safety h4 { margin: 0.8rem 0 0.3rem; color: var(--darkbrown); }
.guide-safety ul { margin: 0.2rem 0 0.4rem; }
.guide-section-title { font-family: Georgia, serif; color: var(--green); margin: 1.2rem 0 0.6rem; }
.guide-tip-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
.guide-tip { background: white; padding: 0.8rem 1rem; border-radius: 12px; border: 1px solid var(--border-card); }
.guide-tip .ico { font-size: 1.8rem; display: block; }
.guide-tip b { display: block; margin: 0.2rem 0 0.1rem; color: var(--green); }
.guide-tip p { font-size: 0.85rem; opacity: 0.8; margin: 0; }
.journey-carousel-wrapper { background: var(--softcream); border-radius: 16px; padding: 0.8rem 0.5rem; margin: 1rem 0; }
.journey-carousel-track { overflow: hidden; position: relative; }
.journey-slide { display: none; animation: fade 0.3s ease; }
.journey-slide.active { display: block; }
@keyframes fade { 0% { opacity: 0.3; } 100% { opacity: 1; } }
.guide-card { background: white; padding: 1rem; border-radius: 12px; border: 1px solid var(--border-card); }
.guide-card img { width: 100%; height: 320px; object-fit: cover; border-radius: 8px; margin: 0.5rem 0; background: #eee; }
.guide-card h3 { font-family: Georgia, serif; margin: 0.3rem 0; }
.guide-card ul { columns: 1; column-gap: 1.5rem; margin: 0.2rem 0 0.6rem; }
.do-box { background: var(--green); color: white; padding: 0.6rem 0.8rem; border-radius: 8px; margin: 0.5rem 0; }
.do-box ul { margin: 0.2rem 0 0; padding-left: 1.2rem; }
.do-box a { color: white; text-decoration: underline; }
.note { font-style: italic; font-size: 0.9rem; opacity: 0.7; margin-top: 0.4rem; padding-top: 0.3rem; border-top: 1px dashed var(--border-card); }
.journey-nav { display: flex; gap: 0.6rem; justify-content: center; margin: 0.6rem 0 0.2rem; }
.journey-nav button { background: white; border: 1px solid var(--border-card); padding: 0.3rem 1.2rem; border-radius: 30px; font-weight: 600; cursor: pointer; transition: 0.15s; }
.journey-nav button:hover { background: var(--green); color: white; }
.journey-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 0.4rem; }
.journey-dots span { width: 12px; height: 12px; border-radius: 50%; background: var(--border-card); cursor: pointer; transition: 0.15s; }
.journey-dots span.active { background: var(--green); width: 20px; border-radius: 20px; }
.guide-final { background: var(--softcream); padding: 1rem 1.2rem; border-radius: 12px; margin: 1.2rem 0; text-align: center; }
.guide-final .paw-tagline { font-size: 1.1rem; font-weight: 700; color: var(--green); margin-top: 0.3rem; }
.coming-soon { text-align: center; padding: 1.5rem 0.5rem; }
.coming-soon i { font-size: 3rem; color: var(--green); }
.coming-soon h3 { font-family: Georgia, serif; color: var(--green); }
.cat-placeholder-grid { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin: 0.8rem 0; }
.cat-placeholder-grid img { width: 150px; height: 150px; object-fit: cover; border-radius: 12px; border: 1px solid var(--border-card); }

/* ===== GUIDE CARD SIDE-BY-SIDE ===== */
.guide-card-side {
  display: flex !important;
  flex-direction: row !important;
  gap: 1.5rem !important;
  padding: 0.8rem !important;
  align-items: stretch !important;
  background: white !important;
  border-radius: 12px !important;
  border: 1px solid var(--border-card) !important;
  overflow: hidden !important;
}
.guide-card-side .guide-card-image {
  flex: 0 0 40% !important;
  min-height: 280px !important;
  max-height: 450px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
}
.guide-card-side .guide-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 8px !important;
}
.guide-card-side .guide-card-content {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  padding: 0.2rem 0 !important;
  overflow-y: auto !important;
}
.guide-card-side .guide-card-content h3 {
  margin: 0.3rem 0 !important;
  font-family: Georgia, serif !important;
}
.guide-card-side .guide-card-content ul {
  margin: 0.2rem 0 0.4rem !important;
  padding-left: 1.2rem !important;
}
.guide-card-side .guide-card-content .do-box {
  margin: 0.3rem 0 !important;
  flex-shrink: 0 !important;
}
.guide-card-side .guide-card-content .do-box ul {
  margin: 0.1rem 0 !important;
}
.guide-card-side .guide-card-content .note {
  margin-top: 0.3rem !important;
  padding-top: 0.3rem !important;
  border-top: 1px dashed var(--border-card) !important;
  font-style: italic !important;
  font-size: 0.9rem !important;
  opacity: 0.7 !important;
  flex-shrink: 0 !important;
}
@media (max-width: 700px) {
  .guide-card-side {
    flex-direction: column !important;
  }
  .guide-card-side .guide-card-image {
    flex: 0 0 auto !important;
    min-height: 200px !important;
    max-height: 280px !important;
  }
}
@media (max-width: 480px) {
  .guide-card-side .guide-card-image {
    min-height: 180px !important;
    max-height: 220px !important;
  }
  .guide-card-side .guide-card-content h3 {
    font-size: 1rem !important;
  }
  .guide-card-side .guide-card-content ul {
    font-size: 0.85rem !important;
  }
}

/* ===== RESOURCES ===== */
.resources-card { transition: 0.2s; }
.resources-card:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,0.08) !important; border-color: var(--green) !important; }
.vet-list, .groomer-card, .walk-card { background: white; padding: 0.6rem 1rem; border-radius: 8px; border-left: 4px solid var(--blue); margin-bottom: 0.5rem; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.groomer-card { border-left-color: var(--orange); }
.walk-card { border-left-color: var(--green); }
.walk-photos { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.3rem; }
.walk-photos img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; border: 1px solid var(--border-card); }
.map-link { display: inline-block; margin-left: 0.5rem; font-size: 0.8rem; color: var(--blue); }
.tel { color: var(--darkbrown); font-weight: 600; }

/* ===== EVENTS ===== */
.events-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.event-card { background: white; padding: 1rem; border-radius: 12px; border: 1px solid var(--border-card); box-shadow: 0 2px 6px rgba(0,0,0,0.04); }
.event-date { font-size: 0.8rem; opacity: 0.7; display: block; }
.event-title { font-family: Georgia, serif; font-size: 1.1rem; color: var(--green); font-weight: 700; }
.event-details { font-size: 0.85rem; margin: 0.2rem 0; }
.event-description { font-size: 0.9rem; opacity: 0.8; margin: 0.3rem 0; }
.event-contact { font-size: 0.85rem; border-top: 1px solid var(--border-card); padding-top: 0.4rem; margin-top: 0.3rem; }
.no-events { opacity: 0.6; font-style: italic; }

/* ===== LOST & FOUND ===== */
.lost-pet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lost-pet-card { background: white; padding: 0.8rem; border-radius: 12px; border: 1px solid var(--border-card); box-shadow: 0 2px 6px rgba(0,0,0,0.04); }
.lost-pet-card img { width: 100%; max-height: 180px; object-fit: cover; border-radius: 6px; margin-bottom: 0.3rem; }
.lost-pet-card .contact-info { font-size: 0.85rem; margin: 0.3rem 0; }
.lost-pet-card .contact-info p { margin: 0.1rem 0; }

/* ===== ADMIN ===== */
.admin-wrapper { max-width: 1200px; margin: 0 auto; background: white; padding: 1.5rem; border-radius: 12px; border: 1px solid var(--border-card); }
.admin-wrapper h1 { font-family: Georgia, serif; color: var(--green); display: flex; align-items: center; gap: 0.75rem; font-size: 1.8rem; }
.dashboard-wrapper { max-width: 1200px; margin: 0 auto; padding: 1.5rem; }
.dashboard-title { font-family: Georgia, serif; color: var(--green); font-size: 1.8rem; margin-bottom: 0.3rem; }
.dashboard-subtitle { opacity: 0.7; margin-bottom: 1.5rem; }
.logout-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 0.5rem; padding: 1rem; background: var(--softcream); border-radius: 8px; }
.logout-bar .user { font-weight: 700; color: var(--green); }
.dashboard-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin: 2rem 0; }
.dashboard-card { background: white; border-radius: 12px; padding: 1.5rem 1rem; text-align: center; border: 1px solid var(--border-card); text-decoration: none; color: var(--darkbrown); transition: all 0.2s ease; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.dashboard-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); border-color: var(--green); }
.dashboard-card i { font-size: 2.5rem; color: var(--green); display: block; margin-bottom: 0.6rem; }
.dashboard-card .label { font-weight: 600; font-size: 0.95rem; }
.dashboard-card .count { font-size: 0.8rem; opacity: 0.6; display: block; margin-top: 0.2rem; }
.dashboard-card.danger i { color: var(--red); }
.dashboard-card.orange i { color: var(--orange); }
.dashboard-card.blue i { color: var(--blue); }

/* Admin Forms */
.form-group { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 1rem; }
.form-group label { font-weight: 600; font-size: 0.8rem; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { padding: 0.6rem; border: 1px solid var(--border-card); border-radius: 8px; font-size: 1rem; font-family: Arial, sans-serif; }
.form-group input[type="file"] { padding: 0.3rem; border: 1px dashed var(--border-card); background: var(--cream); cursor: pointer; }
.form-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.form-row .form-group { flex: 1; min-width: 140px; }
.section-divider { border-top: 3px solid var(--green); margin: 2rem 0 1.5rem; opacity: 0.3; }
.list-item { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; padding: 0.4rem 0; border-bottom: 1px dashed var(--border-card); gap: 0.3rem; }
.list-item .info { display: flex; align-items: center; gap: 0.6rem; flex: 1; min-width: 100px; }
.list-item .info img { width: 40px; height: 40px; object-fit: cover; border-radius: 4px; box-shadow: 0 0 0 1px var(--green); background: #eee; }
.list-item .actions { display: flex; gap: 0.3rem; flex-wrap: wrap; }
.pet-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1rem 0; }
.pet-column { background: var(--softcream); padding: 0.8rem; border-radius: 8px; }
.pet-column h3 { font-family: Georgia, serif; color: var(--green); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.4rem; }
.reply-box { background: var(--softcream); padding: 0.2rem 0.6rem; border-radius: 4px; }
.reply-form-box { background: var(--softcream); padding: 1.5rem; border-radius: 8px; margin: 1rem 0; border-left: 4px solid var(--blue); }
.reply-form-box textarea { width: 100%; padding: 0.6rem; border: 1px solid var(--border-card); border-radius: 8px; font-size: 1rem; }
.user-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; padding: 0.2rem 0; border-bottom: 1px solid #ddd; }
.user-row:last-child { border-bottom: none; }
.image-preview { display: inline-block; margin: 5px; border: 1px solid #ddd; border-radius: 4px; padding: 5px; background: white; text-align: center; }
.image-preview img { max-width: 80px; max-height: 80px; object-fit: cover; display: block; }
.image-preview .del-link { display: block; font-size: 0.7rem; color: var(--red); margin-top: 2px; }
.login-wrapper { max-width: 400px; margin: 3rem auto; background: white; padding: 2rem; border-radius: 12px; border: 1px solid var(--border-card); }
.login-wrapper h2 { font-family: Georgia, serif; color: var(--green); }
.login-wrapper .error { color: var(--red); margin-bottom: 0.5rem; }

/* ===== INJURED ===== */
.construction { text-align: center; padding: 2rem 1rem; }
.construction i { font-size: 3rem; color: var(--orange); }
.construction h2 { font-family: Georgia, serif; color: var(--green); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .guide-tip-grid { grid-template-columns: 1fr 1fr; }
  .events-grid, .lost-pet-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .dashboard-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .pet-columns { grid-template-columns: 1fr; }
  .facebook-links { grid-template-columns: 1fr; }
  .brand-lockup .title-big { font-size: 1.5rem; }
  .modal-box { margin: 0.5rem; padding: 1rem; }
  .search-bar { flex-direction: column; align-items: stretch; border-radius: 16px; padding: 0.8rem; }
  .search-bar input[type="text"], .search-bar select { width: 100%; }
}
@media (max-width: 480px) {
  .brand-lockup .title-big { font-size: 1.2rem; }
  .brand-lockup .title-small { font-size: 0.9rem; }
  .brand-lockup .paw { font-size: 1.1rem; }
  nav a { font-size: 0.65rem; padding: 0.15rem 0.35rem; }
  .section-head h2 { font-size: 1.1rem; }
  .guide-hero .title-big { font-size: 1.4rem; }
  .guide-tip-grid { grid-template-columns: 1fr; }
  .guide-tabs button { font-size: 0.8rem; padding: 0.3rem 1rem; }
  .journey-slide .guide-card img { height: 120px; }
  .dashboard-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .dashboard-card { padding: 0.8rem 0.5rem; }
  .dashboard-card i { font-size: 1.8rem; }
  .dashboard-card .label { font-size: 0.8rem; }
  .form-row { flex-direction: column; }
  .form-row .form-group { min-width: 100%; }
  .modal-box { padding: 0.6rem; margin: 0.3rem; }
  .modal-gallery img { width: 100px; height: 100px; }
  .carousel-item { min-width: 120px; max-width: 140px; padding: 0.4rem; }
  .carousel-btn { font-size: 1rem; min-width: 32px; min-height: 32px; }
  .brush { font-size: 0.7rem; padding: 0.2rem 0.6rem; }
  .list-item { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
  .list-item .actions { width: 100%; justify-content: flex-start; }
  .lost-pet-card img { max-height: 120px; }
  .lang-switcher { font-size: 0.65rem; }
}
button, .btn, .btn-outline, .brush, .carousel-btn, .dashboard-card {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ===== INDEX PAGE PARAGRAPH SPACING (added) ===== */
.home-intro p {
    margin-bottom: 1rem;
}