/* =====================================================================
   Greek Style Yachting - Main Stylesheet
   Frontend CSS - app.css
   ===================================================================== */

/* ===================== CSS VARIABLES ===================== */
:root {
  --navy:      #002b54;
  --ocean:     #7bbdd3;
  --gold:      #1a87c2;
  --gold-dark: #1275aa;
  --sand:      #edf5fa;
  --dark:      #001630;
  --light-bg:  #f0f7fc;
}

/* ===================== BASE ===================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  color: #2c2c2c;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; }
img { max-width: 100%; height: auto; }

/* ===================== UTILITIES ===================== */
.text-gold   { color: var(--gold) !important; }
.bg-navy     { background-color: var(--navy) !important; }
.bg-sand     { background-color: var(--sand) !important; }
.bg-dark-sea { background-color: var(--dark) !important; }
.py-6        { padding-top: 5rem !important; padding-bottom: 5rem !important; }

.btn-gold {
  background-color: var(--gold);
  border-color: var(--gold);
  color: #fff;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: none;
  transition: background .25s, border-color .25s, transform .2s;
}
.btn-gold:hover, .btn-gold:focus {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
  transform: translateY(-1px);
}
.btn-navy {
  background-color: var(--navy);
  border-color: var(--navy);
  color: #fff;
  font-weight: 600;
  letter-spacing: .8px;
}
.btn-navy:hover {
  background-color: #0a2347;
  border-color: #0a2347;
  color: #fff;
}

.section-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: .5rem;
}
.divider {
  width: 50px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: .75rem auto 0;
}
.divider-left { margin-left: 0; }

/* ===================== NAVBAR ===================== */
.navbar-custom {
  background: rgba(0,43,84, 0.97);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  transition: padding .3s, box-shadow .3s;
}
.navbar-custom.scrolled {
  padding: 8px 0;
  box-shadow: 0 3px 25px rgba(0,0,0,.35);
}
.navbar-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #fff !important;
  letter-spacing: .5px;
}
.navbar-brand-text span { color: var(--gold); }
.navbar-custom .nav-link {
  color: rgba(255,255,255,.82) !important;
  font-size: .88rem;
  letter-spacing: .3px;
  font-weight: 500;
  padding: 8px 14px !important;
  transition: color .2s;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active { color: var(--gold) !important; }
.navbar-toggler { border-color: rgba(255,255,255,.35); }
@media (max-width:991.98px) {
  .navbar-custom .navbar-collapse {
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
  }
}
.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");
}

/* Dropdown */
.navbar-custom .dropdown-menu {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: .5rem 0;
  margin-top: 8px;
  min-width: 200px;
}
.navbar-custom .dropdown-item {
  color: rgba(255,255,255,.78);
  font-size: .85rem;
  letter-spacing: .2px;
  padding: .55rem 1.2rem;
  transition: background .2s, color .2s;
}
.navbar-custom .dropdown-item:hover {
  background: rgba(26,135,194,.15);
  color: var(--gold);
}

/* Language switcher select */
.lang-select {
  cursor: pointer;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  color: #fff;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .4px;
  padding: .25rem .55rem;
  padding-right: 1.4rem;
  outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,.5)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .5rem center;
}
.lang-select:hover, .lang-select:focus {
  border-color: var(--gold);
  background-color: rgba(26,135,194,.25);
}
.lang-select option {
  background: #002b54;
  color: #fff;
}

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero {
  min-height: 52vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-top: 80px;
  padding-bottom: 3.5rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,43,84,.40) 0%,
    rgba(0,43,84,.55) 60%,
    rgba(0,20,50,.70) 100%
  );
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb-custom { font-size: .78rem; color: rgba(255,255,255,.88); }
.breadcrumb-custom a { color: rgba(255,255,255,.88); text-decoration: none; }
.breadcrumb-custom a:hover { color: var(--gold); }
.breadcrumb-custom .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.6); }
.breadcrumb-custom span { color: #fff; font-weight: 600; }

/* ===================== HERO (home) ===================== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,22,48,.92) 0%,
    rgba(0,43,84,.80) 40%,
    rgba(0,22,48,.55) 100%
  );
}
#hero .container { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,135,194,.18);
  border: 1px solid rgba(26,135,194,.55);
  color: #fff;
  font-size: .72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 1.6rem;
}
#hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  line-height: 1.12;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
#hero .hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.88);
  max-width: 520px;
  line-height: 1.7;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.45);
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.scroll-dot {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(1.1); }
}

/* ===================== STATS BAR ===================== */
#stats { background: var(--navy); }
.stat-item { padding: .5rem 0; }
.stat-item h3 {
  font-size: 2.1rem;
  font-family: 'Playfair Display', serif;
  color: #fff;
  margin-bottom: 0;
  font-weight: 700;
}
.stat-item p {
  font-size: .72rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin: 0;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.2);
  height: 44px;
  margin: auto;
}
@media (min-width: 768px) {
  .stat-item:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,.15);
  }
}

/* ===================== FEATURE CARDS ===================== */
.feature-card {
  border: none;
  border-radius: 18px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,43,84,.12) !important;
}
.feature-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, #1e5fa8 100%);
  font-size: 1.6rem;
  color: #fff;
  margin: 0 auto 1.2rem;
  flex-shrink: 0;
}

/* ===================== DESTINATIONS CARDS ===================== */
.dest-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 290px;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.dest-card:hover img { transform: scale(1.07); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,22,48,.97) 0%, rgba(0,43,84,.65) 50%, rgba(0,22,48,.15) 80%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
}
.dest-overlay .dest-tag {
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
  text-shadow: 0 1px 6px rgba(0,0,0,.7);
}
.dest-overlay h5 {
  color: #fff;
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.dest-arrow {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .9rem;
  opacity: 0;
  transition: opacity .3s;
}
.dest-card:hover .dest-arrow { opacity: 1; }

/* Island grid cards (destination detail pages) */
.island-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  height: 200px;
  display: block;
  text-decoration: none;
}
.island-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.island-card:hover img { transform: scale(1.1); }
button.island-card { border: 0; padding: 0; background: none; cursor: pointer; width: 100%; }

/* Island destination modals */
.modal-body p.text-muted { font-size: .855rem; line-height: 1.8; }
.modal-body { padding: 1.5rem 2rem; }

.island-card-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,43,84,.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: .9rem 1rem;
}
.island-card-body h6 {
  color: #fff;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

/* ===================== FLEET CARDS ===================== */
.fleet-card {
  border: 2px solid #e8edf5;
  border-radius: 14px;
  padding: 1.8rem 1.2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  background: #fff;
}
.fleet-card:hover {
  border-color: var(--ocean);
  box-shadow: 0 10px 32px rgba(21,101,192,.14);
  transform: translateY(-4px);
}
.fleet-icon {
  font-size: 2.4rem;
  color: var(--ocean);
  margin-bottom: .9rem;
  display: block;
}

/* Fleet image cards (fleet pages) */
.fleet-img-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 320px;
}
.fleet-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.fleet-img-card:hover img { transform: scale(1.05); }
.fleet-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,43,84,.88) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.8rem;
}

/* ===================== SEARCH FORM ===================== */
.search-bar {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  padding: 2rem 2.5rem;
  backdrop-filter: blur(12px);
}
.search-bar .form-control,
.search-bar .form-select {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  border-radius: 10px;
  padding: .75rem 1rem;
  font-size: .9rem;
}
.search-bar .form-control::placeholder { color: rgba(255,255,255,.55); }
.search-bar .form-control:focus,
.search-bar .form-select:focus {
  background: rgba(255,255,255,.15);
  border-color: var(--gold);
  box-shadow: 0 0 0 .2rem rgba(26,135,194,.25);
  color: #fff;
}
.search-bar .form-select option { background: var(--navy); color: #fff; }
.search-bar label { color: rgba(255,255,255,.7); font-size: .78rem; letter-spacing: 1.2px; text-transform: uppercase; font-weight: 600; }

/* ===================== PRESS / TESTIMONIALS ===================== */
.press-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 2rem 2.2rem;
  transition: background .3s;
}
.press-card:hover { background: rgba(255,255,255,.13); }
.press-card-logo { min-height: 54px; display: flex; align-items: center; justify-content: center; }
.press-card-img-card { padding: 0; overflow: hidden; }
.press-card-img-card .press-card-featured { height: 140px; overflow: hidden; }
.press-card-img-card .press-card-featured img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.press-card-img-card:hover .press-card-featured img { transform: scale(1.05); }
.press-card-img-card .press-card-body { padding: 1.4rem 1.8rem 1.6rem; }
.press-source {
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: .7rem;
}
.press-quote {
  font-style: italic;
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

/* Press feature cards (press page) */
.press-feature-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,43,84,.07);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.press-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,43,84,.13);
}
.press-feature-img-wrap {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.2rem 2rem;
  min-height: 130px;
}
.press-feature-logo {
  max-height: 70px;
  max-width: 220px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.press-feature-img-wide {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}
.press-feature-body {
  padding: 1.8rem;
}
.press-pub-tag {
  display: inline-block;
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: .75rem;
}
.press-feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .85rem;
  line-height: 1.4;
}
.press-feature-text {
  font-size: .9rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--ocean);
  border-color: var(--ocean);
  color: #fff;
}

/* ===================== CONTACT ===================== */
.contact-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,43,84,.07);
  padding: 2rem 1.8rem;
  height: 100%;
}
.contact-card h5 {
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
.contact-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(26,135,194,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.phone-link {
  color: var(--navy);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 600;
  transition: color .2s;
}
.phone-link:hover { color: var(--ocean); }
.form-control, .form-select {
  border-radius: 10px;
  border-color: #dce3f0;
  font-size: .9rem;
  padding: .6rem 1rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 .2rem rgba(21,101,192,.15);
}

/* ===================== FAQ ACCORDION ===================== */
.accordion-item {
  border: 1px solid #e4eaf4;
  border-radius: 12px !important;
  margin-bottom: .75rem;
  overflow: hidden;
}
.accordion-button {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  font-size: .95rem;
  padding: 1.2rem 1.5rem;
  border-radius: 12px !important;
}
.accordion-button:not(.collapsed) {
  color: var(--gold);
  background: #fff;
  box-shadow: none;
}
.accordion-button::after {
  filter: invert(0);
}
.accordion-button:not(.collapsed)::after {
  filter: invert(65%) sepia(60%) saturate(800%) hue-rotate(10deg);
}
.accordion-body {
  color: #555;
  line-height: 1.75;
  font-size: .92rem;
  padding: 0 1.5rem 1.4rem;
}

/* ===================== ABOUT PAGE ===================== */
.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.about-img-wrap img { border-radius: 20px; }
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(26,135,194,.4);
}
.about-badge-float .big { font-size: 2rem; line-height: 1; }
.about-badge-float .small { font-size: .65rem; letter-spacing: 1.5px; text-transform: uppercase; }

.team-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,43,84,.13);
}
.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, #1e5fa8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
}

/* ===================== ITINERARIES ===================== */
.itinerary-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  height: 380px;
  display: block;
  text-decoration: none;
}
.itinerary-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.itinerary-card:hover img { transform: scale(1.07); }
.itinerary-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,25,46,.9) 0%, rgba(7,25,46,.3) 50%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.itinerary-tag {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  background: #fff;
  color: #012c54;
  font-size: .62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 13px;
  border: 2px solid #012c54;
  border-radius: 50px;
  display: inline-block;
  z-index: 1;
}
.itinerary-overlay h4 {
  color: #fff;
  margin: 0 0 .4rem;
  font-size: 1.5rem;
}
.itinerary-overlay p { color: rgba(255,255,255,.72); font-size: .85rem; margin: 0; }

/* ===================== ITINERARY TABLE ===================== */
.itinerary-table thead th {
  font-size: .75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  padding-top: .85rem;
  padding-bottom: .85rem;
  border-bottom: 2px solid rgba(0,43,84,.12);
}
.itinerary-table tbody tr td {
  vertical-align: middle;
  padding-top: .65rem;
  padding-bottom: .65rem;
  font-size: .88rem;
  border-color: rgba(0,0,0,.05);
}
.itinerary-table tfoot td {
  padding-top: .7rem;
  padding-bottom: .7rem;
  font-size: .88rem;
  border-top: 2px solid rgba(0,43,84,.12);
}
.itinerary-table tbody tr:hover { background: var(--sand); }

/* ===================== FOOTER ===================== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.58);
  font-size: .84rem;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.5rem;
}
.footer-brand span { color: var(--gold); }
footer a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
footer a:hover { color: var(--gold); }
.footer-heading {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.1rem;
}
footer li { margin-bottom: .55rem; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  transition: background .25s, color .25s;
  font-size: 1.05rem;
}
.social-btn:hover { background: var(--gold); color: #fff; }

/* ===================== ANIMATIONS ===================== */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos-delay="100"] { transition-delay: .1s; }
[data-aos-delay="200"] { transition-delay: .2s; }
[data-aos-delay="300"] { transition-delay: .3s; }
[data-aos-delay="400"] { transition-delay: .4s; }
[data-aos-delay="500"] { transition-delay: .5s; }

/* ===================== TAWK.TO CUSTOM MOBILE BUTTON ===================== */
#tawk-mobile-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 54px;
  height: 54px;
  background: var(--gold);
  color: #fff !important;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 9998;
  box-shadow: 0 4px 20px rgba(0,0,0,.28);
  text-decoration: none !important;
  transition: background .2s, transform .2s;
}
#tawk-mobile-btn:hover { background: var(--gold-dark); transform: scale(1.08); color: #fff !important; }
@media (min-width: 768px) { #tawk-mobile-btn { display: none !important; } }

/* ===================== MISC ===================== */
.section-bg-pattern {
  background-color: var(--sand);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.card-hover-lift {
  transition: transform .3s ease, box-shadow .3s ease;
}
.card-hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,43,84,.12) !important;
}

/* ===================== RESPONSIVE TWEAKS ===================== */
/* ===================== FAQ EXTRAS ===================== */
.faq-accordion .accordion-button {
  gap: 1rem;
  align-items: flex-start;
}
.faq-num {
  flex-shrink: 0;
  font-size: .7rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(26,135,194,.12);
  border-radius: 6px;
  padding: .15rem .45rem;
  margin-top: .1rem;
  letter-spacing: 1px;
}
.faq-list {
  margin-top: .5rem;
  padding-left: 1.2rem;
}
.faq-list li { margin-bottom: .4rem; }
.faq-notes {
  background: var(--sand);
  border-left: 4px solid var(--ocean);
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  font-size: .85rem;
  color: #555;
}
.faq-notes ul { padding-left: 1.2rem; margin-bottom: 0; }
.faq-notes li { margin-bottom: .35rem; }

@media (max-width: 767.98px) {
  .hero-lead   { font-size: 1rem; }
  .dest-card   { height: 230px; }
  .stat-divider { display: none; }
  .page-hero   { min-height: 56vh; align-items: center; justify-content: center; text-align: center; padding-top: 90px; }
  .search-bar  { padding: 1.5rem 1.2rem; }
}
