/* ============================================
   UPWEBDESIGNER — GLOBAL STYLESHEET
   Sab pages yahi file use karenge
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@700;800;900&display=swap');

:root {
  --ink: #0f0e0d;
  --paper: #f5f2ee;
  --accent: #e8460a;
  --accent2: #1a3a5c;
  --muted: #7a7067;
  --card: #ffffff;
  --border: #e2ddd8;
  --ticker-bg: #1a1a1a;
  --ticker-text: #f5f2ee;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  /* Nav (64px) + Ticker (38px) + safe area = 102px */
  padding-top: calc(102px + env(safe-area-inset-top));
}

/* ============================================
   TICKER BAR
   ============================================ */
.ticker-wrap {
  position: fixed;
  top: calc(64px + env(safe-area-inset-top)); /* nav ke neeche */
  left: 0; right: 0;
  z-index: 99;
  background: var(--ticker-bg);
  height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 2px solid var(--accent);
}

.ticker-label {
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  z-index: 2;
  flex-shrink: 0;
}

.ticker-label::after {
  content: '';
  position: absolute;
  left: calc(var(--label-width, 80px));
  top: 0; bottom: 0;
  width: 20px;
  background: linear-gradient(to right, var(--accent), transparent);
}

.ticker-track {
  display: flex;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ticker-text);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0 2rem;
  white-space: nowrap;
}

.ticker-dot {
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   NAV
   ============================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,242,238,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  padding-top: env(safe-area-inset-top);
  display: flex; align-items: center; justify-content: space-between;
  height: calc(64px + env(safe-area-inset-top));
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 900; font-size: 1.25rem;
  color: var(--ink); text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--ink); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: #fff;
  padding: 0.5rem 1.25rem; border-radius: 6px;
  text-decoration: none; font-size: 0.9rem; font-weight: 600;
  transition: background 0.2s;
}
.nav-cta:hover { background: #c73a08; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: calc(100vh - 102px);
  padding: 20px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,70,10,0.07) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(232,70,10,0.1); color: var(--accent);
  border-radius: 100px; padding: 0.35rem 1rem;
  font-size: 0.78rem; font-weight: 700;
  margin-bottom: 1.5rem; letter-spacing: 0.3px;
}
.hero-badge .dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }

h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -1px; margin-bottom: 1.25rem;
}
h1 em { color: var(--accent); font-style: normal; }

/* Typing cursor */
.typing-cursor {
  display: inline-block;
  width: 3px; height: 1em;
  background: var(--accent);
  margin-left: 3px;
  vertical-align: middle;
  animation: blink 0.8s step-end infinite;
}
/* Fixed width — layout shift nahi hoga */
#typing-word {
  display: inline-block;
  min-width: 220px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero p {
  font-size: 1.05rem; color: var(--muted);
  max-width: 480px; margin-bottom: 2rem; line-height: 1.75;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--accent); color: #fff;
  padding: 0.85rem 2rem; border-radius: 8px;
  text-decoration: none; font-weight: 700; font-size: 1rem;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { background: #c73a08; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,70,10,0.3); }

.btn-secondary {
  background: transparent; color: var(--ink);
  padding: 0.85rem 2rem; border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: 1rem;
  border: 2px solid var(--border); transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }

.hero-stats {
  display: flex; gap: 2.5rem;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem; font-weight: 900; line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; }

/* Mockup */
.mockup-card {
  background: var(--card); border-radius: 16px; padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border: 1px solid var(--border); transform: rotate(-1.5deg);
  transition: transform 0.4s;
}
.mockup-card:hover { transform: rotate(0deg); }
.mockup-browser { background: var(--paper); border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.browser-bar { background: #e8e5e0; padding: 0.6rem 1rem; display: flex; align-items: center; gap: 0.5rem; }
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-url { background: white; border-radius: 4px; padding: 0.2rem 0.75rem; font-size: 0.7rem; color: var(--muted); flex: 1; margin-left: 0.5rem; }
.browser-content { padding: 1.5rem; }
.mock-bar { height: 14px; background: var(--accent); border-radius: 4px; width: 60%; margin-bottom: 0.75rem; }
.mock-line { height: 8px; background: var(--border); border-radius: 4px; margin-bottom: 0.5rem; }
.mock-line.s { width: 70%; } .mock-line.xs { width: 45%; }
.mock-btn-m { height: 28px; width: 110px; background: var(--accent); border-radius: 6px; margin-top: 1rem; opacity: 0.9; }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; margin-top: 1rem; }
.mock-mini { height: 50px; background: var(--paper); border-radius: 6px; border: 1px solid var(--border); }

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section-label {
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900; letter-spacing: -0.5px; margin-bottom: 1rem;
}
.section-sub { color: var(--muted); font-size: 0.98rem; margin-bottom: 3rem; max-width: 560px; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   CITIES
   ============================================ */
.cities-section { padding: 80px 5%; background: var(--ink); color: var(--paper); }
.cities-section .section-sub { color: #9a9289; }
.cities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 1rem; }
.city-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 1.25rem 1.5rem;
  text-decoration: none; color: var(--paper);
  transition: all 0.25s;
  display: flex; align-items: center; justify-content: space-between;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.city-card:hover,
.city-card:active { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.city-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; pointer-events: none; }
.city-arrow { opacity: 0.4; transition: all 0.2s; pointer-events: none; }
.city-card:hover .city-arrow,
.city-card:active .city-arrow { opacity: 1; transform: translateX(5px); }

/* ============================================
   SERVICES
   ============================================ */
.services-section { padding: 80px 5%; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
  transition: all 0.25s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.service-price { margin-top: 1.25rem; font-weight: 700; color: var(--accent); font-family: 'Outfit', sans-serif; }

/* ============================================
   WHY US
   ============================================ */
.why-section { padding: 80px 5%; background: linear-gradient(135deg, var(--accent2) 0%, #0f1f30 100%); color: white; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-check { width: 28px; height: 28px; min-width: 28px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 800; }
.why-text strong { display: block; font-weight: 700; margin-bottom: 0.2rem; }
.why-text span { font-size: 0.88rem; opacity: 0.7; }
.price-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; padding: 2.5rem; }
.price-card h3 { font-family: 'Outfit', sans-serif; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.6; margin-bottom: 1rem; }
.price-big { font-family: 'Outfit', sans-serif; font-size: 3.5rem; font-weight: 900; line-height: 1; margin-bottom: 0.5rem; }
.price-big span { font-size: 1.5rem; }
.price-note { font-size: 0.82rem; opacity: 0.55; margin-bottom: 2rem; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.price-features li { font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }
.price-features li::before { content: '✓'; color: #4ade80; font-weight: 800; }

/* ============================================
   CTA
   ============================================ */
.cta-section { padding: 80px 5%; background: var(--ink); text-align: center; color: var(--paper); }
.cta-section h2 { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 1rem; letter-spacing: -0.5px; }
.cta-section p { color: #9a9289; margin-bottom: 2.5rem; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-whatsapp {
  background: #25D366; color: #fff; padding: 0.9rem 2rem; border-radius: 8px;
  text-decoration: none; font-weight: 700; font-size: 1rem;
  display: inline-flex; align-items: center; gap: 0.6rem; transition: all 0.2s;
}
.btn-whatsapp:hover { background: #1dba57; transform: translateY(-2px); }
.btn-call {
  background: transparent; color: var(--paper); padding: 0.9rem 2rem; border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; gap: 0.6rem; transition: all 0.2s;
}
.btn-call:hover { border-color: white; background: rgba(255,255,255,0.05); }

/* ============================================
   FOOTER
   ============================================ */
footer { background: #080807; color: #9a9289; padding: 3rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.65; max-width: 260px; margin-top: 0.75rem; }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--paper); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { color: #9a9289; text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }

/* ============================================
   STICKY BOTTOM BAR (Mobile)
   ============================================ */
.sticky-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--ink);
  padding: 0.75rem 1rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
  gap: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.sticky-bar a {
  flex: 1; text-align: center; padding: 0.75rem;
  border-radius: 8px; text-decoration: none;
  font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
.sticky-wa { background: #25D366; color: white; position: relative; }
.sticky-wa::before {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 10px;
  border: 2px solid #25D366;
  animation: wa-pulse 2s ease-out infinite;
  opacity: 0;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.08); opacity: 0; }
}
.sticky-call { background: var(--accent); color: white; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  /* Smart nav — JS se .nav-hidden class lagegi */
  nav {
    transition: transform 0.3s ease;
  }
  nav.nav-hidden {
    transform: translateY(-100%);
  }
  /* Ticker bhi saath move kare */
  .ticker-wrap {
    transition: transform 0.3s ease;
  }
  .ticker-wrap.nav-hidden {
    transform: translateY(-64px);
  }

  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 40px 5%; min-height: auto; }
  .hero-visual { display: none; }
  .hero-stats { gap: 1.5rem; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .sticky-bar { display: flex; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }

  /* 2 column grids on mobile */
  .cities-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 420px) {
  /* Very small phones — services 1 column */
  .services-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ============================================
   NAV DROPDOWN — CITIES
   ============================================ */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex; align-items: center; gap: 0.3rem;
  cursor: pointer;
}
.nav-dropdown > a::after {
  content: '▾'; font-size: 0.7rem; opacity: 0.6;
}
.dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  min-width: 560px;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu {
  display: grid;
}
.dropdown-menu a {
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background: var(--accent);
  color: white;
}

/* Demo link in nav */
.nav-demo {
  font-size: 0.82rem;
  color: var(--accent) !important;
  font-weight: 700 !important;
  border: 1.5px solid var(--accent);
  border-radius: 6px;
  padding: 0.3rem 0.75rem !important;
  transition: all 0.2s !important;
}
.nav-demo:hover {
  background: var(--accent) !important;
  color: white !important;
}

/* Mobile cities accordion */
.mobile-nav {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 1rem 5%;
  z-index: 99;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.mobile-nav.open { display: block; }
.mobile-nav-links { list-style: none; margin-bottom: 1rem; }
.mobile-nav-links li a {
  display: block; padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink); text-decoration: none;
  font-weight: 600; font-size: 1rem;
}
.mobile-cities-toggle {
  display: flex; justify-content: space-between;
  align-items: center; padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer; font-weight: 600;
}
.mobile-cities-toggle::after { content: '▾'; transition: transform 0.2s; }
.mobile-cities-toggle.open::after { transform: rotate(180deg); }
.mobile-cities-grid {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  padding: 0.75rem 0;
}
.mobile-cities-grid.open { display: grid; }
.mobile-city-link {
  padding: 0.5rem 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.82rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s;
}
.mobile-city-link:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 0.25rem; }
.hamburger span { width: 24px; height: 2px; background: var(--ink); display: block; transition: all 0.3s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex; }
}

/* ============================================
   HERO CTA FORM
   ============================================ */
.hero-form-section {
  padding: 0 5% 60px;
  background: var(--paper);
}

/* Outer wrapper — rotating border */
.hero-form-outer {
  position: relative;
  border-radius: 22px;
  padding: 3px;
  box-shadow: 0 12px 40px rgba(232,70,10,0.12);
  overflow: hidden;
}

/* Rotating shiny border — hamesha visible */
.hero-form-outer::before {
  content: '';
  position: absolute;
  inset: -150%;
  background: conic-gradient(
    from 0deg,
    #e8460a 0deg,
    #f97316 60deg,
    #fbbf24 120deg,
    #f97316 180deg,
    #e8460a 240deg,
    #c73a08 300deg,
    #e8460a 360deg
  );
  animation: border-rotate 4s linear infinite;
  z-index: 0;
}

@keyframes border-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Inner card — white background */
.hero-form-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: center;
  background: var(--card);
  border-radius: 20px;
  padding: 2.5rem;
}

.hf-tag {
  display: inline-block;
  background: rgba(232,70,10,0.1);
  color: var(--accent);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}
.hf-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 900; line-height: 1.2;
  margin-bottom: 0.5rem; letter-spacing: -0.3px;
}
.hf-sub { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

.hf-card { width: 100%; }
.hf-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.hf-group { margin-bottom: 0.75rem; }
.hf-group label {
  display: block; font-size: 0.78rem; font-weight: 700;
  margin-bottom: 0.35rem; color: var(--ink);
}
.hf-group input,
.hf-group select,
.hf-group textarea {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem; background: var(--paper);
  color: var(--ink); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
}
.hf-group input:focus,
.hf-group select:focus,
.hf-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,70,10,0.1);
}

.hf-submit {
  width: 100%; padding: 0.9rem;
  background: var(--accent); color: white;
  border: none; border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
  margin-top: 0.25rem;
  position: relative; overflow: hidden;
}
.hf-submit::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: btn-shimmer 2.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btn-shimmer {
  0%   { left: -75%; }
  100% { left: 125%; }
}
.hf-submit:hover { background: #c73a08; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,70,10,0.3); }
.hf-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.hf-note { font-size: 0.72rem; color: var(--muted); text-align: center; margin-top: 0.6rem; }

.hf-success {
  text-align: center; padding: 2rem;
  background: rgba(22,163,74,0.05);
  border: 1.5px solid rgba(22,163,74,0.2);
  border-radius: 12px;
}
.hf-success-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.hf-success h3 { font-family: 'Outfit', sans-serif; font-weight: 800; margin-bottom: 0.5rem; color: #16a34a; }
.hf-success p { font-size: 0.88rem; color: var(--muted); }

@media (max-width: 768px) {
  .hero-form-section { padding: 0 4% 30px; }
  .hero-form-outer { border-radius: 16px; }
  .hero-form-wrap {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 14px;
  }
  /* Left side (heading) compact on mobile */
  .hero-form-left { text-align: center; }
  .hf-tag { font-size: 0.7rem; }
  .hf-title { font-size: 1.2rem; margin-bottom: 0.25rem; }
  .hf-sub { font-size: 0.82rem; }
  /* Form fields */
  .hf-row { grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 0.5rem; }
  .hf-group { margin-bottom: 0.5rem; }
  .hf-group input,
  .hf-group textarea { padding: 0.65rem 0.8rem; font-size: 0.85rem; }
  .hf-submit { padding: 0.8rem; font-size: 0.9rem; }
}

@media (max-width: 380px) {
  .hf-row { grid-template-columns: 1fr; }
}

/* ============================================
   HERO — FLOATING SHAPES (Mobile only)
   ============================================ */
@media (max-width: 768px) {
  .hero {
    position: relative;
    overflow: hidden;
  }
  .hero::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(232,70,10,0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -50px; right: -80px;
    animation: float1 6s ease-in-out infinite;
    pointer-events: none;
  }
  .hero-float {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: float2 8s ease-in-out infinite;
  }
  .hero-float-1 {
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(26,58,92,0.12) 0%, transparent 70%);
    bottom: 60px; left: -30px;
    animation-delay: -2s;
  }
  .hero-float-2 {
    width: 80px; height: 80px;
    background: radial-gradient(circle, rgba(232,70,10,0.1) 0%, transparent 70%);
    top: 40%; right: 10px;
    animation-delay: -4s;
  }
  @keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(-15px, 20px) scale(1.05); }
    66%       { transform: translate(10px, -15px) scale(0.95); }
  }
  @keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50%       { transform: translate(12px, -18px); }
  }
}



/* ============================================
   SUBMIT BUTTON — SHIMMER
   ============================================ */
.hf-submit {
  position: relative;
  overflow: hidden;
}
.hf-submit::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  animation: btn-shimmer 2.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btn-shimmer {
  0%   { left: -75%; }
  100% { left: 125%; }
}

/* Input focus glow */
.hf-group input:focus,
.hf-group select:focus,
.hf-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,70,10,0.1);
}
