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

:root {
  --bg: #070f1e;
  --bg-soft: #0b1320;
  --panel: #0f172a;
  --border-soft: rgba(148, 163, 184, 0.35);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --saffron: #ff8a00;
  --saffron-soft: rgba(255, 138, 0, 0.18);
  --green: #0fa958;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-strong: 0 30px 80px rgba(15, 23, 42, 0.95);
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #020617 100%);
  color: var(--text);
}

/* Utilities */

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), #ffb347);
  color: #fff;
  box-shadow: 0 18px 40px rgba(248, 113, 22, 0.75);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(248, 113, 22, 0.9);
}

.btn-outline {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.9);
}

.btn.full {
  width: 100%;
}

/* Top bar */

.top-bar {
  background: #020617;
  color: #cbd5f5;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0;
}

.top-bar a {
  color: inherit;
  text-decoration: none;
}

.top-bar a:hover {
  color: var(--saffron);
}

/* Nav */

.main-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(26px);
  background: rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
}

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

.logo img {
  height: 42px;
  width: auto;
  border-radius: 999px;
  background: radial-gradient(circle at top left, #ffedd5, #fed7aa);
}

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

.logo-title {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f9fafb;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--muted);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 500;
  text-decoration: none;
  color: #e5e7eb;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-links li a:hover {
  color: var(--saffron);
  background: rgba(15, 23, 42, 0.9);
}

.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--saffron), #ffb347);
  color: #111827;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(248, 113, 22, 0.9);
}

.nav-links .nav-cta:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #e5e7eb;
}

/* Hero */

.hero {
  position: relative;
  padding: 3.5rem 0 3rem;
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #020617 100%);
}

.hero-bg-blur {
  position: absolute;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
}

.hero-bg-saffron {
  top: -120px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: #f97316;
}

.hero-bg-green {
  bottom: -80px;
  right: -40px;
  width: 240px;
  height: 240px;
  background: #22c55e;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.hero-left h1 {
  font-size: clamp(2.1rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 0.9rem;
  color: #f9fafb;
}

.hero-left h1 span {
  color: var(--saffron);
}

.hero-sub {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 34rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.25rem 0.85rem;
  margin-bottom: 0.9rem;
  font-size: 0.72rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #cbd5f5;
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.3rem;
}

.hero-tags span {
  font-size: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: var(--muted);
}

/* Categories */

.categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 420px;
}

.category-card {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  background: rgba(15, 23, 42, 0.98);
  border-radius: 18px;
  padding: 0.65rem 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.9);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.category-card h3 {
  margin: 0 0 0.15rem;
  font-size: 0.86rem;
  color: #f9fafb;
}

.category-card p {
  margin: 0;
  font-size: 0.74rem;
  color: var(--muted);
}

.category-card:hover {
  transform: translateY(-2px);
  border-color: var(--saffron);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.95);
}

.category-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: #020617;
}

.category-icon.saffron {
  background: linear-gradient(135deg, var(--saffron), #ffb347);
}

.category-icon.green {
  background: linear-gradient(135deg, var(--green), #22c55e);
}

.category-icon.white {
  background: linear-gradient(135deg, #e5e7eb, #ffffff);
}

/* Booking card */

.hero-right {
  display: flex;
  justify-content: flex-end;
}

.booking-card {
  width: 100%;
  max-width: 380px;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), #020617);
  border-radius: 26px;
  padding: 1.4rem 1.3rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-strong);
}

.booking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.booking-header h2 {
  font-size: 1.05rem;
  margin: 0;
}

.booking-header span {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--saffron-soft);
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-form label {
  display: block;
  font-size: 0.75rem;
  margin-bottom: 0.7rem;
}

.booking-form label span {
  display: inline-block;
  margin-bottom: 0.25rem;
  color: var(--muted);
}

.booking-form input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.96);
  color: var(--text);
  padding: 0.5rem 0.8rem;
  font-size: 0.8rem;
}

.booking-form input:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 1px rgba(248, 113, 22, 0.6);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.booking-note {
  margin-top: 0.55rem;
  font-size: 0.7rem;
  color: var(--muted);
}

/* Sections */

.section {
  padding: 3rem 0;
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #020617 100%);
}

.section.alt {
  background: radial-gradient(circle at top, #020617 0, #020617 30%, #020617 100%);
}

.section-kicker {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--green);
  margin-bottom: 0.3rem;
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 0.7rem;
  color: #f9fafb;
}

.section-sub {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 36rem;
}

.section-sub.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

/* About */

.checklist {
  padding-left: 1.1rem;
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.checklist li + li {
  margin-top: 0.3rem;
}

.highlight-box {
  background: rgba(15, 23, 42, 0.98);
  border-radius: 24px;
  padding: 1.1rem 1.1rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-strong);
}

.highlight-box h3 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.stat {
  text-align: left;
  padding: 0.5rem 0.4rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.stat-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--saffron);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Cards / services */

.cards-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.cards-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 20px;
  padding: 0.95rem 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.9);
  font-size: 0.86rem;
  color: var(--muted);
}

.card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #f9fafb;
}

/* Image cards */

.image-card {
  padding: 0;
  overflow: hidden;
}

.image-card-bg {
  height: 130px;
  background-size: cover;
  background-position: center;
  filter: brightness(0.8);
}

.image-card-body {
  padding: 0.75rem 0.85rem 0.8rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), #020617);
}

.image-card-body h3 {
  margin-bottom: 0.2rem;
}

/* Placeholder background images via gradients */

.image-corporate {
  background-image: linear-gradient(135deg, #0f172a, #1e293b);
}

.image-employee {
  background-image: linear-gradient(135deg, #0b1120, #111827);
}

.image-event {
  background-image: linear-gradient(135deg, #7c2d12, #92400e);
}

.image-airport {
  background-image: linear-gradient(135deg, #1f2937, #0f172a);
}

.image-outstation {
  background-image: linear-gradient(135deg, #075985, #0f172a);
}

.image-tour {
  background-image: linear-gradient(135deg, #166534, #0f172a);
}

/* Steps */

.steps {
  margin-top: 1.6rem;
  position: relative;
}

.steps-line {
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--green), var(--saffron));
  opacity: 0.6;
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

.step h3 {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  color: #f9fafb;
}

.step-badge {
  margin: 0 auto 0.7rem;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #020617;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
}

.step-badge.saffron {
  background: linear-gradient(135deg, var(--saffron), #ffb347);
}

.step-badge.green {
  background: linear-gradient(135deg, var(--green), #22c55e);
}

/* Contact */

.contact-details p {
  font-size: 0.86rem;
  color: var(--muted);
}

.contact-details a {
  color: var(--saffron);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-box {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 22px;
  padding: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-strong);
}

.contact-box h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-form input,
.contact-form textarea {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.96);
  color: var(--text);
  padding: 0.55rem 0.8rem;
  font-size: 0.82rem;
  resize: vertical;
}

.contact-form textarea {
  border-radius: 18px;
}

/* Footer */

.site-footer {
  background: #020617;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  padding: 1.8rem 0 1.6rem;
  font-size: 0.8rem;
}

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

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

.footer-logo img {
  height: 36px;
  width: auto;
  border-radius: 999px;
  background: radial-gradient(circle at top left, #ffedd5, #fed7aa);
}

.footer-text {
  margin: 0;
  color: var(--muted);
}

.footer-right a {
  display: block;
  color: var(--muted);
  text-decoration: none;
}

.footer-right a:hover {
  color: var(--saffron);
}

/* WhatsApp FAB */

.whatsapp-fab {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), #22c55e);
  color: #020617;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.8);
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-right {
    order: -1;
    justify-content: flex-start;
  }
  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }
  .cards-grid,
  .cards-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps-line {
    display: none;
  }
}

@media (max-width: 720px) {
  .top-bar-inner {
    flex-direction: column;
    gap: 0.2rem;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.98);
    padding: 0.6rem 1.25rem 0.9rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.22s ease;
  }
  .nav-links.open {
    max-height: 260px;
  }
  .nav-toggle {
    display: flex;
  }
  .hero {
    padding-top: 2.4rem;
  }
  .hero-inner {
    gap: 1.8rem;
  }
  .categories {
    grid-template-columns: minmax(0, 1fr);
  }
  .cards-grid,
  .cards-grid.three {
    grid-template-columns: minmax(0, 1fr);
  }
  .section {
    padding: 2.4rem 0;
  }
}
