/* ===== NAVRANG MOBILE SHOP — STYLES ===== */

/* --- CSS Variables --- */
:root {
  --saffron: #FF6B00;
  --saffron-light: #FF8C38;
  --saffron-pale: #FFF3E8;
  --indigo: #2D1B69;
  --indigo-mid: #4A2FA0;
  --indigo-light: #7B5EA7;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --gray-100: #F5F4F2;
  --gray-200: #E8E6E1;
  --gray-400: #9E9B94;
  --gray-700: #3D3A35;
  --dark: #1A1714;
  --green: #22C55E;
  --gradient: linear-gradient(135deg, #FF6B00 0%, #FF3CAC 40%, #7B5EA7 70%, #2D1B69 100%);
  --gradient-warm: linear-gradient(135deg, #FF6B00, #FF8C38);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Rainbow Bar --- */
.rainbow-bar {
  height: 5px;
  background: linear-gradient(90deg,
    #FF0000, #FF6B00, #FFD700, #22C55E,
    #00BFFF, #7B5EA7, #FF3CAC, #FF0000);
  background-size: 200% 100%;
  animation: rainbowShift 4s linear infinite;
}

@keyframes rainbowShift {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* --- Gradient Text --- */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-light {
  background: linear-gradient(135deg, #FFD700, #FF8C38);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
}
.logo-icon { font-size: 1.6rem; }
.logo-accent { color: var(--saffron); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-warm);
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a:hover { color: var(--saffron); }

.nav-cta {
  background: var(--gradient-warm);
  color: white !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 4px 14px rgba(255,107,0,0.35);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,107,0,0.45) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: 70px;
  background: linear-gradient(160deg, #FFF8F2 0%, #F5F0FF 50%, #FFF3E8 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #FF6B00, transparent);
  top: -100px; right: -100px;
  animation: floatShape 8s ease-in-out infinite;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #7B5EA7, transparent);
  bottom: 0; left: -100px;
  animation: floatShape 10s ease-in-out infinite reverse;
}
.shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #FF3CAC, transparent);
  top: 50%; left: 40%;
  animation: floatShape 12s ease-in-out infinite;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1.5px solid var(--gray-200);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--saffron);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  animation: fadeInUp 0.6s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
  animation: fadeInUp 0.6s 0.1s ease both;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray-700);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 0.6s 0.4s ease both;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--saffron);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* --- Phone Stack Visual --- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.phone-stack {
  position: relative;
  width: 280px;
  height: 420px;
}

.phone-card {
  position: absolute;
  width: 200px;
  height: 380px;
  background: linear-gradient(145deg, #2D1B69, #4A2FA0);
  border-radius: 32px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s;
}
.phone-back {
  top: 20px; left: 0;
  transform: rotate(-8deg);
  background: linear-gradient(145deg, #1A1714, #3D3A35);
  opacity: 0.7;
}
.phone-front {
  top: 0; right: 0;
  transform: rotate(4deg);
  background: linear-gradient(145deg, #2D1B69, #7B5EA7);
  z-index: 2;
}
.phone-front:hover { transform: rotate(0deg) scale(1.03); }

.phone-screen {
  background: #0D0D1A;
  border-radius: 22px;
  height: 100%;
  overflow: hidden;
  padding: 16px 12px;
}
.screen-notch {
  width: 60px; height: 10px;
  background: #1A1A2E;
  border-radius: 10px;
  margin: 0 auto 16px;
}
.screen-bar {
  height: 8px;
  background: linear-gradient(90deg, #FF6B00, #FF3CAC);
  border-radius: 4px;
  margin-bottom: 8px;
  opacity: 0.8;
}
.screen-bar.short { width: 60%; opacity: 0.5; }
.screen-icon-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.screen-icon {
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(255,107,0,0.4), rgba(123,94,167,0.4));
  border-radius: 10px;
}

.phone-badge {
  position: absolute;
  top: -12px; right: -12px;
  background: var(--gradient-warm);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(255,107,0,0.4);
}

.floating-tag {
  position: absolute;
  background: white;
  border-radius: 50px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: floatTag 3s ease-in-out infinite;
}
.tag-1 { bottom: 60px; left: -30px; animation-delay: 0s; }
.tag-2 { top: 40px; left: -20px; animation-delay: 1s; }
.tag-3 { bottom: 20px; right: -10px; animation-delay: 2s; }

@keyframes floatTag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gradient-warm);
  color: white;
  box-shadow: 0 6px 20px rgba(255,107,0,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255,107,0,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray-200);
}
.btn-outline:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  transform: translateY(-2px);
}
.btn.full-width { width: 100%; justify-content: center; }

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--indigo);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee-track span {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTION COMMONS ===== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: var(--saffron-pale);
  color: var(--saffron);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag.light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-title.light { color: white; }
.section-subtitle {
  font-size: 1rem;
  color: var(--gray-400);
  max-width: 500px;
  margin: 0 auto;
}
.section-subtitle.light { color: rgba(255,255,255,0.7); }

/* ===== PRODUCTS ===== */
.products { background: var(--off-white); }

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  background: white;
  border: 2px solid var(--gray-200);
  transition: all 0.2s;
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gradient-warm);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(255,107,0,0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-200);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  animation: fadeInUp 0.5s ease both;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card.hidden { display: none; }

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gradient-warm);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 2;
}
.product-badge.new { background: linear-gradient(135deg, #7B5EA7, #2D1B69); }
.product-badge.sale { background: linear-gradient(135deg, #22C55E, #16A34A); }

.product-img-wrap {
  height: 220px;
  overflow: hidden;
  background: var(--gray-100);
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-img { transform: scale(1.06); }

.product-info { padding: 20px; }
.product-brand {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--saffron);
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 6px 0 8px;
}
.product-rating {
  font-size: 0.85rem;
  color: #F59E0B;
  margin-bottom: 12px;
}
.product-rating span { color: var(--gray-400); }

.product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}
.price-current {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
}
.price-old {
  font-size: 0.9rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.btn-card {
  width: 100%;
  padding: 12px;
  background: var(--saffron-pale);
  color: var(--saffron);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.btn-card:hover {
  background: var(--gradient-warm);
  color: white;
  transform: translateY(-1px);
}

/* ===== SERVICES ===== */
.services {
  position: relative;
  overflow: hidden;
}
.services-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1714 0%, #2D1B69 60%, #1A1714 100%);
  z-index: 0;
}
.services .section-container { position: relative; z-index: 1; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.service-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,107,0,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-tag {
  display: inline-block;
  background: rgba(255,107,0,0.2);
  color: #FF8C38;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,107,0,0.3);
}

/* ===== BRANDS ===== */
.brands { background: var(--gray-100); }

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.brand-pill {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  transition: all 0.25s;
  cursor: default;
}
.brand-pill:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,107,0,0.15);
}

/* ===== WHY US ===== */
.why-us { background: var(--off-white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content .section-tag { margin-bottom: 16px; }
.why-content .section-title { text-align: left; margin-bottom: 16px; }
.why-desc {
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.why-list {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}
.check { font-size: 1.1rem; }

/* --- Testimonials --- */
.testimonial-stack { position: relative; }

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--gray-200);
  max-width: 360px;
}
.card-2 {
  margin-top: -20px;
  margin-left: 40px;
  background: linear-gradient(135deg, #2D1B69, #4A2FA0);
  border-color: transparent;
}
.card-2 p, .card-2 strong, .card-2 span { color: white !important; }
.card-2 .t-stars { color: #FFD700; }

.t-stars {
  font-size: 1rem;
  color: #F59E0B;
  margin-bottom: 12px;
}
.testimonial-card p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 40px; height: 40px;
  background: var(--gradient-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.t-avatar.purple { background: linear-gradient(135deg, #FF3CAC, #7B5EA7); }
.t-author strong { display: block; font-size: 0.9rem; color: var(--dark); }
.t-author span { font-size: 0.78rem; color: var(--gray-400); }

.review-count-badge {
  position: absolute;
  bottom: -20px; right: 0;
  background: var(--gradient-warm);
  color: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(255,107,0,0.35);
}
.big-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.review-count-badge span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
}
.small-text { font-size: 0.72rem !important; opacity: 0.75 !important; }

/* ===== CONTACT ===== */
.contact { background: var(--gray-100); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  border: 1.5px solid var(--gray-200);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-card:hover {
  border-color: var(--saffron);
  box-shadow: var(--shadow-sm);
}
.contact-icon { font-size: 1.6rem; flex-shrink: 0; }
.contact-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-card p {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-btn {
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.2s;
  border: 2px solid var(--gray-200);
  background: white;
  color: var(--dark);
}
.social-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.social-btn.whatsapp:hover { border-color: #22C55E; color: #22C55E; }
.social-btn.instagram:hover { border-color: #E1306C; color: #E1306C; }
.social-btn.facebook:hover { border-color: #1877F2; color: #1877F2; }

/* --- Contact Form --- */
.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--gray-200);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 4px rgba(255,107,0,0.1);
  background: white;
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: #F0FFF4;
  border: 1.5px solid #22C55E;
  border-radius: var(--radius-sm);
  color: #16A34A;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}
.form-success.show { display: block; animation: fadeInUp 0.4s ease; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: white;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 260px;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-links a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--saffron-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content { order: 1; }
  .hero-visual { order: 2; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-subtitle { margin: 0 auto 36px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-content .section-title { text-align: center; }
  .why-content .section-tag { display: block; text-align: center; }
  .why-list { max-width: 400px; margin: 0 auto 36px; }
  .why-content .btn { display: block; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-title { font-size: 2.4rem; }
  .phone-stack { width: 220px; height: 340px; }
  .phone-card { width: 160px; height: 300px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .services-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 28px; }
  .contact-form { padding: 28px 20px; }
  .testimonial-stack { padding-bottom: 60px; }
}

@media (max-width: 480px) {
  .section-container { padding: 60px 16px; }
  .hero-container { padding: 40px 16px 60px; }
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { gap: 16px; }
  .brands-grid { gap: 10px; }
  .brand-pill { padding: 10px 18px; font-size: 0.85rem; }
}