/* =========================================================
   DESIGN TOKENS — Template 3: Lumen (Coral + Cream)
   ========================================================= */
:root {
  --color-primary: #ff4d6d;        /* Vibrant coral */
  --color-primary-dark: #e63956;
  --color-primary-light: #ffe4e8;
  --color-secondary: #7c3aed;      /* Purple accent */
  --color-secondary-light: #ede9fe;
  --color-accent: #fbbf24;         /* Sunny yellow */
  --color-bg: #fff8f3;             /* Warm cream */
  --color-surface: #ffffff;
  --color-text: #1a1033;           /* Deep plum-black */
  --color-text-muted: #6b6380;
  --color-border: #f1e8e0;
  --color-whatsapp: #25d366;

  --gradient-primary: linear-gradient(135deg, #ff4d6d 0%, #ff8a5b 100%);
  --gradient-warm: linear-gradient(135deg, #fff8f3 0%, #ffe4e8 100%);
  --gradient-hero: linear-gradient(135deg, rgba(255,77,109,0.85) 0%, rgba(124,58,237,0.75) 100%);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(255,77,109,0.08);
  --shadow-md: 0 12px 32px rgba(255,77,109,0.12);
  --shadow-lg: 0 24px 60px rgba(255,77,109,0.18);
  --shadow-soft: 0 8px 24px rgba(26,16,51,0.06);

  --container: 1200px;
  --nav-height: 80px;

  --font: 'Outfit', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; position: relative; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.1;
  color: var(--color-text);
}
.section-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: 60px;
  line-height: 1.7;
}
.section-head { text-align: center; }
.section-head .section-subtitle { margin-left: auto; margin-right: auto; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(255,248,243,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.nav.scrolled {
  box-shadow: var(--shadow-soft);
  background: rgba(255,248,243,0.95);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* BRAND — plug-and-play */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease;
}
.logo-wrap:hover { transform: rotate(15deg) scale(1.05); }
.logo-wrap .logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.brand-name {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  color: var(--color-text);
}
.brand-name .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  margin-left: 2px;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--color-primary); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width 0.3s ease, left 0.3s ease;
}
.nav-links a:hover::after { width: 100%; left: 0; }

.nav-cta {
  background: var(--gradient-primary);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--color-text);
  position: relative;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger span::before,
.hamburger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px; height: 2.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.hamburger span::before { top: -7px; }
.hamburger span::after { top: 7px; }
.hamburger.open span { background: transparent; }
.hamburger.open span::before { transform: translateY(7px) rotate(45deg); }
.hamburger.open span::after { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://maex.in/sites/static/images/1c1a33ebc-d71a-4482-96c7-a48686614fcc.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}
/* Decorative blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}
.hero-blob.b1 {
  width: 400px; height: 400px;
  background: var(--color-accent);
  top: -100px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero-blob.b2 {
  width: 300px; height: 300px;
  background: #ff8a5b;
  bottom: -80px; left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(30px,-30px); }
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.25);
}
.hero-eyebrow .emoji { font-size: 1.1rem; }
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  max-width: 900px;
  margin: 0 auto 28px;
}
.hero h1 .underline {
  position: relative;
  display: inline-block;
}
.hero h1 .underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%; height: 12px;
  background: var(--color-accent);
  opacity: 0.5;
  border-radius: 6px;
  z-index: -1;
}
.hero p {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 640px;
  margin: 0 auto 44px;
  opacity: 0.95;
  line-height: 1.65;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  font-weight: 500;
}
.hero-scroll .arrow {
  width: 22px; height: 22px;
  border-right: 2px solid rgba(255,255,255,0.85);
  border-bottom: 2px solid rgba(255,255,255,0.85);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
  border-radius: 2px;
}
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translate(0,0); }
  50% { transform: rotate(45deg) translate(4px,4px); }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--color-primary-light);
  box-shadow: var(--shadow-lg);
}
.about-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-visual:hover img { transform: scale(1.05); }
.about-visual .badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: #fff;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}
.badge-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-text strong { display: block; font-size: 1.2rem; font-weight: 800; letter-spacing: -0.02em; }
.badge-text span { font-size: 0.82rem; color: var(--color-text-muted); }

.about-text h2 { margin-bottom: 24px; }
.about-text p { color: var(--color-text-muted); margin-bottom: 18px; font-size: 1.08rem; line-height: 1.75; }
.about-text .lead {
  font-size: 1.25rem;
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--color-surface); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--color-bg);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.service-card:nth-child(2) .service-icon {
  background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
}
.service-card:nth-child(3) .service-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* =========================================================
   BENEFITS / FEATURES
   ========================================================= */
.benefits {
  background: var(--gradient-warm);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.benefit {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.benefit-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit:nth-child(2) .benefit-icon { background: var(--color-secondary-light); color: var(--color-secondary); }
.benefit:nth-child(3) .benefit-icon { background: #fef3c7; color: #d97706; }
.benefit:nth-child(4) .benefit-icon { background: #dcfce7; color: #16a34a; }
.benefit:nth-child(5) .benefit-icon { background: #dbeafe; color: #2563eb; }
.benefit:nth-child(6) .benefit-icon { background: #fce7f3; color: #db2777; }
.benefit h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.benefit p { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.6; }

/* =========================================================
   HOURS & ADDRESS
   ========================================================= */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.info-card {
  background: var(--color-surface);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
}
.info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.info-card h3 .icon-circle {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.hours-list { display: flex; flex-direction: column; gap: 4px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  transition: background 0.2s ease;
}
.hours-row:hover { background: var(--color-bg); }
.hours-row .day { font-weight: 600; }
.hours-row .time { color: var(--color-text-muted); }
.hours-row.today {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-weight: 700;
}
.hours-row.today .time { color: var(--color-primary-dark); font-weight: 700; }

.address-block { display: flex; flex-direction: column; gap: 22px; }
.address-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.address-row .icon-circle {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.address-row .label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 4px;
}
.address-row .value { font-weight: 600; font-size: 1.05rem; }
.address-row .value a { transition: color 0.2s ease; }
.address-row .value a:hover { color: var(--color-primary); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: var(--color-surface); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--color-bg);
  padding: 36px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.testimonial .quote-mark {
  position: absolute;
  top: 20px; right: 28px;
  font-size: 5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 700;
  opacity: 0.25;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
  color: var(--color-accent);
}
.testimonial p {
  color: var(--color-text);
  font-size: 1.02rem;
  margin-bottom: 28px;
  line-height: 1.75;
  font-weight: 500;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  box-shadow: var(--shadow-sm);
}
.testimonial:nth-child(2) .author-avatar {
  background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
}
.testimonial:nth-child(3) .author-avatar {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}
.author-info strong { display: block; font-size: 1rem; font-weight: 700; }
.author-info span { font-size: 0.85rem; color: var(--color-text-muted); }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(255,77,109,0.6) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .zoom-icon {
  position: absolute;
  bottom: 18px; right: 18px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.gallery-item:hover .zoom-icon { opacity: 1; transform: translateY(0) scale(1); }

/* Gallery Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(26,16,51,0.92);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.25s ease;
}
.modal.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-content {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.modal-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  transition: transform 0.2s ease;
  box-shadow: var(--shadow-md);
}
.modal-close:hover { transform: rotate(90deg); }

/* =========================================================
   MAP
   ========================================================= */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid #fff;
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-primary);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .logo-wrap { background: #fff; }
.footer-brand .brand-name { color: #fff; }
.footer-copy { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-copy a { color: var(--color-accent); font-weight: 600; }

/* =========================================================
   FLOATING CTA BAR (mobile)
   ========================================================= */
.mobile-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  display: none;
  gap: 10px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  padding: 10px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}
.mobile-cta a {
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mobile-cta .call-btn {
  background: var(--gradient-primary);
  color: #fff;
}
.mobile-cta .wa-btn { background: var(--color-whatsapp); color: #fff; }

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  z-index: 95;
  transition: transform 0.3s ease;
  animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 500px; margin: 0 auto; }
  .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-top: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a::after { display: none; }
  .hamburger { display: flex; }
  .nav-cta { width: 100%; justify-content: center; }

  .section { padding: 76px 0; }
  .hero-inner { padding: 60px 24px; }
  .hero-scroll { display: none; }

  .mobile-cta { display: flex; }
  .whatsapp-float { bottom: 100px; right: 20px; width: 56px; height: 56px; }

  .info-card { padding: 32px 28px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .container { padding: 0 18px; }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }