/* =====================================================
   CSS VARIABLES & RESET
===================================================== */
:root {
  --primary-blue: #0F2544;
  --accent-green: #2DBE60;
  --white: #FFFFFF;
  --bg-light: #F5F7FA;
  --text-dark: #1F2937;
  --text-muted: #6B7280;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =====================================================
   BASE STYLES
===================================================== */
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================================
   PAGE LOADER – CRAZY MOBILES
================================ */
#page-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Loader Content */
.loader-content {
  text-align: center;
}

/* Logo */
.loader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 22px;
  font-weight: 800;
  color: #0f2544;
}

.loader-logo strong {
  color: #2dbe60;
}

/* Logo Icon (Square) */
.loader-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #0f2544, #163a63);
  border-radius: 10px;
  position: relative;
}

.loader-icon::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 6px;
  background: linear-gradient(135deg, #2dbe60, #24a653);
}

/* Spinner */
.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e5e7eb;
  border-top-color: #2dbe60;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 18px;
}

/* Text */
.loader-text {
  font-size: 13px;
  color: #6b7280;
  letter-spacing: 0.4px;
}

/* Animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


/* =====================================================
   NAVBAR – FIXED ALIGNMENT
===================================================== */
.navbar {
  height: 80px;
  background: var(--white);
  border-bottom: 1px solid #EDEDED;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

/* Logo */
.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.logo span {
  color: var(--accent-green);
}

/* Navigation */
.nav-links {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 14px;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent-green);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--accent-green);
}

.nav-links a:hover::after {
  width: 100%;
}

/* WhatsApp CTA */
.btn-accent.nav-cta {
  padding: 11px 26px;
  font-size: 13.5px;
  border-radius: 999px;
}

/* Hamburger */
.menu-icon {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.bar {
  width: 22px;
  height: 2px;
  background: var(--primary-blue);
  margin: 5px 0;
  transition: 0.3s ease;
}

.menu-icon.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-icon.open .bar:nth-child(2) {
  opacity: 0;
}
.menu-icon.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav dropdown */
.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 80px;
  right: 20px;
  background: #fff;
  width: 220px;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* =====================================================
   HERO – LINKEDIN BANNER STYLE (REFINED)
===================================================== */
.hero {
  background: linear-gradient(135deg, #0F2544, #163A63);
  color: var(--white);
  height: 396px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

/* Hero text */
.hero-content h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
  animation: heroReveal 0.9s ease forwards;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   HERO BUTTONS
===================================================== */
.hero-btns {
  display: flex;
  gap: 20px;
}

.btn-accent {
  background: linear-gradient(135deg, #2DBE60, #24a653);
  color: #fff;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.3px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(45,190,96,0.35);
  transition: all 0.25s ease;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(45,190,96,0.45);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.hero-content h1 {
  animation: letterEase 0.9s ease-out forwards;
}

@keyframes letterEase {
  from {
    opacity: 0;
    letter-spacing: 4px;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    letter-spacing: 1px;
    transform: translateY(0);
  }
}
/* =====================================================
   PREMIUM HERO TEXT EFFECT – ENHANCED PROFESSIONAL VERSION
===================================================== */
.hero-content h1 {
  position: relative;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: heroTextReveal 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* GRADIENT TEXT ENHANCEMENT */
.hero-content h1 {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f8f9fa 25%,
    #e9ecef 50%,
    #f8f9fa 75%,
    #ffffff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3.5s ease-in-out infinite,
             gradientShift 8s ease infinite;
}

/* ENHANCED REVEAL ANIMATION */
@keyframes heroTextReveal {
  0% {
    opacity: 0;
    transform: translateY(30px) perspective(500px) rotateX(10deg);
    filter: blur(8px);
    letter-spacing: 0.5em;
  }
  50% {
    opacity: 0.5;
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) perspective(500px) rotateX(0);
    filter: blur(0);
    letter-spacing: normal;
  }
}

/* MULTI-LAYER GLOW EFFECT */
@keyframes glowPulse {
  0%, 100% {
    text-shadow: 
      0 0 20px rgba(255, 255, 255, 0.2),
      0 0 40px rgba(255, 255, 255, 0.1),
      0 0 60px rgba(255, 255, 255, 0.05);
  }
  50% {
    text-shadow: 
      0 0 30px rgba(255, 255, 255, 0.4),
      0 0 60px rgba(255, 255, 255, 0.2),
      0 0 90px rgba(255, 255, 255, 0.1);
  }
}

/* GRADIENT SHIFT ANIMATION */
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* SHIMMER EFFECT */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* ENHANCED SHINE OVERLAY */
.hero-content h1::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.4),
    transparent
  );
  background-size: 200% 100%;
  animation: shine 3s ease-in-out infinite;
  z-index: -1;
  border-radius: 4px;
  opacity: 0.7;
}

.hero-content h1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.4) 40%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.4) 60%,
    transparent 80%
  );
  transform: translateX(-150%) skewX(-15deg);
  animation: professionalShine 3.5s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}

@keyframes professionalShine {
  0% {
    transform: translateX(-150%) skewX(-15deg);
  }
  70%, 100% {
    transform: translateX(150%) skewX(-15deg);
  }
}

/* =====================================================
   PREMIUM PHONE MOCKUP – ENHANCED (GREEN REMOVED)
===================================================== */
.phone-frame {
  width: 340px;
  height: 580px;
  background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
  border-radius: 48px;
  padding: 16px;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: perspective(1000px) rotateX(5deg) rotateY(-15deg) rotateZ(-8deg);
  animation: floatPhone 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.phone-frame:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-5deg) rotateZ(-4deg);
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  animation: gradientRotate 8s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes floatPhone {
  0%, 100% {
    transform: perspective(1000px) rotateX(5deg) rotateY(-15deg) rotateZ(-8deg) translateY(0);
  }
  50% {
    transform: perspective(1000px) rotateX(5deg) rotateY(-15deg) rotateZ(-8deg) translateY(-20px);
  }
}

@keyframes gradientRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* SCREEN ENHANCEMENTS */
.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 38px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    inset 0 0 0 1px rgba(0, 0, 0, 0.1),
    inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* NOTCH SIMULATION */
.phone-screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 24px;
  background: #0a0a0a;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

/* BRAND SLIDES ENHANCED */
.brand-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 40px;
}

.brand-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.brand-slide img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-slide.active img:hover {
  transform: scale(1.05) rotate(5deg);
}

.brand-name {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.4;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* TAGLINE SLIDE */
.brand-slide.tagline .brand-name {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 20px;
  position: relative;
}

.brand-slide.tagline .brand-name::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}

/* STORE SLIDE ENHANCEMENT */
.brand-slide.final.store-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    background: transparent !important;
    padding: 40px 20px;
}

.brand-slide.final.store-slide img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: contain;
}

.store-overlay {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.store-overlay span {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-color);
    margin-top: 8px;
}

/* FLOATING ELEMENTS */
.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(20px);
  animation: float 20s infinite linear;
  z-index: 0;
}

.floating-element:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: -5s;
  background: rgba(102, 126, 234, 0.1);
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -50px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* =====================================================
   RESPONSIVE ENHANCEMENTS
===================================================== */
@media (max-width: 1024px) {
  .phone-frame {
    width: 300px;
    height: 520px;
    transform: perspective(800px) rotateX(3deg) rotateY(-10deg) rotateZ(-5deg);
  }
  
  .phone-screen::before {
    width: 140px;
    height: 20px;
  }
}

@media (max-width: 768px) {
  .phone-frame {
    width: 280px;
    height: 500px;
    transform: perspective(600px) rotateX(2deg) rotateY(-5deg) rotateZ(-3deg);
    animation: floatPhoneMobile 6s ease-in-out infinite;
  }
  
  @keyframes floatPhoneMobile {
    0%, 100% {
      transform: perspective(600px) rotateX(2deg) rotateY(-5deg) rotateZ(-3deg) translateY(0);
    }
    50% {
      transform: perspective(600px) rotateX(2deg) rotateY(-5deg) rotateZ(-3deg) translateY(-15px);
    }
  }
  
  .brand-slide img {
    width: 80px;
    height: 80px;
  }
  
  .brand-name {
    font-size: 20px;
  }
  
  .brand-slide.tagline .brand-name {
    font-size: 26px;
  }
}

/* PERFORMANCE OPTIMIZATION */
@media (prefers-reduced-motion: reduce) {
  .hero-content h1,
  .phone-frame,
  .brand-slide,
  .floating-element {
    animation: none !important;
    transition: none !important;
  }
}

/* HIGH CONTRAST MODE SUPPORT */
@media (prefers-contrast: high) {
  .hero-content h1 {
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
  }
  
  .phone-frame {
    box-shadow: 0 0 0 2px #ffffff;
  }
}
/* =====================================================
   MOBILE – SCALE ONLY (NO STACK)
===================================================== */
@media (max-width: 768px) {

  .hide-mobile {
    display: none !important;
  }

  .nav-links {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .hero {
    height: 396px;
    justify-content: center;
  }

  .hero-grid {
    transform: scale(0.85);
    transform-origin: center;
    grid-template-columns: 1fr 1fr;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .phone-frame {
    transform: rotate(-10deg) scale(0.8);
  }

  .brand-slide img {
    width: 60px;
    height: 60px;
  }

  .brand-name {
    font-size: 18px;
  }
}
/* =====================================================
   MOBILE – HIDE HERO BUTTONS
===================================================== */
@media (max-width: 768px) {
  .hero-btns {
    display: none;
  }
}

/* =====================================================
   WHY CHOOSE US – TIGHT & CLEAN SPACING
===================================================== */
.why-us {
  position: relative;
  padding-top: 25px;     /* ✅ reduced heavily */
  padding-bottom: 90px;  /* keep bottom space for cards & stats */
  background: #ffffff;
  overflow: hidden;
}



/* ================================
   HONEYCOMB BACKGROUND – WHY US ONLY
================================ */
.honeycomb-bg {
  position: absolute;
  left: -120px;
  top: 50%;
  width: 320px;
  height: 320px;
  transform: translateY(-50%);
  background:
    radial-gradient(circle at 25% 25%, rgba(45,190,96,0.14) 20%, transparent 12%),
    radial-gradient(circle at 75% 25%, rgba(45,190,96,0.14) 20%, transparent 12%),
    radial-gradient(circle at 50% 50%, rgba(45,190,96,0.14) 20%, transparent 12%),
    radial-gradient(circle at 25% 75%, rgba(45,190,96,0.14) 20%, transparent 12%),
    radial-gradient(circle at 75% 75%, rgba(45,190,96,0.14) 20%, transparent 12%);
  background-size: 80px 80px;
  opacity: 6.0;
  animation: honeyMove 14s ease-in-out infinite;
  pointer-events: none;
  z-index: 0; /* 🔴 behind content */
}

/* Ensure content is above honeycomb */
.why-us .container {
  position: relative;
  z-index: 2;
}

@keyframes honeyMove {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-55%) translateX(24px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}

/* Hide on mobile */
@media (max-width: 768px) {
  .honeycomb-bg {
    display: none;
  }
}

/* Header */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.section-label {
  color: #2dbe60;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  margin: 20px 0;
  color: #1a1a1a;
}

.section-header h2 span {
  color: #2dbe60;
}

.section-description {
  color: #666;
  font-size: 1.05rem;
}

.value-tagline {
  margin-top: 18px;
  font-size: 1.05rem;
  color: #444;
}

.value-tagline span {
  color: #2dbe60;
  font-weight: 700;
}

/* Cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.why-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: 18px;
  border: 1px solid #f0f0f0;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.12);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(45,190,96,0.15);
  color: #2dbe60;
  font-size: 22px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.card-badge {
  display: inline-block;
  margin-top: 15px;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
  background: rgba(45,190,96,0.12);
  color: #2dbe60;
}

/* Stats */
.stats-container {
  background: #f8f9fa;
  padding: 60px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1a1a;
}

.stat-number .counter {
  color: #2dbe60;
}

.stat-label {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .decorative-corner {
    display: none;
  }
  .stats-container {
    padding: 40px 30px;
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}
/* =====================================================
   TOP BRANDS – PREMIUM & ANIMATED
===================================================== */
.brands-section {
  padding: 70px 0 90px;
  background: var(--bg-light);
}

.brands-section .section-header {
  margin-bottom: 60px;
}

/* Grid */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
}

/* Brand Card */
.brand-card {
  background: var(--white);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid #ededed;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

/* Logo */
.brand-card img {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  opacity: 0.9;
  transition: transform 0.35s ease;
}

.brand-card:hover img {
  transform: scale(1.08);
}

/* Brand Name */
.brand-card span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

/* =====================================================
   SCROLL REVEAL ANIMATION
===================================================== */
.brand-card.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.brand-card.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

/* Staggered animation */
.brand-card.reveal:nth-child(1) { transition-delay: 0.05s; }
.brand-card.reveal:nth-child(2) { transition-delay: 0.10s; }
.brand-card.reveal:nth-child(3) { transition-delay: 0.15s; }
.brand-card.reveal:nth-child(4) { transition-delay: 0.20s; }
.brand-card.reveal:nth-child(5) { transition-delay: 0.25s; }
.brand-card.reveal:nth-child(6) { transition-delay: 0.30s; }

/* Mobile */
@media (max-width: 768px) {
  .brands-section {
    padding: 60px 0;
  }
  .brands-grid {
    gap: 20px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .brand-card.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.brand-card img {
  filter: saturate(0.9);
}

.brand-card:hover img {
  filter: saturate(1.2);
}



/* ================================
   LATEST MOBILES MARQUEE
================================ */
.mobiles-marquee {
  position: relative;
  padding: 70px 0 45px;
  background: #ffffff;
  overflow: hidden;
}

/* Decorative corners */
.mobiles-marquee .corner-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at top left, #1e88e5, #0d47a1);
  border-radius: 50%;
  opacity: 0.45;
  pointer-events: none;
}

.mobiles-marquee .corner-shape.left {
  top: -140px;
  left: -140px;
}


/* Marquee */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marqueeScroll 55s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

/* Mobile card */
.mobile-item {
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 16px 20px;
  text-align: center;
  border: 1px solid #eee;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.mobile-item:hover {
  transform: translateY(-6px);
}

.mobile-item img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  margin-bottom: 12px;
}

.mobile-item h4 {
  font-size: 14px;
  font-weight: 700;
}

.mobile-item .price {
  font-size: 13px;
  font-weight: 600;
  color: #2dbe60;
}

.mobile-item .features {
  font-size: 12px;
  color: #6b7280;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================================
   ACCESSORIES SECTION
================================ */
.accessories-section {
  padding: 55px 0 70px;
  background: #f5f7fa;
}

.accessories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* Accessory card */
.accessory-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accessory-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.accessory-image {
  height: 180px;
  background: #fafafa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.accessory-image img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.accessory-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.accessory-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 14px;
}

.acc-price {
  margin-top: auto;
  padding: 6px 18px;
  background: rgba(45,190,96,0.15);
  color: #2dbe60;
  font-weight: 700;
  border-radius: 20px;
  font-size: 0.9rem;
}
/* ================================
   EMI PARTNERS SECTION
================================ */
.emi-section {
  padding: 70px 0;
  background: #ffffff;
}

.emi-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  align-items: center;
}

/* Card */
/* Logo – FULL COLOR BY DEFAULT */
.emi-card img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  opacity: 0.95;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover – gentle lift (no color change) */
.emi-card:hover img {
  transform: scale(1.08);
  opacity: 1;
}


.emi-card:hover {
  box-shadow: 0 16px 36px rgba(0,0,0,0.14);
}


/* Mobile */
@media (max-width: 768px) {
  .emi-section {
    padding: 55px 0;
  }
}
/* ================================
PREDICTOR SECTION ENHANCEMENTS
================================ */
.predictor-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.predictor-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at top right, rgba(45, 190, 96, 0.08), transparent 70%);
  pointer-events: none;
}

.predictor-box {
  max-width: 1000px;
  margin: 60px auto 0;
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 25px 60px rgba(15, 37, 68, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.predictor-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-green), var(--primary-blue));
}

/* FORM CONTAINER */
.predictor-form-container {
  transition: all 0.4s ease;
}

.form-step {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.form-step.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-header {
  text-align: center;
  margin-bottom: 40px;
}

.step-count {
  display: inline-block;
  background: rgba(45, 190, 96, 0.1);
  color: var(--accent-green);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.step-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.step-description {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}

/* OPTION GRIDS - FIXED */
.budget-options,
.priority-options,
.ram-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.budget-option,
.priority-option,
.ram-option {
  background: var(--white);
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.budget-option:hover,
.priority-option:hover,
.ram-option:hover {
  transform: translateY(-5px);
  border-color: var(--accent-green);
  box-shadow: 0 15px 35px rgba(45, 190, 96, 0.12);
}

.budget-option.selected,
.priority-option.selected,
.ram-option.selected {
  border-color: var(--accent-green);
  background: rgba(45, 190, 96, 0.05);
}

.option-icon {
  width: 60px;
  height: 60px;
  background: rgba(45, 190, 96, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 15px;
  color: var(--accent-green);
  transition: all 0.3s ease;
}

.selected .option-icon {
  background: var(--accent-green);
  color: white;
}

.budget-option h4,
.priority-option h4,
.ram-option h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.budget-option p,
.priority-option p,
.ram-option p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* RAM OPTIONS SPECIFIC */
.ram-badge {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin: 0 auto 15px;
}

/* ================================
   ENHANCED BRAND SELECTION STYLES - FIXED
================================ */
.brand-options.enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.brand-option {
  background: var(--white);
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 100px;
}

.brand-option:hover {
  transform: translateY(-5px);
  border-color: var(--accent-green);
  box-shadow: 0 15px 35px rgba(45, 190, 96, 0.12);
}

.brand-option.selected {
  border-color: var(--accent-green);
  background: linear-gradient(135deg, rgba(45, 190, 96, 0.05), rgba(15, 37, 68, 0.03));
  box-shadow: 0 10px 25px rgba(45, 190, 96, 0.15);
}

.brand-option.selected::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-green), var(--primary-blue));
}

.brand-logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: all 0.3s ease;
}

.brand-option:hover .logo-img {
  transform: scale(1.1) rotate(5deg);
}

.brand-option.selected .logo-img {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Brand Logo Colors */
.apple-logo {
  background: linear-gradient(135deg, #000000, #333333);
  color: #ffffff;
}

.samsung-logo {
  background: linear-gradient(135deg, #1428A0, #2C5FEF);
  color: #ffffff;
}

.oneplus-logo {
  background: linear-gradient(135deg, #F5010C, #FF4D4D);
  color: #ffffff;
}

.google-logo {
  background: linear-gradient(135deg, #4285F4, #34A853);
  color: #ffffff;
}

.xiaomi-logo {
  background: linear-gradient(135deg, #FF6900, #FF9500);
  color: #ffffff;
}

.logo-img svg {
  width: 30px;
  height: 30px;
}

.brand-content {
  flex: 1;
  min-width: 0;
}

.brand-option h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.brand-option.selected h4 {
  color: var(--accent-green);
}

.brand-option p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.4;
}

.brand-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.mini-tag {
  background: rgba(15, 37, 68, 0.08);
  color: var(--primary-blue);
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.brand-option.selected .mini-tag {
  background: rgba(45, 190, 96, 0.15);
  color: var(--accent-green);
}

.selection-indicator {
  width: 24px;
  height: 24px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.brand-option.selected .selection-indicator {
  border-color: var(--accent-green);
  background: var(--accent-green);
}

.indicator-circle {
  width: 12px;
  height: 12px;
  background: var(--accent-green);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.brand-option.selected .indicator-circle {
  opacity: 1;
  transform: scale(1);
  background: white;
}

/* Hover effects for non-selected */
.brand-option:not(.selected):hover .selection-indicator {
  border-color: var(--accent-green);
}

/* Glow effect on selection */
@keyframes brandGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(45, 190, 96, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(45, 190, 96, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(45, 190, 96, 0);
  }
}

.brand-option.selected {
  animation: brandGlow 0.6s ease;
}

/* FORM NAVIGATION */
.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
}

.step-indicators {
  display: flex;
  gap: 10px;
}

.step-dot {
  width: 10px;
  height: 10px;
  background: #d1d5db;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.step-dot.active {
  background: var(--accent-green);
  transform: scale(1.3);
}

/* AI ANALYSIS */
.ai-analysis {
  display: none;
  text-align: center;
  padding: 50px 30px;
  animation: fadeIn 0.5s ease;
}

.ai-analysis.active {
  display: block;
}

.ai-header {
  margin-bottom: 40px;
}

.ai-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), #163A63);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  position: relative;
}

.ai-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.ai-header h3 {
  font-size: 24px;
  color: var(--primary-blue);
  font-weight: 700;
}

.analysis-steps {
  max-width: 500px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.analysis-step {
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.analysis-step.active {
  opacity: 1;
}

.step-check {
  width: 30px;
  height: 30px;
  background: #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}

.active .step-check {
  background: var(--accent-green);
  animation: bounce 0.5s ease;
}

@keyframes bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.analysis-step p {
  font-size: 16px;
  color: var(--text-dark);
  margin: 0;
  text-align: left;
  flex: 1;
}

.ai-status {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 30px;
}

/* ENHANCED SCANNER */
.scanner {
  height: 4px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--accent-green), 
    var(--primary-blue),
    var(--accent-green),
    transparent);
  border-radius: 2px;
  width: 80%;
  margin: 40px auto 0;
  position: relative;
  overflow: hidden;
}

.scanner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, white, transparent);
  animation: scan 2s linear infinite;
}

@keyframes scan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* RESULTS SECTION */
.prediction-result {
  display: none;
  animation: fadeIn 0.8s ease;
}

.prediction-result.active {
  display: block;
}

.result-header {
  text-align: center;
  margin-bottom: 40px;
}

.success-badge {
  width: 80px;
  height: 80px;
  background: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
  animation: successPop 0.5s ease;
}

@keyframes successPop {
  0% { transform: scale(0); }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.result-header h3 {
  font-size: 32px;
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-weight: 800;
}

.match-text {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* USER PREFERENCES */
.user-preferences {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.preference-chip {
  background: rgba(45, 190, 96, 0.08);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  color: var(--text-dark);
  border: 1px solid rgba(45, 190, 96, 0.2);
}

.preference-chip strong {
  color: var(--accent-green);
  font-weight: 700;
}

/* TOP RECOMMENDATION */
.top-recommendation {
  background: linear-gradient(135deg, rgba(15, 37, 68, 0.02), rgba(45, 190, 96, 0.03));
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 50px;
  border: 1px solid rgba(45, 190, 96, 0.1);
}

.recommendation-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-green), #24a653);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}

.recommendation-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
}

.phone-visual {
  position: relative;
}

.phone-image {
  width: 100%;
  height: 300px;
  background: var(--bg-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.phone-image img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.match-meter {
  margin-top: 25px;
}

.match-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.match-bar {
  height: 10px;
  background: #e5e7eb;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 8px;
}

.match-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-green), #24a653);
  width: 0;
  transition: width 1.5s ease;
  border-radius: 5px;
}

.match-percent {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-green);
  text-align: right;
}

.phone-details {
  padding-right: 20px;
}

.phone-brand {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  font-weight: 600;
}

.phone-details h4 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.phone-specs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.spec {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 190, 96, 0.08);
  padding: 8px 16px;
  border-radius: 12px;
}

.spec-icon {
  font-size: 18px;
}

.spec-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.phone-description {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 15px;
}

.phone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.tag {
  background: rgba(15, 37, 68, 0.08);
  color: var(--primary-blue);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.phone-price {
  margin-bottom: 25px;
}

.price {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-green);
  display: block;
  margin-bottom: 5px;
}

.price-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* ALTERNATIVE RECOMMENDATIONS */
.alternative-recommendations {
  margin-bottom: 40px;
}

.alternative-recommendations h4 {
  font-size: 20px;
  color: var(--primary-blue);
  margin-bottom: 25px;
  font-weight: 700;
}

.alt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.alt-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.alt-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-green);
  box-shadow: 0 15px 35px rgba(45, 190, 96, 0.1);
}

.alt-image {
  width: 100%;
  height: 150px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  overflow: hidden;
}

.alt-image img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

.alt-content {
  text-align: center;
}

.alt-brand {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  font-weight: 600;
}

.alt-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.alt-specs {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.alt-card p {
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.5;
}

.alt-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-green);
}

/* RESULT ACTIONS */
.result-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 40px;
  border-top: 1px solid #e5e7eb;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .predictor-box {
    padding: 30px 20px;
    margin-top: 40px;
  }
  
  .budget-options,
  .priority-options,
  .ram-options {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .brand-options.enhanced {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .step-header h3 {
    font-size: 24px;
  }
  
  .form-navigation {
    flex-direction: column;
    gap: 20px;
  }
  
  .recommendation-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .phone-details {
    padding-right: 0;
  }
  
  .result-actions {
    flex-direction: column;
  }
  
  .user-preferences {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  
  .brand-option {
    padding: 15px;
    min-height: 90px;
  }
  
  .brand-logo {
    width: 50px;
    height: 50px;
    margin-right: 12px;
  }
  
  .logo-icon,
  .logo-img {
    width: 40px;
    height: 40px;
  }
  
  .logo-img svg {
    width: 24px;
    height: 24px;
  }
  
  .brand-option h4 {
    font-size: 14px;
  }
  
  .brand-option p {
    font-size: 12px;
  }
  
  .mini-tag {
    font-size: 10px;
    padding: 2px 6px;
  }
}

@media (max-width: 480px) {
  .budget-options,
  .priority-options,
  .ram-options {
    grid-template-columns: 1fr;
  }
  
  .brand-options.enhanced {
    grid-template-columns: 1fr;
  }
  
  .alt-grid {
    grid-template-columns: 1fr;
  }
  
  .phone-specs {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================================
   CUSTOMER FEEDBACK – THEME MATCH
================================ */
.customer-feedback {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.customer-feedback .container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Section Header (same style as predictor) */
.customer-feedback .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.customer-feedback .section-label {
  display: inline-block;
  background: rgba(45, 190, 96, 0.1);
  color: #2dbe60;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.customer-feedback h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0f2544;
  margin-bottom: 10px;
}

.customer-feedback h2 span {
  color: #2dbe60;
}

.customer-feedback .section-description {
  color: #6b7280;
  max-width: 600px;
  margin: auto;
  font-size: 16px;
}

/* Grid */
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-content: center;
}

/* Feedback Card */
.feedback-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(15, 37, 68, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(15, 37, 68, 0.12);
}

/* Instagram Embed Fix */
.feedback-card .instagram-media {
  margin: 0 !important;
  min-width: unset !important;
  width: 100% !important;
  border-radius: 16px !important;
  overflow: hidden;
}

/* Mobile */
@media (max-width: 768px) {
  .customer-feedback {
    padding: 60px 0;
  }

  .customer-feedback h2 {
    font-size: 26px;
  }
}
/* ================================
   GOOGLE REVIEWS – MARQUEE
================================ */
.google-badge {
  width: 40px;
  height: 40px;
  background: #f1f3f4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
}

.google-badge img {
  width: 22px;
  height: 22px;
}

.review-header {
  display: flex;
  gap: 12px;
  align-items: center;
}

.marquee-reviews {
  padding: 80px 0;
  background: #ffffff;
}

.reviews-marquee {
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 30px;
  animation: scrollReviews 30s linear infinite;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

/* Review Card (same as before) */
.review-card {
  min-width: 320px;
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 20px 50px rgba(15, 37, 68, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Animation */
@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .review-card {
    min-width: 280px;
  }
}
/* ================================
   FAQ SECTION – THEME MATCHED
================================ */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.faq-section .container {
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.faq-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-section .section-label {
  display: inline-block;
  background: rgba(45, 190, 96, 0.1);
  color: #2dbe60;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.faq-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0f2544;
}

.faq-section h2 span {
  color: #2dbe60;
}

.faq-section .section-description {
  color: #6b7280;
  max-width: 600px;
  margin: 10px auto 0;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* FAQ ITEM */
.faq-item {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(15, 37, 68, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: #0f2544;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ICON */
.faq-icon {
  font-size: 22px;
  font-weight: 700;
  color: #2dbe60;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
}

.faq-answer p {
  padding-bottom: 20px;
  color: #374151;
  line-height: 1.6;
  font-size: 14px;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Mobile */
@media (max-width: 640px) {
  .faq-section h2 {
    font-size: 26px;
  }

  .faq-question {
    font-size: 15px;
  }
}
/* ================================
   CTA SECTION – FINAL CONVERSION
================================ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f2544 0%, #163a63 100%);
}

.cta-section .container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.cta-box {
  background: linear-gradient(135deg, #2dbe60, #24a653);
  border-radius: 28px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(15, 37, 68, 0.35);
}

/* Content */
.cta-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-box h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
}

.cta-box h2 span {
  color: #0f2544;
}

.cta-box p {
  font-size: 16px;
  color: #ecfdf5;
  max-width: 650px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Call Button */
.call-btn {
  background: #ffffff;
  color: #0f2544;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.call-btn:hover {
  transform: translateY(-3px);
}

/* WhatsApp Button */
.whatsapp-btn {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 640px) {
  .cta-box {
    padding: 45px 25px;
  }

  .cta-box h2 {
    font-size: 28px;
  }

  .cta-box p {
    font-size: 15px;
  }
}
/* ================================
       FOOTER STYLES
    ================================ */
    .site-footer {
      background: var(--primary-blue);
      color: white;
      padding: 60px 0 30px;
    }
    
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 50px;
      margin-bottom: 50px;
    }
    
    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    
    .footer-brand .logo {
      font-size: 1.8rem;
      color: white;
    }
    
    .footer-text {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1rem;
      line-height: 1.7;
      max-width: 300px;
    }
    
    .footer-column h4 {
      color: white;
      font-size: 1.2rem;
      margin-bottom: 25px;
      font-weight: 700;
    }
    
    .footer-column ul {
      list-style: none;
    }
    
    .footer-column ul li {
      margin-bottom: 12px;
    }
    
    .footer-column ul li a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .footer-column ul li a:hover {
      color: var(--accent-green);
    }
    
    .footer-column p {
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 12px;
      line-height: 1.7;
      font-size: 0.95rem;
    }
    
    .footer-column a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .footer-column a:hover {
      color: var(--accent-green);
    }
    
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 25px;
      text-align: center;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
    }
    
    .credits {
      margin-top: 8px;
    }
    
    .credits a {
      color: var(--accent-green);
      text-decoration: none;
      font-weight: 600;
    }
    
    .credits a:hover {
      text-decoration: underline;
    }
    
/* ================================
   WHATSAPP FLOAT BUTTON
================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0f2544;
  color: white;
  font-size: 20px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  z-index: 9999;

  opacity: 1;
  visibility: visible;
}
/* ================================
   CRAZY MOBILES – LEAD POPUP
================================ */
#lead-popup {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 10000;
}

#lead-popup.active {
  display: block;
}

/* Overlay */
.popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 37, 68, 0.65);
  backdrop-filter: blur(3px);
}

/* Popup Box */
.popup-box {
  position: relative;
  background: #ffffff;
  max-width: 420px;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 22px;
  padding: 36px 30px;
  text-align: center;
  box-shadow: 0 40px 90px rgba(0,0,0,0.25);
}

/* Logo */
.popup-logo {
  width: 70px;
  height: 70px;
  margin: 0 auto 12px;
}

.popup-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: none;
  font-size: 26px;
  cursor: pointer;
  color: #6b7280;
}

/* Text */
.popup-box h3 {
  font-size: 24px;
  font-weight: 800;
  color: #0f2544;
  margin-bottom: 6px;
}

.popup-box p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 22px;
}

/* Inputs */
.popup-box input {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

/* Submit Button */
.popup-box button[type="submit"] {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #2dbe60, #24a653);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
/* --------------------
-----------------------
about us page
-----------------------*/
/* =====================================================
   ABOUT PAGE – HERO (SMALL HEIGHT)
===================================================== */
.hero.about-hero {
  height: 300px;
}

.hero.about-hero .hero-content h1 {
  font-size: clamp(32px, 5vw, 44px);
}

/* =====================================================
   STORE GALLERY – ABOUT PAGE
===================================================== */
.store-gallery {
  padding: 80px 0;
  background: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(15, 37, 68, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-grid img:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(15, 37, 68, 0.2);
}

/* =====================================================
   PROPRIETOR SECTION – ABOUT PAGE
===================================================== */
.proprietor-section {
  padding: 90px 0;
  background: #f8fafc;
}

.proprietor-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.proprietor-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(15, 37, 68, 0.18);
}

.proprietor-content {
  max-width: 640px;
}

.proprietor-content p {
  margin-top: 16px;
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
}

/* =====================================================
   ABOUT PAGE – MOBILE FIXES
===================================================== */
@media (max-width: 768px) {

  .gallery-grid img {
    height: 200px;
  }

  .proprietor-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .proprietor-image img {
    margin: 0 auto 20px;
  }
}
/* =====================================================
   SERVICES PAGE
===================================================== */
.hero.services-hero {
  height: 300px;
}

.services-section {
  padding: 90px 0;
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: #ffffff;
  padding: 32px 26px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 37, 68, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 65px rgba(15, 37, 68, 0.15);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f2544;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .services-section {
    padding: 70px 0;
  }
}
/* ================================
       NAVBAR ACTIVE STATE FIX
    ================================ */
    .navbar .nav-links li a.active {
      color: var(--accent-green) !important;
      font-weight: 600;
      position: relative;
    }
    
    .navbar .nav-links li a.active::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--accent-green);
      border-radius: 2px;
      animation: activeUnderline 0.3s ease;
    }
    
    @keyframes activeUnderline {
      from {
        width: 0;
      }
      to {
        width: 100%;
      }
    }
    
    /* Mobile active state */
    @media (max-width: 768px) {
      .navbar .nav-links.active li a.active {
        color: var(--accent-green) !important;
      }
    }
    
