/* ============================================================
   LEO Boating Adventure – Pondicherry
   Custom Styles | Bootstrap 5 + jQuery Build
   Design by KVS Digital World
============================================================ */

:root {
  --navy: #0B2C4A;
  --teal: #00B4D8;
  --gold: #F4A811;
  --white: #ffffff;
  --light-bg: #F4F8FB;
}

/* ── Global ── */
body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background: #fff;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
}
a { text-decoration: none; }
a:hover { text-decoration: none; }

/* ── Top Bar ── */
.top-bar {
  background: var(--navy);
  color: #ccd6e0;
  font-size: 0.82rem;
  padding: 7px 0;
  font-family: 'Poppins', sans-serif;
}
.top-bar a { color: #ccd6e0; transition: color .2s; }
.top-bar a:hover { color: var(--gold); }
.top-bar i { color: var(--gold); margin-right: 4px; }

/* ── Navbar ── */
.navbar {
  background: #fff;
  box-shadow: 0 2px 14px rgba(11,44,74,.10);
  padding: 12px 0;
  transition: box-shadow .3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(11,44,74,.18);
}
.navbar-brand img { height: 52px; }
.navbar-nav .nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--navy) !important;
  padding: 6px 14px !important;
  position: relative;
  font-size: 0.92rem;
  letter-spacing: .02em;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: calc(100% - 28px); }
.navbar-nav .nav-link.active { font-weight: 800; }
.btn-book-now {
  background: var(--gold);
  color: #fff !important;
  border-radius: 50px;
  padding: 9px 26px !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 2px 16px rgba(244,168,17,.35);
  transition: all .3s;
}
.btn-book-now:hover {
  background: #d4900a;
  box-shadow: 0 4px 24px rgba(244,168,17,.55);
  transform: translateY(-1px);
}

/* ── Eyebrow / Labels ── */
.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.section-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: rgba(244,168,17,.18);
  line-height: 1;
  letter-spacing: -.02em;
}

/* ── Buttons ── */
.btn-gold {
  background: var(--gold);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  letter-spacing: .05em;
  box-shadow: 0 2px 16px rgba(244,168,17,.35);
  transition: all .3s;
  display: inline-block;
}
.btn-gold:hover {
  background: #d4900a;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(244,168,17,.6);
}
.btn-navy {
  background: var(--navy);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  letter-spacing: .05em;
  box-shadow: 0 2px 12px rgba(11,44,74,.3);
  transition: all .3s;
  display: inline-block;
}
.btn-navy:hover {
  background: #0d3659;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(11,44,74,.4);
}
.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  border-radius: 50px;
  padding: 10px 30px;
  background: transparent;
  transition: all .3s;
  display: inline-block;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
}

/* ── Hero ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../img/hero-boat.dim_1400x700.jpg  ') center/cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11,44,74,.82) 40%, rgba(0,180,216,.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .75rem;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  color: rgba(255,255,255,.85);
  font-size: 1.12rem;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ── Section generic ── */
.section-padded { padding: 50px 0; }
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-subtitle {
  color: #556070;
  font-size: 1.02rem;
  max-width: 580px;
  line-height: 1.7;
}
.gold-divider {
  width: 54px;
  height: 3px;
  background: var(--gold);
  margin: 14px 0 24px;
  border-radius: 4px;
}
.bg-navy-section { background: var(--navy); }
.bg-light-section { background: var(--light-bg); }

/* ── Service Cards ── */
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  border: 1px solid #e6eef5;
  border-top: 4px solid var(--gold);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(11,44,74,.14);
}
.service-card .icon-box {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(244,168,17,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
  color: var(--gold);
}
.service-card h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-card p { font-size: .92rem; color: #667; margin-bottom: 18px; }

/* ── Gallery ── */
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 240px;
  object-fit: cover;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(11,44,74,.65);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  border-radius: 10px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: #fff; font-size: 2rem; }

/* ── Lightbox ── */
#lightbox-modal .modal-dialog { max-width: 860px; }
#lightbox-modal .modal-body { padding: 0; background: #000; }
#lightbox-modal img { max-height: 85vh; width: 100%; object-fit: contain; }
#lightbox-modal .modal-header {
  background: var(--navy);
  border: none;
  padding: 10px 18px;
}
#lightbox-modal .btn-close { filter: invert(1); }

/* ── Testimonials ── */
.testimonial-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  padding: 36px 30px;
}
.testimonial-card p {
  color: rgba(255,255,255,.9);
  font-size: 1.02rem;
  line-height: 1.75;
  font-style: italic;
}
.testimonial-card .reviewer {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--gold);
}
.testimonial-card .stars { color: var(--gold); font-size: 1.1rem; }

/* ── Why Us Cards ── */
.why-card {
  border-radius: 12px;
  padding: 32px 24px;
  background: #fff;
  border-left: 4px solid var(--gold);
  box-shadow: 0 4px 20px rgba(11,44,74,.07);
  transition: box-shadow .3s;
  height: 100%;
}
.why-card:hover { box-shadow: 0 10px 36px rgba(11,44,74,.14); }
.why-card .num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(244,168,17,.2);
  line-height: 1;
}

/* ── Contact Cards ── */
.contact-info-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 22px;
  border: 1px solid #e6eef5;
  border-top: 4px solid var(--gold);
  box-shadow: 0 4px 18px rgba(11,44,74,.06);
  transition: box-shadow .3s;
  height: 100%;
}
.contact-info-card:hover { box-shadow: 0 10px 32px rgba(11,44,74,.12); }
.contact-info-card .icon-box {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(244,168,17,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.35rem;
  color: var(--gold);
}

/* ── Floating Buttons ── */
.float-btn {
  position: fixed;
  right: 22px;
  width: 52px; height: 52px;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.32);
  transition: transform .2s, box-shadow .2s;
  z-index: 9999;
  text-decoration: none;
  color: #fff;
  font-size: 1.25rem;
}
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(0,0,0,.42);
  color: #fff;
}
.float-btn-call { background: #1d6ae5; bottom: 92px; }
.float-btn-wa   { background: #25D366; bottom: 26px; }
.float-tooltip {
  position: absolute;
  right: 62px;
  top: 50%; transform: translateY(-50%);
  background: var(--navy);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.float-btn:hover .float-tooltip { opacity: 1; }

/* ── Booking Modal ── */
#bookingModal .modal-header {
  background: var(--navy);
  color: #fff;
  border-radius: 12px 12px 0 0;
}
#bookingModal .modal-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
#bookingModal .modal-content { border-radius: 12px; overflow: hidden; }
#bookingModal label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--navy);
}
#bookingModal .form-control, #bookingModal .form-select {
  border: 1.5px solid #d0dce8;
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'Open Sans', sans-serif;
}
#bookingModal .form-control:focus, #bookingModal .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244,168,17,.18);
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  padding: 60px 0 0;
  font-size: .92rem;
}
.footer h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.footer ul li a {
  color: rgba(255,255,255,.75);
  transition: color .2s;
  font-size: .9rem;
}
.footer ul li a:hover { color: var(--gold); }
.footer .footer-gold-divider {
  width: 42px; height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  margin-top: 40px;
  font-size: .83rem;
  color: rgba(255,255,255,.55);
}
.footer .footer-bottom span { color: var(--gold); }
.footer .social-links a {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.75);
  margin-right: 8px;
  transition: all .2s;
  font-size: .9rem;
}
.footer .social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* ── Fade-up animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #0d3a5e 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 60px solid rgba(244,168,17,.08);
}

/* ── About page hero ── */
.page-hero {
  background: linear-gradient(120deg, var(--navy) 60%, #0d3a5e 100%);
  padding: 100px 0 70px;
  color: #fff;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
}
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.7); }
.page-hero .breadcrumb-item.active { color: var(--gold); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── Map embed ── */
.map-container { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 32px rgba(11,44,74,.12); }

/* ── Form enquiry ── */
.enquiry-form .form-control, .enquiry-form .form-select {
  border: 1.5px solid #d0dce8;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Open Sans', sans-serif;
}
.enquiry-form .form-control:focus, .enquiry-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244,168,17,.15);
}
.enquiry-form label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-padded { padding: 60px 0; }
  .hero-stats { gap: 22px; }
  .hero-section { min-height: 90vh; }
  .float-btn-call { bottom: 88px; }
  .float-btn-wa   { bottom: 24px; }
}


.btn-call {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  border-radius: 50px;
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 18px rgba(34,197,94,0.35);
  transition: all 0.3s ease;
}

.btn-call i {
  font-size: 0.9rem;
}

.btn-call:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 28px rgba(34,197,94,0.55);
  color: #fff;
}
