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

:root {
  --purple-50: #EEEDFE;
  --purple-600: #534AB7;
  --purple-800: #3C3489;
  --purple-900: #26215C;
  --teal-50: #E1F5EE;
  --teal-800: #085041;
  --amber-50: #FAEEDA;
  --amber-800: #633806;
  --green-50: #EAF3DE;
  --green-800: #27500A;
  --red-50: #FCEBEB;
  --red-800: #791F1F;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1a1a1a;
  background: #fff;
  font-size: 15px;
  line-height: 1.6;
}

/* NAV */
#navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid #e8e8e8;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-logo {
  font-size: 19px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--purple-600);
}

.nav-logo i { font-size: 20px; }

.nav-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-btn {
  background: none;
  border: none;
  padding: 7px 13px;
  border-radius: 8px;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.nav-btn:hover { background: #f4f4f6; color: #1a1a1a; }
.nav-btn.active { background: var(--purple-50); color: var(--purple-800); font-weight: 500; }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #555;
}

@media (max-width: 640px) {
  .hamburger { display: block; }
  .nav-links { display: none; width: 100%; flex-direction: column; }
  .nav-links.open { display: flex; }
  .nav-btn { text-align: left; }
}

/* PAGES */
.page { display: none; }
.page.active { display: block; }

/* HERO */
.hero {
  background: var(--purple-50);
  padding: 52px 24px;
  text-align: center;
  border-bottom: 1px solid #d4d0f8;
}

.hero h1 {
  font-size: 32px;
  font-weight: 600;
  color: var(--purple-900);
  margin-bottom: 12px;
}

.hero p {
  font-size: 16px;
  color: var(--purple-800);
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn-primary {
  background: var(--purple-600);
  color: #fff;
  border: none;
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.15s;
}

.btn-primary:hover { opacity: 0.88; }

.btn-outline {
  background: none;
  color: var(--purple-600);
  border: 1.5px solid var(--purple-600);
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-outline:hover { background: var(--purple-50); }

/* SECTION HEADERS */
.section-header { padding: 32px 24px 8px; }
.section-header h2 { font-size: 22px; font-weight: 600; }
.section-sub { font-size: 14px; color: #666; margin-top: 4px; }

.page-cta { padding: 8px 24px 40px; }

/* CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  padding: 12px 24px 28px;
}

.card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 20px;
}

.card-icon {
  font-size: 26px;
  color: var(--purple-600);
  display: block;
  margin-bottom: 12px;
}

.card h3 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.card p { font-size: 13px; color: #666; line-height: 1.6; }

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  padding: 12px 24px 28px;
}

.price-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}

.price-card.featured { border: 2px solid var(--purple-600); }

.price-label { font-size: 13px; color: #666; margin-bottom: 6px; }
.price-amount { font-size: 26px; font-weight: 600; color: var(--purple-600); margin-bottom: 4px; }
.price-sub { font-size: 12px; color: #999; }

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  padding: 12px 24px 40px;
}

.stat-card {
  background: #f7f7fa;
  border-radius: 10px;
  padding: 18px;
  text-align: center;
}

.stat-num { font-size: 26px; font-weight: 600; color: var(--purple-600); }
.stat-lbl { font-size: 12px; color: #666; margin-top: 4px; }

/* BADGES */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 6px;
}

.badge-purple { background: var(--purple-50); color: var(--purple-800); }
.badge-teal { background: var(--teal-50); color: var(--teal-800); }
.badge-amber { background: var(--amber-50); color: var(--amber-800); }

/* ANIMALS */
.animal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 24px 16px;
}

.animal-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 16px;
}

.animal-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
}

.animal-avatar.purple { background: var(--purple-50); color: var(--purple-600); }
.animal-avatar.teal { background: var(--teal-50); color: var(--teal-800); }

.animal-info h3 { font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.animal-info p { font-size: 13px; color: #666; margin-bottom: 7px; }

/* BOOKING FORM */
.appt-form {
  padding: 12px 24px 40px;
  max-width: 640px;
}

.form-row { margin-bottom: 16px; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 500px) {
  .form-row.two-col { grid-template-columns: 1fr; }
}

.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }

label {
  font-size: 13px;
  font-weight: 500;
  color: #444;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  color: #1a1a1a;
  background: #fff;
  font-family: inherit;
  transition: border-color 0.15s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--purple-600);
  box-shadow: 0 0 0 3px rgba(83,74,183,0.1);
}

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

/* TIME SLOTS */
.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.slot {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 13px;
  cursor: pointer;
  background: #fff;
  color: #1a1a1a;
  transition: background 0.12s, border-color 0.12s;
}

.slot:hover:not(.full) { background: var(--purple-50); border-color: var(--purple-600); }
.slot.selected { background: var(--purple-50); border-color: var(--purple-600); color: var(--purple-800); font-weight: 500; }
.slot.full { background: #f4f4f4; color: #bbb; cursor: not-allowed; border-color: #eee; }

.hint { font-size: 12px; color: #999; margin-top: 6px; display: flex; align-items: center; gap: 4px; }
.hint-inline { color: #999; font-size: 12px; }

/* CONFIRM BOX */
.confirm-box {
  display: none;
  align-items: flex-start;
  gap: 12px;
  background: var(--teal-50);
  border: 1px solid #1D9E75;
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 20px;
}

.confirm-box i { font-size: 22px; color: #0F6E56; flex-shrink: 0; margin-top: 2px; }
.confirm-box h3 { font-size: 15px; font-weight: 600; color: var(--teal-800); margin-bottom: 4px; }
.confirm-box p { font-size: 13px; color: #0F6E56; }

/* CORPORATE */
.corp-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 12px 24px 16px;
}

.corp-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 22px;
  display: flex;
  gap: 18px;
}

.corp-icon {
  font-size: 28px;
  color: var(--purple-600);
  flex-shrink: 0;
  margin-top: 2px;
}

.corp-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.corp-card p { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 12px; }

.tag-row { display: flex; flex-wrap: wrap; gap: 6px; }

/* DO'S AND DON'TS */
.dos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 12px 24px 16px;
}

@media (max-width: 560px) {
  .dos-grid { grid-template-columns: 1fr; }
}

.dos-card {
  border-radius: 12px;
  padding: 20px;
}

.dos-card.do { background: var(--green-50); border: 1px solid #97C459; }
.dos-card.dont { background: var(--red-50); border: 1px solid #F09595; }

.dos-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dos-card.do h3 { color: var(--green-800); }
.dos-card.dont h3 { color: var(--red-800); }

.dos-card ul { list-style: none; }

.dos-card li {
  font-size: 13px;
  line-height: 1.9;
  padding-left: 18px;
  position: relative;
}

.dos-card.do li { color: #3B6D11; }
.dos-card.dont li { color: var(--red-800); }

.dos-card.do li::before { content: "✓"; position: absolute; left: 0; }
.dos-card.dont li::before { content: "✗"; position: absolute; left: 0; }

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  padding: 12px 24px 16px;
}

.gallery-item {
  background: #f7f7fa;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  border-radius: 12px;
}

.gallery-icon { font-size: 32px; color: var(--purple-600); }
.gallery-label { font-size: 12px; font-weight: 500; color: #444; text-align: center; padding: 0 8px; }
.gallery-sub { font-size: 11px; color: #999; }

.gallery-upload-area {
  margin: 0 24px 16px;
  border: 2px dashed #ccc;
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  color: #888;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}
/* LANGUAGE TOGGLE */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1.5px solid var(--purple-600);
  color: var(--purple-600);
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.lang-toggle:hover {
  background: var(--purple-50);
}

.lang-toggle i {
  font-size: 15px;
}

.gallery-upload-area:hover { border-color: var(--purple-600); background: var(--purple-50); color: var(--purple-800); }
.gallery-upload-area p { font-size: 14px; margin-top: 8px; }
.gallery-upload-area input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }