/* =============================================
   POOJA DANCE & ART ACADEMY – Main Stylesheet
   ============================================= */

/* CSS Variables */
:root {
  --purple: #6A0DAD;
  --purple-light: #8B2FC9;
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --dark: #1A1A2E;
  --dark-2: #16213E;
  --text: #333;
  --text-light: #666;
  --bg-light: #F8F5FF;
  --white: #FFFFFF;
  --border: rgba(106, 13, 173, 0.15);
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 5rem 0; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(10px);
  padding: 0.8rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { height: 60px; width: auto; }
.logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  border-radius: 50%;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 8px 22px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
}
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 999;
  }
  .nav-links.open { right: 0; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 40%, #2d1b69 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(106,13,173,0.35) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 30%, rgba(212,175,55,0.15) 0%, transparent 50%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212,175,55,0.4); }
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-block;
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.hero-visual {
  position: relative;
}
.hero-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, rgba(106,13,173,0.5), rgba(212,175,55,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-placeholder {
  color: rgba(255,255,255,0.3);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}
.hero-placeholder i { font-size: 4rem; display: block; margin-bottom: 1rem; opacity: 0.4; }
.hero-rating {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-rating .stars { color: #FFB800; font-size: 1.1rem; }
.hero-rating .rating-text strong { display: block; font-size: 0.9rem; color: var(--dark); }
.hero-rating .rating-text span { font-size: 0.75rem; color: var(--text-light); }
.hero-badge-float {
  position: absolute;
  top: 20px;
  right: -10px;
  background: var(--purple);
  color: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(106,13,173,0.4);
}
.hero-badge-float strong { display: block; font-size: 1.6rem; line-height: 1; color: var(--gold); }
.hero-badge-float span { font-size: 0.72rem; opacity: 0.85; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark);
  padding: 1.2rem 0;
  overflow: hidden;
}
.trust-strip {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  white-space: nowrap;
}
.trust-item i { color: var(--gold); }
.trust-item strong { color: #fff; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--purple);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: 1rem; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}
.stat-label { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-top: 0.4rem; }

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── SERVICES / CLASSES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 3rem;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(106,13,173,0.2);
  border-color: var(--purple);
}
.service-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.service-card p { color: var(--text-light); font-size: 0.85rem; line-height: 1.5; }

/* ── ABOUT SECTION (homepage) ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-image-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, var(--purple), #9b31e0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  flex-direction: column;
  gap: 1rem;
  border-radius: 20px;
}
.about-image-placeholder i { font-size: 3rem; opacity: 0.4; }
.about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--dark);
  padding: 12px 20px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 0.9rem;
}
.about-content .section-title { margin-bottom: 1.5rem; }
.about-content p { color: var(--text-light); margin-bottom: 1.2rem; line-height: 1.8; }
.about-features { margin: 2rem 0; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.2rem;
}
.about-feature i {
  color: var(--purple);
  font-size: 1.1rem;
  margin-top: 3px;
  min-width: 20px;
}
.about-feature div strong { display: block; color: var(--dark); font-size: 0.95rem; }
.about-feature div span { color: var(--text-light); font-size: 0.85rem; }

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

/* ── GALLERY (homepage) ── */
.gallery-bg { background: var(--bg-light); }
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
  margin-top: 3rem;
}
@media (max-width: 700px) { .gallery-masonry { columns: 2; } }
.gallery-thumb {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-thumb img {
  width: 100%;
  display: block;
  transition: transform 0.4s;
}
.gallery-thumb:hover img { transform: scale(1.05); }
.gallery-thumb-placeholder {
  width: 100%;
  background: linear-gradient(135deg, #2d1b69, var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  border-radius: 12px;
}
.gallery-thumb-placeholder i { font-size: 2rem; }
.gallery-cta-wrap { text-align: center; margin-top: 3rem; }
.btn-outline {
  border: 2px solid var(--purple);
  color: var(--purple);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}
.btn-outline:hover { background: var(--purple); color: #fff; }

/* ── TESTIMONIALS ── */
.testimonials-bg { background: var(--dark); }
.testimonials-bg .section-title { color: #fff; }
.testimonials-bg .section-subtitle { color: rgba(255,255,255,0.6); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 3rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.testimonial-stars { color: #FFB800; font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}
.author-info strong { display: block; color: #fff; font-size: 0.9rem; }
.author-info span { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

/* ── STEPS / HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 3rem;
}
.step-card { text-align: center; padding: 2rem 1.5rem; }
.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Playfair Display', serif;
}
.step-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.step-card p { color: var(--text-light); font-size: 0.9rem; }

/* ── CONTACT (homepage) ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 2rem;
}
.contact-item .icon {
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 0.9rem; color: var(--text-light); margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--dark); font-weight: 500; }
.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0d6f5;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
  background: #faf8ff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-submit:hover { background: var(--purple-light); transform: translateY(-2px); }

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

/* ── ABOUT PAGE ── */
.about-page-hero {
  background: linear-gradient(135deg, var(--dark), #2d1b69);
  padding: 140px 0 80px;
  text-align: center;
}
.about-page-hero h1 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}
.credential-bar {
  background: var(--purple);
  padding: 1.2rem 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.credential-item {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.credential-item i { color: var(--gold); }
.credential-item strong { color: #fff; }
.founder-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}
.founder-quote {
  border-left: 4px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}
.founder-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--purple);
}
.timeline { padding: 5rem 0; background: var(--bg-light); }
.timeline-items { max-width: 700px; margin: 3rem auto 0; }
.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 2.5rem;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 48px;
  width: 2px;
  height: calc(100% + 16px);
  background: var(--border);
}
.timeline-item:last-child::before { display: none; }
.timeline-year {
  min-width: 80px;
  height: 40px;
  background: var(--purple);
  color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.timeline-content h4 { color: var(--dark); font-size: 1rem; margin-bottom: 4px; }
.timeline-content p { color: var(--text-light); font-size: 0.9rem; }

@media (max-width: 900px) {
  .founder-section { grid-template-columns: 1fr; }
}

/* ── CLASSES PAGE ── */
.timing-banner {
  background: var(--dark);
  padding: 1.2rem 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.timing-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
}
.timing-item i { color: var(--gold); }
.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 3rem;
}
.class-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.class-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(106,13,173,0.15);
}
.class-card-top {
  background: linear-gradient(135deg, var(--dark), #2d1b69);
  padding: 2rem;
  text-align: center;
}
.class-card-top .class-icon { font-size: 3rem; margin-bottom: 1rem; }
.class-card-top h3 { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.2rem; }
.class-card-body { padding: 1.5rem; }
.class-card-body p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1rem; }
.timing-bar {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.78rem;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 1rem;
}
.timing-bar i { margin-right: 6px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-pill {
  background: rgba(106,13,173,0.08);
  color: var(--purple);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* ── CONTACT PAGE ── */
.contact-page-hero {
  background: linear-gradient(135deg, var(--dark), #2d1b69);
  padding: 140px 0 80px;
  text-align: center;
}
.contact-page-hero h1 { font-family: 'Playfair Display', serif; color: #fff; font-size: clamp(2.2rem, 5vw, 3.5rem); }
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 2rem;
}
.hours-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  border: 1px solid var(--border);
}
.hours-card .day { font-weight: 600; color: var(--dark); font-size: 0.9rem; margin-bottom: 4px; }
.hours-card .time { color: var(--purple); font-size: 0.85rem; font-weight: 500; }
.map-section { background: var(--bg-light); padding: 5rem 0; }
.map-section h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--dark); }
.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; margin: 1rem 0; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.social-links a:hover { background: var(--purple); color: #fff; transform: translateY(-3px); }
.footer-links h4, .footer-contact h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}
.footer-links ul li { margin-bottom: 0.75rem; }
.footer-links ul li a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: var(--transition); }
.footer-links ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact p { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-bottom: 0.75rem; display: flex; gap: 10px; }
.footer-contact i { color: var(--gold); min-width: 16px; margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.55); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.85rem; }

@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
