﻿:root {
  --brand-primary: #00a4db;
  --brand-primary-dark: #007aa3;
  --brand-ink: #0c1f34;
  --brand-accent: #ffd166;
  --surface: #f4f8fb;
  --surface-2: #e8f2f8;
  --text: #23384d;
  --muted: #607286;
  --card-shadow: 0 14px 40px rgba(12, 31, 52, 0.11);
}

* { box-sizing: border-box; }

html, body { overflow-x: hidden; }

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(160deg, #f8fcff 0%, #f2f7fb 45%, #f8fbff 100%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  color: var(--brand-ink);
}

a { text-decoration: none; }

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

.section-kicker {
  display: inline-block;
  font-weight: 800;
  color: var(--brand-primary-dark);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.section-head h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); }
.section-head p { max-width: 720px; margin: 0 auto; color: var(--muted); }

.section-head h2 {
  position: relative;
  display: inline-block;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd166, #00a4db);
}

.site-header {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 122, 163, 0.1);
  transition: all 0.35s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(0, 122, 163, 0.13);
}

.brand-logo { height: 48px; width: auto; }

.navbar .nav-link {
  color: #29445d;
  font-weight: 600;
  font-size: 0.95rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--brand-primary-dark);
}

.btn-brand {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
  border: 0;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.7rem 1.35rem;
}

.btn-brand:hover { color: #fff; opacity: 0.95; }

.btn-outline-brand {
  border: 1px solid rgba(0, 122, 163, 0.35);
  color: var(--brand-primary-dark);
  border-radius: 999px;
  padding: 0.7rem 1.35rem;
  font-weight: 700;
}

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

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 70px;
  background: radial-gradient(circle at 85% 10%, rgba(0, 164, 219, 0.22), transparent 40%), radial-gradient(circle at 15% 20%, rgba(255, 209, 102, 0.18), transparent 35%);
}

.trust-strip {
  margin-top: -36px;
  position: relative;
  z-index: 5;
  padding-bottom: 8px;
}

.trust-item {
  background: #fff;
  border: 1px solid #d7ebf6;
  border-radius: 14px;
  padding: 0.95rem;
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-item i {
  font-size: 1.1rem;
  color: #0b84b3;
}

.trust-item h6 {
  margin-bottom: 0.2rem;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.trust-item p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(12, 31, 52, 0.14);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  animation: floaty 7s ease-in-out infinite alternate;
}

.hero-shape-1 {
  width: 360px;
  height: 360px;
  background: rgba(0, 164, 219, 0.09);
  right: -100px;
  top: 120px;
}

.hero-shape-2 {
  width: 270px;
  height: 270px;
  background: rgba(255, 209, 102, 0.2);
  left: -90px;
  bottom: 40px;
}

.tag-pill {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #e9f8ff;
  color: #0a5f80;
  font-weight: 700;
  margin-bottom: 0.9rem;
  font-size: 0.82rem;
}

.hero-section h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-text {
  color: #3c546e;
  max-width: 690px;
  font-size: 1.05rem;
}

.metric-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: 1rem;
  height: 100%;
}

.metric-box h3 {
  margin: 0;
  font-size: 1.85rem;
  color: var(--brand-primary-dark);
}

.metric-box p { margin: 0.2rem 0 0; color: var(--muted); font-size: 0.9rem; }

.glass-card {
  border-radius: 22px;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--card-shadow);
}

.timeline-mini div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-size: 0.92rem;
  color: #2c455f;
}

.timeline-mini span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: #e0f4fc;
  color: #066286;
}

.mini-kpi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-kpi div {
  background: #f5fbff;
  border-radius: 12px;
  padding: 0.7rem;
  text-align: center;
}

.mini-kpi strong {
  display: block;
  font-size: 1.25rem;
  color: var(--brand-ink);
}

.mini-kpi small { color: var(--muted); }

.about-section { background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%); }

.photo-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 14px;
}

.photo-box {
  border-radius: 16px;
  min-height: 170px;
  box-shadow: var(--card-shadow);
}

.p1 { background: linear-gradient(150deg, #4cb9df, #0d7faa); }
.p2 { background: linear-gradient(150deg, #ffc857, #f29f05); transform: translateY(26px); }
.p3 { background: linear-gradient(150deg, #4fb286, #2a9071); grid-column: 1 / span 2; }

.icon-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  padding: 1rem;
  height: 100%;
}

.icon-card,
.process-card,
.dest-card,
.quote-card,
.package-card,
.info-panel,
.contact-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.icon-card:hover,
.process-card:hover,
.dest-card:hover,
.quote-card:hover,
.info-panel:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(12, 31, 52, 0.15);
}

.icon-card i {
  font-size: 1.35rem;
  color: var(--brand-primary-dark);
}

.icon-card h6 { margin: 0.65rem 0 0.5rem; }
.icon-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.services-section { background: var(--surface); }

.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  padding: 1.25rem;
  height: 100%;
  transition: transform 0.25s ease;
}

.service-card:hover { transform: translateY(-6px); }

.service-card i { font-size: 1.45rem; color: #0b7ca6; }
.service-card h5 { margin: 0.7rem 0; }
.service-card p { color: var(--muted); margin-bottom: 0.65rem; }
.service-card ul { padding-left: 1rem; margin-bottom: 0; }
.service-card li { margin: 0.3rem 0; color: #3b536d; }

.experience-section { background: #fff; }

.progress-wrap .prog-item { margin-bottom: 1rem; }
.progress {
  background: #dceaf4;
  border-radius: 999px;
  height: 10px;
}

.progress-bar {
  background: linear-gradient(135deg, #0ea5d8, #066d95);
  border-radius: 999px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 12px;
}

.dest-card {
  background: linear-gradient(165deg, #ffffff, #ecf7fd);
  border: 1px solid #d4eaf6;
  border-radius: 14px;
  padding: 0.95rem;
}

.dest-card h6 { margin-bottom: 0.35rem; }
.dest-card p { margin: 0; color: var(--muted); font-size: 0.88rem; }

.process-section { background: var(--surface-2); }

.process-card {
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--card-shadow);
  height: 100%;
  border-top: 3px solid #47b4dc;
}

.process-card span {
  display: inline-block;
  font-weight: 800;
  color: #066286;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

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

.packages-section { background: #fff; }

.package-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #d6ebf6;
  padding: 1.35rem;
  box-shadow: var(--card-shadow);
  height: 100%;
  position: relative;
}

.package-card h5 {
  color: #0a6f98;
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.84rem;
  margin-bottom: 0.4rem;
}

.package-card h3 { margin-bottom: 0.5rem; }
.package-card p { color: var(--muted); }
.package-card ul { margin: 0 0 1rem; padding-left: 1rem; }
.package-card li { margin: 0.35rem 0; }

.package-card.featured {
  background: linear-gradient(160deg, #083d54 0%, #0a5b7c 100%);
  color: #fff;
  border-color: transparent;
}

.package-card.featured h5,
.package-card.featured h3,
.package-card.featured p,
.package-card.featured li {
  color: #fff;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(12, 31, 52, 0.16);
}

.recommended {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--brand-accent);
  color: #5a3e00;
  font-weight: 800;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

.testimonial-section { background: var(--surface); }

.quote-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: 1.15rem;
  border-left: 4px solid #0ba0d3;
  height: 100%;
}

.quote-card p { font-style: italic; color: #34516d; }
.quote-card h6 { margin: 0.6rem 0 0.15rem; }
.quote-card small { color: var(--muted); }

.faq-section { background: #fff; }

.custom-accordion .accordion-item {
  border: 1px solid #d6ebf6;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}

.custom-accordion .accordion-button {
  background: #f4fbff;
  font-weight: 700;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: #055e82;
  background: #dff2fb;
}

.cta-section {
  padding: 30px 0 90px;
  background: linear-gradient(180deg, #ffffff 0%, #eef8fc 100%);
}

.cta-panel {
  background: linear-gradient(135deg, #0a5a7a 0%, #008ec4 55%, #42c0e7 100%);
  color: #fff;
  border-radius: 24px;
  padding: clamp(1.4rem, 4vw, 3rem);
  text-align: center;
  box-shadow: 0 18px 50px rgba(8, 74, 100, 0.25);
}

.cta-panel h2,
.cta-panel p { color: #fff; }

.cta-panel p {
  max-width: 780px;
  margin: 0.6rem auto 1.2rem;
}

.site-footer {
  background: #0d2236;
  color: #d7e7f4;
  padding: 70px 0 28px;
}

.footer-logo { height: 52px; width: auto; }
.site-footer h6 { color: #fff; margin-bottom: 0.9rem; font-family: "Manrope", sans-serif; font-weight: 700; }
.site-footer p { color: #c6d5e2; }

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

.footer-list li,
.footer-list a {
  color: #c2d6e8;
  margin-bottom: 0.55rem;
  display: block;
}

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

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  color: #bdd2e3;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b89ba;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 99;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

@keyframes floaty {
  from { transform: translateY(0px); }
  to { transform: translateY(14px); }
}

@media (max-width: 991px) {
  .section-space { padding: 72px 0; }
  .hero-section { min-height: auto; }
  .navbar .nav-link { padding-left: 0; }
  .navbar-collapse { background: #fff; border-radius: 10px; padding: 10px 12px; margin-top: 8px; }
}

@media (max-width: 767px) {
  .brand-logo { height: 42px; }
  .destination-grid { grid-template-columns: 1fr; }
  .mini-kpi { grid-template-columns: 1fr; }
  .hero-metrics .col-sm-4 { width: 50%; }
}

@media (max-width: 575px) {
  .hero-metrics .col-sm-4 { width: 100%; }
}

.inner-hero {
  position: relative;
  padding: 145px 0 80px;
  background: linear-gradient(130deg, #0f3850 0%, #0f6387 50%, #1f9ecb 100%);
  overflow: hidden;
}

.inner-hero::before,
.inner-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}

.inner-hero::before {
  width: 320px;
  height: 320px;
  right: -110px;
  top: -50px;
  background: #8edcf4;
}

.inner-hero::after {
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -110px;
  background: #ffd166;
}

.inner-hero h1,
.inner-hero p,
.inner-hero .breadcrumb-item,
.inner-hero .breadcrumb-item a {
  color: #fff;
}

.breadcrumb {
  margin-bottom: 1rem;
}

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

.info-panel {
  background: #fff;
  border: 1px solid #d7ebf6;
  border-radius: 16px;
  padding: 1.15rem;
  box-shadow: var(--card-shadow);
  height: 100%;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 14px;
}

.stat-item {
  background: linear-gradient(165deg, #ffffff, #eef8fd);
  border: 1px solid #d8ecf7;
  border-radius: 14px;
  text-align: center;
  padding: 1rem;
}

.stat-item h4 {
  margin: 0;
  color: var(--brand-primary-dark);
}

.stat-item p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.timeline-list {
  border-left: 3px solid #bde3f4;
  padding-left: 1rem;
}

.timeline-list .row-item {
  position: relative;
  margin-bottom: 1rem;
}

.timeline-list .row-item::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0d8fc1;
  position: absolute;
  left: -1.42rem;
  top: 6px;
}

.bg-mild {
  background: #f3f9fc;
}

.pricing-tag {
  display: inline-flex;
  background: #e7f6fd;
  color: #066a90;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.contact-card {
  background: #fff;
  border: 1px solid #d3e9f5;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: var(--card-shadow);
  height: auto;
}

.faq-sidecards,
.contact-info-stack {
  display: grid;
  gap: 14px;
}

@media (min-width: 992px) {
  .faq-sidecards,
  .contact-info-stack {
    position: sticky;
    top: 102px;
  }
}

.contact-card-emphasis {
  background: linear-gradient(145deg, #eef9ff 0%, #ffffff 100%);
  border-color: #bfe5f6;
}

.faq-sidecards .btn {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.contact-form {
  background: #fff;
  border: 1px solid #d3e9f5;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: var(--card-shadow);
}

.contact-form h4 {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid #c9e2ef;
  min-height: 48px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 164, 219, 0.15);
  border-color: #7ac9e7;
}

.ai-image-wrap {
  background: #ffffff;
  border: 1px solid #d2e8f4;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ai-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
}

.ai-image-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(12, 31, 52, 0.16);
}

.ai-image-wrap:hover img {
  transform: scale(1.03);
}

.photo-box.image-tile {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 190px;
}

.hero-art-img {
  max-height: 320px;
  object-fit: cover;
}

.commitments-stack {
  display: grid;
  gap: 14px;
}

.commitment-card {
  height: auto;
  border-left: 4px solid #33a9d6;
  padding: 1rem 1.1rem;
}

.commitment-card h5 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.commitment-card i {
  color: #0878a5;
}

.commitment-card:hover {
  transform: none;
  box-shadow: 0 14px 30px rgba(12, 31, 52, 0.12);
}

@media (max-width: 991px) {
  .inner-hero {
    padding: 120px 0 64px;
  }

  .stat-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .faq-sidecards,
  .contact-info-stack {
    margin-top: 6px;
  }

  .trust-strip {
    margin-top: 24px;
  }
}

@media (max-width: 575px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    padding: 0.85rem;
  }

  .section-head h2::after {
    width: 54px;
  }

  .commitments-stack {
    gap: 12px;
  }
}
