/* ============================================================
   KRISH MEHANDI WORKS — Main Stylesheet
   Theme: #071f05 Deep Forest Green + #c9a84c Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&family=Dancing+Script:wght@600;700&display=swap');

:root {
  --green-dark: #071f05;
  --green-mid: #0f3a0c;
  --green-light: #1a6618;
  --green-hover: #0d2c0a;
  --gold: #c9a84c;
  --gold-light: #e0c06e;
  --gold-pale: #f5e8c0;
  --cream: #fdf9f0;
  --cream-alt: #f7f0e0;
  --text-dark: #1a0e00;
  --text-mid: #4a3200;
  --text-muted: #8a6a30;
  --text-light: #f0e8d0;
  --text-faint: #c8b890;
  --border: #e2cfa0;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

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

a {
  text-decoration: none;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

.script {
  font-family: 'Dancing Script', cursive;
}

.section-tag {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--green-dark);
  margin-bottom: 0.8rem;
}

.section-title em {
  color: var(--gold);
  font-style: italic;
}

.section-title.light {
  color: var(--gold-light);
}

.section-title.light em {
  color: var(--gold-pale);
}

.section-sub {
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
}

/* ── DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.8rem 0 2.2rem;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.divider-dot {
  color: var(--gold);
  font-size: 1rem;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  border: 2px solid var(--gold);
  transition: background 0.22s, color 0.22s, transform 0.15s;
  cursor: pointer;
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold-light);
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  border: 2px solid var(--gold);
  transition: background 0.22s, color 0.22s;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--green-dark);
}

/* ── LAYOUT ── */
.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.center {
  text-align: center;
}

.center .section-sub {
  margin: 0 auto;
}

section {
  padding: 5rem 1.5rem;
}

.section-dark {
  background: var(--green-dark);
}

.section-mid {
  background: var(--green-mid);
}

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

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

/* ── NAVBAR ── */
.navbar {
  background: var(--green-dark);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-brand-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  color: var(--green-dark);
  font-weight: 700;
  flex-shrink: 0;
}

.navbar-brand-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.35rem;
  color: var(--gold-light);
  line-height: 1.1;
}

.navbar-brand-text small {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 3px;
  color: var(--text-faint);
  font-weight: 400;
  text-transform: uppercase;
}

.navbar-links {
  display: flex;
  list-style: none;
}

.navbar-links li a {
  display: block;
  color: var(--text-light);
  padding: 0 1rem;
  height: 70px;
  line-height: 70px;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.2s;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.navbar-links li a:hover,
.navbar-links li a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

.navbar-links li.cta a {
  background: var(--gold);
  color: var(--green-dark) !important;
  border-radius: 3px;
  margin: 15px 0.5rem;
  height: 38px;
  line-height: 38px;
  padding: 0 1.2rem;
  border-bottom: none !important;
}

.navbar-links li.cta a:hover {
  background: var(--gold-light);
}

.nav-ham {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-ham span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  height: 94vh;
  min-height: 560px;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1.3s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(7, 31, 5, 0.90) 0%, rgba(7, 31, 5, 0.65) 50%, rgba(7, 31, 5, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  background: rgba(201, 168, 76, 0.12);
  padding: 0.35rem 1.2rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 20px;
}

.hero-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 0.6rem;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  color: var(--gold-pale);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  font-weight: 300;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(240, 232, 208, 0.82);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.35);
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.hero-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(7, 31, 5, 0.55);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.hero-arrow:hover {
  background: var(--gold);
  color: var(--green-dark);
}

.hero-arrow.prev {
  left: 1.5rem;
}

.hero-arrow.next {
  right: 1.5rem;
}

/* ── INTRO BAND ── */
.intro-band {
  background: var(--green-dark);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid rgba(201, 168, 76, 0.25);
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.intro-band-title {
  font-family: 'Dancing Script', cursive;
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.intro-band p {
  color: var(--text-faint);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 0.95rem;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 2.2rem;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.stat-item span {
  font-size: 0.72rem;
  color: var(--text-faint);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(7, 31, 5, 0.13);
  border-color: var(--gold);
}

.service-icon {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  display: block;
}

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

.service-card p {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.service-price {
  font-size: 0.78rem;
  color: var(--gold);
  margin-top: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ── GALLERY SLIDER ── */
.img-slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 2rem;
}

.img-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-slide {
  min-width: calc(33.333% - 10px);
  margin: 0 5px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}

.img-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-slide-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(7, 31, 5, 0.92), transparent);
  padding: 1.5rem 1rem 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(7, 31, 5, 0.6);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
  padding: 0;
}

.slider-nav:hover {
  background: var(--gold);
  color: var(--green-dark);
}

.slider-nav.prev {
  left: 0.8rem;
}

.slider-nav.next {
  right: 0.8rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 1.2rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.35);
  border: none;
  cursor: pointer;
  transition: 0.2s;
  padding: 0;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── MOSAIC GALLERY ── */
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mosaic-item {
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.mosaic-item:hover img {
  transform: scale(1.07);
}

.mosaic-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(7, 31, 5, 0.9), transparent);
  padding: 1.2rem 0.8rem 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  text-align: center;
}

/* ── TESTIMONIALS ── */
.testimonials-bg {
  background: linear-gradient(160deg, #fdf5e0, var(--cream));
}

.test-slider {
  position: relative;
  overflow: hidden;
}

.test-track {
  display: flex;
  transition: transform 0.5s ease;
}

.test-card {
  min-width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

.test-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem;
  max-width: 680px;
  text-align: center;
  box-shadow: 0 4px 30px rgba(7, 31, 5, 0.08);
  position: relative;
}

.test-quote {
  font-size: 5rem;
  color: var(--gold-pale);
  font-family: 'Playfair Display', serif;
  line-height: 0.5;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.test-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.test-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #3a2500;
  font-style: italic;
  margin-bottom: 1.4rem;
}

.test-author {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 0.9rem;
}

.test-place {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
}

.test-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 1.5rem;
}

.test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4b880;
  border: none;
  cursor: pointer;
  transition: 0.2s;
  padding: 0;
}

.test-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── FORMS ── */
.form-wrap {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 10px;
  padding: 2.5rem;
  max-width: 640px;
  margin: 0 auto;
}

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

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
  font-family: 'Lato', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.form-group select option {
  background: var(--green-dark);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240, 232, 208, 0.3);
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-top: 0.4rem;
}

.success-msg {
  background: rgba(26, 102, 24, 0.2);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 1.2rem;
  text-align: center;
  color: var(--gold-light);
  display: none;
  margin-top: 1rem;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(7, 31, 5, 0.1);
}

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

.price-badge {
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 0 0 6px 6px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
}

.price-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--green-dark);
  margin: 1.2rem 0 0.3rem;
}

.price-amount {
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.price-features {
  list-style: none;
  margin: 1.2rem 0;
  text-align: left;
}

.price-features li {
  padding: 0.4rem 0;
  font-size: 0.84rem;
  color: var(--text-mid);
  border-bottom: 1px dashed #f0dec0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.55rem;
  flex-shrink: 0;
}

/* ── SHOP ── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(7, 31, 5, 0.12);
}

.product-img {
  height: 190px;
  overflow: hidden;
  position: relative;
  background: var(--green-mid);
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.product-card:hover .product-img img {
  transform: scale(1.07);
}

.product-img .product-emoji {
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.product-info {
  padding: 1.2rem;
}

.product-info h3 {
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
}

.product-info p {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 0.8rem;
}

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

.product-price-tag {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
}

.add-cart-btn {
  background: var(--green-dark);
  color: var(--gold);
  border: 1px solid var(--green-mid);
  border-radius: 4px;
  padding: 0.45rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.2s, border-color 0.2s;
}

.add-cart-btn:hover {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}

.cart-indicator {
  color: var(--gold);
  font-size: 0.85rem;
}

.cart-count-badge {
  background: var(--gold);
  color: var(--green-dark);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ── TABS ── */
.tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 0;
}

.tab-btn {
  padding: 0.85rem 1.5rem;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}

.tab-btn.active {
  color: var(--green-dark);
  border-bottom-color: var(--gold);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-features {
  list-style: none;
  margin-top: 1.5rem;
}

.about-features li {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.about-features li .af-icon {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-features li h4 {
  font-size: 0.9rem;
  color: var(--green-dark);
  margin-bottom: 0.2rem;
}

.about-features li p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--green-mid);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s;
}

.contact-card:hover {
  border-color: var(--gold);
}

.contact-card-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.contact-card h4 {
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  font-family: 'Lato', sans-serif;
}

.contact-card p {
  color: var(--text-faint);
  font-size: 0.85rem;
  line-height: 1.6;
}

.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--gold);
  margin-top: 2.5rem;
}

/* ── CLASSES ── */
.class-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.class-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.class-head {
  padding: 1.6rem;
  text-align: center;
}

.class-head.lvl-0 {
  background: var(--green-light);
}

.class-head.lvl-1 {
  background: var(--green-mid);
}

.class-head.lvl-2 {
  background: var(--green-dark);
}

.class-head h3 {
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
}

.class-head p {
  color: rgba(240, 232, 208, 0.65);
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.class-body {
  padding: 1.5rem;
}

.class-body ul {
  list-style: none;
}

.class-body ul li {
  padding: 0.45rem 0;
  font-size: 0.84rem;
  color: var(--text-mid);
  border-bottom: 1px dashed #f0dec0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.class-body ul li:last-child {
  border-bottom: none;
}

.class-body ul li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.55rem;
}

.class-fee {
  text-align: center;
  margin-top: 1.2rem;
}

.class-fee strong {
  font-size: 1.8rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

.class-fee span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  margin-top: 0.2rem;
}

/* ── LOCATIONS BADGE ── */
.loc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.loc-badge {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-weight: 700;
}

/* ── PAGE HEADER ── */
.page-header {
  background: var(--green-dark);
  padding: 5.5rem 1.5rem 3.5rem;
  text-align: center;
  border-bottom: 2px solid rgba(201, 168, 76, 0.25);
}

.page-header-title {
  color: var(--gold-light);
  margin-bottom: 0;
}

.page-header-title em {
  color: var(--gold);
}

.page-header-sub {
  color: var(--text-faint);
  max-width: 560px;
  margin: 1rem auto 0;
  line-height: 1.8;
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  max-width: 580px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.tl-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-left: 0.5rem;
}

.tl-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-weight: 700;
  z-index: 1;
  position: relative;
  font-size: 0.9rem;
}

.tl-content h4 {
  color: var(--green-dark);
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.tl-content p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── ONLINE BANNER ── */
.online-banner {
  background: var(--green-mid);
  border-radius: 10px;
  padding: 2rem;
  margin-top: 2.5rem;
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.online-banner h3 {
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.online-banner p {
  color: var(--text-faint);
  font-size: 0.88rem;
  max-width: 580px;
  margin: 0 auto 1.2rem;
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.2rem 1rem;
  text-align: center;
}

.why-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.why-card h4 {
  font-size: 0.85rem;
  color: var(--green-dark);
  margin-bottom: 0.2rem;
}

.why-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── FOOTER ── */
footer {
  background: var(--green-dark);
  border-top: 2px solid var(--gold);
  padding: 4.5rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-brand-name {
  font-family: 'Dancing Script', cursive;
  font-size: 1.9rem;
  color: var(--gold);
}

.footer-brand-desc {
  color: var(--text-faint);
  font-size: 0.84rem;
  line-height: 1.75;
  margin-top: 0.8rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
}

.footer-col h4 {
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-family: 'Lato', sans-serif;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: var(--text-faint);
  font-size: 0.84rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  text-align: center;
  color: var(--text-faint);
  font-size: 0.76rem;
  letter-spacing: 0.5px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom span {
  color: var(--gold);
}

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .mosaic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .img-slide {
    min-width: calc(50% - 10px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 680px) {
  .navbar-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--green-dark);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }

  .navbar-links.open {
    display: flex;
  }

  .navbar-links li a {
    height: auto;
    line-height: 1;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  }

  .navbar-links li.cta a {
    margin: 0.8rem 1.5rem;
    height: auto;
    line-height: 1;
    padding: 0.8rem 1.5rem;
  }

  .nav-ham {
    display: flex;
  }

  .hero-arrow {
    display: none;
  }

  .img-slide {
    min-width: calc(100% - 10px);
  }

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

  section {
    padding: 3.5rem 1rem;
  }
}
