/* ===========================
   DESIGN TOKENS
=========================== */
:root {
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --purple-pale: #f3f0ff;
  --teal: #0d9488;
  --teal-light: #5eead4;
  --teal-pale: #f0fdfa;
  --accent: #f59e0b;
  --dark: #1e1b4b;
  --body: #374151;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f8f6ff;
  --border: #e5e7eb;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(124,58,237,0.10);
  --shadow-md: 0 8px 40px rgba(124,58,237,0.15);
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ===========================
   LAYOUT
=========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

/* ===========================
   TYPOGRAPHY HELPERS
=========================== */
h1, h2, h3 { font-family: 'Poppins', sans-serif; line-height: 1.25; color: var(--dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
.highlight { color: var(--purple); }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-pale);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 14px;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header p { color: var(--muted); margin-top: 10px; font-size: 1.05rem; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.97rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple), #6d28d9);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124,58,237,0.45);
}
.btn-outline {
  border: 2px solid var(--purple);
  color: var(--purple);
}
.btn-outline:hover { background: var(--purple-pale); }
.btn-full { width: 100%; justify-content: center; }

/* ===========================
   NAVBAR
=========================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { font-size: 2rem; }

/* ===========================
   LOGO IMAGE
=========================== */
.logo-img-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: visible;
  flex-shrink: 0;
  transition: transform var(--transition);
  background: transparent;
  margin-right: 8px;
}
.logo-img-wrap:hover {
  transform: rotate(8deg) scale(1.08);
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(124,58,237,0.35));
}
.footer-logo-wrap {
  width: 76px;
  height: 76px;
}
.footer-logo-wrap .logo-img {
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}
.footer-logo-wrap:hover {
  transform: rotate(8deg) scale(1.08);
}
.logo-main {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.2;
}
.logo-sub {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--body);
  transition: var(--transition);
}
.nav-links a:hover { background: var(--purple-pale); color: var(--purple); }
.nav-links a.active {
  background: var(--purple-pale);
  color: var(--purple);
  font-weight: 800;
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 3px;
  background: var(--purple);
  border-radius: 999px;
}
.nav-cta.active::after { display: none; }
.nav-cta {
  background: linear-gradient(135deg, var(--purple), #6d28d9) !important;
  color: #fff !important;
  padding: 10px 22px !important;
}
.nav-cta:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(124,58,237,.4); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   HERO
=========================== */
#hero {
  position: relative;
  padding: 140px 0 60px;
  background: linear-gradient(160deg, #f3f0ff 0%, #e0f7f4 100%);
  overflow: hidden;
}
.hero-bg-circles { position: absolute; inset: 0; pointer-events: none; }
.circle {
  position: absolute;
  border-radius: 50%;
  opacity: .18;
}
.c1 { width: 500px; height: 500px; background: var(--purple-light); top: -160px; right: -100px; }
.c2 { width: 300px; height: 300px; background: var(--teal-light); bottom: 0; left: -80px; }
.c3 { width: 200px; height: 200px; background: var(--accent); top: 50%; left: 40%; }
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { display: flex; flex-direction: column; gap: 20px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--purple);
  width: fit-content;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.hero-text p { font-size: 1.1rem; color: var(--body); max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: fit-content;
  margin-top: 8px;
}
.stat { text-align: center; }
.stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--purple); line-height: 1; }
.stat span { font-size: 0.75rem; color: var(--muted); font-weight: 600; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }
.hero-img {
  position: relative;
}
.hero-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-wave {
  position: relative;
  margin-top: 48px;
}
.hero-wave svg { width: 100%; height: 60px; display: block; }

/* ===========================
   MARQUEE
=========================== */
.marquee-wrap {
  background: linear-gradient(135deg, var(--purple), #6d28d9);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  white-space: nowrap;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: .9;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===========================
   ABOUT
=========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}
.about-card {
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.about-card:hover { transform: translateY(-4px); }
.card-purple { background: linear-gradient(135deg, var(--purple-pale), #ede9fe); border: 1px solid #ddd6fe; }
.card-teal { background: linear-gradient(135deg, var(--teal-pale), #ccfbf1); border: 1px solid #99f6e4; }
/* About section icon boxes */
.about-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.purple-box { background: linear-gradient(135deg, var(--purple-light), var(--purple)); }
.teal-box   { background: linear-gradient(135deg, var(--teal-light), var(--teal)); }
.about-icon-box svg { width: 22px; height: 22px; stroke: white; stroke-width: 2; }
.about-card h3 { font-size: 1rem; color: var(--dark); }
.about-card p { font-size: 0.88rem; color: var(--muted); }
.about-badge-float {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: white;
  border: 2px solid var(--accent);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(245,158,11,.2);
}
.about-text { display: flex; flex-direction: column; gap: 16px; }
.about-text p { color: var(--body); font-size: 1rem; }
.about-list { display: flex; flex-direction: column; gap: 8px; }
.about-list li { font-size: 0.95rem; font-weight: 600; color: var(--dark); }

/* ===========================
   SERVICES
=========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
/* Service icon boxes – color per-card via CSS vars */
.svc-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--icbg, #f3f0ff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 4px;
  transition: transform var(--transition);
}
.svc-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: var(--ic, #7c3aed);
  stroke-width: 2;
}
.service-card:hover .svc-icon-box { transform: scale(1.08); }
.service-card h3 { font-size: 1rem; color: var(--dark); }
.service-card p { font-size: 0.88rem; color: var(--muted); flex: 1; }
.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 8px; }
.card-highlight {
  background: linear-gradient(135deg, var(--purple-pale), #ede9fe);
  border-color: #ddd6fe;
}

/* ===========================
   WHY US
=========================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--purple-light); }
/* Why-us icon boxes */
.why-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--purple-pale), #ede9fe);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--purple);
  stroke-width: 1.8;
}
.why-card:hover .why-icon-box {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 6px 20px rgba(124,58,237,.2);
}
.why-card h3 { margin-bottom: 8px; font-size: 1rem; }
.why-card p { font-size: 0.88rem; color: var(--muted); }

/* ===========================
   TEAM
=========================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.team-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
/* Team avatars with SVG icons */
.team-avatar svg {
  width: 30px;
  height: 30px;
  stroke: white;
  stroke-width: 1.8;
}
.team-card h3 { font-size: 0.95rem; }
.team-role { font-size: 0.78rem; color: var(--purple); font-weight: 700; margin: 4px 0 8px; }
.team-card p { font-size: 0.82rem; color: var(--muted); }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.testi-card.featured {
  background: linear-gradient(135deg, var(--purple), #6d28d9);
  color: white;
  border: none;
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
}
.testi-card:not(.featured):hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stars { font-size: 1.1rem; }
.testi-card p { font-size: 0.95rem; line-height: 1.7; flex: 1; }
.testi-card.featured p { opacity: .92; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-card.featured .author-avatar { background: rgba(255,255,255,.25); }
.testi-author strong { font-size: 0.92rem; display: block; }
.testi-author small { font-size: 0.78rem; opacity: .7; }

/* ===========================
   CONTACT
=========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info p { color: var(--muted); font-size: 1rem; }
.contact-items { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}
/* Contact icon boxes */
.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--purple);
  stroke-width: 2;
}
.contact-item strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--purple); margin-bottom: 2px; }
.contact-item p, .contact-item a { font-size: 0.92rem; color: var(--body); }
.contact-item a:hover { color: var(--purple); }
.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form h3 { font-size: 1.3rem; color: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.93rem;
  color: var(--body);
  transition: border-color var(--transition);
  background: #fafafa;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  background: white;
  box-shadow: 0 0 0 3px rgba(124,58,237,.1);
}
.form-group textarea { resize: vertical; }
.form-success {
  display: none;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #065f46;
}

/* ===========================
   FOOTER
=========================== */
#footer {
  background: var(--dark);
  color: rgba(255,255,255,.8);
  padding: 48px 0 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand .logo-main { color: white; font-size: 1rem; }
.footer-brand .logo-sub { color: rgba(255,255,255,.5); }
.footer-links { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-links a {
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.footer-links a:hover { background: rgba(255,255,255,.1); color: white; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--purple); color: white; }
.footer-bottom {
  text-align: center;
  padding: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
}

/* ===========================
   FLOATING ACTION BUTTONS
=========================== */
.fab-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  display: flex;
  gap: 16px;
  align-items: center;
}
.whatsapp-fab, .insta-fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.whatsapp-fab {
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  animation: pulse-green 2.5s ease-in-out infinite;
}
.whatsapp-fab:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(37,211,102,.5); }

.insta-fab {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 20px rgba(225,48,108,.4);
  animation: pulse-insta 2.5s ease-in-out infinite;
  animation-delay: 1.25s;
}
.insta-fab:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(225,48,108,.5); }

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.7); transform: scale(1.05); }
}
@keyframes pulse-insta {
  0%, 100% { box-shadow: 0 4px 20px rgba(225,48,108,.4); }
  50% { box-shadow: 0 4px 30px rgba(225,48,108,.7); transform: scale(1.05); }
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: white; padding: 16px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 10px; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 32px; }
  .hero-img { order: -1; max-width: 400px; margin: 0 auto; }
  .hero-stats { flex-wrap: wrap; gap: 14px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 480px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-card.featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-social { justify-content: center; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* ===========================
   MAP
=========================== */
.map-container {
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: white;
  flex-wrap: wrap;
}
.map-header span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}
.map-open-btn {
  padding: 10px 20px !important;
  font-size: 0.84rem !important;
  white-space: nowrap;
}
.map-container iframe { display: block; }

/* ===========================
   SCROLL ANIMATIONS
=========================== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
