:root {
  --ink: #102633;
  --muted: #5e7180;
  --sea: #0f8fb3;
  --sea-dark: #0a4d68;
  --amber: #f6b84b;
  --coral: #f07154;
  --mist: #eef7f8;
  --paper: #ffffff;
  --line: rgba(16, 38, 51, 0.12);
  --shadow: 0 24px 60px rgba(16, 38, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  overflow-x: hidden;
}

body:not(.aos-ready) [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.site-header {
  padding: 12px 0;
  transition: background 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease;
}

.site-header .navbar {
  padding: 0;
}

.site-header.is-scrolled,
.site-header:has(.navbar-collapse.show) {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(16, 38, 51, 0.12);
  backdrop-filter: blur(14px);
}

.navbar-brand img {
  width: 190px;
  height: auto;
}

.navbar-toggler {
  border: 0;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.92);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(15, 143, 179, 0.22);
}

.nav-link {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.65rem 0.8rem;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--sea-dark);
}

.btn {
  min-height: 46px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 800;
  border: 0;
}

.btn-call {
  color: #ffffff;
  background: var(--sea-dark);
  box-shadow: 0 14px 28px rgba(10, 77, 104, 0.24);
  padding: 0.72rem 1rem;
}

.btn-call:hover,
.btn-primary-cta:hover {
  color: #ffffff;
  background: #073c51;
  transform: translateY(-1px);
}

.btn-primary-cta {
  color: #ffffff;
  background: var(--sea-dark);
  box-shadow: 0 18px 32px rgba(10, 77, 104, 0.22);
  padding: 0.82rem 1.15rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-whatsapp {
  color: #10331f;
  background: #ffffff;
  border: 1px solid rgba(16, 38, 51, 0.12);
  padding: 0.82rem 1.15rem;
  box-shadow: 0 18px 32px rgba(16, 38, 51, 0.11);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-whatsapp:hover {
  color: #10331f;
  background: #e6fff1;
  transform: translateY(-1px);
}

.hero-section {
  min-height: 88vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 70px;
  color: #ffffff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 32, 43, 0.88) 0%, rgba(6, 32, 43, 0.58) 42%, rgba(6, 32, 43, 0.20) 100%),
    linear-gradient(0deg, rgba(6, 32, 43, 0.70), rgba(6, 32, 43, 0.05) 52%),
    url("../assets/img/hero-korcula.webp") center / cover no-repeat;
  transform: scale(1.02);
}

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

.eyebrow,
.section-kicker,
.panel-label {
  display: inline-flex;
  color: var(--amber);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0;
  margin-bottom: 0.85rem;
}

.hero-section h1 {
  max-width: 760px;
  margin: 0;
  font-size: 4.25rem;
  line-height: 1;
  font-weight: 900;
}

.hero-lead {
  max-width: 660px;
  margin: 1.3rem 0 0;
  font-size: 1.18rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.booking-panel {
  background: rgba(255, 255, 255, 0.93);
  color: var(--ink);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  max-width: 420px;
  margin-left: auto;
}

.booking-panel h2 {
  font-size: 1.45rem;
  margin: 0;
  font-weight: 900;
}

.request-list {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0;
  display: grid;
  gap: 0.75rem;
}

.request-list li {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
}

.request-list i {
  color: var(--sea);
}

.panel-link {
  color: var(--sea-dark);
  font-weight: 900;
  text-decoration: none;
}

.trust-strip {
  background: var(--sea-dark);
  color: #ffffff;
  padding: 22px 0;
}

.trust-item {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.trust-item i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--amber);
  flex: 0 0 42px;
}

.trust-item span {
  font-weight: 900;
}

.section {
  padding: 95px 0;
}

.section-light {
  background: var(--mist);
}

.section-heading {
  max-width: 720px;
  margin: 0 0 2.8rem;
}

.section-heading.text-center {
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.service h2,
.section h2,
.parallax-content h2 {
  font-size: 2.65rem;
  line-height: 1.08;
  font-weight: 900;
  margin: 0;
}

.section-heading p,
.section-copy {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 1rem 0 0;
}

.route-card,
.step-item {
  height: 100%;
  min-height: 265px;
  padding: 1.45rem;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 38px rgba(16, 38, 51, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.route-card:hover,
.step-item:hover,
.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.route-card-accent {
  background: var(--ink);
  color: #ffffff;
}

.route-card-accent p {
  color: rgba(255, 255, 255, 0.74);
}

.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--amber);
  font-size: 1.45rem;
  margin-bottom: 1.2rem;
}

.route-card h3,
.destination-card h3,
.step-item h3 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  font-weight: 900;
}

.route-card p,
.destination-card p,
.step-item p {
  color: var(--muted);
  line-height: 1.68;
  margin: 0;
}

.destinations-section {
  background: #ffffff;
}

.destination-card {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(16, 38, 51, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.destination-card img {
  width: 100%;
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
}

.destination-body {
  padding: 1.35rem;
}

.destination-body span {
  display: inline-flex;
  font-weight: 900;
  color: var(--coral);
  margin-bottom: 0.6rem;
}

.parallax-cta {
  position: relative;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(6, 32, 43, 0.9), rgba(6, 32, 43, 0.45)),
    url("../assets/img/hero-korcula.webp") center / cover fixed no-repeat;
  padding: 115px 0;
}

.parallax-content {
  max-width: 720px;
}

.parallax-content h2 {
  margin-bottom: 1.8rem;
}

.service-contact {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.service-contact a,
.contact-links a,
.site-footer a {
  text-decoration: none;
}

.service-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--sea-dark);
  font-weight: 900;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.step-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  border-radius: 8px;
  padding: 0 0.75rem;
  color: var(--ink);
  background: var(--amber);
  font-weight: 900;
  margin-bottom: 1.1rem;
}

.step-item-dark {
  background: var(--sea-dark);
  color: #ffffff;
}

.step-item-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.faq-section {
  background: #ffffff;
}

.custom-accordion {
  border-top: 1px solid var(--line);
}

.custom-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--line);
}

.custom-accordion .accordion-button {
  padding: 1.3rem 0;
  font-weight: 900;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--sea-dark);
}

.custom-accordion .accordion-body {
  padding: 0 0 1.35rem;
  color: var(--muted);
  line-height: 1.75;
}

.contact-section {
  background:
    linear-gradient(115deg, rgba(10, 77, 104, 0.96), rgba(15, 143, 179, 0.88)),
    url("../assets/img/korcula-beach.webp") center / cover no-repeat;
  color: #ffffff;
}

.contact-copy,
.contact-form {
  height: 100%;
}

.contact-copy {
  padding: 1rem 0;
}

.contact-copy h2 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.08;
  margin: 0;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin: 1rem 0 1.5rem;
}

.contact-links {
  display: grid;
  gap: 0.85rem;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
  color: #ffffff;
}

.contact-links i {
  color: var(--amber);
}

.contact-form {
  padding: 1.35rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  font-weight: 900;
  margin-bottom: 0.4rem;
}

.form-control {
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid rgba(16, 38, 51, 0.18);
  color: var(--ink);
}

.form-control:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(15, 143, 179, 0.18);
}

textarea.form-control {
  min-height: 122px;
}

.site-footer {
  background: #071f2a;
  color: rgba(255, 255, 255, 0.78);
  padding: 48px 0 26px;
}

.footer-logo {
  width: 190px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.site-footer h2 {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 900;
  margin: 0 0 0.85rem;
}

.site-footer p {
  line-height: 1.7;
  margin: 0;
}

.site-footer a {
  display: block;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.credits {
  font-size: 0.88rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 2rem;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom a {
  display: inline;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 991.98px) {
  .site-header {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(16, 38, 51, 0.1);
  }

  .navbar-collapse {
    padding: 1rem 0 0.5rem;
  }

  .navbar-nav {
    align-items: stretch !important;
  }

  .nav-link {
    padding: 0.85rem 0;
  }

  .btn-call {
    width: 100%;
    margin-top: 0.5rem;
  }

  .hero-section {
    min-height: 82vh;
    padding: 135px 0 46px;
  }

  .hero-section h1 {
    font-size: 3.1rem;
  }

  .booking-panel {
    margin-left: 0;
  }

  .section {
    padding: 74px 0;
  }

  .section-heading h2,
  .section h2,
  .parallax-content h2 {
    font-size: 2.2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .parallax-cta {
    background-attachment: scroll;
    padding: 86px 0;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand img {
    width: 168px;
  }

  .hero-section h1 {
    font-size: 2.45rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions .btn,
  .contact-form .btn {
    width: 100%;
  }

  .booking-panel,
  .contact-form {
    padding: 1.1rem;
  }

  .trust-item {
    min-height: 66px;
  }

  .section-heading h2,
  .section h2,
  .contact-copy h2,
  .parallax-content h2 {
    font-size: 1.9rem;
  }

  .route-card,
  .step-item {
    min-height: 230px;
  }
}
