/* ============================================
   CABSY — Premium Travel & Mobility Website
   ============================================ */

:root {
  --blue: #0A2540;
  --blue-light: #123a5c;
  --blue-dark: #061a2e;
  --orange: #FF6B00;
  --orange-light: #ff8533;
  --orange-dark: #e05e00;
  --white: #FFFFFF;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --shadow-sm: 0 1px 3px rgba(10, 37, 64, 0.08);
  --shadow-md: 0 4px 20px rgba(10, 37, 64, 0.1);
  --shadow-lg: 0 12px 40px rgba(10, 37, 64, 0.15);
  --shadow-xl: 0 20px 60px rgba(10, 37, 64, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --navbar-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.35);
}

.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn--whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

/* ---- Section Utilities ---- */
.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-title--left {
  text-align: left;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-600);
  max-width: 540px;
  margin: 0 auto;
}

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  z-index: 1001;
}

.navbar__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  aspect-ratio: 1;
}

.navbar__name {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

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

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

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

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

.navbar__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__link {
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: 8px;
  transition: all var(--transition);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--blue);
  background: rgba(10, 37, 64, 0.06);
}

.navbar__link--cta {
  background: var(--orange);
  color: var(--white) !important;
  margin-left: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
}

.navbar__link--cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--navbar-height);
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 40%, var(--blue-light) 100%);
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(255, 107, 0, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 107, 0, 0.08) 0%, transparent 40%),
    linear-gradient(180deg, transparent 60%, rgba(6, 26, 46, 0.4) 100%);
  z-index: 1;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(30deg, var(--white) 12%, transparent 12.5%, transparent 87%, var(--white) 87.5%, var(--white)),
    linear-gradient(150deg, var(--white) 12%, transparent 12.5%, transparent 87%, var(--white) 87.5%, var(--white)),
    linear-gradient(30deg, var(--white) 12%, transparent 12.5%, transparent 87%, var(--white) 87.5%, var(--white)),
    linear-gradient(150deg, var(--white) 12%, transparent 12.5%, transparent 87%, var(--white) 87.5%, var(--white));
  background-size: 80px 140px;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 4rem 1.25rem 6rem;
  max-width: 720px;
}

.hero__tagline {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 1rem;
  padding: 0.375rem 1rem;
  background: rgba(255, 107, 0, 0.12);
  border-radius: 50px;
  border: 1px solid rgba(255, 107, 0, 0.25);
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---- Announcement Message ---- */
.announcement {
  position: relative;
  z-index: 20;
  width: calc(100% - 2.5rem);
  max-width: 680px;
  margin: -3.5rem auto 0;
  padding: 0 1.25rem;
}

.announcement__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  background: linear-gradient(135deg,
      rgba(10, 37, 64, 0.95) 0%,
      rgba(18, 58, 92, 0.9) 50%,
      rgba(255, 107, 0, 0.35) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 12px 40px rgba(10, 37, 64, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  animation: announcementFadeIn 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.announcement__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 0, 0.25);
  border: 1px solid rgba(255, 107, 0, 0.45);
  border-radius: 50%;
  color: var(--orange);
}

.announcement__icon svg {
  width: 18px;
  height: 18px;
}

.announcement__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin: 0;
  text-align: left;
}

.announcement__line {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.announcement__line--accent {
  font-weight: 600;
  color: var(--orange);
}

@keyframes announcementFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

/* ---- Booking Form ---- */
.booking {
  margin-top: 1.25rem;
  position: relative;
  z-index: 10;
  padding-bottom: 2rem;
}

.booking__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  max-width: 100%;
  overflow: hidden;
}

.booking__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
  width: 100%;
  min-width: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  min-width: 0;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--gray-800);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.12);
}

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

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ---- Destinations (Triangular Layout) ---- */
.destinations__triangle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  cursor: pointer;
}

.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.dest-card--kashi {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 440px);
}

.dest-card--prayagraj {
  grid-column: 1;
}

.dest-card--ayodhya {
  grid-column: 2;
}

.dest-card__image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
}

.dest-card--kashi .dest-card__image-wrap {
  height: 260px;
}

.dest-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dest-card:hover .dest-card__image {
  transform: scale(1.08);
}

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 37, 64, 0.75) 100%);
  transition: opacity var(--transition);
}

.dest-card:hover .dest-card__overlay {
  opacity: 0.85;
}

.dest-card__content {
  padding: 1.25rem 1.5rem 1.5rem;
}

.dest-card__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: rgba(255, 107, 0, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

.dest-card__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.25rem;
}

.dest-card__desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.dest-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
  transition: gap var(--transition);
}

.dest-card__link:hover {
  color: var(--orange-dark);
}

/* ---- Services ---- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 107, 0, 0.3);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(10, 37, 64, 0.08));
  border-radius: 14px;
  color: var(--orange);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ---- Rate List ---- */
.rates__table-wrap {
  display: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  overflow-x: auto;
  margin-bottom: 2rem;
}

.rates__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.rates__table thead {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
}

.rates__table th,
.rates__table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.rates__table th {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rates__table tbody tr:hover {
  background: rgba(255, 107, 0, 0.04);
}

.rates__table td strong {
  display: block;
  color: var(--blue);
  font-size: 1rem;
}

.rates__table td span {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray-600);
  margin-top: 0.125rem;
}

.rates__book {
  display: inline-flex;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--transition);
}

.rates__book:hover {
  background: var(--orange-dark);
}

.rates__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.rates-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--transition);
}

.rates-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 107, 0, 0.25);
}

.rates-card--featured {
  border-color: var(--orange);
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.15);
}

.rates-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.rates-card__header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--blue);
}

.rates-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 50px;
  background: rgba(10, 37, 64, 0.08);
  color: var(--blue);
  white-space: nowrap;
}

.rates-card__model {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.rates-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.rates-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem 0;
  border-bottom: 1px dashed var(--gray-200);
  font-size: 0.875rem;
}

.rates-card__list li:last-child {
  border-bottom: none;
}

.rates-card__list span {
  color: var(--gray-600);
}

.rates-card__list strong {
  color: var(--orange);
  font-size: 1rem;
}

.rates__note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: rgba(10, 37, 64, 0.04);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.rates__note a {
  color: var(--orange);
  font-weight: 600;
}

.rates__note a:hover {
  color: var(--orange-dark);
}

/* ---- Why Choose ---- */
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.why-card {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.why-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  border-radius: 50%;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* ---- Drivers ---- */
.drivers__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.drivers__text {
  color: var(--gray-600);
  margin: 1rem 0 1.5rem;
  line-height: 1.7;
}

.drivers__benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.drivers__benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gray-800);
}

.drivers__benefits li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.drivers__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.drivers__form h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.25rem;
}

/* ---- Testimonials ---- */
.testimonials__slider {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.testimonial-card__stars {
  color: var(--orange);
  font-size: 1.125rem;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.testimonial-card__text {
  font-size: 1.0625rem;
  color: var(--gray-800);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--blue);
}

.testimonial-card__author span {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonials__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--blue);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
}

.testimonials__btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 107, 0, 0.06);
}

.testimonials__dots {
  display: flex;
  gap: 0.5rem;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.testimonials__dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: 5px;
}

/* ---- Contact ---- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.contact__card h3,
.contact__form h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1rem;
}

.contact__phone a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
}

.contact__phone a:hover {
  color: var(--orange-dark);
}

.contact__address {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
}

.contact__address svg {
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 0.125rem;
}

.contact__address address {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.contact__address strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue);
  margin-bottom: 0.375rem;
}

.contact__address span {
  font-weight: 600;
  color: var(--blue);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 350px;
  border: 1px solid var(--gray-200);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
}

/* ---- Footer ---- */
.footer {
  background: var(--blue);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  aspect-ratio: 1;
  margin-bottom: 1rem;
}

.footer__tagline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.footer__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__address {
  font-style: normal;
  font-size: 0.8125rem;
  line-height: 1.65;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer__links h4,
.footer__social h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__links a {
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--orange);
}

.footer__social-links {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__social-link:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.footer__bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---- Floating WhatsApp ---- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

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

/* ---- Modal ---- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 37, 64, 0.6);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 560px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: transform var(--transition);
}

.modal.active .modal__content {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-400);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
}

.modal__close:hover {
  background: var(--gray-100);
  color: var(--blue);
}

.modal__content h2 {
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 1rem;
}

.modal__content p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

/* ---- Scroll Animations ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ---- Responsive ---- */
@media (min-width: 640px) {
  .booking__form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking__form .btn--full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) {
  .navbar__toggle {
    display: none;
  }

  .rates__table-wrap {
    display: block;
  }

  .rates__cards {
    display: none;
  }

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

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

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
    margin-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .booking__form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking__form .btn--full {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 320px;
    justify-self: center;
    white-space: nowrap;
  }

  .testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

@media (max-width: 767px) {
  .navbar__toggle {
    display: flex;
  }

  .navbar__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    padding: calc(var(--navbar-height) + 1.5rem) 1.5rem 2rem;
    transition: right var(--transition);
    z-index: 1000;
  }

  .navbar__nav.open {
    right: 0;
  }

  .navbar__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .navbar__link {
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }

  .navbar__link--cta {
    margin-left: 0;
    text-align: center;
    margin-top: 0.5rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .announcement {
    width: calc(100% - 1.5rem);
    margin-top: -2.5rem;
  }

  .announcement__banner {
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: 1rem 1.125rem;
    gap: 0.625rem;
    text-align: center;
  }

  .announcement__text {
    text-align: center;
  }

  .announcement__line {
    font-size: 0.75rem;
  }

  .booking__card {
    padding: 1.25rem 1rem;
  }

  .booking__form {
    gap: 1rem;
  }

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

  .dest-card--kashi,
  .dest-card--prayagraj,
  .dest-card--ayodhya {
    grid-column: 1;
    width: 100%;
  }

  .dest-card__image-wrap,
  .dest-card--kashi .dest-card__image-wrap {
    height: 200px;
  }

  .contact__actions {
    flex-direction: column;
  }

  .contact__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/*==========================
        LOADER
==========================*/

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #081120;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  transition: 1s;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 90px;
  animation: rotateLogo 2s linear infinite;
  margin-bottom: 20px;
}

.loader-content h1 {
  color: #fff;
  font-size: 55px;
  font-weight: 700;
  letter-spacing: 5px;
  margin-bottom: 10px;
}

.loader-content p {
  color: #bbb;
  font-size: 18px;
  margin-bottom: 35px;
}

.loading-bar {
  width: 260px;
  height: 6px;
  background: #222;
  border-radius: 30px;
  overflow: hidden;
}

.loading-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #FFD700, #00D4FF);
  animation: loading 2.5s linear forwards;
}

.loader-hide {
  opacity: 0;
  visibility: hidden;
}

@keyframes loading {

  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }

}

@keyframes rotateLogo {

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

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

}

/* ================= RATE CARD ================= */

.rate-card {
  margin-top: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  border: 2px solid #FFD54F;
}

.rate-card h3 {
  text-align: center;
  color: #0d47a1;
  margin-bottom: 20px;
  font-size: 24px;
}

.rate-section {
  margin-bottom: 18px;
}

.rate-section h4 {
  color: #f57c00;
  margin-bottom: 12px;
}

.rate-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
  font-size: 16px;
}

.rate-row strong {
  color: #2e7d32;
}

.extra {
  margin-top: 10px;
  color: #666;
  font-size: 14px;
}

.note {
  margin-top: 20px;
  background: #fff8e1;
  border-left: 5px solid #FFC107;
  padding: 15px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.7;
}

.fare-display {
  margin-top: 15px;
  padding: 12px 15px;
  background: #fff8e1;
  border-left: 5px solid #ff9800;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

#farePrice {
  display: block;
  margin-top: 8px;
  color: #0b7a2a;
  font-size: 20px;
  font-weight: bold;
}

/* ===========================================================
   BOOKING SECTION - NEW LAYOUT
=========================================================== */

.booking .container {
  max-width: 1800px;
  width: 96%;
  margin: auto;
}

.booking-layout {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 50px;
  align-items: flex-start;
}

/* ================= LEFT BANNER ================= */

.booking-banner {
  width: 100%;
  position: sticky;
  top: 100px;
}

.booking-banner__img {
  width: 100%;
  height: 900px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
  transition: .3s ease;
}

.booking-banner__img:hover {
  transform: translateY(-6px);
}

/* ================= RIGHT CARD ================= */

.booking__card {
  width: 100%;
  max-width: none;
}

.booking__form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* Full width elements */

.fare-display,
.rate-card,
.btn--full {
  grid-column: 1 / -1;
}

/* Inputs */

.form-group {
  width: 100%;
}

.form-group input,
.form-group select {
  width: 100%;
  box-sizing: border-box;
}

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

@media (max-width:1200px) {

  .booking-layout {
    grid-template-columns: 55% 45%;
  }

  .booking-banner__img {
    height: 700px;
  }

}

@media (max-width:992px) {

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-banner {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }

  .booking-banner__img {
    height: auto;
  }

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

}