/* ============================================================
   RIYAZ DIGITAL SERVICES — styles.css
   Deep Blue + Teal Palette, Modern, Premium
   ============================================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  --blue-900: #0A1628;
  --blue-800: #0D1F3C;
  --blue-700: #122850;
  --blue-600: #1B3A6B;
  --blue-500: #1E4B8C;
  --blue-400: #2563EB;
  --blue-300: #3B82F6;
  --teal-600: #0D7377;
  --teal-500: #0EA5A0;
  --teal-400: #14B8B3;
  --teal-300: #2DD4BF;
  --teal-200: #5EEAD4;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-50: #F1F5F9;
  --gray-100: #E2E8F0;
  --gray-200: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --green-500: #10B981;
  --yellow-500: #F59E0B;
  --red-500: #EF4444;
  --gradient-blue-teal: linear-gradient(135deg, var(--blue-500), var(--teal-500));
  --gradient-hero: linear-gradient(135deg, #0A1628 0%, #122850 40%, #0D4A5A 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15), 0 4px 16px rgba(0,0,0,0.08);
  --shadow-glow-blue: 0 0 30px rgba(37,99,235,0.25);
  --shadow-glow-teal: 0 0 30px rgba(14,165,160,0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 74px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--gray-800);
  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; }
button { font-family: var(--font-main); cursor: pointer; border: none; outline: none; }
input, select, textarea { font-family: var(--font-main); }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-50); }
::-webkit-scrollbar-thumb { background: var(--blue-400); border-radius: 3px; }

/* ============================================================
   UTILITIES
   ============================================================ */
.section-container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(14,165,160,0.1));
  border: 1px solid rgba(37,99,235,0.2);
  color: var(--blue-400);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}
.gradient-text {
  background: var(--gradient-blue-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--gradient-blue-teal);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,99,235,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,99,235,0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}

.btn-outline-teal {
  background: transparent;
  border: 2px solid var(--teal-400);
  color: var(--teal-400);
}
.btn-outline-teal:hover {
  background: var(--teal-400);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  border: 2px solid var(--blue-400);
  color: var(--blue-400);
}
.btn-outline-blue:hover {
  background: var(--blue-400);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--gray-200);
  color: var(--gray-600);
}
.btn-ghost:hover {
  border-color: var(--blue-300);
  color: var(--blue-400);
  background: rgba(37,99,235,0.05);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 22, 40, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-icon {
  width: 40px; height: 40px;
  background: var(--gradient-blue-teal);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.2rem; color: var(--white);
  box-shadow: 0 4px 15px rgba(37,99,235,0.4);
}
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.brand-tagline {
  font-size: 0.7rem;
  color: var(--teal-300);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0 auto;
}
.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-cta { flex-shrink: 0; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 0.5rem;
  margin-left: auto;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  display: block;
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 40%, rgba(14,165,160,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(37,99,235,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0.4;
}
@keyframes float-particle {
  0% { transform: translateY(110vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}
.hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--teal-300);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  animation: fadeInDown 0.6s ease;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-subheadline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--white);
  background: var(--gradient-blue-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.hero-visual {
  position: relative;
  height: 480px;
  animation: fadeInRight 0.8s ease 0.3s both;
}
.hero-phone-mockup {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  background: var(--blue-800);
  border-radius: 30px;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(14,165,160,0.15);
  overflow: hidden;
}
.phone-screen { padding: 1rem; }
.phone-header { margin-bottom: 1rem; }
.phone-status-bar {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}
.phone-brand {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}
.phone-service-list { display: flex; flex-direction: column; gap: 0.4rem; }
.phone-service-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.04);
  transition: all var(--transition);
}
.phone-service-item.active {
  background: linear-gradient(135deg, rgba(37,99,235,0.3), rgba(14,165,160,0.2));
  color: var(--white);
  font-weight: 600;
  border: 1px solid rgba(14,165,160,0.3);
}
.phone-cta-btn {
  margin-top: 0.75rem;
  background: var(--gradient-blue-teal);
  color: var(--white);
  text-align: center;
  padding: 0.5rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
}
.hero-card-float {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  min-width: 160px;
  box-shadow: var(--shadow-lg);
  animation: floatCard 4s ease-in-out infinite;
}
.card-float-1 { top: 40px; left: -20px; animation-delay: 0s; }
.card-float-2 { top: 60px; right: -10px; animation-delay: 1.3s; }
.card-float-3 { bottom: 80px; left: 20px; animation-delay: 2.6s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float-card-icon { font-size: 1.4rem; margin-bottom: 0.2rem; }
.float-card-text { font-size: 0.8rem; font-weight: 600; color: var(--white); }
.float-card-status { font-size: 0.7rem; color: var(--teal-300); }
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  animation: fadeIn 1s ease 1s both;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 11px;
  display: flex; justify-content: center; padding-top: 4px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease infinite;
}
@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 7rem 0;
  background: var(--off-white);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-blue-teal);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card-wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  border: 1.5px solid var(--gray-100);
  cursor: default;
}
.service-card:hover {
  border-color: rgba(37,99,235,0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
}
.service-card-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
  transition: all var(--transition);
  pointer-events: none;
}
.service-card:hover .service-card-glow {
  background: radial-gradient(circle, rgba(14,165,160,0.12) 0%, transparent 70%);
}
.service-icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(14,165,160,0.1));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--gradient-blue-teal);
  transform: scale(1.05);
}
.service-icon { font-size: 1.8rem; }
.service-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 0.5rem;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.highlight-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(14,165,160,0.08));
  border: 1px solid rgba(37,99,235,0.15);
  color: var(--blue-500);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue-400);
  transition: all var(--transition);
}
.service-link:hover { gap: 0.5rem; color: var(--teal-500); }
.service-card-wide .service-icon-wrap { margin-bottom: 0; flex-shrink: 0; }
.service-card-wide .service-highlights { flex-wrap: nowrap; }

/* ============================================================
   APPLY (FORM)
   ============================================================ */
.apply {
  padding: 7rem 0;
  background: var(--white);
}
.apply-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}
.apply-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-md);
}
.progress-bar-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  gap: 0;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}
.progress-step span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-400);
  white-space: nowrap;
  transition: color var(--transition);
}
.step-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--gray-100);
  color: var(--gray-400);
  transition: all var(--transition);
  border: 2px solid var(--gray-200);
}
.progress-step.active .step-dot {
  background: var(--gradient-blue-teal);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(37,99,235,0.3);
}
.progress-step.done .step-dot {
  background: var(--green-500);
  color: var(--white);
  border-color: transparent;
}
.progress-step.active span { color: var(--blue-500); }
.progress-step.done span { color: var(--green-500); }
.progress-line {
  flex: 1;
  height: 3px;
  background: var(--gray-100);
  margin: 0 0.25rem;
  margin-top: -22px;
  transition: background var(--transition);
  border-radius: 2px;
}
.progress-line.active { background: var(--gradient-blue-teal); }
.form-step { display: none; animation: fadeInUp 0.4s ease; }
.form-step.active { display: block; }
.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.4rem;
}
.form-row { display: flex; flex-direction: column; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
input::placeholder, textarea::placeholder { color: var(--gray-400); }
textarea { resize: vertical; min-height: 120px; }
.field-hint { font-size: 0.75rem; color: var(--gray-400); margin-top: 0.25rem; display: block; }
.input-prefix-wrap { display: flex; align-items: stretch; }
.input-prefix {
  display: flex; align-items: center;
  padding: 0 0.85rem;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
  white-space: nowrap;
}
.input-prefix-wrap input {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.custom-select-wrap { position: relative; }
.custom-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 1rem; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--gray-400);
}
.custom-select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 2.5rem; }
.service-info-box {
  background: linear-gradient(135deg, rgba(37,99,235,0.05), rgba(14,165,160,0.05));
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: var(--gray-600);
}
.form-nav-btns {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: flex-end;
}
.upload-zone {
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  background: var(--gray-50);
}
.upload-zone:hover, .upload-zone.drag-over {
  border-color: var(--blue-400);
  background: rgba(37,99,235,0.03);
}
.upload-icon { color: var(--gray-400); margin-bottom: 1rem; display: flex; justify-content: center; }
.upload-zone:hover .upload-icon, .upload-zone.drag-over .upload-icon { color: var(--blue-400); }
.upload-title { font-size: 1rem; font-weight: 600; color: var(--gray-800); margin-bottom: 0.3rem; }
.upload-sub { font-size: 0.88rem; color: var(--gray-400); margin-bottom: 0.5rem; }
.upload-browse {
  color: var(--blue-400);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.upload-hint { font-size: 0.78rem; color: var(--gray-400); margin-top: 0.5rem; }
.file-list { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.file-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.9rem;
}
.file-item-icon { font-size: 1.2rem; }
.file-item-name { flex: 1; font-size: 0.85rem; font-weight: 500; color: var(--gray-800); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-item-size { font-size: 0.75rem; color: var(--gray-400); }
.file-item-remove {
  background: none;
  border: none;
  color: var(--red-500);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.2rem;
  border-radius: 4px;
  transition: background var(--transition);
}
.file-item-remove:hover { background: rgba(239,68,68,0.1); }
.review-summary {
  background: linear-gradient(135deg, rgba(37,99,235,0.05), rgba(14,165,160,0.05));
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
}
.review-row { display: flex; gap: 0.75rem; margin-bottom: 0.4rem; }
.review-label { font-weight: 600; color: var(--gray-600); min-width: 90px; }
.review-value { color: var(--gray-800); }
.agree-row { display: flex; align-items: flex-start; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] { display: none; }
.checkbox-custom {
  width: 20px; height: 20px;
  border: 2px solid var(--gray-200);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  margin-top: 2px;
}
.checkbox-label input:checked + .checkbox-custom {
  background: var(--gradient-blue-teal);
  border-color: transparent;
}
.checkbox-label input:checked + .checkbox-custom::after {
  content: '✓';
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}
.link-inline { color: var(--blue-400); text-decoration: underline; text-underline-offset: 2px; }
.btn-submit { width: 100%; justify-content: center; margin-top: 1rem; font-size: 1rem; padding: 0.9rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  animation: fadeInUp 0.5s ease;
}
.form-success .success-icon { font-size: 4rem; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.5rem; font-weight: 800; color: var(--blue-900); margin-bottom: 0.75rem; }
.form-success p { color: var(--gray-600); margin-bottom: 1.5rem; }
.apply-sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: calc(var(--nav-height) + 1rem); }
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.sidebar-card h4 { font-size: 1rem; font-weight: 700; color: var(--blue-900); margin-bottom: 1rem; }
.why-list { display: flex; flex-direction: column; gap: 1rem; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.why-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.why-list li > div strong { display: block; font-size: 0.88rem; color: var(--gray-800); margin-bottom: 0.15rem; }
.why-list li > div p { font-size: 0.78rem; color: var(--gray-400); margin: 0; }
.contact-quick p { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 1rem; }

/* ============================================================
   SLOTS / CALENDAR
   ============================================================ */
.slots {
  padding: 7rem 0;
  background: var(--off-white);
}
.slots-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.calendar-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-md);
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.cal-month-year { font-size: 1.1rem; font-weight: 700; color: var(--blue-900); }
.cal-nav {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.cal-nav:hover { background: var(--blue-400); color: var(--white); border-color: var(--blue-400); }
.calendar-grid-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 0.75rem;
}
.calendar-grid-header span { font-size: 0.75rem; font-weight: 600; color: var(--gray-400); padding: 0.4rem 0; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.25rem; }
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
}
.cal-day:hover:not(.empty):not(.past) {
  background: rgba(37,99,235,0.1);
  border-color: rgba(37,99,235,0.2);
  color: var(--blue-500);
}
.cal-day.available { color: var(--gray-800); }
.cal-day.available:hover { background: rgba(37,99,235,0.1); }
.cal-day.selected {
  background: var(--gradient-blue-teal);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(37,99,235,0.3);
}
.cal-day.today {
  border: 2px solid var(--blue-400);
  color: var(--blue-400);
  font-weight: 700;
}
.cal-day.today.selected { color: var(--white); }
.cal-day.past { color: var(--gray-200); cursor: default; }
.cal-day.sunday { color: var(--red-500); }
.cal-day.past.sunday { color: rgba(239,68,68,0.2); }
.cal-day.empty { cursor: default; }
.slots-panel {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-md);
}
.slots-date-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1.5px solid var(--gray-100);
}
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  min-height: 160px;
}
.slots-placeholder {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: var(--gray-400);
  gap: 0.5rem;
}
.slots-placeholder-icon { font-size: 2.5rem; }
.slots-placeholder p { font-size: 0.88rem; }
.time-slot-btn {
  padding: 0.6rem 0.4rem;
  text-align: center;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}
.time-slot-btn:hover:not(.booked):not(.selected) {
  border-color: var(--blue-400);
  color: var(--blue-400);
  background: rgba(37,99,235,0.05);
}
.time-slot-btn.selected {
  background: var(--gradient-blue-teal);
  border-color: transparent;
  color: var(--white);
}
.time-slot-btn.booked {
  background: var(--gray-50);
  border-color: var(--gray-100);
  color: var(--gray-300);
  cursor: not-allowed;
  text-decoration: line-through;
}
.slot-booking-form h4 { font-weight: 700; color: var(--blue-900); margin-bottom: 1rem; font-size: 0.95rem; }
.selected-slot-preview {
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(14,165,160,0.08));
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--blue-600);
  font-weight: 600;
  margin-bottom: 1rem;
}
.slot-sms-note { font-size: 0.78rem; color: var(--gray-400); text-align: center; margin-top: 0.5rem; }

/* ============================================================
   TRACK STATUS
   ============================================================ */
.track {
  padding: 7rem 0;
  background: var(--white);
}
.track-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}
.track-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-md);
}
.track-input-row {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}
.track-input-row input {
  flex: 1;
  border-radius: var(--radius-md);
}
.track-result {
  margin-top: 1.5rem;
  display: none;
  animation: fadeInUp 0.4s ease;
}
.track-result-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1.5px solid;
}
.track-result-card.received { background: rgba(37,99,235,0.05); border-color: rgba(37,99,235,0.2); }
.track-result-card.processing { background: rgba(245,158,11,0.05); border-color: rgba(245,158,11,0.2); }
.track-result-card.pending { background: rgba(239,68,68,0.05); border-color: rgba(239,68,68,0.2); }
.track-result-card.completed { background: rgba(16,185,129,0.05); border-color: rgba(16,185,129,0.2); }
.track-result-status {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.track-result-detail { font-size: 0.88rem; color: var(--gray-600); }
.track-status-legend {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1.5px solid var(--gray-100);
}
.track-status-legend h4 { font-weight: 700; color: var(--blue-900); margin-bottom: 1.25rem; }
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--gray-700);
  margin-bottom: 0.8rem;
}
.status-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot.received { background: var(--blue-400); }
.status-dot.processing { background: var(--yellow-500); }
.status-dot.pending { background: var(--red-500); }
.status-dot.completed { background: var(--green-500); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 7rem 0;
  background: var(--off-white);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.pricing-card:hover {
  border-color: rgba(37,99,235,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.pricing-service { font-size: 1rem; font-weight: 700; color: var(--blue-900); margin-bottom: 0.5rem; }
.pricing-range { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 1rem; }
.pricing-range strong { color: var(--blue-500); font-size: 1.1rem; }
.pricing-list { display: flex; flex-direction: column; gap: 0.4rem; }
.pricing-list li {
  font-size: 0.83rem;
  color: var(--gray-600);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--gray-50);
  display: flex;
  justify-content: space-between;
}
.payment-section {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-md);
}
.payment-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.payment-lock-icon {
  width: 56px; height: 56px;
  background: var(--gradient-blue-teal);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.payment-header h3 { font-size: 1.2rem; font-weight: 700; color: var(--blue-900); }
.payment-header p { font-size: 0.88rem; color: var(--gray-600); }
.payment-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.payment-method {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.payment-method:hover {
  border-color: rgba(37,99,235,0.2);
  background: rgba(37,99,235,0.03);
}
.pay-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.payment-method > span { display: block; font-size: 0.88rem; font-weight: 700; color: var(--blue-900); margin-bottom: 0.25rem; }
.pay-apps { font-size: 0.72rem; color: var(--gray-400); }
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 7rem 0;
  background: var(--white);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  transition: all var(--transition);
}
.contact-card:hover {
  border-color: rgba(37,99,235,0.2);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.contact-card-icon {
  width: 48px; height: 48px;
  background: var(--gradient-blue-teal);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  font-size: 1.4rem;
}
.contact-card-info h4 { font-size: 0.9rem; font-weight: 700; color: var(--blue-900); margin-bottom: 0.25rem; }
.contact-link { color: var(--blue-400); font-weight: 600; font-size: 1rem; }
.contact-link:hover { color: var(--teal-500); }
.contact-card-info p { font-size: 0.88rem; color: var(--gray-600); margin: 0; }
.subtle { color: var(--gray-400); font-size: 0.8rem; }
.map-embed-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-md);
}
.map-embed-label {
  background: var(--blue-900);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--blue-900); color: var(--white); }
.footer-top { padding: 4.5rem 0 3rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-about { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
}
.social-btn.whatsapp:hover { background: #25D366; border-color: #25D366; }
.social-btn.phone:hover { background: var(--blue-400); border-color: var(--blue-400); }
.social-btn.email-s:hover { background: var(--teal-500); border-color: var(--teal-500); }
.footer-links-col h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal-300);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact-info { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-contact-info p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-contact-info a { color: rgba(255,255,255,0.75); }
.footer-contact-info a:hover { color: var(--teal-300); }
.footer-bottom { padding: 1.25rem 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: unset;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-made { color: rgba(255,255,255,0.4); }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 62px; height: 62px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 25px rgba(37,211,102,0.45);
  z-index: 999;
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 40px rgba(37,211,102,0.55); }
.whatsapp-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
.animate-in {
  animation: fadeInUp 0.6s ease both;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-wide { grid-column: span 2; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-methods { grid-template-columns: repeat(2, 1fr); }
  .hero-container { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .apply-layout { grid-template-columns: 1fr; }
  .apply-sidebar { position: static; }
  .slots-layout { grid-template-columns: 1fr; }
  .track-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-height); left: 0; right: 0; background: var(--blue-900); padding: 1rem; gap: 0.25rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; padding: 0.6rem 1rem; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: span 1; grid-template-columns: 1fr; }
  .hero-container { padding: 3rem 1.5rem; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .time-slots-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .payment-methods { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { width: 60px; height: 1px; }
  .hero-ctas { flex-direction: column; }
}
@media (max-width: 480px) {
  .progress-bar-wrap { display: none; }
  .time-slots-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-badges { flex-direction: column; }
}

/* ============================================================
   ANNOUNCEMENT TICKER
   ============================================================ */
.announcement-bar {
  background: linear-gradient(135deg, var(--blue-900), #0D3A5A);
  border-bottom: 1px solid rgba(14,165,160,0.3);
  height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 1001;
}
.ticker-wrap {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-track span {
  display: inline-block;
  padding: 0 2.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-right: 1px solid rgba(255,255,255,0.12);
}
.ticker-track span:last-child { border-right: none; }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  padding: 0 0.85rem;
  cursor: pointer;
  transition: color var(--transition);
  height: 100%;
}
.ticker-close:hover { color: var(--white); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 7rem 0;
  background: var(--white);
  overflow: hidden;
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: linear-gradient(135deg, rgba(37,99,235,0.04), rgba(14,165,160,0.04));
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.rating-score {
  text-align: center;
  flex-shrink: 0;
}
.score-num {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-blue-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.score-stars {
  font-size: 1.4rem;
  color: var(--yellow-500);
  letter-spacing: 2px;
  margin: 0.25rem 0;
}
.score-label { font-size: 0.8rem; color: var(--gray-400); font-weight: 600; }
.rating-bars { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 0.4rem; }
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--gray-600);
}
.rating-bar-row > span:first-child { min-width: 32px; color: var(--yellow-500); font-weight: 600; }
.rating-bar-row > span:last-child { min-width: 28px; font-size: 0.75rem; color: var(--gray-400); }
.bar-track {
  flex: 1;
  height: 8px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--gradient-blue-teal);
  border-radius: var(--radius-full);
  animation: bar-grow 1.2s ease-out both;
}
@keyframes bar-grow { from { width: 0 !important; } }
.rating-count {
  text-align: center;
  flex-shrink: 0;
}
.count-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue-900);
}
.count-label { font-size: 0.8rem; color: var(--gray-400); display: block; margin-bottom: 0.5rem; }
.verified-badge {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  color: var(--green-500);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}
.testimonials-slider {
  position: relative;
  min-height: 280px;
  margin-bottom: 2rem;
}
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  display: none;
  animation: fadeInUp 0.5s ease;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-blue-teal);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.testimonial-card.active { display: block; }
.tcard-quote {
  font-size: 5rem;
  line-height: 0.8;
  color: var(--blue-300);
  opacity: 0.15;
  font-family: Georgia, serif;
  margin-bottom: -1rem;
}
.tcard-text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  font-style: italic;
}
.tcard-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.tcard-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}
.tcard-author { flex: 1; }
.tcard-author strong { display: block; font-size: 0.95rem; color: var(--blue-900); }
.tcard-author span { font-size: 0.82rem; color: var(--gray-400); }
.tcard-stars { font-size: 1.1rem; color: var(--yellow-500); letter-spacing: 2px; }
.tcard-service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(37,99,235,0.07), rgba(14,165,160,0.07));
  border: 1px solid rgba(37,99,235,0.12);
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.tctrl-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-size: 1.4rem;
  color: var(--gray-600);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.tctrl-btn:hover {
  background: var(--gradient-blue-teal);
  border-color: transparent;
  color: var(--white);
}
.tctrl-dots { display: flex; gap: 0.5rem; align-items: center; }
.tdot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.tdot.active {
  background: var(--gradient-blue-teal);
  width: 26px;
  border-radius: var(--radius-full);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}
.faq-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 4rem;
  align-items: start;
}
.faq-left { position: sticky; top: calc(var(--nav-height) + 2rem); }
.faq-left .section-tag { margin-bottom: 0.75rem; }
.faq-left .section-title { margin-bottom: 0.75rem; }
.faq-accordion { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: rgba(37,99,235,0.2); box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: rgba(37,99,235,0.25); box-shadow: var(--shadow-md); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(37,99,235,0.02); }
.faq-item.open .faq-question { background: rgba(37,99,235,0.03); }
.faq-question span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue-900);
  line-height: 1.4;
  flex: 1;
}
.faq-chevron {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--gray-600);
  flex-shrink: 0;
  transition: all var(--transition);
  font-style: normal;
}
.faq-item.open .faq-chevron {
  background: var(--gradient-blue-teal);
  border-color: transparent;
  color: var(--white);
  transform: rotate(90deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}
.faq-answer p strong { color: var(--gray-800); }

/* ============================================================
   WHATSAPP CHAT POPUP
   ============================================================ */
.wa-chat-popup {
  position: fixed;
  bottom: 6.5rem; right: 2rem;
  width: 320px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 20px rgba(0,0,0,0.1);
  z-index: 998;
  display: none;
  animation: popupSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.wa-chat-popup.visible { display: block; }
@keyframes popupSlideIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-popup-header {
  background: linear-gradient(135deg, #075E54, #128C7E);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.wa-popup-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.wa-popup-info { flex: 1; }
.wa-popup-name { font-size: 0.92rem; font-weight: 700; color: var(--white); }
.wa-popup-status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.15rem;
}
.wa-online-dot {
  width: 7px; height: 7px;
  background: #25D366;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
.wa-popup-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}
.wa-popup-close:hover { background: rgba(255,255,255,0.3); }
.wa-popup-body { padding: 1.25rem; background: #ECE5DD; }
.wa-bubble { margin-bottom: 1rem; }
.wa-bubble-time {
  text-align: center;
  font-size: 0.7rem;
  color: #999;
  margin-bottom: 0.5rem;
}
.wa-bubble-msg {
  background: var(--white);
  border-radius: 0 12px 12px 12px;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: #1C1C1C;
  line-height: 1.5;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  display: inline-block;
  max-width: 85%;
}
.wa-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.wa-qr-btn {
  background: var(--white);
  border: 1.5px solid #25D366;
  border-radius: var(--radius-full);
  color: #128C7E;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-main);
}
.wa-qr-btn:hover {
  background: #25D366;
  color: var(--white);
  transform: scale(1.03);
}
.wa-popup-footer {
  padding: 0.85rem 1.25rem;
  border-top: 1px solid var(--gray-100);
  background: var(--white);
}
.wa-open-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.7rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all var(--transition);
}
.wa-open-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(37,211,102,0.4); }

/* ============================================================
   ADDITIONAL RESPONSIVE RULES FOR NEW SECTIONS
   ============================================================ */
@media (max-width: 1024px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-left { position: static; }
  .faq-left .section-title { font-size: 1.75rem; }
  .rating-summary { gap: 2rem; }
}
@media (max-width: 768px) {
  .announcement-bar { height: 34px; }
  .ticker-track span { font-size: 0.75rem; padding: 0 1.5rem; }
  .rating-summary { flex-direction: column; gap: 1.5rem; text-align: center; }
  .rating-bars { width: 100%; }
  .wa-chat-popup { width: 290px; right: 1rem; bottom: 5.5rem; }
  .tcard-text { font-size: 0.92rem; }
}
@media (max-width: 480px) {
  .faq-question span { font-size: 0.88rem; }
  .wa-chat-popup { width: calc(100vw - 2rem); right: 1rem; }
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--blue-900);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  animation: fadeIn 0.4s ease;
}
.pl-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pl-icon {
  width: 56px; height: 56px;
  background: var(--gradient-blue-teal);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37,99,235,0.5);
  animation: pulseIcon 1.5s ease-in-out infinite;
}
@keyframes pulseIcon {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,99,235,0.5); transform: scale(1); }
  50% { box-shadow: 0 12px 50px rgba(14,165,160,0.7); transform: scale(1.06); }
}
.pl-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.pl-name span {
  font-size: 0.85rem;
  color: var(--teal-300);
  font-weight: 500;
}
.pl-bar-wrap {
  width: 220px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.pl-bar {
  height: 100%;
  width: 0%;
  background: var(--gradient-blue-teal);
  border-radius: var(--radius-full);
  transition: width 0.05s linear;
}
.pl-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  animation: blink 1.5s ease infinite;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--blue-900) 0%, #0E2140 100%);
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(14,165,160,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.how-it-works .section-tag { border-color: rgba(14,165,160,0.3); color: var(--teal-300); background: rgba(14,165,160,0.08); }
.how-it-works .section-title { color: var(--white); }
.how-it-works .section-subtitle { color: rgba(255,255,255,0.55); }
.hiw-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.hiw-arrow {
  font-size: 2rem;
  color: rgba(14,165,160,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  margin-top: 5.5rem;
  animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%, 100% { opacity: 0.4; transform: translateX(0); }
  50% { opacity: 0.9; transform: translateX(4px); }
}
.hiw-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  backdrop-filter: blur(10px);
}
.hiw-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(14,165,160,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(14,165,160,0.1);
}
.hiw-step-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 1rem; right: 1.25rem;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}
.hiw-icon-ring {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(37,99,235,0.15);
  border: 2px solid rgba(37,99,235,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all var(--transition);
}
.hiw-icon-ring--teal {
  background: rgba(14,165,160,0.15);
  border-color: rgba(14,165,160,0.3);
}
.hiw-icon-ring--green {
  background: rgba(16,185,129,0.15);
  border-color: rgba(16,185,129,0.3);
}
.hiw-card:hover .hiw-icon-ring { transform: scale(1.1); background: rgba(37,99,235,0.25); }
.hiw-card:hover .hiw-icon-ring--teal { background: rgba(14,165,160,0.25); }
.hiw-card:hover .hiw-icon-ring--green { background: rgba(16,185,129,0.25); }
.hiw-icon { font-size: 2rem; }
.hiw-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.hiw-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.hiw-link {
  color: var(--teal-300);
  font-size: 0.88rem;
  font-weight: 700;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.hiw-link:hover { color: var(--teal-200); gap: 0.5rem; }
.hiw-badge {
  display: inline-block;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.2);
  color: var(--teal-300);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
}
.hiw-badge--green {
  background: rgba(16,185,129,0.12);
  border-color: rgba(16,185,129,0.2);
  color: #6EE7B7;
}
.hiw-bottom-cta {
  text-align: center;
  padding: 2.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 1;
}
.hiw-bottom-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hiw-bottom-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   COUNTERS STRIP
   ============================================================ */
.counters-strip {
  background: var(--gradient-blue-teal);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.counters-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.counters-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}
.counter-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
  padding: 0.5rem;
}
.counter-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.counter-num {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.35rem;
  font-variant-numeric: tabular-nums;
}
.counter-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.counter-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 7.5rem;
  right: 2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--blue-500);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 997;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gradient-blue-teal);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   MOBILE STICKY CTA BAR
   ============================================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 990;
  background: var(--white);
  border-top: 1.5px solid var(--gray-100);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}
.mobile-cta-book {
  background: var(--gradient-blue-teal);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37,99,235,0.3);
}
.mobile-cta-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

/* Responsive — show mobile bar only on small screens */
@media (max-width: 768px) {
  .mobile-sticky-cta { display: flex; }
  .whatsapp-float { bottom: 5.5rem; right: 1rem; width: 52px; height: 52px; }
  .back-to-top { bottom: 9rem; right: 1rem; }
  /* Add padding to footer to avoid overlap with sticky bar */
  .footer-bottom { padding-bottom: 5rem; }
  /* How It Works responsive */
  .hiw-grid { grid-template-columns: 1fr; gap: 1rem; }
  .hiw-arrow { transform: rotate(90deg); margin: 0 auto; padding: 0; font-size: 1.5rem; }
  .hiw-bottom-btns { flex-direction: column; }
  .counters-container { justify-content: center; }
  .counter-divider:nth-child(even) { display: none; }
  .counter-item { min-width: calc(33% - 1rem); }
}
@media (max-width: 480px) {
  .counter-item { min-width: calc(50% - 1rem); }
  .counter-divider { display: none; }
  .hiw-bottom-cta { padding: 1.5rem; }
}
