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

:root {
  --gold: #f5a623;
  --gold-light: #ffd175;
  --gold-dark: #c47d0a;
  --saffron: #ff6b00;
  --crimson: #c0392b;
  --deep-red: #8B0000;
  --maroon: #6b0f1a;

  --primary: #1a0533;
  --primary-mid: #2d0a52;
  --primary-light: #3d1270;

  --accent: #f5a623;
  --accent-glow: rgba(245, 166, 35, 0.4);

  --bg-dark: #0d0118;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --border: rgba(245, 166, 35, 0.2);
  --border-hover: rgba(245, 166, 35, 0.5);

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.45);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-glow: 0 0 40px rgba(245, 166, 35, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

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

/* ===== PARTICLES ===== */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-10vh) rotate(720deg);
    opacity: 0;
  }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 1, 24, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 8px var(--gold));
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-family: 'Noto Sans Telugu', sans-serif;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(245, 166, 35, 0.1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: #000;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(245, 166, 35, 0.6);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: min(320px, 85vw);
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  z-index: 999;
  padding: 5rem 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--border);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu a {
  display: block;
  color: var(--text-primary);
  text-decoration: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 500;
  transition: var(--transition);
}

.mobile-menu a:hover {
  background: rgba(245, 166, 35, 0.1);
  color: var(--gold);
}

.mobile-cta {
  display: block;
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: #000;
  text-align: center;
  font-weight: 700;
  padding: 1rem;
  border-radius: 50px;
  text-decoration: none;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at 20% 50%, rgba(61, 18, 112, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245, 166, 35, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
    var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8rem 6vw 4rem;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f5a623' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  flex: 1;
  max-width: 620px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

.hero-divine {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.telugu-name {
  font-family: 'Noto Sans Telugu', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--gold-light);
  font-weight: 600;
  line-height: 1.4;
  text-shadow: 0 0 20px rgba(255, 209, 117, 0.4);
}

.telugu-sub {
  font-family: 'Noto Sans Telugu', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--text-secondary);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--saffron), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: #000;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.4);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245, 166, 35, 0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245, 166, 35, 0.05);
}

.btn-arrow {
  transition: transform var(--transition);
}

.btn-secondary:hover .btn-arrow {
  transform: translateX(4px);
}

.hero-trust-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.trust-badge span {
  font-size: 1.1rem;
}

.hero-stats {
  display: flex;
  gap: 0;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(10px);
  max-width: 480px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-plus {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--saffron);
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin: 0 1rem;
}

/* Hero Visual */
.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  max-width: 480px;
}

.hero-image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 400px;
}

.hero-divine-img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  border: 3px solid rgba(245, 166, 35, 0.4);
  box-shadow: 0 0 60px rgba(245, 166, 35, 0.3), inset 0 0 40px rgba(245, 166, 35, 0.1);
  animation: float-img 4s ease-in-out infinite;
}

@keyframes float-img {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.glow-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(245, 166, 35, 0.2);
  border-radius: 50%;
  animation: spin-ring 8s linear infinite;
}

.glow-ring-2 {
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(245, 166, 35, 0.1);
  border-radius: 50%;
  animation: spin-ring 12s linear infinite reverse;
}

@keyframes spin-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.scroll-dot {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(245, 166, 35, 0.4);
  border-radius: 10px;
  position: relative;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-bounce 1.5s ease-in-out infinite;
}

@keyframes scroll-bounce {

  0%,
  100% {
    top: 5px;
    opacity: 1;
  }

  100% {
    top: 14px;
    opacity: 0;
  }
}

.scroll-indicator span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  background: linear-gradient(135deg, var(--primary-mid), var(--maroon));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.25);
  color: var(--gold);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services {
  padding: 7rem 0;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(61, 18, 112, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.service-card.featured {
  border-color: rgba(245, 166, 35, 0.5);
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.08), rgba(255, 107, 0, 0.05));
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: #000;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 8px rgba(245, 166, 35, 0.4));
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.card-glow {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
  pointer-events: none;
  transition: var(--transition);
}

.service-card:hover .card-glow {
  width: 140px;
  height: 140px;
  bottom: -30px;
  right: -30px;
}

/* ===== VEHICLES ===== */
.vehicles {
  padding: 7rem 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(61, 18, 112, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 60%);
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vehicle-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.vehicle-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(245, 166, 35, 0.1);
}

.vehicle-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: rgba(255, 255, 255, 0.03);
}

.vehicle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-img {
  transform: scale(1.05);
}

.vehicle-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: #000;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.vehicle-info {
  padding: 1.75rem;
}

.vehicle-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.vehicle-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.vehicle-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.vehicle-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.vehicle-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.vehicle-cta:hover {
  color: var(--gold-light);
  gap: 0.5rem;
}

/* ===== PROCESS ===== */
.process {
  padding: 7rem 0;
  background: linear-gradient(180deg, transparent, rgba(61, 18, 112, 0.1), transparent);
}

.steps-container {
  display: flex;
  gap: 0;
  align-items: flex-start;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), var(--gold), var(--border), transparent);
}

.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: #000;
  font-size: 1.1rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.5);
}

.step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 6px rgba(245, 166, 35, 0.3));
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.step-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 200px;
}

/* ===== PARTNERS ===== */
.partners {
  padding: 7rem 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(245, 166, 35, 0.05) 0%, transparent 60%);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.partner-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 10px 30px rgba(245, 166, 35, 0.1);
}

.partner-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.partner-card span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 7rem 0;
  background: radial-gradient(ellipse at center, rgba(245, 166, 35, 0.05) 0%, transparent 70%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.stars {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact {
  padding: 7rem 0;
  background: linear-gradient(180deg, transparent, rgba(61, 18, 112, 0.08), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.contact-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(245, 166, 35, 0.3));
}

.contact-details h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
}

.contact-details a,
.contact-details p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  line-height: 1.3;
}

.contact-details a:hover {
  color: var(--gold);
}

.contact-details span {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.2rem;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 220px;
  margin-top: 0.5rem;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) invert(5%);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.form-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(245, 166, 35, 0.05);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--primary);
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: #000;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.9rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 6px 24px rgba(245, 166, 35, 0.4);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245, 166, 35, 0.6);
}

.btn-arrow-icon {
  font-size: 1.1rem;
}

.form-success {
  text-align: center;
  padding: 3rem 1rem;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.form-success p {
  color: var(--text-secondary);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, var(--primary), #000);
  border-top: 1px solid var(--border);
  padding: 5rem 6vw 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.logo-divine {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 10px var(--gold));
}

.footer-logo-main {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
}

.footer-logo-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-telugu {
  font-family: 'Noto Sans Telugu', sans-serif;
  font-size: 0.85rem;
  color: var(--gold-light);
  opacity: 0.7;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact-info h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  align-items: flex-start;
}

.footer-contact-item span:first-child {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-item a,
.footer-contact-item span:last-child {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-blessing {
  font-family: 'Noto Sans Telugu', sans-serif;
}

/* ===== FAB CALL BUTTON (Desktop only) ===== */
.fab-call {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: #000;
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.5);
  transition: var(--transition);
  animation: fab-bounce 3s ease-in-out infinite;
}

.fab-call:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(245, 166, 35, 0.7);
}

@keyframes fab-bounce {

  0%,
  100% {
    box-shadow: 0 8px 32px rgba(245, 166, 35, 0.5);
  }

  50% {
    box-shadow: 0 8px 48px rgba(245, 166, 35, 0.8);
  }
}

.fab-icon {
  font-size: 1.2rem;
  animation: ring-shake 2.5s ease-in-out infinite;
}

@keyframes ring-shake {

  0%,
  100% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(-15deg);
  }

  20% {
    transform: rotate(15deg);
  }

  30% {
    transform: rotate(-10deg);
  }

  40% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(0deg);
  }
}

.fab-text {
  font-size: 0.88rem;
}

/* ===== MOBILE BOTTOM ACTION BAR ===== */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(13, 1, 24, 0.97);
  border-top: 1px solid rgba(245, 166, 35, 0.25);
  backdrop-filter: blur(20px);
  padding: 0.65rem 1rem;
  padding-bottom: calc(0.65rem + env(safe-area-inset-bottom));
  gap: 0.6rem;
}

.mob-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.6rem 0.4rem;
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  cursor: pointer;
  border: none;
  transition: 0.2s ease;
  letter-spacing: 0.3px;
}

.mob-btn span:first-child {
  font-size: 1.3rem;
  line-height: 1;
}

.mob-btn-call {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: #000;
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.4);
}

.mob-btn-wa {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
}

.mob-btn-enq {
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.25);
  color: var(--gold);
}

.mob-btn:active {
  transform: scale(0.95);
  opacity: 0.85;
}

/* ===== ANIMATIONS ===== */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  animation: slide-up 0.7s ease forwards;
}

.animate-in:nth-child(2) {
  animation-delay: 0.1s;
}

.animate-in:nth-child(3) {
  animation-delay: 0.2s;
}

.animate-in:nth-child(4) {
  animation-delay: 0.3s;
}

.animate-in:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes slide-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Intersection observer fade-in */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    padding: 7rem 6vw 4rem;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    margin: 0 auto;
  }

  .hero-visual {
    display: none;
  }

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

  .vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  /* Nav */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-inner {
    padding: 0 1.25rem;
  }

  /* Hide desktop FAB on mobile */
  .fab-call {
    display: none;
  }

  /* Show mobile action bar */
  .mobile-action-bar {
    display: flex;
  }

  /* Add padding so content doesn't hide behind bottom bar */
  body {
    padding-bottom: 80px;
  }

  /* Hero */
  .hero {
    padding: 5.5rem 1.25rem 3rem;
    text-align: center;
    min-height: auto;
  }

  .hero-divine {
    align-items: center;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-desc {
    font-size: 0.93rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: row;
    padding: 1rem;
    margin: 0 auto;
    width: 100%;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .stat-divider {
    height: 36px;
    margin: 0 0.5rem;
  }

  /* Sections */
  .services,
  .vehicles,
  .process,
  .testimonials,
  .contact {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-desc {
    font-size: 0.9rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  /* Service cards */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  /* Vehicle cards */
  .vehicles-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .vehicle-img-wrap {
    height: 180px;
  }

  /* Process steps */
  .steps-container {
    flex-direction: column;
    gap: 1.25rem;
  }

  .steps-container::before {
    display: none;
  }

  .step-item {
    flex-direction: row;
    text-align: left;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 0;
  }

  .step-content {
    align-items: flex-start;
  }

  .step-content p {
    max-width: none;
    font-size: 0.88rem;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1rem;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .step-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  /* Partners */
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .partner-card {
    padding: 1.5rem;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-card {
    padding: 1rem 1.25rem;
  }

  .contact-form-wrap {
    padding: 1.75rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .contact-form h3 {
    font-size: 1.25rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 1rem;
    /* Prevents iOS zoom on focus */
    padding: 0.85rem 1rem;
  }

  .btn-submit {
    padding: 1rem;
    font-size: 1rem;
  }

  /* Footer */
  .footer {
    padding: 3rem 1.25rem 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .footer-desc {
    font-size: 0.85rem;
  }

  /* Marquee */
  .marquee-track span {
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 5rem 1rem 2.5rem;
  }

  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-badge {
    font-size: 0.72rem;
  }

  .hero-stats {
    gap: 0;
  }

  .stat-number {
    font-size: 1.35rem;
  }

  .contact-form-wrap {
    padding: 1.25rem 1rem;
  }

  .footer {
    padding: 2.5rem 1rem 1rem;
  }
}

/* ===== ENQUIRE MODAL ===== */
.enquire-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.enquire-modal-overlay.active {
  display: flex;
}

.enquire-modal {
  background: linear-gradient(135deg, #1a0533, #2d0a52);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(245, 166, 35, 0.1);
  animation: modalPop 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalPop {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(245, 166, 35, 0.2);
}

.modal-icon {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.75rem;
}

.modal-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}

.modal-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.modal-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'Outfit', sans-serif;
}

.modal-btn span:first-child {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.modal-btn div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.modal-btn div strong {
  font-size: 1rem;
  font-weight: 700;
}

.modal-btn div span {
  font-size: 0.8rem;
  opacity: 0.75;
}

.modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.modal-btn-call {
  background: linear-gradient(135deg, #f5a623, #ff6b00);
  color: #000;
}

.modal-btn-call div strong,
.modal-btn-call div span {
  color: #000;
}

.modal-btn-email {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(245,166,35,0.25);
  color: #fff;
}

.modal-btn-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}