/* ============================================================
   NOVA RENT A CAR — styles.css  (Bootstrap 5.3.8 companion)
   Only brand-specific styles that Bootstrap cannot handle.
   ============================================================ */

/* ─── CSS Custom Properties (Brand Design Tokens) ─────────
   Bootstrap has no equivalent for custom brand palettes,
   shadow tints, radius values, or transition curves.
──────────────────────────────────────────────────────────── */
:root {
  --nova-navy:        #01264E;
  --nova-navy-dark:   #010e2a;
  --nova-navy-mid:    #01336a;
  --nova-blue:        #3885BB;
  --nova-blue-light:  #5fa8d8;
  --nova-orange:      #F89501;
  --nova-orange-dark: #d47e01;
  --nova-white:       #ffffff;
  --nova-light:       #f4f7fb;
  --nova-gray:        #6b7280;
  --nova-gray-light:  #e5e9f0;
  --nova-text:        #1a2a3a;

  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Nunito', sans-serif;

  --shadow-sm:   0 2px 8px rgba(1,38,78,.10);
  --shadow-md:   0 6px 24px rgba(1,38,78,.15);
  --shadow-lg:   0 12px 40px rgba(1,38,78,.20);
  --shadow-card: 0 4px 20px rgba(1,38,78,.12);

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-pill:  50px;

  --transition:      .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: .5s cubic-bezier(.4,0,.2,1);
}

/* ─── Base Overrides ──────────────────────────────────────
   Bootstrap defaults to system fonts; we need Oswald + Nunito.
   Custom body color and line-height also differ from Bootstrap.
──────────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  font-family: var(--font-body);
  color: var(--nova-text);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: .02em;
}

a {
  color: var(--nova-blue);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--nova-orange); }

/* ─── Custom Scrollbar ────────────────────────────────────
   No Bootstrap equivalent for scrollbar styling.
──────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--nova-light); }
::-webkit-scrollbar-thumb { background: var(--nova-blue); border-radius: 3px; }

/* ─── Brand Color Utilities ───────────────────────────────
   Bootstrap's text-* and bg-* only cover its own palette.
──────────────────────────────────────────────────────────── */
.text-accent       { color: var(--nova-orange); }
.text-accent-link  { color: var(--nova-orange); text-decoration: underline; }
.text-accent-link:hover { color: var(--nova-orange-dark); }
.text-nova-orange  { color: var(--nova-orange) !important; }
.text-nova-blue    { color: var(--nova-blue) !important; }
.text-nova-navy    { color: var(--nova-navy) !important; }
.bg-nova-navy      { background-color: var(--nova-navy) !important; }
.bg-nova-navy-dark { background-color: var(--nova-navy-dark) !important; }
.bg-nova-orange    { background-color: var(--nova-orange) !important; }
.bg-nova-light     { background-color: var(--nova-light) !important; }

/* ─── Section Layout ──────────────────────────────────────
   Bootstrap's max spacing is py-5 = 3rem. We need 5rem.
──────────────────────────────────────────────────────────── */
section { padding: 5rem 0; }

@media (max-width: 991px) {
  section { padding: 3.5rem 0; }
}

/* ─── Section Tag (pill label above headings) ─────────────
   Unique badge component — no Bootstrap equivalent.
──────────────────────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--nova-orange);
  background: rgba(248,149,1,.12);
  border: 1px solid rgba(248,149,1,.25);
  border-radius: var(--radius-pill);
  padding: .35rem 1rem;
  margin-bottom: .75rem;
}

.section-tag-light {
  background: rgba(248,149,1,.15);
  border-color: rgba(248,149,1,.3);
}

/* ─── Section Title ───────────────────────────────────────
   Responsive clamp() sizing and brand color. No BS equivalent.
──────────────────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--nova-navy);
  line-height: 1.2;
}
.section-title span { color: var(--nova-orange); }

.section-subtitle {
  font-size: 1rem;
  color: var(--nova-gray);
  max-width: 560px;
  margin: .75rem auto 0;
  line-height: 1.7;
}

/* ─── Brand Buttons ───────────────────────────────────────
   All buttons use brand colors, custom radius, letter-spacing,
   hover transforms and colored box-shadows. No BS btn-* matches.
──────────────────────────────────────────────────────────── */
.btn-hero-primary {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .95rem;
  padding: .75rem 1.8rem;
  background: var(--nova-orange);
  color: var(--nova-navy);
  border: 2px solid var(--nova-orange);
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}
.btn-hero-primary:hover,
.btn-hero-primary:focus-visible {
  background: var(--nova-orange-dark);
  border-color: var(--nova-orange-dark);
  color: var(--nova-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(248,149,1,.4);
}

.btn-hero-secondary {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .95rem;
  padding: .73rem 1.8rem;
  background: transparent;
  color: var(--nova-white);
  border: 2px solid rgba(255,255,255,.7);
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}
.btn-hero-secondary:hover,
.btn-hero-secondary:focus-visible {
  background: var(--nova-white);
  color: var(--nova-navy);
  border-color: var(--nova-white);
  transform: translateY(-2px);
}

.btn-vehicle-wa {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: .04em;
  font-size: .9rem;
  padding: .6rem 1.4rem;
  background: #25D366;
  color: var(--nova-white);
  border: none;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}
.btn-vehicle-wa:hover,
.btn-vehicle-wa:focus-visible {
  background: #1da851;
  color: var(--nova-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37,211,102,.4);
}

.btn-reserve-submit {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--nova-orange), var(--nova-orange-dark));
  color: var(--nova-navy);
  border: none;
  border-radius: var(--radius-pill);
  padding: .9rem 2.4rem;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(248,149,1,.35);
}
.btn-reserve-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(248,149,1,.5);
  color: var(--nova-navy);
}

/* ─── Navbar ──────────────────────────────────────────────
   Transparent → solid on scroll, custom underline animation,
   brand-colored CTA. Bootstrap's navbar-dark only partially helps.
──────────────────────────────────────────────────────────── */
#navbar {
  background: transparent;
  padding: 1.1rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  z-index: 1040;
  background-color: rgba(0,0,0,0.4); 
  backdrop-filter: blur(6px);
}
#navbar.scrolled {
  background: var(--nova-navy) !important;
  padding: .6rem 0;
  box-shadow: var(--shadow-md);
}

.navbar-logo {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: height var(--transition);
}
#navbar.scrolled .navbar-logo { height: 36px; }

/* Nav links: custom underline animation on hover/active */
#navbar .nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .85rem;
  color: rgba(255,255,255,.85) !important;
  padding: .4rem .75rem !important;
  position: relative;
  transition: color var(--transition);
}
#navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: .75rem; right: .75rem;
  height: 2px;
  background: var(--nova-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: 1px;
}
#navbar .nav-link:hover,
#navbar .nav-link.active { color: var(--nova-white) !important; }
#navbar .nav-link:hover::after,
#navbar .nav-link.active::after { transform: scaleX(1); }

/* Language toggle */
.btn-lang {
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-pill);
  padding: .35rem .9rem;
  transition: all var(--transition);
}
.btn-lang:hover {
  background: rgba(255,255,255,.2);
  color: var(--nova-white);
  border-color: rgba(255,255,255,.5);
}

/* Navbar CTA */
.btn-cta-nav {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--nova-navy) !important;
  background: var(--nova-orange);
  border-radius: var(--radius-pill);
  padding: .42rem 1.2rem !important;
  transition: all var(--transition);
}
.btn-cta-nav:hover { background: var(--nova-orange-dark); transform: translateY(-1px); }
.btn-cta-nav::after { display: none; }

/* Hamburger icon: white strokes on dark background */
#navbar .navbar-toggler {
  border: 1px solid rgba(255,255,255,.4);
  border-radius: var(--radius-sm);
  padding: .3rem .5rem;
}
#navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile collapsed menu */
@media (max-width: 991px) {
  #navbar .navbar-collapse {
    background: var(--nova-navy);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-top: .5rem;
    box-shadow: var(--shadow-md);
    background-color: transparent !important;
  }
  #navbar .nav-link { padding: .6rem 1rem !important; }
  #navbar .nav-link::after { display: none; }
}

/* ─── Hero Section ────────────────────────────────────────
   Full-viewport background with layered gradient overlay,
   diagonal clip-path, and brand-colored stats.
   None of this has a Bootstrap equivalent.
──────────────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  background:
    linear-gradient(135deg,
      rgba(1,14,42,.92) 0%,
      rgba(1,38,78,.75) 50%,
      rgba(56,133,187,.45) 100%),
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80')
    center/cover no-repeat fixed;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Diagonal bottom accent */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--nova-white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.hero-badge {
  font-family: var(--font-heading);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nova-orange);
  background: rgba(248,149,1,.12);
  border: 1px solid rgba(248,149,1,.3);
  border-radius: var(--radius-pill);
  padding: .4rem 1rem;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 700;
  color: var(--nova-white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-title span,
.hero-title-accent { color: var(--nova-orange); }

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-content {
  position: relative;
  z-index: 2;
  /* Ocupa todo el espacio disponible y centra verticalmente su contenido */
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 40px;
}

/* Hero Stats Bar */
.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  margin-bottom: 20px;
}
.stats-grid {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 1.2rem .5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--nova-orange);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  margin-top: .25rem;
  font-weight: 600;
  letter-spacing: .04em;
}

/* Hero animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-down { animation: fadeInDown .8s ease both; }
.animate-fade-up   { animation: fadeInUp  .9s ease both; }
.hero-badge    { animation-delay: .1s; }
.hero-title    { animation-delay: .25s; }
.hero-subtitle { animation-delay: .4s; }
.hero-actions  { animation-delay: .55s; }
.hero-stats    { animation-delay: .7s; }

/* ─── AOS-lite Scroll Animations ──────────────────────────
   Custom intersection observer animations. No Bootstrap equivalent.
──────────────────────────────────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-aos].aos-animate           { opacity: 1; transform: translateY(0); }
[data-aos="fade-left"]           { transform: translateX(-28px); }
[data-aos="fade-left"].aos-animate  { transform: translateX(0); }
[data-aos="fade-right"]          { transform: translateX(28px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"]             { transform: scale(.9); }
[data-aos="zoom-in"].aos-animate    { transform: scale(1); }

/* ─── Services Section ────────────────────────────────────
   Section bg, card design with gradient top-border animation,
   gradient icon circles, hover lift effect.
──────────────────────────────────────────────────────────── */
.section-services { background: var(--nova-light); }

.service-card {
  background: var(--nova-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--nova-gray-light);
  transition: all var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--nova-navy), var(--nova-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-card-dark {
  background: var(--nova-navy);
  border-color: var(--nova-navy);
}
.service-card-dark .service-name { color: var(--nova-white); }
.service-card-dark .service-desc { color: rgba(255,255,255,.7); }
.service-card-dark .service-icon {
  background: linear-gradient(135deg, var(--nova-orange), var(--nova-orange-dark));
}

.service-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nova-navy), var(--nova-blue));
  color: var(--nova-white);
  font-size: 1.65rem;
  transition: transform var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }

.service-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--nova-navy);
  margin-bottom: .5rem;
}
.service-desc { font-size: .9rem; color: var(--nova-gray); line-height: 1.6; }

/* ─── Fleet Section ───────────────────────────────────────
   Card design with image hover zoom, positioned badges,
   spec pills. All brand-specific visuals.
──────────────────────────────────────────────────────────── */
.section-fleet { background: var(--nova-white); }

.vehicle-card {
  background: var(--nova-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--nova-gray-light);
  transition: all var(--transition);
  height: 100%;
}
.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--nova-blue-light);
}

.vehicle-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 210px;
}
.vehicle-img-wrapper img,
.vehicle-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.vehicle-card:hover .vehicle-img-wrapper img,
.vehicle-card:hover .vehicle-img { transform: scale(1.06); }

.vehicle-badge {
  position: absolute;
  top: .9rem; left: .9rem;
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: var(--radius-pill);
}
.badge-orange  { background: var(--nova-orange); color: var(--nova-navy); }
.badge-blue    { background: var(--nova-navy);   color: var(--nova-white); }
.badge-green   { background: #2d6a4f;            color: var(--nova-white); }

.vehicle-body { padding: 1.4rem; }

.vehicle-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: .5rem;
}

.vehicle-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--nova-navy);
  margin-bottom: .2rem;
}
.vehicle-type {
  font-size: .82rem;
  color: var(--nova-blue);
  font-weight: 600;
  letter-spacing: .04em;
}
.vehicle-year {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  color: var(--nova-gray);
  background: var(--nova-light);
  padding: .2rem .6rem;
  border-radius: var(--radius-sm);
}

.vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1.2rem;
}
.spec-item {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .78rem;
  color: var(--nova-gray);
  background: var(--nova-light);
  border: 1px solid var(--nova-gray-light);
  border-radius: var(--radius-pill);
  padding: .22rem .7rem;
}
.spec-item i { color: var(--nova-blue); font-size: .85rem; }

@media (max-width: 767px) {
  .vehicle-img-wrapper { height: 180px; }
}

/* ─── About Section ───────────────────────────────────────
   Image with absolute badge overlay, value cards with
   brand-colored left border. All custom visuals.
──────────────────────────────────────────────────────────── */
.section-about { background: var(--nova-light); }

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img {
  width: 100%; height: 420px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .about-img { height: 280px; }
}

.about-badge-box {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--nova-orange);
  color: var(--nova-navy);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-text {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.about-text { color: var(--nova-gray); line-height: 1.7; }

.value-item {
  background: var(--nova-white);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--nova-orange);
  font-size: .88rem;
  font-weight: 700;
  color: var(--nova-navy);
}
.value-item i {
  color: var(--nova-blue);
  font-size: 1.1rem;
}

/* ─── How It Works Section ────────────────────────────────
   Navy background with glassmorphism cards, decorative
   blobs (pseudo-elements), gradient icon circles.
──────────────────────────────────────────────────────────── */
.section-howitworks {
  background: var(--nova-navy);
  position: relative;
  overflow: hidden;
}
.section-howitworks .section-title { color: var(--nova-white); }

/* Decorative blobs */
.section-howitworks::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(56,133,187,.12);
  pointer-events: none;
}
.section-howitworks::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(248,149,1,.08);
  pointer-events: none;
}

.step-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.75rem;
  transition: all var(--transition);
  height: 100%;
}
.step-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}

.step-card-accent {
  background: rgba(248,149,1,.1);
  border-color: rgba(248,149,1,.25);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: rgba(248,149,1,.2);
  line-height: 1;
  margin-bottom: .5rem;
}
.step-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nova-orange), var(--nova-orange-dark));
  color: var(--nova-navy);
  font-size: 1.6rem;
}
.step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--nova-white);
  margin-bottom: .6rem;
}
.step-desc { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.65; }

/* ─── Reservation Form ────────────────────────────────────
   Card wrapper, input icons, Tom Select overrides.
   Bootstrap forms don't support positioned icons or brand styling.
──────────────────────────────────────────────────────────── */
.section-reserve { background: var(--nova-light); }

.reserve-form-card {
  background: var(--nova-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--nova-gray-light);
}
@media (max-width: 575px) {
  .reserve-form-card { padding: 1.75rem 1.25rem; }
}


.iti {
  width: 100%;
}

.iti input {
  padding-left: 110px !important;
}

.form-group-nova { margin-bottom: 1.4rem; }

.form-label-nova {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--nova-navy);
  margin-bottom: .45rem;
  display: block;
}

.input-wrapper { position: relative; }
.input-wrapper .input-icon {
  position: absolute;
  left: .95rem; top: 50%;
  transform: translateY(-50%);
  color: var(--nova-blue);
  font-size: 1rem;
  pointer-events: none;
  z-index: 2;
}
.input-wrapper .nova-input,
.input-wrapper .nova-select { padding-left: 2.6rem; }

.nova-input,
.nova-select {
  width: 100%;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--nova-text);
  background: var(--nova-light);
  border: 1.5px solid var(--nova-gray-light);
  border-radius: var(--radius-md);
  padding: .7rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.nova-input:focus,
.nova-select:focus {
  outline: none;
  border-color: var(--nova-blue);
  background: var(--nova-white);
  box-shadow: 0 0 0 3px rgba(56,133,187,.18);
}
.nova-input.is-invalid,
.nova-select.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220,53,69,.12);
}
.nova-input::placeholder { color: #aab4c0; }
textarea.nova-input { resize: vertical; min-height: 90px; }

.nova-input.is-invalid ~ .invalid-feedback,
.nova-select.is-invalid ~ .invalid-feedback { display: block; }
.invalid-feedback { display: none; font-size: .8rem; color: #dc3545; margin-top: .3rem; }

.form-disclaimer {
  font-size: .78rem;
  color: var(--nova-gray);
}

/* Tom Select overrides — needed because Tom Select generates its own DOM */
.ts-wrapper .ts-control {
  font-family: var(--font-body) !important;
  font-size: .92rem !important;
  background: var(--nova-light) !important;
  border: 1.5px solid var(--nova-gray-light) !important;
  border-radius: var(--radius-md) !important;
  padding: .7rem 1rem !important;
  min-height: unset !important;
  box-shadow: none !important;
  color: var(--nova-text) !important;
  transition: border-color var(--transition), box-shadow var(--transition) !important;
}
.ts-wrapper.focus .ts-control,
.ts-wrapper .ts-control:focus {
  border-color: var(--nova-blue) !important;
  background: var(--nova-white) !important;
  box-shadow: 0 0 0 3px rgba(56,133,187,.18) !important;
}
.ts-wrapper.invalid .ts-control { border-color: #dc3545 !important; }
.ts-dropdown {
  font-family: var(--font-body) !important;
  font-size: .9rem !important;
  border: 1.5px solid var(--nova-blue) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-md) !important;
  margin-top: 2px !important;
}
.ts-dropdown .option { padding: .65rem 1rem !important; }
.ts-dropdown .option.active,
.ts-dropdown .option:hover { background: rgba(56,133,187,.12) !important; color: var(--nova-navy) !important; }
.ts-dropdown .option.selected { background: var(--nova-navy) !important; color: var(--nova-white) !important; }
.ts-wrapper .ts-control input { font-family: var(--font-body) !important; font-size: .9rem !important; }

/* ─── Testimonials / Reviews ──────────────────────────────
   Cards with quote marks, star colors, avatar gradients.
   Google badge. All brand-specific.
──────────────────────────────────────────────────────────── */
.section-testimonials { background: var(--nova-light); }

.review-card {
  background: var(--nova-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--nova-gray-light);
  transition: all var(--transition);
  height: 100%;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.review-stars { color: #f59e0b; font-size: .9rem; margin-bottom: .75rem; }

.review-text {
  font-size: .9rem;
  color: #374151;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.2rem;
}
.review-text::before {
  content: '\201C';
  color: var(--nova-orange);
  font-size: 1.5rem;
  line-height: 0;
  vertical-align: -.35em;
  margin-right: .15rem;
}

.review-author {
  padding-top: 1rem;
  border-top: 1px solid var(--nova-gray-light);
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nova-navy), var(--nova-blue));
  color: var(--nova-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}
.review-name {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 600;
  color: var(--nova-navy);
}
.review-date { font-size: .78rem; color: var(--nova-gray); }

.google-badge {
  font-size: .8rem;
  color: var(--nova-gray);
  background: var(--nova-light);
  border: 1px solid var(--nova-gray-light);
  border-radius: var(--radius-pill);
  padding: .35rem 1rem;
  margin-bottom: 2rem;
}

/* ─── Contact Section ─────────────────────────────────────
   Navy info card with brand icon circles, map wrapper.
──────────────────────────────────────────────────────────── */
.section-contact { background: var(--nova-light); }

.contact-info-card {
  background: var(--nova-navy);
  color: var(--nova-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  height: 100%;
}
.contact-info-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--nova-white);
  margin-bottom: 1.5rem;
}

.contact-info-item { margin-bottom: 1.5rem; }
.contact-info-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(248,149,1,.15);
  color: var(--nova-orange);
  font-size: 1.2rem;
}
.contact-info-label {
  font-family: var(--font-heading);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--nova-orange);
  margin-bottom: .2rem;
}
.contact-info-value { font-size: .92rem; color: rgba(255,255,255,.85); }

.contact-link {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--nova-orange); }

.contact-follow-label {
  font-family: var(--font-heading);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--nova-orange);
  margin-bottom: .75rem;
}

/* Social link circles (shared by contact + footer) */
.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--nova-white);
  font-size: 1.1rem;
  transition: all var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: var(--nova-orange);
  border-color: var(--nova-orange);
  color: var(--nova-navy);
  transform: translateY(-3px);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 380px;
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 380px; }

@media (max-width: 767px) {
  .map-wrapper,
  .map-wrapper iframe { min-height: 280px; }
}

/* ─── Footer ──────────────────────────────────────────────
   Custom link hover effect (indent on hover), contact list,
   bottom bar. Brand-specific colors throughout.
──────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--nova-navy-dark);
  padding: 4rem 0 2rem;
}

.footer-logo {
  height: 38px;
  filter: brightness(0) invert(1);
}
.footer-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 280px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nova-orange);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(248,149,1,.25);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li a {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  padding: .28rem 0;
  transition: color var(--transition), padding-left var(--transition);
  text-decoration: none;
}
.footer-links li a:hover { color: var(--nova-orange); padding-left: 6px; }

.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  padding: .35rem 0;
}
.footer-contact-list li i { color: var(--nova-orange); margin-top: .15rem; }
.footer-contact-list li a { color: rgba(255,255,255,.75); text-decoration: none; }
.footer-contact-list li a:hover { color: var(--nova-orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); margin: 0; }
.footer-bottom p span { color: var(--nova-orange); }
.footer-bottom-sub { font-size: .78rem; color: rgba(255,255,255,.28) !important; margin-top: .35rem !important; }

/* ─── WhatsApp Floating Button ────────────────────────────
   Fixed position FAB with pulse animation and tooltip.
   Entirely custom — no Bootstrap component matches.
──────────────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; left: 1.75rem;
  z-index: 1050;
  display: flex;
  align-items: center;
  gap: .65rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition);
  text-decoration: none;
}

.whatsapp-float-inner {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--nova-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 18px rgba(37,211,102,.5);
  transition: all var(--transition);
  position: relative;
  flex-shrink: 0;
}
.whatsapp-float-inner::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: waPulse 2s infinite;
}
.whatsapp-float:hover .whatsapp-float-inner { background: #1da851; transform: scale(1.08); }

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .9; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

.wa-tooltip {
  background: var(--nova-navy);
  color: var(--nova-white);
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 600;
  padding: .4rem .9rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

@media (max-width: 480px) {
  .wa-tooltip { display: none; }
}

/* ─── Back-to-Top Button ──────────────────────────────────
   Fixed position button with brand colors and hover lift.
──────────────────────────────────────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 2rem; right: 1.75rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--nova-orange);
  color: var(--nova-navy);
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 1050;
  opacity: 0; pointer-events: none;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(248,149,1,.4);
}
#backToTop.visible { opacity: 1; pointer-events: auto; }
#backToTop:hover { background: var(--nova-orange-dark); transform: translateY(-3px); }

/* ─── Toast Notification ──────────────────────────────────
   Custom slide-up toast with brand styling.
──────────────────────────────────────────────────────────── */
.nova-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--nova-navy);
  color: var(--nova-white);
  font-family: var(--font-body);
  font-size: .92rem;
  border-left: 4px solid var(--nova-orange);
  border-radius: var(--radius-md);
  padding: 1rem 1.75rem;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-slow), opacity var(--transition-slow);
  opacity: 0;
  max-width: 90vw;
}
.nova-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ─── Mobile CTA full-width ──────────────────────────────── */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-hero-primary,
  .btn-hero-secondary { width: 100%; justify-content: center; }
}
