/* =============================================
   Simplified Pet Care — Global Styles
   ============================================= */

:root {
  --primary:       #2B5329;
  --primary-light: #4A7A47;
  --primary-dark:  #1A3318;
  --secondary:     #8B6914;
  --accent:        #5B8DB8;
  --bg:            #F8F4EF;
  --bg-section:    #EDE8E0;
  --text:          #1C1C1C;
  --text-muted:    #5A5A5A;
  --white:         #FFFFFF;
  --border:        #D4CCBC;
  --shadow:        0 4px 20px rgba(0,0,0,0.1);
  --radius:        8px;
}

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

body {
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

/* ── Navigation ─────────────────────────────── */
nav {
  background: var(--primary-dark);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  color: var(--white);
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.nav-logo span { color: #7BC47A; }

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  color: #C8D8C6;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active { color: #7BC47A; }

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: white;
  display: block;
  border-radius: 2px;
}

/* ── Hero ───────────────────────────────────── */
.hero {
  min-height: 88vh;
  /* Replace the gradient with a real image:
     background-image: url('images/hero.jpg');   */
  background: linear-gradient(145deg, var(--primary-dark) 0%, #2d6b2a 55%, #3d7a3a 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* If using a real background image, this overlay stays readable */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,40,18,0.6), rgba(20,40,18,0.45));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 2rem;
}

.hero-location {
  font-size: 0.85rem;
  color: #9FD49D;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  color: var(--white);
  margin-bottom: 1.1rem;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.hero-content p {
  font-size: 1.15rem;
  color: #CDE9CB;
  margin-bottom: 2.2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  letter-spacing: 0.3px;
  cursor: pointer;
}

.btn-primary {
  background: var(--secondary);
  color: white;
  border: 2px solid var(--secondary);
}

.btn-primary:hover {
  background: #9e7a1a;
  border-color: #9e7a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.65);
  margin-left: 0.75rem;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

/* ── Layout Utilities ───────────────────────── */
.section       { padding: 5rem 2rem; }
.section-alt   { background: var(--bg-section); }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.02rem;
}

.divider {
  width: 55px;
  height: 3px;
  background: var(--secondary);
  margin: 0.6rem auto 0.9rem;
  border-radius: 2px;
}

/* ── Page Banner ────────────────────────────── */
.page-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.page-banner h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: white;
  margin-bottom: 0.5rem;
}

.page-banner p {
  color: #A8D4A6;
  font-size: 1.05rem;
}

/* ── Service Cards ──────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.service-card h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-card .price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin-top: 0.75rem;
}

/* ── Mission Banner ─────────────────────────── */
.mission-section {
  background: var(--primary-dark);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}

.mission-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: #A8D4A6;
  margin-bottom: 2.2rem;
}

.mission-list {
  list-style: none;
  max-width: 660px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  text-align: left;
}

.mission-list li {
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  border-left: 4px solid #7BC47A;
  font-size: 1rem;
  color: #D0E9CE;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mission-list li::before {
  content: '✓';
  color: #7BC47A;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── Photo Grid ─────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.photo-placeholder {
  aspect-ratio: 4 / 3;
  background: #E5DFD5;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  overflow: hidden;
  border: 2px dashed var(--border);
  padding: 1rem;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── About Teaser (Home) ────────────────────── */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-teaser-img {
  background: var(--bg-section);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
}

.about-teaser-img img { width: 100%; height: auto; display: block; }

.about-teaser-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-teaser-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

/* ── Pricing Cards ──────────────────────────── */
.specialization {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.specialization p { font-size: 0.95rem; color: #D0E9CE; }
.specialization strong { color: white; font-size: 1rem; display: block; margin-bottom: 0.3rem; }

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

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
}

.pricing-card.featured { border-top-color: var(--secondary); background: #FFFDF7; }

.pricing-card h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.pricing-card .amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
  margin: 0.3rem 0;
}

.pricing-card .amount span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
  line-height: 1.65;
}

.pricing-note {
  background: #FFF8E7;
  border: 1px solid #E8D5A0;
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  color: #6B4E00;
  font-size: 0.92rem;
}

.questionnaire-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 3rem 0 0.5rem;
  flex-wrap: wrap;
}

/* ── Questionnaire Forms ────────────────────── */
.questionnaire {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
}

.questionnaire h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.65rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.questionnaire .q-subtitle {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.2px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--text);
  background: #FCFAF7;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(43,83,41,0.1);
}

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

.submit-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.3px;
  margin-top: 0.5rem;
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43,83,41,0.3);
}

/* ── About Page ─────────────────────────────── */
.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.about-photo {
  aspect-ratio: 3 / 4;
  background: var(--bg-section);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  text-align: center;
  padding: 1rem;
}

.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.about-text h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.about-text .location-tag {
  color: var(--text-muted);
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  display: block;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.85;
}

/* ── CTA Banner ─────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 5rem 2rem;
}

.cta-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary);
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer ─────────────────────────────────── */
footer {
  background: var(--primary-dark);
  color: #8FAE8D;
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.88rem;
}

footer strong { color: #A8D4A6; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  list-style: none;
}

.footer-links a {
  color: #8FAE8D;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: #A8D4A6; }

footer .footer-note {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: #6A8A68;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 1.2rem 2rem;
    gap: 1rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .about-teaser       { grid-template-columns: 1fr; gap: 2rem; }
  .about-content      { grid-template-columns: 1fr; }
  .about-photo        { aspect-ratio: 4 / 3; }
  .form-row           { grid-template-columns: 1fr; }
  .photo-grid         { grid-template-columns: 1fr 1fr; }

  .questionnaire { padding: 1.75rem; }
}

@media (max-width: 500px) {
  .photo-grid         { grid-template-columns: 1fr; }
  .btn-outline        { margin-left: 0; margin-top: 0.75rem; }
  .hero-content .btn-outline { display: none; }
}
