/* ============================================
   TECOLUTION – BRIGHT GROWTH THEME
   Energetic, Optimistic, Future-Forward Design
   ============================================ */

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

:root {
  --primary:        hsl(234, 89%, 55%);       /* Vibrant Indigo Blue */
  --primary-dark:   hsl(234, 89%, 42%);
  --primary-light:  hsl(234, 89%, 95%);
  --accent:         hsl(158, 82%, 40%);        /* Emerald Green (growth) */
  --accent-light:   hsl(158, 82%, 94%);
  --accent-2:       hsl(38, 96%, 54%);         /* Golden Amber (success) */
  --accent-2-light: hsl(38, 96%, 94%);
  --bg:             hsl(210, 40%, 98%);        /* Near-white cool gray */
  --bg-2:           hsl(220, 30%, 96%);
  --bg-card:        hsl(0, 0%, 100%);
  --bg-glass:       hsla(0, 0%, 100%, 0.85);
  --text:           hsl(222, 47%, 14%);
  --text-muted:     hsl(220, 15%, 46%);
  --border:         hsla(220, 20%, 85%, 0.8);
  --border-light:   hsla(220, 20%, 90%, 0.6);
  --gradient:       linear-gradient(135deg, var(--primary), hsl(213, 94%, 60%));
  --gradient-2:     linear-gradient(135deg, var(--accent), hsl(174, 72%, 46%));
  --gradient-3:     linear-gradient(135deg, var(--accent-2), hsl(20, 95%, 58%));
  --gradient-hero:  linear-gradient(135deg, hsl(234,89%,55%), hsl(213,94%,60%), hsl(158,82%,40%));
  --radius:         16px;
  --radius-sm:      10px;
  --shadow:         0 4px 24px hsla(234, 89%, 55%, 0.12);
  --shadow-md:      0 8px 32px hsla(234, 89%, 55%, 0.15);
  --shadow-lg:      0 20px 60px hsla(234, 89%, 55%, 0.2);
  --shadow-card:    0 2px 16px hsla(220, 30%, 20%, 0.08);
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ============================================
   ANIMATED BACKGROUND ORBS (Light, subtle)
   ============================================ */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  animation: orbFloat 14s ease-in-out infinite;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, hsl(234,89%,55%), transparent 70%);
  top: -250px; left: -200px;
  animation-delay: 0s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, hsl(158,82%,40%), transparent 70%);
  bottom: 5%; right: -120px;
  animation-delay: -5s;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, hsl(38,96%,54%), transparent 70%);
  top: 45%; left: 38%;
  animation-delay: -9s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 25px) scale(0.95); }
}

/* ============================================
   UTILITY
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
  background: var(--primary-light);
  padding: 6px 14px;
  border-radius: 50px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-desc {
  margin: 0 auto;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 6px 20px hsla(234,89%,55%,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px hsla(234,89%,55%,0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-ghost:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  padding: 10px 22px;
  font-size: 0.88rem;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--gradient);
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1001;
}
.announcement-icon { font-size: 1rem; }
.announcement-cta {
  background: rgba(255,255,255,0.25);
  color: #fff;
  text-decoration: none;
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.4);
}
.announcement-cta:hover { background: rgba(255,255,255,0.4); }
.announcement-close {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
}
.announcement-close:hover { color: #fff; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
  background: hsla(0,0%,100%,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px hsla(220,30%,20%,0.08);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 1.6rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo-accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 120px 60px 80px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  border: 1px solid hsla(234,89%,55%,0.2);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 1.7rem;
  font-weight: 900;
  display: block;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.hero-main-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.hero-card-icon-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.hci {
  width: 44px; height: 44px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px hsla(234,89%,55%,0.3);
}
.hci.green { background: var(--gradient-2); box-shadow: 0 4px 12px hsla(158,82%,40%,0.3); }
.hci.amber { background: var(--gradient-3); box-shadow: 0 4px 12px hsla(38,96%,54%,0.3); }
.hero-main-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.hero-main-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.hero-floating {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  animation: floatCard 3s ease-in-out infinite;
}
.float-1 { top: -20px; right: -30px; animation-delay: 0s; }
.float-2 { bottom: -20px; left: -30px; animation-delay: -1.5s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-green { background: #22c55e; }
.dot-blue { background: var(--primary); }

/* ============================================
   GRADIENT SECTION DIVIDER
   ============================================ */
.section-wave {
  height: 80px;
  position: relative;
  overflow: hidden;
}

/* ============================================
   STATS BAND
   ============================================ */
.stats-band {
  background: var(--gradient);
  padding: 48px 0;
  position: relative;
  z-index: 1;
}
.stats-band .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.band-stat-num {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.band-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ============================================
   ABOUT STRIP
   ============================================ */
.about-strip {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text .section-title { margin-bottom: 16px; }
.about-text .section-desc { margin-bottom: 32px; }
.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.feature-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: default;
  color: var(--text);
  box-shadow: var(--shadow-card);
}
.feature-pill:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
  transform: translateY(-2px);
}
.pill-icon { font-size: 1rem; }

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: var(--bg-2);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-card);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 0 0 var(--radius) var(--radius);
}
.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary-light), hsla(213,94%,60%,0.06));
  grid-column: span 2;
}
.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border: 1.5px solid hsla(234,89%,55%,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--gradient);
  border-color: transparent;
  transform: scale(1.1);
}
.service-icon { font-size: 1.6rem; }
.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}
.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.service-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
  margin-top: auto;
}
.service-link:hover { color: var(--accent); letter-spacing: 0.02em; }
.tools-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tool-tag {
  background: var(--primary-light);
  border: 1px solid hsla(234,89%,55%,0.2);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-us-left .section-title { margin-bottom: 16px; }
.why-us-left .section-desc { margin-bottom: 32px; }
.why-us-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.why-card:hover {
  border-color: var(--primary);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 12px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: var(--gradient);
}
.why-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.why-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: var(--bg-2);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.testimonial-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stars { color: hsl(38,96%,54%); font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-card > p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.author-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.author-role {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================
   SUPPORT
   ============================================ */
.support {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.support-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.support-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: var(--primary-light);
}
.support-icon {
  font-size: 2.2rem;
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border: 1.5px solid hsla(234,89%,55%,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.support-card:hover .support-icon {
  background: var(--gradient);
  transform: scale(1.1);
}
.support-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.support-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.support-cta {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}
.support-card:hover .support-cta { color: var(--primary-dark); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.cta-inner {
  background: var(--gradient);
  border-radius: 24px;
  padding: 60px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-text { flex: 1; position: relative; z-index: 1; }
.cta-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 12px; color: #fff; }
.cta-text p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.cta-text .gradient-text { -webkit-text-fill-color: #fff; background: none; color: #fff; }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.cta-banner .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-banner .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.cta-banner .btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.cta-banner .btn-ghost:hover { background: rgba(255,255,255,0.25); color: #fff; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
  background: hsl(222, 47%, 11%);
  color: rgba(255,255,255,0.8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer .logo-text { color: #fff; }
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.footer-links h4, .footer-contact h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links ul li a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-block;
}
.footer-links ul li a:hover { color: var(--accent-2); transform: translateX(4px); }
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.contact-icon { font-size: 0.9rem; flex-shrink: 0; }
.contact-item a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
}
.contact-item a:hover { color: var(--accent-2); }
.footer-badge {
  margin-top: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
}
.footer-power a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
}
.footer-power a:hover { text-decoration: underline; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 12px 35px rgba(37,211,102,0.55); }
.wa-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(0.85); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
/* reveal starts visible — IntersectionObserver adds a subtle lift effect */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-fade-up {
  opacity: 1;
  animation: fadeUp 0.6s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   INNER PAGE SHARED STYLES
   ============================================ */

/* Page Hero */
.page-hero {
  padding: 120px 24px 80px;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--primary-light) 0%, transparent 100%);
}
.page-hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
}
.page-hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--primary); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--text-muted); }

/* About Story */
.about-story { padding: 80px 0; position: relative; z-index: 1; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-text .section-title { margin-bottom: 16px; }
.story-text .section-desc { margin-bottom: 16px; }
.story-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.story-badge {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  box-shadow: var(--shadow-card);
}
.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.big-stat-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.big-stat-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.big-stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}
.big-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Vision Mission Values */
.vmv-section { padding: 80px 0; position: relative; z-index: 1; background: var(--bg-2); }
.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vmv-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.vmv-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.vmv-icon {
  font-size: 2.2rem;
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border: 1.5px solid hsla(234,89%,55%,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vmv-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.vmv-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Portfolio filter */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-tab {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 10px 22px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.filter-tab:hover, .filter-tab.active {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px hsla(234,89%,55%,0.3);
}

/* Portfolio grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.portfolio-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.portfolio-category {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-light);
  border: 1px solid hsla(234,89%,55%,0.2);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.portfolio-icon { font-size: 2.4rem; }
.portfolio-field {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.portfolio-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}
.portfolio-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.portfolio-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
}
.portfolio-link:hover { color: var(--accent); }
.portfolio-card.hidden { display: none; }

/* FAQ Accordion */
.faq-section { padding: 80px 0; position: relative; z-index: 1; }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow-md); }
.faq-item.open .faq-question { color: var(--primary); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text);
  transition: var(--transition);
  user-select: none;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 1.5px solid hsla(234,89%,55%,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--primary);
  font-weight: 700;
}
.faq-item.open .faq-icon { background: var(--primary); color: #fff; transform: rotate(45deg); }
.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 28px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  border-left: 3px solid var(--primary);
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 28px 22px; }

/* Contact Form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.info-card:hover { border-color: var(--primary); transform: translateX(4px); box-shadow: var(--shadow-md); }
.info-card-icon {
  font-size: 1.6rem;
  width: 50px; height: 50px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-card-text h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.info-card-text a, .info-card-text p {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
  display: block;
}
.info-card-text a:hover { color: var(--primary); }

/* Form */
.contact-form-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.contact-form-card > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(234,89%,55%,0.1);
  background: #fff;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Price Calculator */
.calc-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.price-display {
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-card);
}
.price-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.price-amount {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}
.price-currency { font-size: 1.2rem; font-weight: 700; color: var(--text-muted); margin-bottom: 24px; }
.price-breakdown { text-align: left; border-top: 1px solid var(--border); padding-top: 20px; margin-bottom: 20px; }
.price-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 6px 0; color: var(--text-muted); }
.price-row.total { color: var(--text); font-weight: 700; font-size: 0.95rem; border-top: 1px solid var(--border); margin-top: 8px; padding-top: 12px; }
.price-row.discount { color: var(--accent); font-weight: 600; }
.advance-note {
  background: var(--primary-light);
  border: 1px solid hsla(234,89%,55%,0.2);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.advance-note span { color: var(--primary); font-weight: 700; }
.calc-option-row { display: flex; flex-wrap: wrap; gap: 8px; }
.calc-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  user-select: none;
  font-family: inherit;
}
.calc-radio:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.calc-radio.selected { border-color: var(--primary); background: var(--primary-light); color: var(--primary); font-weight: 700; }
.calc-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
  font-family: inherit;
  background: var(--bg);
  text-align: left;
  width: 100%;
}
.calc-checkbox:hover { border-color: var(--primary); background: var(--primary-light); }
.calc-checkbox.checked { border-color: var(--primary); background: var(--primary-light); color: var(--primary); font-weight: 600; }
.calc-checkbox .check-icon {
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: #fff;
}
.calc-checkbox.checked .check-icon { background: var(--primary); border-color: var(--primary); }

/* Pricing Plans */
.pricing-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.plan-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.plan-card.featured-plan {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: var(--shadow-md);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.plan-icon { font-size: 2rem; }
.plan-name { font-size: 1.2rem; font-weight: 800; color: var(--text); }
.plan-price { font-size: 1.5rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.plan-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; flex: 1; }

/* Services Detail Page */
.service-detail-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  transition: var(--transition);
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}
.service-detail-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-detail-card.reverse { direction: rtl; }
.service-detail-card.reverse > * { direction: ltr; }
.service-detail-card.data-featured { grid-template-columns: 1fr; border-color: var(--primary); background: var(--primary-light); }
.sdc-text .service-icon-wrap { margin-bottom: 16px; }
.sdc-text h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.sdc-text p { color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.feature-list li::before {
  content: '✓';
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.sdc-visual {
  background: var(--primary-light);
  border: 1.5px solid hsla(234,89%,55%,0.15);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  min-height: 200px;
}
.data-featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Process Steps */
.process-section { padding: 100px 0; position: relative; z-index: 1; background: var(--bg-2); }
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 36px; left: 15%; right: 15%;
  height: 2px;
  background: var(--gradient);
  z-index: 0;
}
.step-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.step-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  width: 56px; height: 56px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 4px 20px hsla(234,89%,55%,0.4);
}
.step-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.step-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ============================================
   HOW WE HELP — BENTO GRID
   ============================================ */
.how-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: var(--bg-2);
}

/* BENTO GRID */
.bento-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 48px;
}

/* Slot assignments */
.bento-hero  { grid-column: 1; grid-row: 1 / 3; }
.bento-data  { grid-column: 2; grid-row: 1; }
.bento-abroad{ grid-column: 2; grid-row: 2; }
.bento-trust { grid-column: 1; grid-row: 3; }
.bento-quick { grid-column: 2; grid-row: 3; }

.bento-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
}
.bento-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* ─ HERO card ─ */
.bento-hero {
  display: flex;
  flex-direction: column;
  min-height: 560px;
}
.bento-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  display: block;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}
.bento-hero:hover .bento-img { transform: scale(1.04); }
.bento-overlay {
  flex: 1;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bento-tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.bento-chip {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid hsla(234,89%,55%,0.2);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
}
.bento-overlay h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text);
  margin: 0;
}
.bento-overlay > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.bento-feature-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.bento-feature-list span {
  font-size: 0.83rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.bento-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient);
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 50px;
  width: fit-content;
  transition: var(--transition);
  box-shadow: 0 4px 16px hsla(234,89%,55%,0.3);
  margin-top: auto;
}
.bento-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px hsla(234,89%,55%,0.4); }
.bento-stat-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(10,20,60,0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
}
.bento-stat-badge strong {
  font-size: 1.4rem;
  font-weight: 900;
  color: #86efac;
  line-height: 1;
}
.bento-stat-badge span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.75);
}

/* ─ DATA card ─ */
.bento-data-inner {
  display: flex;
  height: 100%;
}
.bento-data-left {
  width: 42%;
  flex-shrink: 0;
  overflow: hidden;
}
.bento-data-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.bento-data:hover .bento-data-img { transform: scale(1.06); }
.bento-data-right {
  flex: 1;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.bento-icon-circle {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  background: var(--primary-light);
  border: 1.5px solid hsla(234,89%,55%,0.15);
  flex-shrink: 0;
}
.bento-icon-circle.amber { background: var(--accent-2-light); border-color: hsla(38,96%,54%,0.2); }
.bento-icon-circle.purple { background: hsla(270,80%,97%,1); border-color: hsla(270,60%,45%,0.15); }
.bento-data-right h3 { font-size: 1rem; font-weight: 800; color: var(--text); margin: 0; }
.bento-data-right > p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.bento-tools-row { display: flex; flex-wrap: wrap; gap: 6px; }
.bento-tool {
  background: var(--accent-2-light);
  color: hsl(38,75%,35%);
  border: 1px solid hsla(38,96%,54%,0.25);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}
.bento-mini-stat {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-2);
  border-radius: 8px;
  padding: 6px 10px;
  border: 1px solid var(--border);
}
.bento-mini-stat strong { color: var(--primary); font-weight: 900; }
.bento-mini-stat.green strong { color: var(--accent); }

/* ─ ABROAD card ─ */
.bento-abroad { display: flex; flex-direction: row; min-height: 220px; }
.bento-abroad-img {
  width: 42%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}
.bento-abroad:hover .bento-abroad-img { transform: scale(1.04); }
.bento-abroad-content {
  flex: 1;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.bento-abroad-content h3 { font-size: 1rem; font-weight: 800; color: var(--text); margin: 0; }
.bento-abroad-content > p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.bento-country-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bento-country-row span {
  font-size: 0.78rem;
  font-weight: 700;
  background: hsla(270,80%,97%,1);
  color: hsl(270,60%,45%);
  border: 1px solid hsla(270,60%,45%,0.15);
  border-radius: 50px;
  padding: 4px 10px;
}

/* ─ TRUST card ─ */
.bento-trust { padding: 32px; }
.bento-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  height: 100%;
  align-items: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 16px;
  border-right: 1px solid var(--border);
  gap: 6px;
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.trust-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.35;
}

/* ─ QUICK card ─ */
.bento-quick-inner {
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 16px;
}
.quick-service {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.quick-icon {
  font-size: 1.8rem;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.quick-service h4 { font-size: 0.95rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.quick-service p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; margin: 0; }
.quick-divider { height: 1px; background: var(--border); }
.bento-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 50px;
  width: 100%;
  justify-content: center;
  margin-top: auto;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.bento-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.45); }

/* ─ PROCESS / TIMELINE ─ */
.how-process {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 52px 56px;
  box-shadow: var(--shadow-card);
  margin-bottom: 0;
}
.how-process-header { text-align: center; margin-bottom: 48px; }
.how-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.how-timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 3px;
  background: linear-gradient(90deg, hsl(234,89%,55%), hsl(213,94%,60%), hsl(158,82%,40%));
  border-radius: 2px;
  z-index: 0;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.ts-bubble {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 24px hsla(234,89%,55%,0.4);
  flex-shrink: 0;
  border: 4px solid #fff;
  transition: var(--transition);
}
.ts-bubble.ts-b2 { background: linear-gradient(135deg, hsl(213,94%,60%), hsl(234,89%,55%)); }
.ts-bubble.ts-b3 { background: linear-gradient(135deg, hsl(158,82%,40%), hsl(213,94%,60%)); }
.ts-bubble.ts-b4 { background: linear-gradient(135deg, #f59e0b, #34d399); }
.timeline-step:hover .ts-bubble { transform: scale(1.12); }
.ts-emoji { font-size: 1.5rem; line-height: 1; }
.ts-num {
  font-size: 0.55rem;
  font-weight: 900;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  line-height: 1;
}
.ts-connector { display: none; }
.ts-content { padding: 0 8px; }
.ts-content h4 { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.ts-content p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

/* ─ RESPONSIVE ─ */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bento-hero, .bento-data, .bento-abroad, .bento-trust, .bento-quick {
    grid-column: 1;
    grid-row: auto;
  }
  .bento-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-top: 1px solid var(--border); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .how-process { padding: 40px 32px; }
  .how-timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .how-timeline::before { display: none; }
}



/* 3 Image Feature Cards */
.how-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
.how-img-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.how-img-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.how-img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
  flex-shrink: 0;
}
.how-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.how-img-card:hover .how-img-wrap img { transform: scale(1.06); }
.how-img-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: hsla(234,89%,55%,0.92);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(255,255,255,0.2);
}
.how-img-badge.green  { background: hsla(158,82%,34%,0.92); }
.how-img-badge.amber  { background: hsla(38,90%,45%,0.92); }
.how-badge-num {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.how-badge-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.how-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.how-card-icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.how-tag {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid hsla(234,89%,55%,0.2);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.how-tag.green  { background: var(--accent-light);   color: var(--accent);   border-color: hsla(158,82%,40%,0.2); }
.how-tag.amber  { background: var(--accent-2-light);  color: hsl(38,80%,38%); border-color: hsla(38,96%,54%,0.25); }
.how-tag.purple { background: hsla(270,80%,95%,1);    color: hsl(270,60%,45%); border-color: hsla(270,60%,45%,0.2); }
.how-card-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}
.how-card-body > p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.how-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 4px 0;
}
.how-list li {
  font-size: 0.84rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.how-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.78rem;
}
.how-cta {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.how-cta:hover { color: var(--accent); gap: 8px; }

/* 4-Step Process */
.how-process {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-card);
}
.how-process-header {
  text-align: center;
  margin-bottom: 40px;
}
.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.how-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.how-step-num {
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  background: var(--primary-light);
  border: 1.5px solid hsla(234,89%,55%,0.2);
  border-radius: 50px;
  padding: 4px 12px;
  display: inline-block;
}
.how-step-icon {
  font-size: 2.2rem;
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border: 1.5px solid hsla(234,89%,55%,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: var(--transition);
}
.how-step:hover .how-step-icon {
  background: var(--gradient);
  transform: scale(1.08);
}
.how-step h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.how-step p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.how-step-arrow {
  font-size: 1.6rem;
  color: var(--primary);
  opacity: 0.4;
  margin-top: 52px;
  flex-shrink: 0;
  font-weight: 300;
}

/* Impact Numbers Strip */
.how-impact-strip {
  background: var(--gradient);
  border-radius: 20px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
}
.how-impact-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.how-impact-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.how-impact-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
.how-impact-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .how-cards-row { grid-template-columns: 1fr 1fr; }
  .how-impact-strip { flex-wrap: wrap; gap: 24px; justify-content: center; padding: 32px; }
  .how-impact-divider { display: none; }
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; text-align: center; min-height: auto; }
  .hero-visual { display: none; }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: span 1; }
  .why-us-inner { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; padding: 40px 28px; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: 0 8px 24px hsla(220,30%,20%,0.1);
  }
  .story-grid { grid-template-columns: 1fr; }
  .story-stats { grid-template-columns: 1fr 1fr; }
  .vmv-grid { grid-template-columns: 1fr; }
  .how-cards-row { grid-template-columns: 1fr; }
  .how-process { padding: 32px 24px; }
  .how-steps { flex-direction: column; align-items: center; gap: 24px; }
  .how-step-arrow { margin-top: 0; transform: rotate(90deg); }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .pricing-plans-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-card.reverse { direction: ltr; }
  .data-featured-inner { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .steps-row::before { display: none; }
  .stats-band .container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .announcement-bar { font-size: 0.75rem; flex-wrap: wrap; justify-content: center; gap: 6px; }
  .announcement-close { position: static; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .stats-band .container { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================
   MOBILE NAVIGATION + POPUP FIX
   Paste this at the END of style.css
   ===================================================== */
@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }

  .navbar {
    z-index: 10050;
  }

  .nav-container {
    height: 64px;
    padding: 0 14px;
    gap: 8px;
  }

  .logo-text {
    font-size: 1.08rem;
  }

  .logo-icon {
    font-size: 1.35rem;
  }

  /* Hide header WhatsApp button on mobile so hamburger is always visible */
  .nav-actions .btn-whatsapp {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--primary-light);
    position: relative;
    z-index: 10060;
  }

  .hamburger span {
    width: 24px;
    height: 2.5px;
  }

  .nav-links {
    display: none !important;
  }

  .nav-links.open {
    display: flex !important;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px 18px 22px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(18px);
    z-index: 10055;
  }

  .nav-links.open li {
    width: 100%;
  }

  .nav-links.open .nav-link {
    display: block;
    width: 100%;
    padding: 13px 14px;
    font-size: 0.98rem;
    border-radius: 12px;
    color: var(--text);
    background: hsl(210, 40%, 97%);
  }

  .nav-links.open .nav-link.active,
  .nav-links.open .nav-link:hover {
    color: var(--primary);
    background: var(--primary-light);
  }

  .announcement-bar {
    padding: 8px 38px 8px 10px;
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .announcement-cta {
    padding: 3px 10px;
    font-size: 0.72rem;
  }
}

@media (max-width: 600px) {
  /* Smaller homepage discount popup on mobile */
  .popup-overlay {
    padding: 12px !important;
    align-items: center !important;
  }

  .popup-box {
    width: min(92vw, 340px) !important;
    max-height: 88vh !important;
    overflow-y: auto !important;
    border-radius: 18px !important;
  }

  .popup-header {
    padding: 18px 18px 14px !important;
  }

  .popup-close {
    top: 8px !important;
    right: 8px !important;
    width: 28px !important;
    height: 28px !important;
    font-size: 0.9rem !important;
  }

  .popup-emoji {
    font-size: 2rem !important;
    margin-bottom: 5px !important;
  }

  .popup-header h2 {
    font-size: 1.2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px !important;
  }

  .popup-discount-badge {
    font-size: 1.35rem !important;
    padding: 4px 18px !important;
    margin: 8px 0 4px !important;
  }

  .popup-header p {
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
  }

  .popup-body {
    padding: 14px 16px 16px !important;
  }

  .popup-timer-row {
    margin-bottom: 12px !important;
    font-size: 0.76rem !important;
    gap: 5px !important;
  }

  #popupCountdown {
    font-size: 0.86rem !important;
  }

  .popup-features {
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
    margin-bottom: 14px !important;
  }

  .popup-feature {
    padding: 7px 8px !important;
    font-size: 0.68rem !important;
    line-height: 1.25 !important;
    border-radius: 8px !important;
  }

  .popup-cta a {
    padding: 11px 12px !important;
    font-size: 0.82rem !important;
    border-radius: 11px !important;
  }

  .popup-skip {
    font-size: 0.7rem !important;
  }

  .popup-expiry-note {
    font-size: 0.66rem !important;
    line-height: 1.35 !important;
    padding: 7px 8px !important;
    margin-top: 8px !important;
  }
}

@media (max-width: 360px) {
  .popup-box {
    width: 94vw !important;
  }

  .popup-features {
    grid-template-columns: 1fr !important;
  }
}
/* ================================
   Price Calculator Number Input Fix
   ================================ */

#quantityInput,
.quantity-input-fix {
  width: 100% !important;
  background: #ffffff !important;
  color: #111827 !important;
  border: 1.5px solid #d7def5 !important;
  border-radius: 12px !important;
  padding: 14px 16px !important;
  font-family: inherit !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  outline: none !important;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.08) !important;
  transition: all 0.3s ease !important;
}

#quantityInput:focus,
.quantity-input-fix:focus {
  background: #f5f7ff !important;
  color: #111827 !important;
  border-color: #4f46e5 !important;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.14) !important;
}

#quantityInput::placeholder,
.quantity-input-fix::placeholder {
  color: #6b7280 !important;
}

/* Number arrows visible */
#quantityInput::-webkit-inner-spin-button,
#quantityInput::-webkit-outer-spin-button {
  opacity: 1 !important;
}
/* ================================
   Remove Breadcrumb Navigation
   Home › Price Calculator
   ================================ */

.breadcrumb,
.breadcrumbs,
.breadcrumb-nav,
.page-breadcrumb,
nav[aria-label="breadcrumb"] {
  display: none !important;
  visibility: hidden !important;
/* Hide breadcrumb section by common structure */
section:has(.breadcrumb),
section:has(.breadcrumbs),
div:has(> a[href="index.html"] + span),
div:has(> a[href="./index.html"] + span) {
  display: none !important;
}  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
/* Mobile fix */
@media (max-width: 768px) {
  #quantityInput,
  .quantity-input-fix {
    font-size: 16px !important;
    padding: 13px 14px !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    color: #111827 !important;
  }
}
