:root {
  --primary: #0b5ed7;
  --secondary: #4fc3f7;
  --accent: #ff9800;
  --ink: #0f172a;
  --muted: #5b6478;
  --line: rgba(15, 23, 42, 0.1);
  --paper: #ffffff;
  --surface: #f8fbff;
  --soft: #eef6ff;
  --shadow: 0 18px 50px rgba(11, 94, 215, 0.12);
  --shadow-lg: 0 30px 80px rgba(15, 23, 42, 0.18);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(79, 195, 247, 0.16), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 152, 0, 0.1), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 38%, #eef5ff 100%);
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-font {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.text-primary {
  color: var(--primary) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.bg-primary-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

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

.section-padding {
  padding: 90px 0;
}

.section-title {
  max-width: 760px;
}

.section-title .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(11, 94, 215, 0.08);
  color: var(--primary);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 30px rgba(11, 94, 215, 0.08);
}

.navbar-toggler {
  border: 1px solid rgba(11, 94, 215, 0.14);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(11, 94, 215, 0.08);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(11, 94, 215, 0.1);
}

.navbar-toggler-icon {
  width: 1.3em;
  height: 1.3em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%2815, 23, 42, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.3' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 12px 28px rgba(11, 94, 215, 0.25);
}

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-logo-header {
  height: 58px;
  max-width: min(250px, 68vw);
}

.brand-logo-footer {
  height: 72px;
  max-width: min(320px, 84vw);
  object-fit: contain;
}

.nav-link {
  font-weight: 600;
  color: #22304a !important;
}

.nav-link:hover,
.nav-link.active,
.dropdown-item.active,
.dropdown-item:active {
  color: var(--primary) !important;
}

.dropdown-menu {
  border: 0;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.85rem 1.35rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: 0;
  box-shadow: 0 14px 30px rgba(11, 94, 215, 0.22);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #ffb347);
  color: #fff;
  border: 0;
  box-shadow: 0 14px 30px rgba(255, 152, 0, 0.18);
}

.btn-outline-primary {
  border-color: rgba(11, 94, 215, 0.24);
  color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 90px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  z-index: 0;
}

.hero::before {
  width: 360px;
  height: 360px;
  background: rgba(79, 195, 247, 0.18);
  top: -120px;
  right: -80px;
}

.hero::after {
  width: 250px;
  height: 250px;
  background: rgba(255, 152, 0, 0.12);
  bottom: -100px;
  left: -90px;
}

.hero-card,
.info-card,
.feature-card,
.service-card,
.package-card,
.destination-card,
.testimonial-card,
.story-card,
.stat-card,
.contact-card,
.faq-card {
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-content,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(11, 94, 215, 0.08);
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.95;
}

.hero p {
  color: #4f5c72;
}

.hero-glass {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
}

.hero-image {
  border-radius: 30px;
  overflow: hidden;
  min-height: 540px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.hero-image img,
.media-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.floating-badge .icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.floating-badge.top-left {
  top: 22px;
  left: 22px;
}

.floating-badge.bottom-right {
  right: 22px;
  bottom: 22px;
}

.feature-card,
.service-card,
.destination-card,
.package-card,
.testimonial-card,
.story-card,
.contact-card,
.stat-card,
.faq-card {
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.feature-card:hover,
.service-card:hover,
.destination-card:hover,
.package-card:hover,
.testimonial-card:hover,
.story-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(15, 23, 42, 0.16);
}

.icon-bubble {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 14px 28px rgba(11, 94, 215, 0.2);
}

.section-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(11, 94, 215, 0.08);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
}

.image-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 240px;
  background: linear-gradient(135deg, rgba(11, 94, 215, 0.08), rgba(79, 195, 247, 0.15));
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(15, 23, 42, 0.55) 100%);
}

.image-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
}

.stat-card h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.3rem;
}

.stat-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.testimonial-card .stars {
  color: #f59e0b;
}

.testimonial-card blockquote {
  margin: 0;
  color: #344054;
}

.gallery-grid {
  column-count: 3;
  column-gap: 1.2rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  position: relative;
  cursor: zoom-in;
}

.gallery-item img {
  border-radius: 22px;
  width: 100%;
  display: block;
}

.gallery-overlay {
  position: absolute;
  inset: auto 16px 16px 16px;
  padding: 0.85rem 1rem;
  color: #fff;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: 200ms ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.filter-bar .btn {
  border-radius: 14px;
  padding-inline: 1rem;
}

.filter-bar .btn.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-color: transparent;
}

.package-card .price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.package-card ul {
  padding-left: 1.1rem;
  color: var(--muted);
}

.package-card .badge {
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
}

.page-hero {
  padding: 138px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(79, 195, 247, 0.22), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(255, 152, 0, 0.18), transparent 22%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  background: transparent;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(15, 23, 42, 0.5);
}

.timeline-card {
  position: relative;
  padding-left: 1.5rem;
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(255, 152, 0, 0.15);
}

.team-avatar {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(11, 94, 215, 0.16), rgba(79, 195, 247, 0.26));
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 1.75rem;
}

.contact-pill {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 94, 215, 0.08);
}

.contact-pill .mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.map-placeholder {
  min-height: 360px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(11, 94, 215, 0.82), rgba(79, 195, 247, 0.72)),
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.24), transparent 18%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.18), transparent 16%);
  color: #fff;
}

.back-to-top,
.floating-action {
  position: fixed;
  right: 22px;
  z-index: 1040;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
}

.back-to-top {
  bottom: 22px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 200ms ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-action {
  bottom: 90px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #fff;
}

.floating-action.whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  bottom: 154px;
}

.floating-action.call {
  background: linear-gradient(135deg, var(--accent), #ffb347);
}

.footer {
  background:
    linear-gradient(180deg, rgba(11, 21, 41, 0.98), rgba(7, 15, 28, 0.98)),
    radial-gradient(circle at top left, rgba(79, 195, 247, 0.08), transparent 24%);
  color: rgba(255, 255, 255, 0.9);
}

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

.footer a:hover {
  color: #fff;
}

.footer .brand-mark {
  box-shadow: none;
}

.footer .navbar-brand {
  align-items: center;
}

.footer .form-control,
.footer .form-select {
  border-radius: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

.accordion-item {
  border: 0;
  background: transparent;
  margin-bottom: 1rem;
}

.accordion-button {
  border-radius: 18px !important;
  box-shadow: none !important;
  background: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  color: var(--ink);
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(11, 94, 215, 0.08), rgba(79, 195, 247, 0.14));
  color: var(--primary);
}

.accordion-body {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0 0 18px 18px;
}

.form-control,
.form-select {
  border-radius: 16px;
  padding: 0.9rem 1rem;
  border-color: rgba(15, 23, 42, 0.12);
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(11, 94, 215, 0.45);
  box-shadow: 0 0 0 0.25rem rgba(11, 94, 215, 0.08);
}

.invalid-feedback {
  font-size: 0.875rem;
}

.lightbox-modal .modal-content {
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #0b1020;
  color: #fff;
}

.lightbox-modal .modal-body {
  padding: 0;
}

.lightbox-modal img {
  width: 100%;
  height: auto;
  display: block;
}

.page-note {
  color: var(--muted);
}

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

.mini-list li {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  color: #374151;
}

.mini-list .check {
  color: var(--accent);
  margin-top: 0.15rem;
}

.badge-soft {
  background: rgba(11, 94, 215, 0.08);
  color: var(--primary);
  font-weight: 700;
  border-radius: 999px;
}

@media (max-width: 991.98px) {
  .hero {
    padding-top: 120px;
  }

  .hero-image {
    min-height: 440px;
  }

  .gallery-grid {
    column-count: 2;
  }
}

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

  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 4.2rem);
  }

  .gallery-grid {
    column-count: 1;
  }

  .hero-image {
    min-height: 360px;
  }

  .floating-badge {
    position: static;
    margin-bottom: 0.8rem;
  }

  .brand-logo-header {
    height: 46px;
    max-width: min(190px, 72vw);
  }

  .brand-logo-footer {
    height: 56px;
    max-width: min(240px, 86vw);
  }
}
