/* ============================================
   Hillcrest Kennel - Dog Boarding Landing Page
   Modern, conversion-optimized design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #2d3748;
  background: #fff;
  line-height: 1.7;
  padding-top: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a202c;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* --- Sticky Mobile Call Bar --- */
.mobile-call-bar {
  display: none;
}

@media (max-width: 767px) {
  .mobile-call-bar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    text-align: center;
    padding: 14px 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
  }

  .mobile-call-bar a {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .mobile-call-bar a::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2348bb78' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") no-repeat center / contain;
  }

  body {
    padding-top: 52px;
  }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  background: url('../images/hero-boarding-dog.jpg') center center / cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 30, 0.75) 0%, rgba(26, 32, 44, 0.85) 100%);
}

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

.hero h1 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-family: inherit;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta {
  background: linear-gradient(135deg, #d69e2e 0%, #b7791f 100%);
  color: #fff;
  font-size: 1.05rem;
  padding: 16px 40px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(214, 158, 46, 0.35);
  letter-spacing: 0.3px;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(214, 158, 46, 0.45);
  background: linear-gradient(135deg, #e2ab2e 0%, #c8870e 100%);
}

.btn-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(214, 158, 46, 0.3);
}

.btn-hero {
  font-size: 1.2rem;
  padding: 20px 48px;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.95rem;
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* --- Trust Bar --- */
.trust-bar {
  background: #1a202c;
  color: #fff;
  padding: 0;
  border-bottom: 3px solid #d69e2e;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 18px 32px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

/* --- Section Spacing --- */
.pricing, .what-to-expect, .requirements, .hours-location, .faq {
  padding: 80px 0;
}

/* --- Pricing Section --- */
.pricing {
  text-align: center;
  background: #fff;
}

.pricing h2 {
  margin-bottom: 12px;
}

.pricing-subtitle {
  color: #718096;
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.pricing-table {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 20px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.05rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.pricing-table th {
  background: #1a202c;
  color: #fff;
  padding: 16px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-table th:last-child {
  text-align: right;
}

.pricing-table td {
  padding: 18px 24px;
  border-bottom: 1px solid #edf2f7;
  background: #fff;
}

.pricing-table td:last-child {
  text-align: right;
  white-space: nowrap;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: #f7fafc;
}

.pricing-table strong {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a202c;
}

.pricing-note {
  font-size: 0.82rem;
  color: #a0aec0;
  margin-bottom: 32px;
}

/* --- What to Expect --- */
.what-to-expect {
  background: #f7fafc;
}

.what-to-expect h2 {
  margin-bottom: 48px;
  text-align: center;
}

.expect-grid {
  display: grid;
  gap: 48px;
}

.expect-list {
  list-style: none;
  padding: 0;
}

.expect-list li {
  padding: 16px 0 16px 36px;
  position: relative;
  font-size: 1.05rem;
  border-bottom: 1px solid #e2e8f0;
  color: #4a5568;
}

.expect-list li:last-child {
  border-bottom: none;
}

.expect-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #48bb78;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.expect-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.expect-images img {
  border-radius: 12px;
  width: 100%;
  height: 200px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.expect-images img:first-child {
  grid-column: 1 / -1;
  height: 280px;
}

.expect-images img:hover {
  transform: scale(1.02);
}

/* --- Requirements --- */
.requirements {
  background: #fff;
}

.requirements h2 {
  margin-bottom: 40px;
  text-align: center;
}

.req-grid {
  display: grid;
  gap: 24px;
}

.req-card {
  background: #f7fafc;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e2e8f0;
  transition: box-shadow 0.3s ease;
}

.req-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.req-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #d69e2e;
  display: inline-block;
}

.req-card ul {
  list-style: none;
  padding: 0;
}

.req-card ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
}

.req-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d69e2e;
}

/* --- Hours & Location --- */
.hours-location {
  background: #f7fafc;
}

.hours-location h2 {
  margin-bottom: 40px;
  text-align: center;
}

.hl-grid {
  display: grid;
  gap: 40px;
}

.hours-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.hours-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #edf2f7;
  font-size: 0.95rem;
  background: #fff;
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table td:first-child {
  font-weight: 600;
  color: #1a202c;
}

.hours-table td:last-child {
  text-align: right;
  color: #4a5568;
}

.address {
  font-size: 1rem;
  color: #718096;
  margin-bottom: 24px;
  font-weight: 500;
}

.hl-map iframe {
  border-radius: 16px;
  width: 100%;
  min-height: 320px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* --- FAQ --- */
.faq {
  background: #fff;
}

.faq h2 {
  margin-bottom: 40px;
  text-align: center;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
}

.faq-item summary {
  padding: 20px 40px 20px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a202c;
  cursor: pointer;
  position: relative;
  list-style: none;
  transition: color 0.2s;
}

.faq-item summary:hover {
  color: #d69e2e;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: #cbd5e0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f7fafc;
  transition: all 0.2s;
}

.faq-item[open] summary::after {
  content: "\2212";
  background: #d69e2e;
  color: #fff;
}

.faq-item p {
  padding: 0 0 20px;
  font-size: 0.98rem;
  color: #718096;
  line-height: 1.7;
}

/* --- Final CTA --- */
.final-cta {
  padding: 96px 0;
  text-align: center;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: #fff;
}

.final-cta h2 {
  font-size: 2.25rem;
  margin-bottom: 32px;
  color: #fff;
  font-weight: 800;
}

.final-cta .btn-hero {
  font-size: 1.5rem;
  padding: 22px 56px;
}

.final-address {
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* --- Footer --- */
.footer {
  padding: 28px 0;
  text-align: center;
  background: #0d1117;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  font-weight: 500;
}

/* ============================================
   Desktop (768px+)
   ============================================ */
@media (min-width: 768px) {
  .hero {
    min-height: 560px;
    padding: 100px 40px;
  }

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

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

  .trust-item {
    font-size: 0.9rem;
    padding: 20px 40px;
  }

  .expect-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

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

  .hl-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .expect-images img:first-child {
    height: 320px;
  }

  .expect-images img {
    height: 220px;
  }
}

/* ============================================
   Large screens (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }

  .pricing, .what-to-expect, .requirements, .hours-location, .faq {
    padding: 100px 0;
  }

  h2 {
    font-size: 2.25rem;
  }

  .final-cta {
    padding: 120px 0;
  }

  .final-cta h2 {
    font-size: 2.75rem;
  }
}
