@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Unique Indigo-Amber premium palette */
  --primary: #6C3CE1;
  --primary-dark: #4A1DB8;
  --primary-light: #EDE5FF;
  --primary-glow: rgba(108,60,225,0.25);
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --accent-light: #FEF3C7;
  --dark: #0F0A1F;
  --dark-card: #1A1230;
  --text: #1E1535;
  --text-mid: #4A4262;
  --text-light: #7A7196;
  --white: #FFFFFF;
  --off-white: #FAFAFD;
  --light-bg: #F5F3FA;
  --border: #E2DDF0;
  --success: #10B981;
  --whatsapp: #25D366;
  --shadow-sm: 0 2px 12px rgba(108,60,225,0.06);
  --shadow-md: 0 8px 30px rgba(108,60,225,0.10);
  --shadow-lg: 0 16px 50px rgba(108,60,225,0.14);
  --shadow-glow: 0 0 40px rgba(108,60,225,0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===== ANIMATIONS ===== */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 var(--primary-glow); }
  50% { box-shadow: 0 0 0 12px rgba(108,60,225,0); }
}
@keyframes pulseWA {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 4px 35px rgba(37,211,102,0.55); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226,221,240,0.5);
  transition: all 0.4s var(--ease);
}
.header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.97);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1180px; margin: 0 auto;
}
.logo {
  font-size: 1.1rem; font-weight: 800; color: var(--primary);
  display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.3px;
}
.logo span { color: var(--dark); }
.logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: white;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 500; color: var(--text-mid);
  transition: all 0.3s var(--ease); position: relative;
}
.nav a:hover, .nav a.active {
  background: var(--primary-light); color: var(--primary); font-weight: 600;
}
.header-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 10px 22px; border-radius: 50px;
  font-weight: 600; font-size: 0.85rem;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 15px var(--primary-glow);
}
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--primary-glow);
}
.menu-toggle {
  display: none; background: none; border: none; font-size: 1.5rem;
  color: var(--dark); cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  padding: 150px 0 90px;
  background: var(--dark);
  position: relative; overflow: hidden; color: var(--white);
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(108,60,225,0.25) 0%, transparent 70%);
  animation: floatY 8s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  animation: floatY 10s ease-in-out infinite 2s;
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 820px; margin: 0 auto;
  animation: slideUp 0.8s var(--ease);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(108,60,225,0.2);
  border: 1px solid rgba(108,60,225,0.35);
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 500; margin-bottom: 28px;
  backdrop-filter: blur(10px);
  color: #C4B5FD;
}
.hero-badge .badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); animation: pulseGlow 2s infinite;
}
.hero h1 {
  font-size: 3.2rem; font-weight: 900; line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -1px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), #FBBF24, var(--accent));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
.hero p {
  font-size: 1.15rem; opacity: 0.75; margin-bottom: 40px;
  line-height: 1.8; font-weight: 300;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  transition: all 0.35s var(--ease); border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif; position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(245,158,11,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245,158,11,0.45);
}
.btn-whatsapp {
  background: var(--whatsapp); color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #1EBE5D; transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}
.btn-violet {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-violet:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--primary-glow);
}

/* Trust Bar */
.trust-bar {
  display: flex; justify-content: center; gap: 40px;
  margin-top: 56px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-item { text-align: center; font-size: 0.82rem; opacity: 0.7; }
.trust-item .t-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin: 0 auto 10px;
}
.trust-item strong { display: block; font-size: 1rem; color: var(--white); }
.trust-item span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-alt { background: var(--light-bg); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .label {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary-light); color: var(--primary);
  padding: 6px 18px; border-radius: 50px;
  font-size: 0.76rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 16px;
}
.section-header h2 {
  font-size: 2.4rem; font-weight: 800; color: var(--dark);
  margin-bottom: 14px; letter-spacing: -0.5px;
}
.section-header > p {
  color: var(--text-light); max-width: 560px; margin: 0 auto;
  font-size: 1.05rem; font-weight: 300;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 22px;
  text-align: center; transition: all 0.4s var(--ease);
  position: relative;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%); width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 0 0 4px 4px; opacity: 0;
  transition: all 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(108,60,225,0.2);
}
.service-card:hover::before { opacity: 1; width: 80px; }
a.service-card { display: block; color: inherit; cursor: pointer; }
.service-card .s-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-light), #F0EBFF);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 18px;
  transition: all 0.4s var(--ease);
}
.service-card:hover .s-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; transform: scale(1.08);
}
.service-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 0.84rem; color: var(--text-light); line-height: 1.6; }

/* ===== BRANDS ===== */
.brands-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.brand-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 14px;
  text-align: center; transition: all 0.4s var(--ease);
  cursor: pointer; position: relative; overflow: hidden;
}
.brand-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(108,60,225,0.05), rgba(245,158,11,0.05));
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.brand-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-md);
  border-color: rgba(108,60,225,0.25);
}
.brand-card:hover::after { opacity: 1; }
.brand-card .b-dot {
  width: 40px; height: 40px; border-radius: 50%;
  margin: 0 auto 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; color: white;
  position: relative; z-index: 1;
}
.brand-card h3 { font-size: 0.85rem; font-weight: 700; position: relative; z-index: 1; }

/* ===== WHY CHOOSE ===== */
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.why-card {
  text-align: center; padding: 30px 18px;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); transition: all 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transition: transform 0.4s var(--ease);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.why-card:hover::before { transform: scaleX(1); }
.why-card .w-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 14px;
  transition: all 0.4s var(--ease);
}
.why-card:hover .w-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; transform: rotate(-5deg) scale(1.05);
}
.why-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.why-card p { font-size: 0.82rem; color: var(--text-light); }

/* ===== PROCESS ===== */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 30px;
  left: calc(12.5% + 12px); right: calc(12.5% + 12px);
  height: 2px; background: linear-gradient(90deg,
    var(--primary), var(--accent), var(--primary));
  opacity: 0.2;
}
.process-card { text-align: center; position: relative; z-index: 1; }
.process-card .step {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
  color: var(--primary); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900; margin: 0 auto 18px;
  transition: all 0.4s var(--ease); position: relative;
}
.process-card:hover .step {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent; color: white;
  transform: scale(1.1);
  box-shadow: 0 0 30px var(--primary-glow);
}
.process-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.process-card p { font-size: 0.84rem; color: var(--text-light); }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hidden-review { display: none; }
.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px;
  transition: all 0.4s var(--ease); position: relative;
}
.review-card::before {
  content: '"'; position: absolute; top: 16px; right: 24px;
  font-size: 4rem; font-weight: 900; color: var(--primary-light);
  line-height: 1; font-family: Georgia, serif;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-stars { color: var(--accent); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-card > p {
  font-size: 0.92rem; color: var(--text-mid); margin-bottom: 18px;
  font-style: italic; line-height: 1.7; position: relative; z-index: 1;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
}
.reviewer-name { font-weight: 600; font-size: 0.9rem; }
.reviewer-loc { font-size: 0.78rem; color: var(--text-light); }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 14px; overflow: hidden; background: var(--white);
  transition: all 0.3s var(--ease);
}
.faq-item:hover { border-color: rgba(108,60,225,0.2); }
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; padding: 20px 26px; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.95rem; font-weight: 600; font-family: 'Outfit', sans-serif;
  color: var(--text); cursor: pointer; text-align: left;
  transition: all 0.3s var(--ease);
}
.faq-q:hover { color: var(--primary); }
.faq-q .icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 600; flex-shrink: 0;
  transition: all 0.4s var(--ease);
}
.faq-item.open .faq-q .icon {
  transform: rotate(45deg);
  background: var(--primary); color: white;
}
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease);
  padding: 0 26px; font-size: 0.9rem; color: var(--text-light); line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 26px 20px; }

/* ===== CONTACT ===== */
.contact-detail {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; background: var(--off-white); border-radius: var(--radius);
  margin-bottom: 14px; font-weight: 500;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.contact-detail:hover {
  border-color: rgba(108,60,225,0.2);
  box-shadow: var(--shadow-sm);
}
.contact-detail .c-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 70px 0; text-align: center;
  background: var(--dark);
  position: relative; overflow: hidden;
  color: var(--white);
}
.cta-banner::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(108,60,225,0.2), transparent 70%);
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.12), transparent 70%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 14px; }
.cta-banner p { opacity: 0.7; margin-bottom: 32px; font-size: 1.05rem; font-weight: 300; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark); color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
  position: relative;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-size: 1.1rem; font-weight: 800; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.footer-logo .fl-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.footer-logo .fl-text {
  background: linear-gradient(135deg, #C4B5FD, var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer h4 {
  color: var(--white); font-size: 0.95rem; margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: 1px; font-weight: 700;
}
.footer-about { font-size: 0.88rem; line-height: 1.8; }
.footer-links a {
  display: block; padding: 6px 0; font-size: 0.88rem;
  transition: all 0.3s var(--ease);
}
.footer-links a:hover { color: var(--accent); padding-left: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0; text-align: center;
  font-size: 0.8rem; opacity: 0.5;
}
.footer-disclaimer {
  background: rgba(255,255,255,0.04); border-radius: var(--radius-sm);
  padding: 16px 20px; font-size: 0.82rem; margin-top: 24px;
  border-left: 3px solid var(--accent);
  line-height: 1.7;
}

/* ===== FLOATING BUTTONS ===== */
.floating-whatsapp {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--whatsapp); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  transition: all 0.35s var(--ease); animation: pulseWA 2.5s infinite;
}
.floating-whatsapp:hover { transform: scale(1.12) rotate(-5deg); }
.floating-call {
  position: fixed; bottom: 28px; left: 28px; z-index: 999;
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 14px 26px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  box-shadow: 0 4px 25px var(--primary-glow);
  transition: all 0.35s var(--ease); animation: pulseGlow 2.5s infinite;
}
.floating-call:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 35px var(--primary-glow);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,10,31,0.97); backdrop-filter: blur(20px);
  z-index: 9999; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white); font-size: 1.3rem; font-weight: 600;
  padding: 14px 36px; border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease); text-align: center;
}
.mobile-nav a:hover { background: rgba(108,60,225,0.2); }
.mobile-nav .close-btn {
  position: absolute; top: 18px; right: 18px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  color: var(--white); width: 50px; height: 50px;
  font-size: 1.5rem; cursor: pointer; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease); z-index: 10000;
}
.mobile-nav .close-btn:hover { background: rgba(108,60,225,0.3); }
.mobile-nav .mobile-phone-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 24px; padding: 16px 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 50px; font-size: 1.15rem; font-weight: 700;
  box-shadow: 0 4px 25px var(--primary-glow);
}

/* ===== PAGE HERO (Sub-pages) ===== */
.page-hero {
  padding: 150px 0 70px;
  background: var(--dark);
  position: relative; overflow: hidden; color: var(--white);
}
.page-hero::before {
  content: ''; position: absolute; top: -40%; right: -15%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(108,60,225,0.2) 0%, transparent 70%);
  animation: floatY 8s ease-in-out infinite;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
  animation: floatY 10s ease-in-out infinite 2s;
}
.page-hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 720px; margin: 0 auto;
  animation: slideUp 0.8s var(--ease);
}
.page-hero h1 {
  font-size: 2.8rem; font-weight: 900; line-height: 1.15;
  margin-bottom: 16px; letter-spacing: -0.5px;
}
.page-hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), #FBBF24, var(--accent));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
.page-hero p {
  font-size: 1.05rem; opacity: 0.7; line-height: 1.8; font-weight: 300;
}

/* ===== LEGAL CONTENT (Privacy, Terms, Refund) ===== */
.legal-content {
  max-width: 820px; margin: 0 auto;
}
.legal-updated {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-light); color: var(--primary);
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; margin-bottom: 36px;
}
.legal-update-icon { font-size: 1rem; }
.legal-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 36px;
  margin-bottom: 20px; transition: all 0.3s var(--ease);
}
.legal-card:hover {
  border-color: rgba(108,60,225,0.15);
  box-shadow: var(--shadow-sm);
}
.legal-card h2 {
  font-size: 1.25rem; font-weight: 800; color: var(--dark);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
}
.legal-card h3 {
  font-size: 1rem; font-weight: 700; color: var(--text);
  margin: 18px 0 10px;
}
.legal-card p {
  font-size: 0.92rem; color: var(--text-mid); line-height: 1.85;
  margin-bottom: 12px;
}
.legal-card ul {
  padding-left: 0; margin: 12px 0;
}
.legal-card ul li {
  position: relative; padding-left: 22px;
  font-size: 0.9rem; color: var(--text-mid); line-height: 1.85;
  margin-bottom: 8px;
}
.legal-card ul li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.legal-card ul li strong { color: var(--text); }
.legal-card a { color: var(--primary); font-weight: 600; }
.legal-card a:hover { text-decoration: underline; }
.legal-highlight {
  background: var(--accent-light); border: 1px solid rgba(245,158,11,0.3);
  border-radius: var(--radius-sm); padding: 18px 22px; margin: 14px 0;
  border-left: 4px solid var(--accent);
}
.legal-highlight p { margin: 0; color: var(--text); }

/* Legal Contact Card */
.legal-card-contact {
  background: linear-gradient(135deg, rgba(108,60,225,0.03), rgba(245,158,11,0.03));
  border-color: rgba(108,60,225,0.15);
}
.legal-contact-info {
  display: flex; flex-direction: column; gap: 12px; margin-top: 16px;
}
.legal-contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px; background: var(--white);
  border-radius: var(--radius-sm); border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.legal-contact-item:hover {
  border-color: rgba(108,60,225,0.2);
  box-shadow: var(--shadow-sm);
}
.lc-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.lc-icon-wa {
  background: linear-gradient(135deg, var(--whatsapp), #1EBE5D);
}

/* ===== CONTACT PAGE ===== */
.contact-page-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px;
  align-items: start;
}
.contact-form-wrapper {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-header { margin-bottom: 28px; }
.form-header h2 {
  font-size: 1.5rem; font-weight: 800; color: var(--dark);
  margin-bottom: 6px;
}
.form-header p { color: var(--text-light); font-size: 0.92rem; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem; font-weight: 600; color: var(--text);
}
.form-group .required { color: #EF4444; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-family: 'Outfit', sans-serif;
  font-size: 0.92rem; color: var(--text);
  background: var(--off-white); transition: all 0.3s var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light); font-weight: 300;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }
.form-submit-btn {
  width: 100%; justify-content: center; padding: 16px;
  font-size: 1rem; margin-top: 4px;
}
.form-success {
  text-align: center; padding: 48px 24px;
  animation: slideUp 0.5s var(--ease);
}
.form-success .success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.form-success h3 {
  font-size: 1.4rem; font-weight: 800; color: var(--dark);
  margin-bottom: 10px;
}
.form-success p { color: var(--text-light); font-size: 0.95rem; }

/* Contact Sidebar */
.contact-info-sidebar { display: flex; flex-direction: column; gap: 24px; }
.info-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.info-card-header {
  padding: 24px 28px 18px;
  background: linear-gradient(135deg, rgba(108,60,225,0.04), rgba(245,158,11,0.04));
  border-bottom: 1px solid var(--border);
}
.info-card-header h3 {
  font-size: 1.15rem; font-weight: 800; color: var(--dark);
  margin-bottom: 4px;
}
.info-card-header p { color: var(--text-light); font-size: 0.85rem; }
.info-items { padding: 8px 14px; }
.info-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px; border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease); cursor: default;
}
a.info-item { cursor: pointer; }
.info-item:hover { background: var(--light-bg); }
.info-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.info-icon-wa {
  background: linear-gradient(135deg, var(--whatsapp), #1EBE5D);
}
.info-icon-hours {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}
.info-item strong {
  display: block; font-size: 0.88rem; font-weight: 700; color: var(--text);
}
.info-item span {
  font-size: 0.82rem; color: var(--text-light);
}

/* Map Card */
.map-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-sm);
}
.map-card h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--dark);
  margin-bottom: 14px;
}
.map-embed { border-radius: 12px; overflow: hidden; margin-bottom: 12px; }
.map-note {
  font-size: 0.82rem; color: var(--text-light);
  text-align: center; margin-top: 8px;
}

/* ===== REFUND HIGHLIGHTS ===== */
.refund-highlights {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-bottom: 36px;
}
.refund-highlight-card {
  text-align: center; padding: 28px 18px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
}
.refund-highlight-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-md);
  border-color: rgba(108,60,225,0.2);
}
.rh-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 12px;
}
.refund-highlight-card h3 {
  font-size: 0.95rem; font-weight: 700; color: var(--dark);
  margin-bottom: 4px;
}
.refund-highlight-card p {
  font-size: 0.82rem; color: var(--text-light); line-height: 1.6;
}

/* Refund Scenarios */
.refund-scenario {
  border-radius: var(--radius-sm); padding: 18px 22px; margin: 16px 0;
}
.refund-scenario h3 { margin: 0 0 12px; font-size: 0.95rem; }
.refund-eligible {
  background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.2);
  border-left: 4px solid var(--success);
}
.refund-ineligible {
  background: rgba(239,68,68,0.04); border: 1px solid rgba(239,68,68,0.15);
  border-left: 4px solid #EF4444;
}

/* Refund Steps */
.refund-steps { display: flex; flex-direction: column; gap: 16px; margin-top: 16px; }
.refund-step {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px; background: var(--off-white);
  border-radius: var(--radius-sm); border: 1px solid var(--border);
}
.rs-number {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem; flex-shrink: 0;
}
.refund-step h4 {
  font-size: 0.92rem; font-weight: 700; color: var(--dark);
  margin-bottom: 2px;
}
.refund-step p {
  font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; margin: 0;
}

/* Timeline Table */
.timeline-table { overflow-x: auto; margin-top: 16px; }
.timeline-table table {
  width: 100%; border-collapse: collapse;
  border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--border);
}
.timeline-table th {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white); padding: 14px 18px;
  font-size: 0.85rem; font-weight: 700; text-align: left;
}
.timeline-table td {
  padding: 14px 18px; font-size: 0.88rem; color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.timeline-table tr:last-child td { border-bottom: none; }
.timeline-table tr:hover td { background: var(--light-bg); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .refund-highlights { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .header-inner { padding: 10px 16px; }
  .logo { font-size: 0.9rem; gap: 7px; }
  .logo-icon { width: 30px; height: 30px; font-size: 0.9rem; border-radius: 8px; }
  .header-cta { padding: 8px 16px; font-size: 0.78rem; }
  .hero { padding: 130px 0 70px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.95rem; }
  .section { padding: 60px 0; }
  .section-header h2 { font-size: 1.7rem; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .process-grid::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .trust-bar { flex-wrap: wrap; gap: 20px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .floating-call { 
    bottom: 0; left: 0; right: 0; width: 100%; 
    border-radius: 20px 20px 0 0;
    justify-content: center; padding: 18px; font-size: 1.15rem; font-weight: 700;
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    border-top: 1px solid rgba(255,255,255,0.15);
    z-index: 1000;
  }
  .floating-whatsapp { bottom: 85px; right: 20px; }
  body { padding-bottom: 60px; }
  .cta-banner h2 { font-size: 1.6rem; }
  .page-hero { padding: 130px 0 60px; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero p { font-size: 0.92rem; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form-wrapper { padding: 28px 22px; }
  .legal-card { padding: 24px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .refund-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 1.7rem; }
  .trust-bar { gap: 14px; }
  .trust-item .t-icon { width: 40px; height: 40px; font-size: 1.1rem; }
  .page-hero h1 { font-size: 1.7rem; }
  .legal-card { padding: 20px 18px; }
  .legal-card h2 { font-size: 1.1rem; }
  .contact-form-wrapper { padding: 22px 16px; }
}

@keyframes shimmerBar {
  to { background-position: 200% center; }
}
