/* ============================================================
   Pets Canyon — Shared Custom Stylesheet
   Bootstrap 5.3 base, custom design system on top
   ============================================================ */

:root {
  --pc-primary:       #0E8A7B;
  --pc-primary-dark:  #0a6b5e;
  --pc-primary-light: #E8F5F2;
  --pc-secondary:     #FF6B35;
  --pc-dark:          #1C3A35;
  --pc-text:          #374151;
  --pc-muted:         #6B7280;
  --pc-border:        #E5E7EB;
  --pc-bg:            #F8FAFA;
  --pc-accent:        #4ECDC4;
}

/* ---- Base ---- */
body {
  font-family: 'Onest', sans-serif;
  color: var(--pc-text);
  background: #fff;
}

/* ---- Navbar ---- */
.pc-navbar {
  background: #fff;
  box-shadow: 0 1px 0 var(--pc-border);
}

.pc-navbar .navbar-brand img {
  height: 42px;
  border-radius: 8px;
}

.pc-navbar .navbar-brand span {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--pc-primary);
  letter-spacing: -0.01em;
}

.pc-navbar .nav-link {
  color: var(--pc-text) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem !important;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

.pc-navbar .nav-link:hover {
  color: var(--pc-primary) !important;
  background: var(--pc-primary-light);
}

/* ---- Buttons ---- */
.btn-pc-primary {
  background: var(--pc-primary);
  border: 2px solid var(--pc-primary);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.btn-pc-primary:hover {
  background: var(--pc-primary-dark);
  border-color: var(--pc-primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-pc-outline {
  background: transparent;
  border: 2px solid var(--pc-primary);
  color: var(--pc-primary);
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-pc-outline:hover {
  background: var(--pc-primary);
  color: #fff;
  transform: translateY(-1px);
}

.btn-pc-white {
  background: #fff;
  border: 2px solid #fff;
  color: var(--pc-primary);
  font-weight: 700;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
}

.btn-pc-white:hover {
  background: #f0fffe;
  color: var(--pc-primary-dark);
  border-color: #f0fffe;
  transform: translateY(-1px);
}

.btn-pc-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.btn-pc-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transform: translateY(-1px);
}

/* ---- Section helpers ---- */
.bg-section { background: var(--pc-bg); }

.section-label {
  display: inline-block;
  color: var(--pc-primary);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--pc-dark);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--pc-muted);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Hero ---- */
.pc-hero {
  background: linear-gradient(135deg, #0E8A7B 0%, #1C3A35 100%);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.pc-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: 520px;
  height: 520px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.pc-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 360px;
  height: 360px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.4rem;
}

.pc-hero h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}

.pc-hero .lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-preview-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}

.hero-stat-mini .value {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.hero-stat-mini .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  margin-top: 1px;
}

/* ---- Stats Strip ---- */
.pc-stats-strip {
  background: var(--pc-dark);
  padding: 1.2rem 0;
}

.stat-item {
  text-align: center;
  padding: 0.6rem 1.2rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.stat-item:last-child { border-right: none; }

.stat-item .val {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--pc-accent);
  letter-spacing: -0.02em;
}

.stat-item .lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ---- How It Works tabs ---- */
.hiw-tabs .nav-link {
  background: #F3F4F6;
  border: none;
  border-radius: 10px;
  color: var(--pc-text) !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.8rem 1.75rem !important;
  margin: 0 4px;
  transition: background 0.2s, color 0.2s;
}

.hiw-tabs .nav-link i { font-size: 1rem; }

.hiw-tabs .nav-link.active {
  background: var(--pc-primary) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(14,138,123,0.3);
}

/* ---- Step cards ---- */
.step-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: #fff;
  border: 1px solid var(--pc-border);
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
  margin-bottom: 0.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.step-card:hover {
  box-shadow: 0 6px 24px rgba(14,138,123,0.1);
  transform: translateX(3px);
}

.step-num {
  width: 44px;
  min-width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--pc-primary-light);
  color: var(--pc-primary);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h5 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--pc-dark);
  margin-bottom: 0.2rem;
}

.step-card p {
  color: var(--pc-muted);
  font-size: 0.87rem;
  margin: 0;
  line-height: 1.5;
}

/* ---- Feature cards ---- */
.feature-card {
  background: #fff;
  border: 1px solid var(--pc-border);
  border-radius: 14px;
  padding: 1.75rem 1.4rem;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: var(--pc-primary);
  box-shadow: 0 8px 32px rgba(14,138,123,0.1);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--pc-primary-light);
  color: var(--pc-primary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.feature-card h5 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--pc-dark);
  margin-bottom: 0.45rem;
}

.feature-card p {
  color: var(--pc-muted);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.55;
}

/* ---- Vet cards ---- */
.vet-card {
  background: #fff;
  border: 1px solid var(--pc-border);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.vet-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.vet-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--pc-primary-light);
  color: var(--pc-primary);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
}

.vet-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #ECFDF5;
  color: #059669;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 0.5rem;
}

.rating-stars { color: #F59E0B; }

.vet-speciality {
  color: var(--pc-muted);
  font-size: 0.82rem;
}

/* ---- For Vets section ---- */
.pc-for-vets {
  background: linear-gradient(135deg, var(--pc-dark) 0%, #0E8A7B 100%);
  padding: 88px 0;
}

.pc-for-vets .section-title { color: #fff; }

.pc-for-vets .section-label { color: var(--pc-accent); }

.vets-benefit {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.93rem;
  margin-bottom: 0.65rem;
}

.vets-benefit i { color: var(--pc-accent); font-size: 1rem; }

.vets-stat-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 1.25rem;
  text-align: center;
}

.vets-stat-box .val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--pc-accent);
  letter-spacing: -0.02em;
}

.vets-stat-box .lbl {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  margin-top: 2px;
}

/* ---- Testimonials ---- */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--pc-border);
  border-radius: 16px;
  padding: 2rem 1.6rem;
  height: 100%;
}

.testimonial-card p {
  color: var(--pc-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.t-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--pc-primary-light);
  color: var(--pc-primary);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Blog cards ---- */
.blog-card {
  background: #fff;
  border: 1px solid var(--pc-border);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-4px);
  color: inherit;
}

.blog-card-thumb {
  height: 160px;
  background: var(--pc-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  flex-shrink: 0;
}

.blog-card-body {
  padding: 1.2rem 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-tag {
  display: inline-block;
  background: var(--pc-primary-light);
  color: var(--pc-primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card h6 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--pc-dark);
  line-height: 1.4;
  margin-bottom: 0.4rem;
}

.blog-card p {
  color: var(--pc-muted);
  font-size: 0.83rem;
  line-height: 1.5;
  flex: 1;
}

.blog-card .read-more {
  color: var(--pc-primary);
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 0.75rem;
}

/* ---- CTA Banner ---- */
.pc-cta-banner {
  background: linear-gradient(135deg, var(--pc-accent) 0%, var(--pc-primary) 100%);
  padding: 88px 0;
  text-align: center;
}

.pc-cta-banner h2 {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pc-cta-banner p {
  color: rgba(255,255,255,0.84);
  font-size: 1.05rem;
}

/* ---- Footer ---- */
.pc-footer {
  background: var(--pc-dark);
  padding: 64px 0 28px;
}

.pc-footer .brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.pc-footer .footer-tagline {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 270px;
}

.pc-footer .footer-col-title {
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.pc-footer .footer-link {
  display: block;
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  font-size: 0.87rem;
  margin-bottom: 0.55rem;
  transition: color 0.15s;
}

.pc-footer .footer-link:hover { color: #fff; }

.pc-footer .footer-social a {
  color: rgba(255,255,255,0.5);
  font-size: 1.15rem;
  text-decoration: none;
  transition: color 0.15s;
}

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

.pc-footer .footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 2rem 0 1.25rem;
}

.pc-footer .footer-bottom {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
}

/* ---- Online badge ---- */
.badge-online {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ECFDF5;
  color: #059669;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

.badge-online::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
}

/* ---- Article / Blog pages ---- */
.article-hero {
  background: var(--pc-bg);
  padding: 56px 0 0;
  border-bottom: 1px solid var(--pc-border);
}

.article-hero .article-category {
  display: inline-block;
  background: var(--pc-primary-light);
  color: var(--pc-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.article-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--pc-dark);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.article-hero .article-lead {
  font-size: 1.1rem;
  color: var(--pc-muted);
  line-height: 1.65;
  max-width: 680px;
}

.article-hero img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  display: block;
}

.article-body {
  padding: 56px 0 72px;
}

.article-body .article-content {
  max-width: 720px;
  margin: 0 auto;
}

.article-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--pc-text);
  margin-bottom: 1.25rem;
}

.article-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pc-dark);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
}

.article-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pc-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.article-body ul {
  padding-left: 1.4rem;
  margin-bottom: 1.25rem;
}

.article-body ul li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--pc-text);
  margin-bottom: 0.35rem;
}

.article-body .article-intro {
  font-size: 1.08rem;
  color: var(--pc-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--pc-border);
}

.article-cta {
  background: var(--pc-primary-light);
  border: 1px solid rgba(14,138,123,0.15);
  border-radius: 14px;
  padding: 1.75rem 2rem;
  margin-top: 3rem;
}

.article-cta p {
  color: var(--pc-dark) !important;
  margin-bottom: 1rem;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .article-hero h1 { font-size: 1.75rem; }
  .article-hero { padding: 40px 0 0; }
  .article-body { padding: 36px 0 56px; }
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .pc-hero h1 { font-size: 2.3rem; }
  .section-title { font-size: 1.85rem; }
  .pc-for-vets { padding: 60px 0; }
  .pc-cta-banner { padding: 60px 0; }
}

@media (max-width: 767.98px) {
  .pc-hero { padding: 72px 0 60px; }
  .pc-hero h1 { font-size: 2rem; }
  .pc-hero .lead { font-size: 1rem; }
  .section-title { font-size: 1.65rem; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 0.75rem 0; }
  .stat-item:last-child { border-bottom: none; }
  .pc-cta-banner h2 { font-size: 1.75rem; }
  .hiw-tabs .nav-link { padding: 0.65rem 1.25rem !important; font-size: 0.85rem; }
}
