/* ============================================
   CAPIPET — MAIN STYLESHEET
   Font: Be Vietnam Pro (Google Fonts)
   Palette: Nâu Socola + Vàng Gold + Kem
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --brown-900: #1E0D03;
  --brown-800: #2F1605;
  --brown-700: #4a2e1b;
  --brown-600: #6b4226;
  --brown-500: #8C5A35;
  --gold:      #C9894A;
  --gold-light:#D9A866;
  --gold-dark: #A06A30;
  --cream-100: #FFFDF9;
  --cream-200: #F5F0E8;
  --cream-300: #EDE3D3;
  --white:     #FFFFFF;
  --text-h:    #1E0D03;
  --text-p:    #5C3E28;
  --text-muted:#9C7B5E;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 50px;
  --shadow-sm: 0 2px 8px rgba(30,13,3,0.08);
  --shadow-md: 0 8px 24px rgba(30,13,3,0.12);
  --shadow-lg: 0 16px 48px rgba(30,13,3,0.16);
  --transition: 0.35s cubic-bezier(0.25,0.8,0.25,1);
}

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

body {
  font-family: 'Be Vietnam Pro', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background-color: var(--cream-100);
  color: var(--text-p);
  overflow-x: hidden;
}

/* ---- Typography Scale ---- */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  color: var(--text-h);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p  { font-size: 1.05rem; }

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(201,137,74,0.35);
  transition: var(--transition);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(201,137,74,0.5);
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brown-700);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.6rem 1.2rem;
  border: 2px solid var(--cream-300);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}
.btn-phone:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* ---- Section Tag ---- */
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-xl);
  margin-bottom: 0.8rem;
}
.section-tag.light {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-title h2 {
  margin: 0.4rem 0;
}
.section-title p {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0.6rem auto 0;
}
.decor-line {
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.2rem auto 0;
  border-radius: 2px;
}

/* ================================================
   HEADER
   ================================================ */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 5%;
  background: rgba(255,253,249,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  border-bottom: 1px solid rgba(201,137,74,0.12);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: var(--shadow-md); }

/* Logo */
.logo {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--brown-700);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.logo i { color: var(--gold); font-size: 1.5rem; }
.logo-accent { color: var(--gold); }

.footer-logo-mark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-logo-mark i { color: var(--gold); }

/* Nav */
.nav {
  display: flex;
  gap: 0.2rem;
  flex-shrink: 0;
}
.nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-p);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-md);
  position: relative;
  transition: color var(--transition), background var(--transition);
}
.nav a:hover {
  color: var(--brown-700);
  background: var(--cream-300);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-700);
  border-radius: 2px;
  transition: var(--transition);
}

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100svh;
  padding-top: calc(70px + 2rem);
  padding-bottom: 3rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  background: var(--cream-100);
}

.hero-bg-top {
  position: absolute;
  inset: 0 0 auto 0;
  height: 58%;
  background: linear-gradient(145deg, var(--brown-800) 0%, var(--brown-700) 60%, var(--brown-600) 100%);
  border-bottom-left-radius: 60% 18%;
  border-bottom-right-radius: 60% 18%;
  z-index: 0;
  box-shadow: 0 20px 50px rgba(30,13,3,0.5);
}
.hero-bg-top::after {
  content: '';
  position: absolute;
  inset: auto 0 -5px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}
.hero-bg-bottom {
  position: absolute;
  inset: auto 0 0;
  height: 200px;
  background: radial-gradient(ellipse at bottom, rgba(201,137,74,0.18) 0%, transparent 70%);
  z-index: 0;
}

/* Floating paws */
.paw-icon {
  position: absolute;
  color: rgba(201,137,74,0.18);
  z-index: 1;
  pointer-events: none;
  animation: floatPaw 6s ease-in-out infinite;
}
.p1 { top:14%; left:6%; font-size:3rem; rotate:-20deg; animation-delay:0s; }
.p2 { top:35%; left:10%; font-size:1.8rem; rotate:30deg; animation-delay:1s; }
.p3 { top:56%; left:4%; font-size:2.4rem; rotate:-8deg; animation-delay:2s; }
.p4 { top:16%; right:7%; font-size:3.5rem; rotate:18deg; animation-delay:0.5s; }
.p5 { top:42%; right:12%; font-size:2rem; rotate:-25deg; animation-delay:1.5s; }
.p6 { top:62%; right:6%; font-size:2.8rem; rotate:5deg; animation-delay:2.5s; }
@keyframes floatPaw {
  0%,100%{ transform: translateY(0); }
  50%    { transform: translateY(-14px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* Brand Title in Hero */
.brand-title {
  text-align: center;
}
.hero-eyebrow {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.brand-title h1 {
  color: var(--white);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-shadow: 0 6px 24px rgba(0,0,0,0.4);
}
.hero-accent { color: var(--gold-light); }

.subtitle-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border: 2px solid rgba(201,137,74,0.6);
  border-radius: var(--radius-xl);
  padding: 0.35rem 1.8rem;
  margin-top: 0.6rem;
}
.line { flex: 1; min-width: 20px; height: 1px; background: rgba(255,255,255,0.5); }
.subtitle {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

/* Hero Layout: pills + image side by side */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

/* Pills */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.service-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 0.5rem 1.5rem 0.5rem 0.5rem;
  border: 1px solid rgba(201,137,74,0.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  transform: translateX(-20px);
}
.animate-pill { animation: slideInLeft 0.55s ease forwards; animation-delay: var(--d,0s); }
@keyframes slideInLeft {
  to { opacity:1; transform:translateX(0); }
}
.service-pill:hover {
  transform: translateX(6px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,137,74,0.15), 0 12px 30px rgba(0,0,0,0.1);
}
.icon-circle {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--brown-700), var(--brown-800));
  color: var(--gold-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.service-pill:hover .icon-circle {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  transform: rotate(8deg) scale(1.05);
}
.service-name {
  flex: 1;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brown-700);
  letter-spacing: -0.01em;
}
.pill-arrow {
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.service-pill:hover .pill-arrow { opacity: 1; }

/* Hero Pet Image */
.hero-pets {
  position: relative;
  opacity: 0;
  transform: translateY(30px) scale(0.97);
}
.animate-pets { animation: riseIn 0.9s 0.5s ease forwards; }
@keyframes riseIn {
  to { opacity:1; transform:translateY(0) scale(1); }
}
.pets-badge {
  position: absolute;
  top: -14px;
  right: 10%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-xl);
  z-index: 3;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.pets-img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Animation: down */
.animate-down { animation: fadeDown 0.8s ease both; }
@keyframes fadeDown {
  from { opacity:0; transform:translateY(-24px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ================================================
   STATS BAR
   ================================================ */
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, var(--brown-800), var(--brown-700));
  padding: 1.5rem 5%;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 3rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-item > i {
  font-size: 2rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.stat-item strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-item span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ================================================
   SERVICES OVERVIEW
   ================================================ */
.services-section {
  padding: 6rem 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.service-card {
  background: var(--cream-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,137,74,0.15);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,137,74,0.3);
}

.sc-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--cream-300);
  position: relative;
}
.sc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .sc-img img { transform: scale(1.08); }

.sc-img.placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream-300), var(--cream-200));
  color: var(--brown-600);
}

.sc-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-xl);
}

.sc-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.6rem;
}
.sc-icon-sm {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--brown-700), var(--brown-800));
  color: var(--gold-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.sc-body h3 { font-size: 1.15rem; color: var(--text-h); }
.sc-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.sc-price {
  font-size: 0.9rem;
  color: var(--text-p);
}
.sc-price strong { color: var(--gold-dark); font-size: 1.1rem; }
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-dark);
  font-size: 0.9rem;
  font-weight: 700;
  transition: gap var(--transition);
}
.sc-link:hover { gap: 0.9rem; }

/* ================================================
   SERVICE DETAIL SECTIONS
   ================================================ */
.service-detail-section {
  padding: 6rem 0;
  background: var(--cream-100);
}
.service-detail-section.alt-bg { background: var(--white); }

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.detail-layout.detail-reverse { direction: rtl; }
.detail-layout.detail-reverse > * { direction: ltr; }

.detail-img-side img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.detail-text-side h2 {
  margin: 0.5rem 0 0.8rem;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}
.detail-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}

/* Package List */
.package-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.pkg-item {
  background: var(--cream-200);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(201,137,74,0.15);
}
.pkg-item.pkg-highlight {
  background: linear-gradient(135deg, var(--brown-800), var(--brown-700));
  border-color: var(--gold);
  color: var(--white);
}
.pkg-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.pkg-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown-700);
}
.pkg-highlight .pkg-name { color: var(--gold-light); }
.pkg-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-dark);
  white-space: nowrap;
}
.pkg-highlight .pkg-price { color: var(--gold-light); }
.pkg-item ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.pkg-item ul li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-p);
}
.pkg-highlight ul li { color: rgba(255,255,255,0.85); }
.pkg-item ul li i {
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Hotel Features Grid */
.hotel-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.hotel-feat {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-p);
  background: var(--cream-200);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
}
.hotel-feat i { color: var(--gold); width: 16px; text-align: center; }

/* ================================================
   ABOUT
   ================================================ */
.about-section {
  padding: 6rem 0;
  background: var(--cream-200);
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text h2 { margin: 0.5rem 0 1.2rem; }
.about-text > p { color: var(--text-muted); margin-bottom: 2rem; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}
.ab-feat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201,137,74,0.1);
  font-size: 0.95rem;
  color: var(--text-p);
  box-shadow: var(--shadow-sm);
}
.ab-feat i { color: var(--gold); font-size: 1.1rem; width: 20px; text-align: center; flex-shrink: 0; }

.about-image { display: flex; justify-content: center; }
.img-frame {
  position: relative;
  padding: 14px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}
.img-frame::before {
  content: '';
  position: absolute;
  bottom: -14px; right: -14px;
  width: 55%; height: 55%;
  border-bottom: 4px solid var(--gold);
  border-right: 4px solid var(--gold);
  border-bottom-right-radius: 30px;
  z-index: 0;
}
.img-frame::after {
  content: '';
  position: absolute;
  top: -14px; left: -14px;
  width: 55%; height: 55%;
  border-top: 4px solid var(--gold);
  border-left: 4px solid var(--gold);
  border-top-left-radius: 30px;
  z-index: 0;
}
.img-frame img {
  border-radius: 20px;
  position: relative;
  z-index: 1;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ================================================
   CONTACT / BOOKING FORM
   ================================================ */
.contact-section {
  padding: 6rem 0;
  background: linear-gradient(145deg, var(--brown-800) 0%, var(--brown-700) 100%);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9894A' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.contact-info { color: var(--white); }
.contact-info h2 {
  color: var(--white);
  margin: 0.5rem 0 1rem;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}
.contact-info > p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.ct-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.ct-icon {
  width: 42px; height: 42px;
  background: rgba(201,137,74,0.2);
  border: 1px solid rgba(201,137,74,0.35);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.ct-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.ct-item span { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

.hours-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
}
.hours-box h4 {
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.hours-row:last-child { border-bottom: none; }
.hours-row strong { color: var(--white); }

/* Booking Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 {
  font-size: 1.5rem;
  color: var(--text-h);
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--cream-300);
}

.booking-form { display: flex; flex-direction: column; gap: 1.1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1/-1; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown-700);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 0.95rem;
  color: var(--text-h);
  background: var(--cream-200);
  border: 1.5px solid var(--cream-300);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: auto;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,137,74,0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(201,137,74,0.4);
  transition: var(--transition);
  width: 100%;
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(201,137,74,0.55);
}
.btn-submit:active { transform: translateY(0); }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--brown-700);
}
.form-success i { font-size: 3.5rem; color: #4CAF50; }
.form-success p { font-size: 1.1rem; font-weight: 600; }
.hidden { display: none !important; }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--brown-900);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-col > p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-col h4 {
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}
.footer-contact li i { color: var(--gold); width: 14px; text-align: center; }

.social-links { display: flex; gap: 0.7rem; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-layout { grid-template-columns: 1fr; gap: 2rem; }
  .hero-pets { order: -1; }
  .pets-img { aspect-ratio: 16/9; }
  .detail-layout, .about-content, .contact-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
  .detail-layout.detail-reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .btn-phone { display: none; }
  .nav {
    display: none;
    position: fixed;
    inset: 68px 0 0;
    background: var(--cream-100);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    z-index: 998;
  }
  .nav.open { display: flex; }
  .nav a {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 0;
    border-bottom: 1px solid var(--cream-300);
  }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stat-item { width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child{ border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hotel-features { grid-template-columns: 1fr; }
}
