/* ====================================================
   INDIANRAHE – LIGHT THEME (Footer stays dark)
   ==================================================== */

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

:root {
  /* Brand colors */
  --primary:        #FF5A1F;
  --primary-dark:   #E04A10;
  --primary-light:  #FF7A45;
  --secondary:      #FF9500;
  --accent:         #7C3AED;
  --accent2:        #0EA5E9;
  --success:        #16A34A;

  /* Light theme surfaces */
  --bg:             #FDFCFB;
  --bg2:            #FFF7F3;
  --bg3:            #FFF0E8;
  --bg4:            #F5F3F0;
  --card:           #FFFFFF;
  --card2:          #FFF9F6;

  /* Text */
  --text:           #1A1525;
  --text2:          #3D3750;
  --text-muted:     #6B6280;
  --text-light:     #9B93AD;

  /* Borders & shadows */
  --border:         rgba(0,0,0,0.08);
  --border2:        rgba(255,90,31,0.15);
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:      0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:      0 20px 60px rgba(0,0,0,0.12);
  --shadow-orange:  0 8px 32px rgba(255,90,31,0.22);
  --shadow-purple:  0 8px 24px rgba(124,58,237,0.18);

  /* Gradients */
  --gradient:       linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-soft:  linear-gradient(135deg, #FFF2EC 0%, #FFF8EE 100%);
  --gradient-purple:linear-gradient(135deg, #7C3AED 0%, #0EA5E9 100%);
  --gradient-hero:  linear-gradient(160deg, #FDFCFB 0%, #FFF5EE 60%, #FFF0E0 100%);

  /* Footer (stays dark) */
  --footer-bg:      #0F0E1A;
  --footer-surface: #1A1830;
  --footer-border:  rgba(255,255,255,0.07);
  --footer-text:    #C8C4D8;
  --footer-muted:   #6B6580;

  --radius:         20px;
  --radius-sm:      12px;
  --transition:     0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  max-width: 100vw;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- TYPOGRAPHY ---------- */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255,90,31,0.12), rgba(255,149,0,0.10));
  border: 1px solid rgba(255,90,31,0.25);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(253,252,251,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.06);
  padding: 12px 0;
}
/* On hero + scrolled: keep dark semi-transparent bg so white links stay visible */
.navbar.scrolled:not(.past-hero) {
  background: rgba(0, 0, 0, 0.35);
  box-shadow: none;
}
.nav-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-sizing: border-box;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}
.logo-icon { color: var(--primary); font-size: 1.1rem; }
.nav-logo-img { height: 50px; width: auto; object-fit: contain; display: block; background: white; border-radius: 6px; padding: 4px 8px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { transform: scaleX(1); }

.navbar:not(.past-hero) .nav-links a { color: rgba(255, 255, 255, 0.92); }
.navbar.past-hero .nav-links a { color: var(--text); }
.navbar.past-hero .nav-links a:hover { color: var(--primary); }
.navbar.past-hero .hamburger span { background: var(--text); }

.nav-cta {
  margin-left: auto;
  background: var(--gradient);
  color: white;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255,90,31,0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==============================================
   MOBILE DOUBLE SHUTTER MENU
   ============================================== */

/* Layer 1 — dim overlay (full screen, fades in) */
.mob-overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 30, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mob-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Layer 2 — frosted glass shutter panel (slides in from right, Shutter #1) */
.mob-shutter {
  position: fixed;
  top: 0; right: 0;
  width: 78vw;
  max-width: 340px;
  height: 100dvh;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;

  /* frosted glass background = Shutter #1 */
  background: rgba(255, 246, 240, 0.25);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-left: 1px solid rgba(255, 90, 31, 0.12);
}
.mob-shutter.slide-in {
  transform: translateX(0);
}

/* Layer 3 — solid menu panel (Shutter #2, slides in with slight delay) */
.mob-menu {
  position: absolute;
  inset: 0;
  background: rgba(255, 252, 249, 0.96);
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.08s;
  will-change: transform;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.mob-menu.slide-in {
  transform: translateX(0);
}

/* Orange accent bar on left edge of menu */
.mob-menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gradient);
}

/* Menu header */
.mob-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 20px 28px;
  border-bottom: 1px solid var(--border);
}
.mob-logo { font-size: 1.1rem; }

.mob-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.mob-close:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: rotate(90deg);
}

/* Nav links */
.mob-nav-links {
  flex: 1;
  padding: 12px 0;
  overflow-y: auto;
}
.mob-nav-links li {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
/* staggered entrance when menu opens */
.mob-menu.slide-in .mob-nav-links li:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.22s; }
.mob-menu.slide-in .mob-nav-links li:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.28s; }
.mob-menu.slide-in .mob-nav-links li:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.34s; }
.mob-menu.slide-in .mob-nav-links li:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.40s; }
.mob-menu.slide-in .mob-nav-links li:nth-child(5) { opacity: 1; transform: translateX(0); transition-delay: 0.46s; }

.mob-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px 16px 28px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text2);
  transition: background var(--transition), color var(--transition), padding var(--transition);
  position: relative;
}
.mob-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 28px; right: 24px;
  height: 1px;
  background: var(--border);
}
.mob-link:hover {
  background: linear-gradient(90deg, rgba(255,90,31,0.06), transparent);
  color: var(--primary);
  padding-left: 34px;
}
.mob-link-num {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.6;
  letter-spacing: 0.06em;
  min-width: 20px;
}
.mob-link-arrow {
  margin-left: auto;
  font-size: 1rem;
  color: var(--text-light);
  transition: transform var(--transition), color var(--transition);
}
.mob-link:hover .mob-link-arrow {
  transform: translateX(5px);
  color: var(--primary);
}

/* Footer CTA */
.mob-menu-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;

  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease 0.52s, transform 0.35s ease 0.52s;
}
.mob-menu.slide-in .mob-menu-footer {
  opacity: 1;
  transform: translateY(0);
}
.mob-cta { width: 100%; justify-content: center; }
.mob-tagline {
  font-size: 0.75rem;
  color: var(--text-light);
  font-style: italic;
  margin-left: 4px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255,90,31,0.4);
}
.btn-secondary {
  background: white;
  border: 1.5px solid var(--border);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Video — position absolute, sirf hero section tak */
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Warm tint overlay */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(40, 40, 40, 0.68) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Hero orbs — above overlay */
.hero-orb {
  position: absolute;
  z-index: 2;
}

/* Inner content wrapper — max-width + centering */
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 75px 24px 50px;
  display: flex;
  align-items: center;
  min-height: 100vh;
  width: 100%;
}

/* Subtle warm grid on body (non-hero sections) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,90,31,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,90,31,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: -1;
}

/* Page background for non-hero sections */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
  z-index: -2;
}

.hero-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: -7;
}
.orb1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,90,31,0.13), transparent 70%);
  top: -120px; left: -180px;
  animation: orbFloat1 8s ease-in-out infinite;
}
.orb2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(124,58,237,0.09), transparent 70%);
  top: 20%; right: -120px;
  animation: orbFloat2 10s ease-in-out infinite;
}
.orb3 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(14,165,233,0.08), transparent 70%);
  bottom: -80px; left: 38%;
  animation: orbFloat3 12s ease-in-out infinite;
}
@keyframes orbFloat1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-40px) scale(1.05); } }
@keyframes orbFloat2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-20px,30px) scale(0.95); } }
@keyframes orbFloat3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px,-20px); } }

.hero-content {
  flex: 1;
  max-width: 580px;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255,90,31,0.1), rgba(255,149,0,0.08));
  border: 1px solid rgba(255,90,31,0.22);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,90,31,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(255,90,31,0); }
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82) !important;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.stat { text-align: center; }
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat span {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}
.stat p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 500;
}
.stat-divider {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(255,90,31,0.2), transparent);
}

/* ---- HERO IMAGE ---- */
.hero-phone {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 48px;
  z-index: 1;
  position: relative;
}
.hero-img-bg {
  position: absolute;
  width: 480px;
  height: auto;
  object-fit: contain;
  z-index: 0;
  pointer-events: none;
}
.hero-img {
  position: relative;
  z-index: 1;
  max-width: 460px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 50px;
  animation: phoneLevitate 5s ease-in-out infinite;
  filter: drop-shadow(0 24px 48px rgba(255,90,31,0.18));
}
@keyframes phoneLevitate { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

/* ---------- SERVICES ---------- */
.services {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, var(--bg2) 40%, var(--bg2) 60%, transparent 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border2);
  box-shadow: var(--shadow-orange), var(--shadow-lg);
}

/* Top image/icon area */
.sc-top {
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
  height: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.sc-top svg { width: 72px; height: 72px; opacity: 0.9; transition: transform var(--transition); }
.service-card:hover .sc-top svg { transform: scale(1.1) rotate(-4deg); }
.sc-top-img { width: auto; height: 50%; object-fit: contain; transition: transform var(--transition); }
.service-card:hover .sc-top-img { transform: scale(1.06); }

/* Color themes for top area */
.sc-top.bike    { background: linear-gradient(135deg, #FFF0E8, #FFD5B8); color: var(--primary); }
.sc-top.car4    { background: linear-gradient(135deg, #FFF8E8, #FFE5AA); color: #D97706; }
.sc-top.car7    { background: linear-gradient(135deg, #F0EBFF, #DDD0FF); color: var(--accent); }
.sc-top.rental4 { background: linear-gradient(135deg, #E8F5FF, #B8DEFF); color: #0284C7; }
.sc-top.rental7 { background: linear-gradient(135deg, #E8FFF0, #AAFFD0); color: #15803D; }

/* Badge icon at junction (right side) */
.sc-badge {
  position: absolute;
  right: 18px;
  top: 133px;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--card);
  box-shadow: var(--shadow-md);
  z-index: 2;
  transition: transform var(--transition);
}
.service-card:hover .sc-badge { transform: scale(1.15) rotate(10deg); }
.sc-badge svg { width: 17px; height: 17px; }

.bike-badge    { background: var(--primary); color: white; }
.car4-badge    { background: #D97706;        color: white; }
.car7-badge    { background: var(--accent);  color: white; }
.rental4-badge { background: #0284C7;        color: white; }
.rental7-badge { background: #15803D;        color: white; }

/* Content body */
.sc-body {
  padding: 20px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sc-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.sc-body p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; flex: 1; }

.service-tags    { display: flex; gap: 6px; flex-wrap: wrap; }
.service-tags span {
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}
.service-price { font-size: 0.9rem; font-weight: 700; color: var(--primary); }

/* ---------- WHY CHOOSE US ---------- */
.why-us {
  padding: 120px 0;
  background: var(--bg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border2);
  box-shadow: var(--shadow-orange);
}
.feature-icon {
  width: 50px; height: 50px;
  flex-shrink: 0;
  border-radius: 14px;
  display: grid;
  place-items: center;
  transition: transform var(--transition);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card:nth-child(1) .feature-icon { background: linear-gradient(135deg,#FFF0E8,#FFE0CC); color: var(--primary); }
.feature-card:nth-child(2) .feature-icon { background: linear-gradient(135deg,#F0EBFF,#E4D9FF); color: var(--accent); }
.feature-card:nth-child(3) .feature-icon { background: linear-gradient(135deg,#FFF8E8,#FFEDCC); color: #D97706; }
.feature-card:nth-child(4) .feature-icon { background: linear-gradient(135deg,#E8F4FF,#CCE7FF); color: #0284C7; }
.feature-card:nth-child(5) .feature-icon { background: linear-gradient(135deg,#E8FFF0,#CCFFE0); color: #16A34A; }
.feature-card:nth-child(6) .feature-icon { background: linear-gradient(135deg,#FFF0F0,#FFD9D9); color: #DC2626; }
.feature-card:hover .feature-icon { transform: scale(1.12) rotate(-5deg); }
.feature-card h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.feature-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ---------- ABOUT ---------- */
.about {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg3) 0%, var(--bg2) 60%, var(--bg) 100%);
}
.about-orb {
  position: absolute;
  top: 50%; right: -80px;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.07), transparent 70%);
  pointer-events: none;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 12px;
}
.about-text > p {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 8px;
  font-size: 0.92rem;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 20px;
}
.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 16px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.about-highlight:hover {
  border-color: var(--border2);
  box-shadow: var(--shadow-orange);
  transform: translateX(4px);
}
.highlight-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #FFF0E8, #FFE0CC);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}
.about-highlight strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.about-highlight p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.about-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
/* Store buttons — shared */
.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 22px;
  border-radius: 14px;
  border: 1.5px solid white;
  background: #000;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.apple-btn:hover, .google-btn:hover {
  transform: translateY(-3px);
  background: #1a1a1a;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.store-icon { width: 34px; height: 34px; display: grid; place-items: center; flex-shrink: 0; }
.store-icon svg { width: 26px; height: 26px; }
.store-icon img { width: 26px; height: 26px; object-fit: contain; }
.store-badge-img {
  height: auto;
  width: 100%;
  max-width: 200px;
  min-width: 140px;
  display: block;
  border-radius: 10px;
  object-fit: contain;
  aspect-ratio: 3 / 1;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.store-badge-img:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-md);
}
.apple-btn .store-icon { color: #fff; }
.store-text { display: flex; flex-direction: column; }
.store-text span   { font-size: 0.68rem; color: rgba(255,255,255,0.65); }
.store-text strong { font-size: 0.95rem; font-weight: 700; color: #fff; }

/* About image */
.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-img-bg {
  position: absolute;
  width: 150%;
  height: 150%;
  object-fit: contain;
  z-index: 0;
  pointer-events: none;
}
.about-img {
  position: relative;
  z-index: 1;
  max-width: 340px;
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: aboutFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 24px 48px rgba(255,90,31,0.13));
}
@keyframes aboutFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ============================================
   CONTACT US
   ============================================ */
.contact {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}
.contact::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,90,31,0.07), transparent 70%);
  pointer-events: none;
}
.contact::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(124,58,237,0.06), transparent 70%);
  pointer-events: none;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}

/* --- Left image side --- */
.contact-image {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(255,90,31,0.14), 0 4px 16px rgba(0,0,0,0.08);
}
.contact-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.contact-img-wrap:hover .contact-img {
  transform: scale(1.04);
}
.contact-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,90,31,0.18);
  border-radius: 100px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.contact-img-badge svg { color: var(--primary); flex-shrink: 0; }

.contact-info-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.contact-pill:hover {
  border-color: var(--border2);
  box-shadow: var(--shadow-orange);
  transform: translateX(5px);
}
.contact-pill-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #FFF0E8, #FFE0CC);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--primary);
}
.contact-pill span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text2);
}

/* --- Right form side --- */
.contact-form-wrap {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 28px;
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-header {
  margin-bottom: 32px;
}
.contact-form-header h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 10px;
}
.contact-form-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Form layout */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text2);
  letter-spacing: 0.02em;
}
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-light);
  pointer-events: none;
  transition: color var(--transition);
  flex-shrink: 0;
}
.textarea-icon { top: 14px; align-self: flex-start; }
.input-wrap input,
.input-wrap textarea {
  width: 100%;
  padding: 13px 16px 13px 44px;
  background: var(--bg4);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  resize: none;
}
.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
  color: var(--text-light);
  font-size: 0.875rem;
}
.input-wrap input:focus,
.input-wrap textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(255,90,31,0.1);
}
.input-wrap input:focus ~ .input-icon,
.input-wrap:focus-within .input-icon {
  color: var(--primary);
}
.textarea-wrap { align-items: flex-start; }
.input-wrap textarea { padding-top: 13px; min-height: 120px; }

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 28px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 100px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
  margin-top: 4px;
}
.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255,90,31,0.38);
}
.contact-submit-btn:active {
  transform: translateY(0);
}

/* ============================================
   FOOTER — STAYS DARK
   ============================================ */
.footer {
  padding: 80px 0 32px;
  background: url('assets/footer-bg.jpg') center / cover no-repeat;
  border-top: 1px solid var(--footer-border);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: -80px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,90,31,0.07), transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo {
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: white;
}
.footer-brand .logo-icon { color: var(--primary); }
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.80);
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--primary); color: var(--primary); background: rgba(255,90,31,0.1); }
.footer-col h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.825rem; color: rgba(255,255,255,0.65); }
.footer-bottom-badges { display: flex; align-items: center; gap: 12px; }
.footer-badge-img { height: 36px; width: auto; display: block; border-radius: 5px; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg4); }
::-webkit-scrollbar-thumb { background: rgba(255,90,31,0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ---------- SELECTION ---------- */
::selection { background: rgba(255,90,31,0.2); color: var(--primary-dark); }

/* ==============================================
   RESPONSIVE — ALL DEVICES
   ============================================== */

/* ---- DESKTOP LARGE (1280px+) ---- */
@media (min-width: 1280px) {
  .hero-img    { max-width: 500px; }
  .about-img   { max-width: 380px; }
}

/* ---- TABLET LANDSCAPE / SMALL DESKTOP (1024px) ---- */
@media (max-width: 1024px) {
  .about-inner           { grid-template-columns: 1fr; gap: 48px; }
  .about-image           { order: -1; }
  .about-cta             { justify-content: center; }
  .footer-grid           { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .hero-img              { max-width: 400px; }
  .about-img             { max-width: 380px; }
  .contact-inner         { grid-template-columns: 1fr; gap: 48px; }
  .contact-image         { order: -1; }
  .contact-img           { height: 320px; }
}

/* ---- TABLET PORTRAIT (768px) ---- */
@media (max-width: 768px) {
  /* Navbar */
  .navbar               { padding: 12px 0; }
  .nav-container        { padding: 0 16px; gap: 0; }
  .nav-logo             { font-size: 1.1rem; flex: 1; min-width: 0; }
  .nav-logo span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .nav-links, .nav-cta  { display: none; }
  .hamburger            { display: flex; flex-shrink: 0; margin-left: 12px; }

  /* Hero */
  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 100px 20px 60px;
    gap: 40px;
  }
  .hero-content          { max-width: 100%; }
  .hero-sub              { margin: 0 auto 36px; }
  .hero-actions          { justify-content: center; }
  .hero-stats            { justify-content: center; gap: 20px; }
  .hero-phone            { padding-left: 0; width: 100%; }
  .hero-img              { max-width: 340px; margin: 0 auto; }
  .scroll-indicator      { display: none; }

  /* Sections spacing */
  .services, .why-us, .about, .contact { padding: 80px 0; }
  .form-row                { grid-template-columns: 1fr; }
  .contact-form-wrap       { padding: 32px 24px; }

  /* Services */
  .services-grid         { grid-template-columns: repeat(2, 1fr); }

  /* Features */
  .features-grid         { grid-template-columns: 1fr; }

  /* About */
  .about-inner           { grid-template-columns: 1fr; gap: 40px; }
  .about-image           { order: -1; }
  .about-img             { max-width: 300px; }
  .about-cta             { flex-direction: row; }
  .store-badge-img       { max-width: calc(50% - 7px); min-width: unset; flex: 1; }

  /* Footer */
  .footer-grid           { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Section headings */
  .section-header        { margin-bottom: 40px; }
}

/* ---- MOBILE (480px) ---- */
@media (max-width: 480px) {
  /* Prevent any section overflowing x-axis */
  section, .container, .hero,
  .services, .why-us, .about, .footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Navbar */
  .nav-container { padding: 0 14px; }
  .mob-shutter  { width: 88vw; }

  /* Hero */
  .hero-inner   { padding: 88px 16px 48px; }
  .hero-title   { font-size: clamp(2.4rem, 10vw, 3.4rem); }
  .hero-sub     { font-size: 1rem; }
  .hero-stats   { gap: 14px; flex-wrap: wrap; justify-content: center; }
  .stat-num     { font-size: 1.6rem; }
  .stat-divider { display: none; }
  .hero-img     { max-width: 280px; }
  .btn          { padding: 12px 22px; font-size: 0.9rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Steps */
  .step          { max-width: 100%; width: 100%; }

  /* About */
  .about-img     { max-width: 240px; }
  .about-cta     { flex-direction: row; }
  .store-badge-img { max-width: calc(50% - 7px); min-width: unset; flex: 1; }
  .store-btn     { width: 100%; }
  /* Contact */
  .contact-img   { height: 260px; }
  .contact-form-wrap { padding: 28px 20px; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer        { padding: 56px 0 24px; }

  /* Section header */
  .section-header h2  { font-size: 1.75rem; }
  .section-header p   { font-size: 0.95rem; }
}

/* ---- TINY MOBILE (360px) ---- */
@media (max-width: 360px) {
  .mob-shutter   { width: 94vw; }
  .hero-img      { max-width: 240px; }
  .about-img     { max-width: 200px; }
  .hero-title    { font-size: 2.2rem; }
  .hero-actions  { flex-direction: column; align-items: center; }
}
