/* ============================================================
   DESERT POP DECOR — Main Stylesheet
   Design System: Warm Boho Desert × Playful Pop
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=Playfair+Display:ital,wght@0,700;1,600&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --coral:        #E8604A;
  --teal:         #4AABB8;
  --gold:         #F5A623;
  --terracotta:   #C4622D;

  /* Backgrounds */
  --bg-cream:     #F5ECD7;
  --bg-sand:      #EDE0C8;
  --bg-warm:      #FAF4EA;
  --bg-dark:      #2C1A0E;

  /* Text */
  --text-dark:    #2D2D2D;
  --text-mid:     #5A4A3A;
  --text-light:   #9A8070;
  --text-white:   #FFFFFF;

  /* Borders & Shadows */
  --border-light: rgba(196, 98, 45, 0.15);
  --shadow-soft:  0 4px 24px rgba(196, 98, 45, 0.10);
  --shadow-card:  0 8px 40px rgba(44, 26, 14, 0.12);
  --shadow-hover: 0 16px 56px rgba(44, 26, 14, 0.18);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Nunito', sans-serif;

  /* Spacing */
  --section-pad:  96px 24px;
  --section-pad-sm: 64px 24px;
  --max-width:    1200px;
  --nav-height:   72px;

  /* Radius */
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    32px;
  --radius-full:  999px;

  /* Transitions */
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-warm);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 800; }

p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.text-coral   { color: var(--coral); }
.text-teal    { color: var(--teal); }
.text-gold    { color: var(--gold); }
.text-terra   { color: var(--terracotta); }
.text-white   { color: var(--text-white); }
.text-center  { text-align: center; }

.section-label {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad);
}

.section--sm {
  padding: var(--section-pad-sm);
}

.section--dark {
  background-color: var(--bg-dark);
  color: var(--text-white);
}

.section--sand {
  background-color: var(--bg-sand);
}

.section--cream {
  background-color: var(--bg-cream);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--coral);
  color: var(--text-white);
  border-color: var(--coral);
}

.btn--primary:hover {
  background-color: var(--terracotta);
  border-color: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 96, 74, 0.35);
}

.btn--secondary {
  background-color: transparent;
  color: var(--coral);
  border-color: var(--coral);
}

.btn--secondary:hover {
  background-color: var(--coral);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn--teal {
  background-color: var(--teal);
  color: var(--text-white);
  border-color: var(--teal);
}

.btn--teal:hover {
  background-color: #3a9aaa;
  border-color: #3a9aaa;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 171, 184, 0.35);
}

.btn--gold {
  background-color: var(--gold);
  color: var(--text-white);
  border-color: var(--gold);
}

.btn--gold:hover {
  background-color: #d4901f;
  border-color: #d4901f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35);
}

.btn--white {
  background-color: var(--text-white);
  color: var(--coral);
  border-color: var(--text-white);
}

.btn--white:hover {
  background-color: var(--bg-cream);
  transform: translateY(-2px);
}

.btn--lg {
  font-size: 1rem;
  padding: 18px 44px;
}

.btn--sm {
  font-size: 0.8rem;
  padding: 10px 22px;
}

/* ── Navigation ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background-color: rgba(250, 244, 234, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-soft);
}

.navbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo img {
  height: 44px;
  width: auto;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.navbar__link:hover {
  color: var(--coral);
  background-color: rgba(232, 96, 74, 0.06);
}

.navbar__link.active {
  color: var(--coral);
}

/* Dropdown */
.navbar__item {
  position: relative;
}

.navbar__item:hover .navbar__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--bg-warm);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 12px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.navbar__dropdown a {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.navbar__dropdown a:hover {
  background-color: rgba(232, 96, 74, 0.08);
  color: var(--coral);
  padding-left: 18px;
}

.navbar__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background-color: var(--bg-warm);
  border-top: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  padding: 24px;
  z-index: 999;
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
}

.navbar__mobile.open {
  display: block;
}

.navbar__mobile a {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.navbar__mobile a:hover {
  color: var(--coral);
}

.navbar__mobile .mobile-cta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero__slide.active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 26, 14, 0.55) 0%,
    rgba(44, 26, 14, 0.25) 60%,
    rgba(44, 26, 14, 0.45) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
  max-width: 800px;
  animation: heroFadeUp 1s ease-out 0.3s both;
}

.hero__content h1 {
  color: var(--text-white);
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero__content h1 span {
  color: var(--gold);
  font-style: italic;
}

.hero__content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.hero__dot.active {
  background: var(--gold);
  width: 24px;
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.card__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.card__body {
  padding: 24px;
}

.card__body h3 {
  margin-bottom: 8px;
  color: var(--text-dark);
}

.card__body p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* Service Cards */
.service-card {
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--coral);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.service-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--coral);
  margin-top: 16px;
  transition: var(--transition);
}

.service-card__link:hover {
  gap: 8px;
}

/* ── Section Headers ──────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.divider {
  width: 60px;
  height: 3px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--coral), var(--gold));
  margin: 16px auto;
}

/* ── Gallery Grid ─────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,26,14,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__label {
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Gallery Filter Tabs */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 2px solid var(--border-light);
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--coral);
  border-color: var(--coral);
  color: white;
}

/* ── Forms ────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-warm);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(232, 96, 74, 0.1);
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A4A3A' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

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

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 72px 24px 32px;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__brand img {
  height: 180px;
  margin-bottom: 20px;
  opacity: 0.95;
}

.footer__brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__col h4 {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 800;
  margin-bottom: 20px;
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1rem;
}

.footer__social a:hover {
  background: var(--coral);
  transform: translateY(-2px);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}

.footer__bottom a {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  transition: var(--transition);
}

.footer__bottom a:hover {
  color: var(--gold);
}

/* ── Pop Genie Chatbot ────────────────────────────────────── */
.chatbot-toggle {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--coral), var(--terracotta));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 8px 32px rgba(232, 96, 74, 0.45);
  transition: var(--transition);
}

.chatbot-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(232, 96, 74, 0.55);
}

.chatbot-toggle .toggle-icon {
  transition: var(--transition);
}

.chatbot-widget {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 900;
  width: 360px;
  max-height: 520px;
  background: var(--bg-warm);
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-md) var(--radius-lg);
  box-shadow: 0 24px 80px rgba(44, 26, 14, 0.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.97);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.chatbot-widget.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  background: linear-gradient(135deg, var(--coral), var(--terracotta));
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-header__avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.chatbot-header__info h4 {
  color: white;
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 800;
}

.chatbot-header__info span {
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-light) transparent;
}

.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.chat-msg--bot {
  background: var(--bg-sand);
  color: var(--text-dark);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.chat-msg--user {
  background: var(--coral);
  color: white;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 16px 12px;
}

.quick-reply {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--coral);
  color: var(--coral);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.quick-reply:hover {
  background: var(--coral);
  color: white;
}

.chatbot-input {
  padding: 12px 16px;
  border-top: 1px solid var(--border-light);
  display: flex;
  gap: 10px;
}

.chatbot-input input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-dark);
  background: var(--bg-sand);
  border: none;
  border-radius: var(--radius-full);
  padding: 10px 16px;
  outline: none;
}

.chatbot-input button {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--coral);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.chatbot-input button:hover {
  background: var(--terracotta);
}

/* ── Decorative Elements ──────────────────────────────────── */
.sparkle {
  display: inline-block;
  color: var(--gold);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(245, 166, 35, 0.12);
  color: var(--terracotta);
  border: 1.5px solid rgba(245, 166, 35, 0.3);
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(74, 171, 184, 0.12);
  color: var(--teal);
}

/* Wavy section divider */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonial-card {
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border-light);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}

.testimonial-card__text {
  font-style: italic;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.testimonial-card__name {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.testimonial-card__event {
  font-size: 0.78rem;
  color: var(--text-light);
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-height) + 64px);
  padding-bottom: 64px;
  padding-left: 24px;
  padding-right: 24px;
  background: linear-gradient(135deg, var(--bg-sand) 0%, var(--bg-cream) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.animate-fadeup {
  animation: fadeUp 0.7s ease-out both;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px 20px;
    --section-pad-sm: 48px 20px;
  }

  .navbar__menu,
  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .chatbot-widget {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 90px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .btn--lg {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .section-header {
    margin-bottom: 36px;
  }
}

/* ── Utility ──────────────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}