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

:root {
  --primary: #003580;
  --primary-dark: #00224f;
  --primary-light: #0071c2;
  --accent: #feba02;
  --accent-light: #ffc436;

  --bg-main: #f5f7fa;
  --dark-card: #ffffff;
  --dark-surface: #f3f4f6;
  --dark-border: #e5e7eb;
  --text: #111827;
  --text-muted: #4b5563;
  --text-dim: #9ca3af;
  --white: #ffffff;

  --gradient-gold: linear-gradient(135deg, #003580 0%, #0071c2 100%);
  --gradient-hero: linear-gradient(135deg, rgba(0, 53, 128, 0.03) 0%, rgba(0, 113, 194, 0.05) 100%);

  --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 4px 20px rgba(0, 113, 194, 0.2);

  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--dark-border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

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

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

/* ===== REDESIGNED PREMIUM LOGO ===== */
.css-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.css-logo .text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

.css-logo .main-text {
  font-family: 'Bangers', cursive, sans-serif;
  font-size: 42px;
  line-height: 0.9;
  letter-spacing: 2px;
  -webkit-text-stroke: 1.5px black;
  text-shadow: 2px 2px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  display: flex;
}

.css-logo .main-text .red-a {
  color: #ff0000;
  -webkit-text-stroke: 1.5px black;
}

.css-logo .main-text .white-text {
  color: #ffffff;
  -webkit-text-stroke: 1.5px black;
}

.css-logo .sub-text {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 18px;
  color: #000000;
  letter-spacing: 4px;
  margin-top: -2px;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links a {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(0, 113, 194, 0.08);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-cta {
  background: var(--accent) !important;
  color: #111827 !important;
  font-weight: 700 !important;
  padding: 12px 28px !important;
  border-radius: 8px !important;
  letter-spacing: 0.5px;
}

.nav-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(254, 186, 2, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 28px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 20px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-marquee {
  position: relative;
  margin-top: 115px;
  width: 100%;
  z-index: 5;
  background: var(--primary);
  color: var(--accent);
  padding: 12px 0;
  font-weight: 800;
  font-size: 1.1rem;
  border-top: 1px solid rgba(254, 186, 2, 0.3);
  border-bottom: 1px solid rgba(254, 186, 2, 0.3);
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.hero-marquee marquee {
  display: inline-block;
  vertical-align: middle;
  padding-top: 4px;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 100px;
  font-size: 0.85rem;
  color: #000000;
  margin-bottom: 32px;
  letter-spacing: 1px;
  font-weight: 700;
  animation: fadeInUp 1s ease, pulse 2s infinite 1s;
}

.hero-badge .dot {
  width: 10px;
  height: 10px;
  background: #000000;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
  animation: pulse 1s infinite;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #ffffff;
  letter-spacing: -1px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero h1 .gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 40px;
  max-width: 650px;
  line-height: 1.6;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 53, 128, 0.3);
}

.btn-outline {
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--dark-border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0, 113, 194, 0.05);
}

.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 50px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.stat {
  text-align: center;
  min-width: 70px;
}

.stat .num {
  font-size: 1.9rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat .label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(232, 160, 32, 0.1);
  border: 1px solid rgba(232, 160, 32, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-title .gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ===== CARDS ===== */
.card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-gold);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}

.card:hover::before {
  opacity: 0.02;
}

.card-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 113, 194, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 113, 194, 0.15);
  color: var(--primary);
  transition: var(--transition);
}

.card:hover .card-icon {
  background: var(--primary);
  transform: scale(1.05) rotate(0deg);
  color: #ffffff;
  border-color: transparent;
}

.card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text);
  letter-spacing: -0.3px;
}

.card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== SERVICE GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* ===== NAVAGRAHA TEMPLE CARDS ===== */
.navagraha-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-light) !important;
  box-shadow: 0 8px 24px rgba(0, 53, 128, 0.1);
}

.navagraha-card a:hover {
  text-decoration: underline;
}

/* ===== VEHICLE CARDS ===== */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

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

.vehicle-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 160, 32, 0.3);
  box-shadow: var(--shadow-glow);
}

.vehicle-img {
  height: 200px;
  overflow: hidden;
  background: var(--dark-surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.vehicle-info {
  padding: 24px;
}

.vehicle-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.vehicle-info .seats {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(232, 160, 32, 0.1);
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--primary-light);
  margin-bottom: 12px;
}

.vehicle-info .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.vehicle-info .price span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.vehicle-ac-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 8px;
}

.vehicle-ac-badge.ac {
  background: rgba(0, 113, 194, 0.1);
  color: var(--primary-light);
}

.vehicle-ac-badge.nonac {
  background: rgba(254, 186, 2, 0.15);
  color: #b45309;
}

/* ===== PRICING TABLE ===== */
.pricing-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--dark-border);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.pricing-table th {
  background: rgba(0, 53, 128, 0.05);
  color: var(--primary);
  padding: 18px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  white-space: nowrap;
}

.pricing-table td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid var(--dark-border);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-table tr:hover {
  background: rgba(0, 113, 194, 0.03);
}

.pricing-table td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--text);
}

.pricing-note {
  margin-top: 24px;
  padding: 20px 28px;
  background: rgba(0, 113, 194, 0.03);
  border: 1px solid rgba(0, 113, 194, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.pricing-note strong {
  color: var(--primary);
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--dark-surface);
  border-radius: var(--radius-sm);
}

.about-feature .icon {
  font-size: 1.4rem;
}

.about-feature span {
  font-size: 0.9rem;
  font-weight: 500;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(232, 160, 32, 0.3);
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: rgba(232, 160, 32, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-detail p,
.contact-detail a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-detail a:hover {
  color: var(--primary);
}

.contact-form {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 36px;
}

/* ===== FORM ELEMENTS ===== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232, 160, 32, 0.1);
}

.form-control::placeholder {
  color: var(--text-dim);
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238b949e' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ===== BOOKING PAGE ===== */
.booking-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.booking-tab {
  padding: 14px 32px;
  background: #ffffff;
  border: 1px solid var(--dark-border);
  border-radius: 100px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  font-size: 0.9rem;
}

.booking-tab:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  transform: translateY(-2px);
}

.booking-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.booking-form-wrap {
  max-width: 950px;
  margin: 0 auto;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

/* Hide floating CTA and back-to-top buttons on booking page to avoid blocking form input fields */
.booking-page .whatsapp-float,
.booking-page .phone-float,
.booking-page .back-top {
  display: none;
}

.vehicle-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.vehicle-option {
  padding: 12px;
  background: var(--dark-surface);
  border: 2px solid var(--dark-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

.vehicle-option:hover {
  border-color: rgba(232, 160, 32, 0.3);
}

.vehicle-option.selected {
  border-color: var(--primary);
  background: rgba(232, 160, 32, 0.08);
}

.vehicle-option img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 8px;
}

.vehicle-option .v-name {
  font-size: 0.8rem;
  font-weight: 600;
}

.vehicle-option .v-type {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.price-display {
  margin-top: 28px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(232, 160, 32, 0.08), rgba(232, 160, 32, 0.02));
  border: 1px solid rgba(232, 160, 32, 0.2);
  border-radius: var(--radius);
  text-align: center;
}

.price-display .price-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.price-display .price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-display .price-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 8px;
}

.price-breakdown {
  margin-top: 16px;
  text-align: left;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--dark-border);
  font-size: 0.9rem;
}

.price-row:last-child {
  border: none;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
  padding-top: 12px;
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 130px 0 60px;
  background: var(--gradient-hero);
  text-align: center;
  border-bottom: 1px solid var(--dark-border);
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-header .breadcrumb {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.page-header .breadcrumb a {
  color: var(--primary);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-right: 80px;
}

.footer-brand .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 14px;
  line-height: 1.6;
}

.footer h4 {
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 1.1rem;
  color: var(--text);
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer ul a:hover {
  color: var(--primary);
  transform: translateX(5px);
  display: inline-block;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--dark-border);
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  flex-shrink: 0;
}

/* ===== PHONE FLOAT ===== */
.phone-float {
  position: fixed;
  bottom: 92px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--accent);
  color: #111827;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 25px rgba(254, 186, 2, 0.35);
  transition: var(--transition);
}

.phone-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(254, 186, 2, 0.45);
}

.phone-float svg {
  width: 22px;
  height: 22px;
  fill: #111827;
  flex-shrink: 0;
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 156px;
  right: 28px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-top:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes float {

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

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  backdrop-filter: blur(4px);
}

.nav-overlay.active {
  display: block;
}

@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--dark-card);
    flex-direction: column;
    padding: 90px 28px 40px;
    gap: 4px;
    transition: var(--transition);
    border-left: 1px solid var(--dark-border);
    z-index: 1000;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    padding: 12px 16px;
    font-size: 1.05rem;
    border-radius: 10px;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-content {
    padding: 60px 20px 40px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .section {
    padding: 70px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
  }

  .vehicles-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .google-reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .booking-tab {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .back-top {
    bottom: 92px;
    right: 28px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    text-align: center;
    padding: 50px 16px 40px;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 7vw, 2.4rem);
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
    gap: 12px;
  }

  .hero-btns .btn {
    flex: 1 1 140px;
    min-width: 0;
  }

  .hero-stats {
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
  }

  .stat {
    flex: 1 1 70px;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vehicles-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card {
    padding: 24px 20px;
  }

  .booking-form-wrap {
    padding: 20px 16px;
  }

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

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

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
  }

  .phone-float span {
    display: none;
  }

  .phone-float {
    padding: 14px;
    border-radius: 50%;
    bottom: 84px;
    right: 20px;
  }

  .back-top {
    bottom: 148px;
    right: 20px;
  }

  .page-header {
    padding: 110px 0 48px;
  }

  .page-header h1 {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }
}

@media (max-width: 400px) {
  .hero-btns .btn {
    flex: 1 1 100%;
  }

  .hero-stats {
    gap: 14px;
  }

  .stat {
    flex: 1 1 60px;
  }
}

/* ===== PREMIUM INTERACTIVE & ENTRY ANIMATIONS ===== */
@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pricePop {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(15px);
  }
  70% {
    transform: scale(1.02) translateY(-2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes tabPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 53, 128, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 53, 128, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 53, 128, 0);
  }
}

@keyframes elementFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply Entry Animations */
.page-header {
  animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.booking-form-wrap {
  animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.booking-tab {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
}

.booking-tab:hover {
  transform: translateY(-4px) scale(1.03);
}

.booking-tab.active {
  animation: tabPulse 1.5s infinite;
}

.vehicle-option {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.25s, background-color 0.25s;
}

.vehicle-option:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.vehicle-option.selected {
  transform: scale(1.04);
  box-shadow: var(--shadow-glow);
}

.price-display {
  animation: pricePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* Form inputs focus state pop */
.form-control {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.form-control:focus {
  transform: translateY(-1px);
}

/* Checkbox interactive scale */
.form-group label input[type="checkbox"] {
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-group label:hover input[type="checkbox"] {
  transform: scale(1.2);
}

/* Stagger dynamic form inputs fade-in as they display */
.form-group[style*="display: block"],
.form-group[style*="display: flex"],
.form-row[style*="display: grid"],
.form-row[style*="display: flex"] {
  animation: elementFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}