/* ============================================================
   Popular Tour & Travels — Master Stylesheet
   Colors from logo: Navy #1a3c6e | Orange #e85d04 | Gold #f7b731
   ============================================================ */

:root {
  --navy: #1a3c6e;
  --navy-dark: #0f2542;
  --navy-light: #2a5298;
  --orange: #e85d04;
  --orange-lt: #ff7325;
  --gold: #f7b731;
  --gold-lt: #ffd166;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-100: #f1f3f7;
  --gray-300: #d1d5db;
  --gray-600: #6b7280;
  --gray-800: #1f2937;
  --text: #1f2937;
  --text-muted: #6b7280;

  --font-display: 'Playfair Display', 'Nunito', sans-serif;
  --font-body: 'Nunito', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(26, 60, 110, .12);
  --shadow-lg: 0 12px 40px rgba(26, 60, 110, .20);
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
  --max-w: 1200px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(232, 93, 4, .35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 93, 4, .45);
}

.btn--navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(26, 60, 110, .3);
}

.btn--navy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 60, 110, .4);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--navy-dark);
  box-shadow: 0 4px 15px rgba(247, 183, 49, .35);
}

.btn--gold:hover {
  transform: translateY(-2px);
}

.btn--outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--whatsapp {
  background: #25d366;
  background: linear-gradient(135deg, #25d366, #1da851);
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, .4);
  border: none;
}

.btn--whatsapp i {
  color: #ffffff !important;
}

.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, .55);
  background: linear-gradient(135deg, #1ebe5a, #15a344);
  color: #ffffff !important;
}

.btn--sm {
  padding: .55rem 1.3rem;
  font-size: .88rem;
}

.btn--lg {
  padding: 1rem 2.4rem;
  font-size: 1.05rem;
}

/* ── Section helpers ── */
.section {
  padding: 5rem 0;
}

.section--gray {
  background: var(--gray-100);
}

.section--navy {
  background: var(--navy-dark);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232, 93, 4, .1);
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: .8rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
}

.section-header h2 span {
  color: var(--orange);
}

.section--navy .section-header h2 {
  color: var(--white);
}

.section-header p {
  color: var(--text-muted);
  max-width: 580px;
  margin: .8rem auto 0;
  font-size: 1.05rem;
}

.section--navy .section-header p {
  color: var(--gray-300);
}

/* ── Top Bar ── */
.topbar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, .85);
  font-size: .82rem;
  padding: .4rem 0;
}

.topbar__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.topbar__inner a {
  color: rgba(255, 255, 255, .85);
  transition: color .2s;
}

.topbar__inner a:hover {
  color: var(--gold);
}

.topbar__inner i {
  color: var(--orange);
  margin-right: .3rem;
}

.topbar__phone {
  margin-left: auto;
}

.topbar__phone a {
  color: var(--gold) !important;
  font-weight: 700;
}

/* ── Site Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(26, 60, 110, .1);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(26, 60, 110, .18);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: .7rem;
  padding-bottom: .7rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.logo__text {
  line-height: 1.1;
}

.logo__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
}

.logo__text small {
  font-size: .7rem;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Main Nav */
.main-nav {
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.main-nav a {
  padding: .5rem .9rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--gray-800);
  transition: var(--transition);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: .9rem;
  right: .9rem;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .3s ease;
  border-radius: 2px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--orange);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header__cta {
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 1rem 1.25rem 1.5rem;
  animation: slideDown .3s ease;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.mobile-nav a {
  display: block;
  padding: .6rem .9rem;
  border-radius: 8px;
  font-weight: 600;
  color: var(--gray-800);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--orange);
  background: rgba(232, 93, 4, .07);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 37, 66, .88) 0%, rgba(26, 60, 110, .75) 50%, rgba(232, 93, 4, .3) 100%),
    url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?w=1600&q=80') center/cover no-repeat;
  z-index: 0;
}

.hero__bg::after {
  content: '';
  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='%23ffffff' 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");
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 2rem 1rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(247, 183, 49, .15);
  border: 1px solid rgba(247, 183, 49, .4);
  color: var(--gold);
  padding: .4rem 1.1rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  animation: fadeUp .8s ease both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.2rem;
  animation: fadeUp .8s .15s ease both;
}

.hero h1 span {
  color: var(--gold);
}

.hero__desc {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, .85);
  max-width: 620px;
  margin: 0 auto 2rem;
  animation: fadeUp .8s .3s ease both;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .8s .45s ease both;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
  animation: fadeUp .8s .6s ease both;
}

.hero__stat {
  position: relative;
  text-align: left;
  background: linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  min-width: 180px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .25);
  overflow: hidden;
}

.hero__stat::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--orange));
  opacity: .95;
}

.hero__stat::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -35%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 255, 255, .2) 0%, transparent 70%);
  pointer-events: none;
}

.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: .28rem;
  text-shadow: 0 3px 14px rgba(0, 0, 0, .3);
}

.hero__stat>span {
  font-size: .77rem;
  color: rgba(255, 255, 255, .82);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

.hero__stat strong span {
  font-size: inherit;
  color: inherit;
  text-transform: none;
  letter-spacing: inherit;
  font-weight: inherit;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  color: rgba(255, 255, 255, .6);
  font-size: .8rem;
  text-align: center;
}

.hero__scroll i {
  display: block;
  font-size: 1.4rem;
  margin-bottom: .3rem;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ── Destinations Strip ── */
.destinations-strip {
  background: var(--navy);
  padding: 1.2rem 0;
  overflow: hidden;
}

.destinations-strip__track {
  display: flex;
  gap: 2rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.destinations-strip__item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
  font-size: .9rem;
  white-space: nowrap;
}

.destinations-strip__item i {
  color: var(--gold);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── Package Cards ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 1.6rem;
  align-items: stretch;
}

.packages-grid--fixed {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
}

.packages-grid--fixed .pkg-card {
  flex: 0 0 340px;
  width: 340px;
  max-width: calc(100% - 1.6rem);
}

.pkg-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e9edf5;
  box-shadow: 0 8px 24px rgba(26, 60, 110, .09);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(26, 60, 110, .18);
  border-color: rgba(232, 93, 4, .25);
}

.pkg-card__img {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.pkg-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.pkg-card:hover .pkg-card__img img {
  transform: scale(1.08);
}

.pkg-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 37, 66, .88);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .32rem .72rem;
  border-radius: 50px;
}

.pkg-card__price-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: #2a1c04;
  font-weight: 800;
  font-size: .84rem;
  padding: .4rem .8rem;
  border-radius: 50px;
  box-shadow: 0 6px 16px rgba(247, 183, 49, .35);
}

.pkg-card__body {
  padding: 1.15rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  flex: 1;
}

.pkg-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

.pkg-card__meta {
  display: flex;
  gap: .55rem;
  font-size: .78rem;
  color: #445064;
  flex-wrap: wrap;
}

.pkg-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: #f5f7fb;
  border: 1px solid #e4e9f3;
  border-radius: 999px;
  padding: .28rem .58rem;
}

.pkg-card__meta i {
  color: var(--orange);
}

.pkg-card__includes {
  display: flex;
  flex-wrap: nowrap;
  gap: .3rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pkg-card__includes::-webkit-scrollbar {
  display: none;
}

.pkg-card__tag {
  background: #eef3fb;
  color: #31445f;
  font-size: .64rem;
  font-weight: 600;
  padding: .2rem .45rem;
  border-radius: 50px;
  border: 1px solid #dde5f2;
  white-space: nowrap;
  flex: 0 0 auto;
}

.pkg-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  flex-wrap: nowrap;
  margin-top: auto;
  padding-top: .35rem;
  border-top: 1px dashed #e3e8f1;
}

.pkg-card__footer small {
  color: #64748b !important;
  font-size: .76rem;
  line-height: 1.4;
  flex: 1 1 60%;
  min-width: 180px;
}

.pkg-card__footer .btn {
  margin-left: auto;
  flex-shrink: 0;
  align-self: center;
}

/* ── Services Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 4px solid transparent;
  transition: var(--transition);
}

.svc-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--orange);
}

.svc-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
  transition: var(--transition);
}

.svc-card:hover .svc-card__icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
}

.svc-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: .4rem;
}

.svc-card p {
  font-size: .88rem;
  color: var(--text-muted);
}

/* ── Why Choose Us ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.why-card {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, .1);
}

.why-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.why-card h4 {
  color: var(--gold);
  margin-bottom: .3rem;
  font-size: 1rem;
}

.why-card p {
  color: rgba(255, 255, 255, .75);
  font-size: .85rem;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testi-card__quote {
  font-size: 3rem;
  color: var(--orange);
  line-height: .8;
  margin-bottom: .5rem;
  font-family: Georgia, serif;
}

.testi-card p {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testi-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-card__info strong {
  display: block;
  color: var(--navy);
  font-size: .92rem;
}

.testi-card__info span {
  font-size: .78rem;
  color: var(--orange);
}

.stars {
  color: var(--gold);
  font-size: .85rem;
  margin-bottom: .8rem;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1a4a8f 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 93, 4, .25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: .8rem;
}

.cta-banner h2 span {
  color: var(--gold);
}

.cta-banner p {
  color: rgba(255, 255, 255, .8);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-banner__phone {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255, 255, 255, .1);
  border: 2px solid rgba(255, 255, 255, .25);
  color: var(--white);
  padding: .8rem 1.8rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: var(--transition);
}

.cta-banner__phone:hover {
  background: rgba(255, 255, 255, .2);
}

.cta-banner__phone i {
  color: var(--gold);
}

/* ── Contact Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  color: var(--navy);
  margin-bottom: .2rem;
}

.contact-detail span {
  color: var(--text-muted);
  font-size: .92rem;
}

.contact-detail a {
  color: var(--orange);
  font-weight: 600;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--gray-300);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color .2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-alert {
  padding: .9rem 1.2rem;
  border-radius: 10px;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: .92rem;
}

.form-alert--success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.form-alert--error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 5rem 0 4rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero .eyebrow {
  display: inline-block;
  background: rgba(247, 183, 49, .15);
  border: 1px solid rgba(247, 183, 49, .4);
  color: var(--gold);
  padding: .3rem .9rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: .6rem;
}

.page-hero h1 span {
  color: var(--gold);
}

.page-hero p {
  color: rgba(255, 255, 255, .8);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.2rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb span {
  color: rgba(255, 255, 255, .4);
}

/* ── About Page ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1rem;
  background: var(--orange);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-badge strong {
  display: block;
  font-size: 1.8rem;
  font-family: var(--font-display);
}

.about-content .eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232, 93, 4, .1);
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: .8rem;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin: 1.5rem 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--text);
  font-weight: 600;
}

.about-feature i {
  color: var(--orange);
  font-size: 1rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.about-value-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid #e6ebf4;
  border-bottom: 4px solid transparent;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(26, 60, 110, .09);
  padding: 1.4rem;
  display: block;
  min-height: 100%;
  transition: var(--transition);
}

.about-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--orange);
}

.about-value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: .9rem;
}

.about-value-card__content h3 {
  color: var(--navy);
  font-size: 1.06rem;
  margin-bottom: .45rem;
  line-height: 1.35;
}

.about-value-card__content p {
  color: #5f6c7f;
  font-size: .9rem;
  line-height: 1.65;
  margin: 0;
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.2rem;
}

.vehicle-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--orange);
  transition: var(--transition);
}

.vehicle-card:hover {
  transform: translateY(-4px);
}

.vehicle-card i {
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: .6rem;
}

.vehicle-card h4 {
  color: var(--navy);
  font-size: 1rem;
}

.vehicle-card p {
  color: var(--text-muted);
  font-size: .82rem;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, .8);
}

.footer__wave {
  line-height: 0;
}

.footer__wave svg {
  width: 100%;
  height: 60px;
}

.footer__main {
  padding: 3.5rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer__brand img {
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .65);
  margin-bottom: .6rem;
}

.footer__tagline {
  color: var(--gold) !important;
  font-style: italic;
  font-weight: 600;
}

.footer__socials {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
}

.footer__socials a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: rgba(255, 255, 255, .8);
}

.footer__socials a:hover {
  background: var(--orange);
  color: var(--white);
}

.footer__col h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.footer__col li a {
  color: rgba(255, 255, 255, .65);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: var(--transition);
}

.footer__col li a:hover {
  color: var(--gold);
  padding-left: .3rem;
}

.footer__col li a i {
  font-size: .7rem;
  color: var(--orange);
}

.footer__contact li {
  display: flex;
  gap: .7rem;
  font-size: .88rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, .65);
}

.footer__contact i {
  color: var(--orange);
  margin-top: .15rem;
  flex-shrink: 0;
}

.footer__contact a {
  color: rgba(255, 255, 255, .65);
}

.footer__contact a:hover {
  color: var(--gold);
}

.footer__bottom {
  background: rgba(0, 0, 0, .25);
  padding: 1rem 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
}

.footer__bottom a {
  color: var(--gold);
}

/* ── Call Float ── */
.call-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 800;
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
  color: #ffffff !important;
  border-radius: 50px;
  padding: .75rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .88rem;
  box-shadow: 0 4px 20px rgba(232, 93, 4, .4);
  transition: var(--transition);
  animation: pulse-call 2.5s infinite;
  text-decoration: none;
}

.call-float i {
  font-size: 1.1rem;
  color: #fff !important;
}

.call-float:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(232, 93, 4, .55);
}

@keyframes pulse-call {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(232, 93, 4, .4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(232, 93, 4, .7);
  }
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 800;
  background: #25d366;
  color: var(--white);
  border-radius: 50px;
  padding: .75rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .88rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}

.whatsapp-float i {
  font-size: 1.4rem;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .5);
}

@keyframes pulse-wa {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, .7);
  }
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 1.5rem;
  z-index: 800;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(232, 93, 4, .35);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  font-size: .9rem;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .main-nav,
  .header__cta {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero__eyebrow {
    white-space: nowrap;
    font-size: .68rem;
    letter-spacing: .08em;
    padding: .35rem .8rem;
  }

  .hero__stats {
    gap: .7rem;
  }

  .hero__stat {
    min-width: 148px;
    padding: .95rem .95rem;
  }

  .hero__stat strong {
    font-size: 1.4rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .topbar__inner {
    font-size: .68rem;
    flex-wrap: nowrap;
    gap: .5rem;
    overflow: hidden;
    white-space: nowrap;
  }

  .topbar__inner>span {
    min-width: 0;
  }

  .topbar__inner>span:first-child {
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .topbar__phone {
    margin-left: auto;
    flex-shrink: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: .9rem;
    border-radius: 50%;
  }

  .whatsapp-float i {
    font-size: 1.75rem;
  }

  .call-float span {
    display: none;
  }

  .call-float {
    padding: .9rem;
    border-radius: 50%;
    bottom: 6.5rem;
  }

  .call-float i {
    font-size: 1.4rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .pkg-card__footer {
    flex-wrap: wrap;
  }

  .pkg-card__footer .btn {
    margin-left: 0;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image:
  linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
  url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1920&q=80');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-home{
  background:#fff;
}

.about-home__wrapper{
  display:flex;
  align-items:center;
  gap:60px;
}

.about-home__image{
  flex:1;
  perspective:1000px;
}

.about-home__image img{
  width:100%;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,.15);
  transition:all .5s ease;
  animation:floatImage 5s ease-in-out infinite;
}

.about-home__image img:hover{
  transform:rotateY(10deg) scale(1.05);
}

.about-home__content{
  flex:1;
}

.about-home__tag{
  display:inline-block;
  padding:8px 18px;
  background:#fff2e8;
  color:#e85d04;
  border-radius:50px;
  font-size:14px;
  font-weight:700;
  margin-bottom:15px;
}

.about-home__content h2{
  font-size:48px;
  line-height:1.2;
  color:#1a3c6e;
  margin-bottom:20px;
}

.about-home__content h2 span{
  color:#e85d04;
}

.about-home__content p{
  font-size:17px;
  line-height:1.8;
  color:#555;
  margin-bottom:15px;
}

.about-home__features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:15px;
  margin:30px 0;
}

.feature-item{
  font-size:17px;
  font-weight:600;
  color:#1a3c6e;
}

.feature-item i{
  color:#e85d04;
  margin-right:8px;
}

@keyframes floatImage{
  0%{
      transform:translateY(0);
  }
  50%{
      transform:translateY(-15px);
  }
  100%{
      transform:translateY(0);
  }
}

@media(max-width:991px){

  .about-home__wrapper{
      flex-direction:column;
  }

  .about-home__content h2{
      font-size:36px;
  }

  .about-home__features{
      grid-template-columns:1fr;
  }
}

.call-float{
  position:fixed;
  left:20px;
  bottom:20px;

  z-index:9999;

  background:#ff6b00;
  color:#fff !important;

  padding:12px 20px;

  border-radius:50px;

  display:inline-flex;
  align-items:center;
  gap:8px;

  width:fit-content !important;
  max-width:fit-content !important;

  text-decoration:none;
  font-weight:700;
}

.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;

  z-index:9999;

  background:#25D366;
  color:#fff !important;

  padding:12px 20px;

  border-radius:50px;

  display:inline-flex;
  align-items:center;
  gap:8px;

  width:fit-content !important;
  max-width:fit-content !important;

  text-decoration:none;
  font-weight:700;
}

.call-float i,
.whatsapp-float i{
  font-size:18px;
}

@media(max-width:768px){

  .call-float{
      left:10px;
      bottom:15px;
  }

  .whatsapp-float{
      right:10px;
      bottom:15px;
  }
}