/* ==========================================================================
   Puri Tour And Travels — Puri, Odisha
   Global stylesheet
   Palette: Deep Teal #00695C · Emerald #00897B · Warm Gold #D4A017
            Dark Navy #102A43 · Light #F7FAF9
   ========================================================================== */

:root {
  --teal: #00695C;
  --teal-dark: #004d40;
  --emerald: #00897B;
  --gold: #D4A017;
  --gold-soft: #f3e2b3;
  --navy: #102A43;
  --light: #F7FAF9;
  --ink: #33404f;
  --muted: #62707e;
  --white: #ffffff;
  --whatsapp: #1ebe5d;
  --radius: 1rem;
  --shadow-sm: 0 2px 10px rgba(16, 42, 67, 0.08);
  --shadow-md: 0 10px 30px rgba(16, 42, 67, 0.12);
  --shadow-lg: 0 18px 50px rgba(16, 42, 67, 0.18);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--teal-dark);
}

/* Visible focus state for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 1rem;
}

.section-pad {
  padding: 5rem 0;
}

.section-pad-sm {
  padding: 3.5rem 0;
}

.bg-soft {
  background-color: var(--light);
}

.text-muted-2 {
  color: var(--muted);
}

/* Konark-wheel divider */
.wheel-divider {
  display: block;
  margin: 0 auto 1rem;
  width: 54px;
  height: 54px;
  opacity: 0.9;
}

/* ---------- Buttons ---------- */
.btn {
  font-weight: 600;
  border-radius: 50rem;
  padding: 0.7rem 1.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-teal {
  background-color: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.btn-teal:hover,
.btn-teal:focus {
  background-color: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

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

.btn-gold:hover,
.btn-gold:focus {
  background-color: #c19214;
  border-color: #c19214;
  color: var(--navy);
  box-shadow: var(--shadow-md);
}

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

.btn-outline-light-2:hover,
.btn-outline-light-2:focus {
  background-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  border-color: var(--whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background-color: #17a74f;
  border-color: #17a74f;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-outline-teal {
  border: 2px solid var(--teal);
  color: var(--teal);
  background: transparent;
}

.btn-outline-teal:hover,
.btn-outline-teal:focus {
  background-color: var(--teal);
  color: var(--white);
}

.btn-sm-pill {
  padding: 0.45rem 1.1rem;
  font-size: 0.9rem;
}

/* ==========================================================================
   Header
   ========================================================================== */
.navbar-main {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 0.9rem 0;
  transition: padding 0.25s ease, box-shadow 0.25s ease;
}

.navbar-main.navbar-shrink {
  padding: 0.35rem 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy) !important;
  line-height: 1.1;
}

.navbar-brand .brand-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

.navbar-brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald);
}

.navbar-main .nav-link {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--navy);
  padding: 0.55rem 0.7rem !important;
  position: relative;
}

.navbar-main .nav-link::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.2rem;
  height: 2px;
  background-color: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-main .nav-link.active {
  color: var(--teal);
  font-weight: 600;
}

.navbar-call {
  white-space: nowrap;
}

.navbar-toggler {
  border: none;
  padding: 0.4rem 0.55rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px var(--gold-soft);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background-color: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 77, 64, 0.92) 0%, rgba(0, 105, 92, 0.75) 45%, rgba(16, 42, 67, 0.55) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 7rem 0 9rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 800;
  max-width: 720px;
}

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

.hero-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
  font-weight: 300;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  border-radius: 50rem;
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  backdrop-filter: blur(4px);
}

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

.hero-cta .btn {
  margin: 0.25rem 0.4rem 0.25rem 0;
}

/* Inner-page banner (smaller hero) */
.page-banner {
  position: relative;
  color: var(--white);
  background-color: var(--navy);
  overflow: hidden;
}

.page-banner .hero-bg {
  opacity: 0.4;
}

.page-banner .hero-overlay {
  background: linear-gradient(100deg, rgba(0, 77, 64, 0.95), rgba(16, 42, 67, 0.75));
}

.page-banner-inner {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 4.5rem;
}

.page-banner h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
}

.page-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin-bottom: 0;
}

/* Breadcrumb */
.breadcrumb-custom {
  background: transparent;
  padding: 0;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
}

.breadcrumb-custom .breadcrumb-item a {
  color: var(--gold-soft);
}

.breadcrumb-custom .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.55);
}

/* ==========================================================================
   Quick enquiry form
   ========================================================================== */
.enquiry-wrap {
  position: relative;
  z-index: 3;
  margin-top: -5.5rem;
}

.enquiry-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  border-top: 5px solid var(--gold);
}

.enquiry-card h2 {
  font-size: 1.5rem;
}

.form-label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--navy);
}

.form-control,
.form-select {
  border-radius: 0.6rem;
  border: 1px solid #d4dde3;
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 0.2rem rgba(0, 137, 123, 0.15);
}

.form-success {
  display: none;
  background: #e9f7ef;
  border: 1px solid #b7e4c7;
  color: #1b5e3a;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
}

/* ==========================================================================
   Cards
   ========================================================================== */
.card-tour {
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: var(--white);
}

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

.card-tour .card-img-top {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.card-tour .card-body {
  padding: 1.4rem;
}

.card-tour .card-title {
  font-size: 1.25rem;
}

.duration-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  background: rgba(0, 105, 92, 0.08);
  border-radius: 50rem;
  padding: 0.3rem 0.8rem;
  margin-bottom: 0.6rem;
}

.quote-note {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Destination / sightseeing cards */
.card-place {
  position: relative;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: var(--white);
}

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

.card-place img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
}

.card-place .place-body {
  padding: 1.25rem 1.4rem 1.5rem;
}

.card-place h3 {
  font-size: 1.2rem;
}

/* Odisha destination overlay cards */
.card-dest {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  height: 100%;
  min-height: 260px;
  box-shadow: var(--shadow-sm);
}

.card-dest img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card-dest:hover img {
  transform: scale(1.06);
}

.card-dest .dest-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1.25rem 1.1rem;
  background: linear-gradient(to top, rgba(16, 42, 67, 0.9), transparent);
  color: var(--white);
}

.card-dest .dest-label h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.1rem;
}

.card-dest .dest-label span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Vehicle cards */
.card-vehicle {
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.card-vehicle img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.card-vehicle .vehicle-body {
  padding: 1.25rem;
}

.card-vehicle h3 {
  font-size: 1.15rem;
}

/* Why choose us */
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.9rem 1.5rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gold);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--emerald));
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.12rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* How it works */
.steps {
  position: relative;
}

.step-item {
  text-align: center;
  padding: 0 0.75rem;
  position: relative;
}

.step-number {
  width: 74px;
  height: 74px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
  background: var(--white);
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
}

.step-item h3 {
  font-size: 1.1rem;
}

.step-item p {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (min-width: 992px) {
  .steps::before {
    content: "";
    position: absolute;
    top: 37px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--gold) 0 10px, transparent 10px 20px);
    z-index: 1;
  }
}

/* Reviews placeholder */
.review-placeholder {
  border: 2px dashed #b9c8cf;
  border-radius: var(--radius);
  padding: 2.2rem 1.6rem;
  text-align: center;
  background: var(--white);
  height: 100%;
}

.review-placeholder .g-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  font-size: 1.7rem;
  color: var(--teal);
  margin-bottom: 1rem;
}

.review-placeholder h3 {
  font-size: 1.15rem;
}

.review-placeholder p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* About */
.about-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.about-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-check li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.6rem;
  font-weight: 500;
  color: var(--navy);
}

.about-check i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

/* FAQ */
.accordion-item {
  border: none;
  border-radius: 0.8rem !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.9rem;
}

.accordion-button {
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  padding: 1.1rem 1.4rem;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(0, 105, 92, 0.07);
  color: var(--teal);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(212, 160, 23, 0.25);
  border-color: var(--gold);
}

.accordion-body {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Final CTA */
.cta-final {
  position: relative;
  background: linear-gradient(115deg, var(--teal-dark), var(--teal) 55%, var(--navy));
  color: var(--white);
  border-radius: calc(var(--radius) * 1.4);
  overflow: hidden;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-final::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 26px solid rgba(212, 160, 23, 0.18);
}

.cta-final::after {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 20px solid rgba(255, 255, 255, 0.08);
}

.cta-final h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.cta-final p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  margin: 0 auto 1.6rem;
}

.cta-final .cta-actions {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Package detail pages
   ========================================================================== */
.toc-card,
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.8rem;
  height: 100%;
}

.info-card h2,
.info-card h3 {
  font-size: 1.3rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.55rem;
  color: var(--ink);
}

.check-list i {
  color: var(--emerald);
  margin-top: 0.25rem;
}

.cross-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cross-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.55rem;
  color: var(--muted);
}

.cross-list i {
  color: #c0532f;
  margin-top: 0.25rem;
}

.note-box {
  background: #fdf6e3;
  border-left: 4px solid var(--gold);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  color: #6b5a1e;
}

.itinerary-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.itinerary-time {
  flex: 0 0 86px;
  font-weight: 600;
  color: var(--teal);
  font-size: 0.9rem;
  padding-top: 0.1rem;
}

.itinerary-body {
  border-left: 2px solid rgba(0, 137, 123, 0.3);
  padding-left: 1.1rem;
}

.itinerary-body h4 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.itinerary-body p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* Sidebar enquiry (package pages) */
.sidebar-sticky {
  position: sticky;
  top: 110px;
}

/* ==========================================================================
   Blog
   ========================================================================== */
.card-blog {
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: var(--white);
}

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

.card-blog img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.card-blog .blog-body {
  padding: 1.4rem;
}

.blog-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(0, 137, 123, 0.1);
  border-radius: 50rem;
  padding: 0.25rem 0.8rem;
  margin-bottom: 0.7rem;
}

.article-body h2 {
  font-size: 1.55rem;
  margin: 2.2rem 0 0.8rem;
}

.article-body h3 {
  font-size: 1.2rem;
  margin: 1.6rem 0 0.6rem;
}

.article-body p,
.article-body li {
  color: var(--ink);
  font-size: 1rem;
}

.article-body ul {
  padding-left: 1.2rem;
}

.article-meta {
  color: var(--muted);
  font-size: 0.88rem;
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.8rem 1.5rem;
  height: 100%;
  text-align: center;
}

.contact-info-card .ci-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 105, 92, 0.1);
  color: var(--teal);
  font-size: 1.5rem;
  margin-bottom: 0.9rem;
}

.map-embed {
  border: 0;
  width: 100%;
  min-height: 380px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 0;
  font-size: 0.93rem;
}

.footer h2,
.footer h3,
.footer h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
}

.footer .brand-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer .brand-line img {
  width: 42px;
  height: 42px;
}

.footer .brand-line span {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--white);
  font-size: 1.2rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.78);
}

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

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links i {
  color: var(--gold);
  font-size: 0.75rem;
  margin-right: 0.45rem;
}

.footer-contact li {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 2.5rem;
  padding: 1.2rem 0;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1050;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(30, 190, 93, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(30, 190, 93, 0.6);
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(30, 190, 93, 0.5);
  animation: wa-pulse 2.4s ease-out infinite;
}

@keyframes wa-pulse {
  0% { transform: scale(0.9); opacity: 0.9; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ==========================================================================
   Scroll reveal animations (subtle)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .whatsapp-float::after {
    animation: none;
    display: none;
  }
  .card-tour:hover,
  .card-place:hover,
  .card-vehicle:hover,
  .card-blog:hover,
  .feature-card:hover {
    transform: none;
  }
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Responsive tweaks
   ========================================================================== */
@media (max-width: 991.98px) {
  .navbar-main .navbar-collapse {
    padding: 0.75rem 0 1rem;
  }
  .navbar-call {
    margin-top: 0.6rem;
  }
  .section-pad {
    padding: 3.5rem 0;
  }
  .hero {
    min-height: auto;
  }
  .hero-inner {
    padding: 5.5rem 0 8rem;
  }
}

@media (max-width: 575.98px) {
  .enquiry-card {
    padding: 1.4rem;
  }
  .hero-cta .btn {
    width: 100%;
    margin-right: 0;
  }
  .cta-final {
    padding: 3rem 1.25rem;
  }
  .cta-final .btn {
    width: 100%;
    margin-bottom: 0.6rem;
  }
  .itinerary-time {
    flex: 0 0 66px;
    font-size: 0.8rem;
  }
}
