/* ===================================================================
   GO HARRY TRAVELS - Main Stylesheet
   Color Scheme: Navy Blue (#1B2A4A) + Gold (#F4B41A) + White
   =================================================================== */

:root {
  --navy: #1B2A4A;
  --navy-dark: #12203b;
  --navy-light: #2a3f6e;
  --gold: #F4B41A;
  --gold-dark: #d99c0a;
  --gold-light: #ffd35e;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --light-gray: #eef1f6;
  --text-dark: #2c3e50;
  --text-muted: #6b7a90;
  --shadow: 0 10px 40px rgba(27, 42, 74, 0.12);
  --shadow-lg: 0 20px 60px rgba(27, 42, 74, 0.2);
  --radius: 14px;
  --radius-lg: 22px;
  --gradient-navy: linear-gradient(135deg, #1B2A4A 0%, #2a3f6e 100%);
  --gradient-gold: linear-gradient(135deg, #F4B41A 0%, #ffd35e 100%);
}

/* ====== Reset & Base ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

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

/* ====== Section utility ====== */
.section {
  padding: 90px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 55px;
}

.section-subtitle {
  display: inline-block;
  background: rgba(244, 180, 26, 0.15);
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 18px;
}

.section-head h2 span {
  color: var(--gold);
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  font-family: 'Poppins', sans-serif;
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--navy);
  box-shadow: 0 8px 25px rgba(244, 180, 26, 0.35);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(244, 180, 26, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn:hover {
  gap: 15px;
}

/* ====== Top Bar ====== */
.topbar {
  background: var(--navy-dark);
  color: #cbd5e1;
  font-size: 0.82rem;
  padding: 9px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-left span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar-left i {
  color: var(--gold);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-right a {
  color: #cbd5e1;
  font-size: 0.9rem;
}

.topbar-right a:hover {
  color: var(--gold);
}

/* ====== Header / Navbar ====== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 3px 20px rgba(27, 42, 74, 0.08);
  transition: all 0.4s ease;
}

.header.scrolled {
  box-shadow: 0 5px 25px rgba(27, 42, 74, 0.15);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 55px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  padding: 10px 16px;
  font-weight: 500;
  color: var(--navy);
  font-size: 0.95rem;
  position: relative;
  border-radius: 8px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
}

.nav-cta {
  display: inline-block;
  padding: 11px 24px;
  background: var(--gradient-gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(244, 180, 26, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(244, 180, 26, 0.45);
}

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

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ====== Hero Banner ====== */
.hero {
  position: sticky;
  top: 0;
  min-height: auto;
  aspect-ratio: 1600 / 600;
  display: block;
  background: url('../images/hero-banner.jpg') no-repeat center center scroll;
  background-size: cover;
  color: var(--white);
  overflow: visible;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: scale(2) translateY(20px);
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 60px 0;
  display: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 9px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--gold);
  position: relative;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  margin-bottom: 34px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  margin-top: 55px;
  color: var(--white);
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Floating shape decorations */
.hero-float {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
  display: none;
}

.hero-float-1 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  top: -100px;
  right: -100px;
}

.hero-float-2 {
  width: 200px;
  height: 200px;
  background: var(--gold-light);
  bottom: 40px;
  right: 200px;
}

/* ====== Quick Booking Form ====== */
.quick-book {
  position: relative;
  z-index: 5;
  margin-top: -20px;
  
}

/* Full-width white strip behind the booking form so the sticky
   hero doesn't show through while scrolling */
.quick-book-wrap {
  position: relative;
  z-index: 5;
  background: var(--white);
  margin-top: -20px;
  padding: 15px 0 0;
}

.quick-book-wrap .quick-book {
  margin-top: 0;
  margin-bottom: 0;
}

.quick-book-wrap + .trust-strip {
  /*margin-top: 40px;*/
}

/* Lift all content after the sticky hero above it, so sections
   scroll OVER the banner instead of hiding behind it */
.trust-strip,
.about-section,
.why-section,
.services-section,
.fleet-section,
.parallax-section,
.pricing-section,
.testimonials-section,
.cta-banner,
.contact-section,
.footer {
  position: relative;
  z-index: 2;
}

.quick-book-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 35px 40px;
  border-top: 4px solid var(--gold);
  position:relative;
  top: -40px;
}

.quick-book-card h3 {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-book-card h3 i {
  color: var(--gold);
}

.quick-book-card p.sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: end;
}

.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--navy);
}

.form-field select,
.form-field input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off-white);
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231B2A4A' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.form-field select:focus,
.form-field input:focus {
  border-color: var(--gold);
  background: var(--white);
}

.btn-book {
  width: 100%;
  white-space: nowrap;
}

/* ====== Trust Strip ====== */
.trust-strip {
  background: var(--navy);
  color: var(--white);
  padding: 22px 0;
}

.trust-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item i {
  font-size: 1.8rem;
  color: var(--gold);
  background: rgba(244, 180, 26, 0.12);
  padding: 14px;
  border-radius: 50%;
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
}

.trust-item span {
  font-size: 0.8rem;
  color: #b6c2d9;
}

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

.about-image-wrap {
  position: relative;
}

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

.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-badge {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--gradient-navy);
  color: var(--white);
  padding: 22px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
}

.about-badge .year {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.about-badge span {
  font-size: 0.85rem;
}

.about-content .section-subtitle {
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 18px;
}

.about-content h2 span {
  color: var(--gold);
}

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

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-feature i {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 180, 26, 0.15);
  color: var(--gold-dark);
  border-radius: 12px;
  font-size: 1.2rem;
}

.about-feature strong {
  font-size: 0.95rem;
  color: var(--navy);
  display: block;
}

.about-feature span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ====== Why Choose Us ====== */
.why-section {
  background: var(--gradient-navy);
  position: relative;
  overflow: hidden;
}

.why-section::before,
.why-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(244, 180, 26, 0.05);
}

.why-section::before {
  width: 400px;
  height: 400px;
  top: -150px;
  left: -150px;
}

.why-section::after {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -100px;
}

.why-section .section-head h2 {
  color: var(--white);
}

.why-section .section-head p {
  color: #b6c2d9;
}

.why-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  transition: all 0.4s ease;
}

.why-card:hover {
  background: var(--white);
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.why-card:hover h3,
.why-card:hover p {
  color: var(--navy);
}

.why-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  border-radius: 50%;
  font-size: 1.7rem;
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(244, 180, 26, 0.4);
  transition: all 0.4s ease;
}

.why-card:hover .why-icon {
  transform: rotateY(180deg);
}

.why-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.why-card p {
  color: #b6c2d9;
  font-size: 0.88rem;
  transition: color 0.3s;
}

/* ====== Services Section ====== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 68px;
  height: 68px;
  background: var(--off-white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 22px;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: var(--gradient-gold);
  color: var(--navy);
  transform: scale(1.1) rotate(-6deg);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.service-link {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.service-link i {
  transition: transform 0.3s;
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* ====== Fleet Section ====== */
.fleet-section {
  background: var(--off-white);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.4s ease;
}

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

.fleet-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

.fleet-card:hover .fleet-img img {
  transform: scale(1.1);
}

.fleet-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
}

.fleet-body {
  padding: 22px;
}

.fleet-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.fleet-meta {
  display: flex;
  gap: 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.fleet-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fleet-meta i {
  color: var(--gold-dark);
}

.fleet-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed var(--light-gray);
  padding-top: 16px;
}

.fleet-price .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}

.fleet-price .price small {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ====== Pricing Section ====== */
.pricing-section {
  background: var(--gradient-navy);
  position: relative;
  overflow: hidden;
}

.pricing-section .section-head h2 {
  color: var(--white);
}

.pricing-section .section-head p {
  color: #b6c2d9;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.pricing-tab {
  padding: 12px 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #b6c2d9;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.pricing-tab:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.pricing-tab.active {
  background: var(--gradient-gold);
  color: var(--navy);
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(244, 180, 26, 0.35);
}

.pricing-panel {
  display: none;
  position: relative;
  z-index: 2;
}

.pricing-panel.active {
  display: block;
  animation: fadeUp 0.5s ease;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
}

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

.price-card.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 15px 50px rgba(244, 180, 26, 0.25);
}

.price-card .car-name {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.price-card .car-name i {
  color: var(--gold);
}

.price-card .car-type {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.price-amount {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 6px;
}

.price-amount small {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.price-features {
  list-style: none;
  text-align: left;
  margin: 20px 0;
  padding: 0;
  border-top: 1px dashed var(--light-gray);
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.85rem;
  color: var(--text-dark);
  border-bottom: 1px dashed var(--light-gray);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li i.fa-check {
  color: #22c55e;
}

.price-features li i.fa-times {
  color: #ef4444;
}

.price-card .btn {
  width: 100%;
}

.price-card.featured .btn {
  background: var(--gradient-gold);
  color: var(--navy);
}

/* Car image inside price cards */
.price-car-img {
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--off-white);
  position: relative;
}

.price-car-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 42, 74, 0.25), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.price-card:hover .price-car-img::after {
  opacity: 1;
}

.price-car-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.price-card:hover .price-car-img img {
  transform: scale(1.08);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(244, 180, 26, 0.45);
  z-index: 5;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.price-card {
  padding-top: 34px;
}

/* Notes box */
.pricing-notes {
  position: relative;
  z-index: 2;
  margin-top: 45px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.pricing-notes h4 {
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-notes ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
}

.pricing-notes li {
  color: #cbd5e1;
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-notes li i {
  color: var(--gold);
  margin-top: 4px;
}

/* ====== Testimonials ====== */
.testimonials-section {
  background: var(--off-white);
}

.testi-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px 0;
}

.testi-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testi-slide {
  min-width: 100%;
  padding: 20px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 45px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 15px;
  left: 30px;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(244, 180, 26, 0.25);
  line-height: 1;
}

.testi-stars {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1rem;
  letter-spacing: 3px;
}

.testi-text {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 28px;
  line-height: 1.8;
}

.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testi-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--gradient-navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
}

.testi-author strong {
  color: var(--navy);
  display: block;
  font-size: 1rem;
}

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

.testi-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.testi-nav-box {
  display: flex;
  gap: 10px;
}

.testi-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--light-gray);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-btn:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--light-gray);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.testi-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 50px;
}

/* ====== CTA Banner ====== */
.cta-banner {
  background: var(--gradient-gold);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 30px solid rgba(27, 42, 74, 0.08);
  top: -100px;
  right: -100px;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 8px;
}

.cta-content p {
  color: rgba(27, 42, 74, 0.75);
  font-size: 1.05rem;
}

.cta-banner .btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(27, 42, 74, 0.3);
}

.cta-banner .btn-navy:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(27, 42, 74, 0.4);
}

/* ====== Contact Section ====== */
.contact-section {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 28px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-info-card i {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: rgba(244, 180, 26, 0.15);
  color: var(--gold-dark);
  border-radius: 50%;
  font-size: 1.4rem;
}

.contact-info-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 250px;
  background: var(--light-gray);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-form-card h3 {
  margin-bottom: 8px;
}

.contact-form-card > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  background: var(--off-white);
  outline: none;
  transition: all 0.3s ease;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

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

/* ====== Footer ====== */
.footer {
  background: var(--navy-dark);
  color: #b6c2d9;
  padding-top: 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 60px solid rgba(244, 180, 26, 0.04);
  top: -250px;
  right: -180px;
  pointer-events: none;
}

.footer::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(244, 180, 26, 0.03);
  bottom: -150px;
  left: -120px;
  pointer-events: none;
}

/* Footer CTA strip */
.footer-cta {
  background: var(--gradient-gold);
  border-radius: var(--radius-lg);
  padding: 40px 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: -70px;
  margin-bottom: 60px;
  position: relative;
  z-index: 5;
  box-shadow: 0 25px 60px rgba(244, 180, 26, 0.35);
  overflow: hidden;
}

.footer-cta::before {
  content: '\f1b9';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-size: 10rem;
  color: rgba(27, 42, 74, 0.07);
  transform: rotate(-12deg);
}

.footer-cta h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-cta h3 i {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.5);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.footer-cta p {
  color: rgba(27, 42, 74, 0.75);
  font-size: 0.98rem;
}

.footer-cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.footer-cta .btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(27, 42, 74, 0.25);
}

.footer-cta .btn-navy:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(27, 42, 74, 0.35);
}

.footer-cta .btn-white-outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.footer-cta .btn-white-outline:hover {
  background: var(--navy);
  color: var(--gold);
}

.footer-main {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer .logo img {
  height: 55px;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.footer-about p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-size: 0.95rem;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.footer-social a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-gold);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.35s ease;
}

.footer-social a i {
  position: relative;
  z-index: 2;
  transition: color 0.35s;
}

.footer-social a:hover {
  transform: translateY(-5px);
  border-color: transparent;
}

.footer-social a:hover::before {
  transform: scale(1);
}

.footer-social a:hover i {
  color: var(--navy);
}

.footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer h4 i {
  color: var(--gold);
  font-size: 0.9rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 3px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.3s;
}

.footer-links a i {
  font-size: 0.65rem;
  color: var(--gold);
  transition: transform 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(6px);
}

.footer-links a:hover i {
  transform: translateX(3px);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.footer-contact li i {
  color: var(--gold);
  margin-top: 5px;
  width: 20px;
  text-align: center;
}

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

/* Footer newsletter */
.footer-newsletter p {
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 5px;
  transition: border-color 0.3s;
}

.newsletter-form:focus-within {
  border-color: var(--gold);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 16px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  min-width: 0;
}

.newsletter-form input::placeholder {
  color: #8b9bb5;
}

.newsletter-form button {
  background: var(--gradient-gold);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(244, 180, 26, 0.4);
}

.newsletter-note {
  font-size: 0.72rem !important;
  color: #8b9bb5 !important;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.newsletter-note i {
  color: var(--gold);
}

/* Footer payment/trust badges */
.footer-trust {
  display: flex;
  gap: 15px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.footer-trust span {
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 50px;
  color: #cbd5e1;
}

.footer-trust span i {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.15);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.footer-bottom span {
  color: var(--gold);
}

.footer-bottom .heart {
  color: #ef4444;
  animation: heartbeat 1.5s ease infinite;
  display: inline-block;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.2); }
  40% { transform: scale(1); }
  60% { transform: scale(1.15); }
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: #8b9bb5;
}

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

/* ====== Form Alert (success message) ====== */
.form-alert {
  background: var(--white);
  border: 2px solid #22c55e;
  border-left: 6px solid #22c55e;
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-lg);
  flex-wrap: wrap;
}

.form-alert i {
  font-size: 2.2rem;
  color: #22c55e;
}

.form-alert strong {
  color: var(--navy);
  display: block;
  font-size: 1.1rem;
}

.form-alert p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.form-alert .btn {
  margin-left: auto;
}

/* ====== Contact hours box ====== */
.contact-hours {
  background: var(--gradient-navy);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-hours i {
  font-size: 1.7rem;
  color: var(--gold);
  background: rgba(244, 180, 26, 0.15);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-hours strong {
  color: var(--white);
  font-size: 1rem;
}

.contact-hours p {
  color: #b6c2d9;
  font-size: 0.85rem;
  margin: 0;
}

/* ====== FAQ ====== */
.faq-grid {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 22px 26px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.faq-q {
  font-weight: 600;
  color: var(--navy);
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-q i {
  color: var(--gold);
  font-size: 1.1rem;
}

.faq-a {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 10px;
  padding-left: 26px;
  line-height: 1.8;
}

/* ====== Corporate Hire Page ====== */
.corp-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: url('../images/hero-banner.jpg') no-repeat center center/cover;
  color: var(--white);
  overflow: hidden;
}

.corp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(18, 32, 59, 0.95) 0%, rgba(42, 63, 110, 0.82) 55%, rgba(27, 42, 74, 0.65) 100%);
}

.corp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.corp-hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 20px;
}

.corp-hero-content h1 span {
  color: var(--gold);
}

.corp-hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* Corporate trust strip */
.corp-trust {
  padding: 55px 0;
  background: var(--off-white);
}

.corp-trust-grid {
  margin: 0;
}

/* Corporate feature cards */
.corp-how {
  background: var(--off-white);
}

.cp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cp-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cp-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: -30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(244, 180, 26, 0.08);
  transition: transform 0.4s ease;
}

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

.cp-card:hover::before {
  transform: scale(1.6);
}

.cp-card i {
  font-size: 1.9rem;
  color: var(--gold);
  background: rgba(244, 180, 26, 0.14);
  width: 62px;
  height: 62px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.cp-card:hover i {
  background: var(--gradient-gold);
  color: var(--navy);
  transform: rotate(-6deg) scale(1.05);
}

.cp-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.cp-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

/* ====== Modal Popup ====== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 32, 59, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  overflow-y: auto;
}

.modal-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop .modal-card {
  width: 100%;
  max-width: 620px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(18, 32, 59, 0.4);
  border-top: 5px solid var(--gold);
  padding: 38px 36px 34px;
  position: relative;
  transform: translateY(30px) scale(0.96);
  transition: transform 0.35s ease;
}

.modal-backdrop.show .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--off-white);
  color: var(--navy);
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.modal-close:hover {
  background: var(--navy);
  color: var(--gold);
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.modal-header i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
  background: rgba(244, 180, 26, 0.15);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.modal-header h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

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

.modal-form .form-group {
  margin-bottom: 16px;
}

/* Corporate CTA button */
.corp-hero .btn-navy,
.cta-banner .btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 10px 30px rgba(27, 42, 74, 0.25);
}

.corp-hero .btn-navy:hover,
.cta-banner .btn-navy:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(27, 42, 74, 0.35);
}

@media (min-width:280px) and (max-width: 577px){
  .hero {
	  display:none !important;
}
}
@media (min-width:280px) and (max-width: 576px){
.hero {
  
  top: 0;
  min-height: 520px;
  aspect-ratio: 710 / 620 !important;
 
  background: url('../images/mobile-banner.jpg') no-repeat center center scroll;
  background-size: cover;
  color: var(--white);
  overflow: visible;
  z-index: 1;
  display:block !important;
}
}
@media (max-width: 992px) {
  .cp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .cp-grid {
    grid-template-columns: 1fr;
  }
  .quick-book-card {
    top: -2px !important;
}

  .corp-hero {
    min-height: auto;
    padding: 60px 0;
  }
}

/* ====== Page Hero (inner pages) ====== */
.page-hero {
  background: var(--gradient-navy);
  padding: 80px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 45px solid rgba(244, 180, 26, 0.06);
  top: -160px;
  left: -100px;
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(244, 180, 26, 0.08);
  bottom: -80px;
  right: -60px;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.page-hero h1 span {
  color: var(--gold);
}

.page-hero .breadcrumb {
  color: #b6c2d9;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

.page-hero .breadcrumb a {
  color: var(--gold);
}

/* ====== Mission / Vision ====== */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--gold);
  transition: all 0.3s;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.mv-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 18px;
}

.mv-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.mv-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ====== Journey / Stats ====== */
.journey-section {
  background: var(--off-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  position: relative;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 0 0 4px 4px;
}

.stat-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.stat-card .num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1.2;
}

.stat-card small {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ====== Values ====== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--light-gray);
  transition: all 0.3s;
}

.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.value-card i {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ====== Process / Steps ====== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -15px;
  width: 30px;
  height: 2px;
  background: var(--gold);
  opacity: 0.5;
}

.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--gradient-gold);
  box-shadow: 0 10px 30px rgba(244, 180, 26, 0.3);
  position: relative;
  z-index: 2;
}

.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ====== Why Strip ====== */
.why-strip {
  background: var(--off-white);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.strip-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.strip-item:hover {
  transform: translateY(-5px);
}

.strip-item i {
  font-size: 1.8rem;
  color: var(--gold);
  background: rgba(244, 180, 26, 0.12);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.strip-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.strip-item p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ====== Term Chips ====== */
.term-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.term-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy);
}

.term-chip i {
  color: var(--gold);
}

/* ====== Parallax Section ====== */
.parallax-section {
  position: relative;
  background: url('../images/hero-banner.jpg') no-repeat center center fixed;
  background-size: cover;
  padding: 110px 0;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.parallax-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(27, 42, 74, 0.78), rgba(27, 42, 74, 0.88));
}

.parallax-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

.parallax-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 26px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--navy);
  box-shadow: 0 15px 40px rgba(244, 180, 26, 0.4);
  animation: floatY 4s ease-in-out infinite;
}

.parallax-inner h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  margin-bottom: 18px;
}

.parallax-inner h2 span {
  color: var(--gold);
}

.parallax-inner p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  margin-bottom: 30px;
}

.parallax-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.parallax-line {
  width: 70px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 4px;
  margin: 0 auto 24px;
}

/* ====== Animation: reveal on scroll ====== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ====== Keyframes ====== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(244, 180, 26, 0.5);
  }
  50% {
    box-shadow: 0 0 0 18px rgba(244, 180, 26, 0);
  }
}

@keyframes bounce-down {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.float-anim {
  animation: floatY 4s ease-in-out infinite;
}

/* ====== Scroll to top ====== */
.scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(244, 180, 26, 0.4);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  animation: pulse 1.5s ease infinite;
}

/* ====== Responsive ====== */
@media (max-width: 992px) {
  .booking-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn-book {
    grid-column: span 2;
  }

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

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

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

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

  .about-badge {
    right: 15px;
  }

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

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

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

  .process-step:not(:last-child)::after {
    display: none;
  }

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

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

  .trust-strip .container {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  /* Parallax fallback for mobile (no fixed bg support) */
  .parallax-section {
    background-attachment: scroll;
    padding: 80px 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 40px;
    box-shadow: -10px 0 40px rgba(27, 42, 74, 0.15);
    transition: right 0.4s ease;
    z-index: 1000;
    gap: 5px;
    overflow-y: auto;
  }

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

  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 10px;
    font-size: 1.05rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 20px;
    text-align: center;
    width: 100%;
  }

  .hero {
    position: sticky;
    top: 0;
    min-height: auto;
    aspect-ratio: 1600 / 600;
    background-attachment: scroll;
    padding: 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 25px;
  }

  .hero-stat .num {
    font-size: 1.6rem;
  }

  .quick-book-card {
    padding: 25px 20px;
  }

  .about-image img {
    height: 320px;
  }

  .about-badge {
    padding: 16px 22px;
    right: 10px;
    bottom: -20px;
  }

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

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

  .pricing-notes ul {
    grid-template-columns: 1fr;
  }

  .cta-content {
    justify-content: center;
    text-align: center;
  }

  .testi-card {
    padding: 30px 22px;
  }
}

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

  .topbar {
    font-size: 0.75rem;
  }

  .topbar-right {
    display: none;
  }

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

  .btn-book {
    grid-column: auto;
  }

  .why-grid,
  .services-grid,
  .fleet-grid,
  .pricing-grid,
  .stats-grid,
  .strip-grid,
  .values-grid,
  .process-grid,
  .mv-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .trust-strip .container {
    flex-direction: column;
  }

  .hero-stats {
    width: 100%;
    justify-content: space-between;
    gap: 15px;
  }
}