:root {
  --bg: #061017;
  --bg-deep: #030a10;
  --bg-soft: #0a1821;
  --panel: rgba(16, 36, 48, 0.68);
  --panel-solid: #102430;
  --text: #f6f2e9;
  --muted: #a8b5b9;
  --gold: #e6b85d;
  --gold-soft: #f4d696;
  --gold-deep: #b98231;
  --blue: #0d344b;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 20px;
  --display: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.page-glow {
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.13;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

.page-glow--one {
  background: #14729a;
  height: 500px;
  right: -190px;
  top: 36%;
  width: 500px;
}

.page-glow--two {
  background: #b77d2e;
  bottom: 6%;
  height: 420px;
  left: -170px;
  width: 420px;
}

.container {
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 28px;
  width: 100%;
}

.section {
  padding: 118px 0;
}

.section--tinted {
  background: linear-gradient(180deg, rgba(13, 36, 48, 0.76), rgba(5, 18, 26, 0.5));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.glass {
  backdrop-filter: blur(18px);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: var(--shadow);
}

.eyebrow {
  align-items: center;
  color: var(--gold);
  display: flex;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.eyebrow span {
  background: var(--gold);
  display: inline-block;
  height: 1px;
  width: 28px;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h1 em,
h2 em {
  color: var(--gold);
  font-weight: inherit;
}

h2 {
  font-size: clamp(2.45rem, 4vw, 4.15rem);
}

.site-header {
  background: linear-gradient(180deg, rgba(3, 10, 16, 0.94), rgba(3, 10, 16, 0.55));
  border-bottom: 1px solid transparent;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: 0.35s ease;
  z-index: 50;
}

.site-header.is-scrolled {
  backdrop-filter: blur(18px);
  background: rgba(3, 10, 16, 0.88);
  border-color: var(--line);
}

.nav-wrap {
  align-items: center;
  display: flex;
  height: 82px;
  justify-content: space-between;
}

.brand img {
  height: auto;
  width: 194px;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 30px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

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

.main-nav .nav-cta {
  border: 1px solid rgba(230, 184, 93, 0.58);
  border-radius: 30px;
  color: var(--gold-soft);
  padding: 11px 17px;
}

.main-nav .nav-cta:hover {
  background: var(--gold);
  color: #172129;
}

.menu-toggle {
  background: none;
  border: 0;
  color: var(--text);
  display: none;
  line-height: 0;
}

.hero {
  align-items: center;
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 82px;
  position: relative;
}

.hero-backdrop,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-backdrop {
  animation: heroZoom 16s ease-out both;
  background: url("assets/lokatur-hero.png") center center / cover no-repeat;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 10, 16, 0.97) 0%, rgba(3, 10, 16, 0.88) 29%, rgba(3, 10, 16, 0.3) 63%, rgba(3, 10, 16, 0.12) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(6, 16, 23, 0) 26%),
    linear-gradient(180deg, rgba(2, 9, 14, 0.5), transparent 40%);
}

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

.hero-copy {
  max-width: 670px;
}

.hero h1 {
  font-size: clamp(4rem, 7.8vw, 7.4rem);
  letter-spacing: -0.065em;
  line-height: 0.94;
  margin-bottom: 26px;
}

.hero-text {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 20px;
  gap: 14px;
}

.hero-actions p {
  display: flex;
  margin: 0;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.77rem;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.1em;
  padding: 15px 21px;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.btn svg {
  height: 17px;
  stroke-width: 2;
  width: 17px;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #172129;
  box-shadow: 0 10px 30px rgba(230, 184, 93, 0.2);
}

.btn--gold:hover {
  box-shadow: 0 13px 34px rgba(230, 184, 93, 0.3);
  transform: translateY(-3px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-bottom {
  display: flex;
  gap: 52px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat strong {
  color: var(--gold-soft);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-top: 7px;
  text-transform: uppercase;
}

.scroll-hint {
  align-items: center;
  bottom: 48px;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  flex-direction: column;
  font-size: 0.61rem;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.27em;
  position: absolute;
  right: 42px;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-hint svg {
  animation: bounce 1.8s ease infinite;
  color: var(--gold);
  height: 18px;
  width: 18px;
}

.about-grid,
.quote-grid {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 0.95fr 1fr;
}

.about-visual {
  padding: 0 28px 32px 0;
  position: relative;
}

.about-image {
  border-radius: 3px 80px 3px 3px;
  height: 560px;
  overflow: hidden;
  position: relative;
}

.about-image::after {
  background: linear-gradient(0deg, rgba(3, 10, 16, 0.65), transparent 50%);
  content: "";
  inset: 0;
  position: absolute;
}

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

.about-badge {
  align-items: center;
  border-radius: 14px;
  bottom: 0;
  display: flex;
  gap: 13px;
  padding: 18px 20px;
  position: absolute;
  right: 0;
}

.about-badge svg {
  color: var(--gold);
  height: 30px;
  width: 30px;
}

.about-badge div,
.contact-card div {
  display: flex;
  flex-direction: column;
}

.about-badge strong {
  font-size: 0.88rem;
}

.about-badge span {
  color: var(--muted);
  font-size: 0.72rem;
}

.about-copy p:not(.eyebrow),
.why-us-copy p,
.quote-copy > p,
.faq-intro > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
  margin-top: 21px;
}

.about-points {
  display: grid;
  gap: 14px 20px;
  grid-template-columns: 1fr 1fr;
  margin-top: 29px;
}

.about-points div {
  align-items: center;
  color: rgba(255, 255, 255, 0.84);
  display: flex;
  font-size: 0.88rem;
  gap: 9px;
}

.about-points svg {
  color: var(--gold);
  height: 18px;
  width: 18px;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 50px;
}

.section-heading > p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 460px;
}

.section-heading--center {
  align-items: center;
  flex-direction: column;
  gap: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center > p {
  margin-top: 18px;
}

.service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  border-radius: 16px;
  min-height: 245px;
  padding: 26px;
  transition: 0.35s ease;
}

.service-card:hover {
  background: rgba(23, 52, 66, 0.8);
  border-color: rgba(230, 184, 93, 0.44);
  transform: translateY(-7px);
}

.icon-box {
  align-items: center;
  background: rgba(230, 184, 93, 0.12);
  border: 1px solid rgba(230, 184, 93, 0.2);
  border-radius: 10px;
  color: var(--gold);
  display: flex;
  height: 47px;
  justify-content: center;
  margin-bottom: 22px;
  width: 47px;
}

.icon-box svg {
  height: 23px;
  width: 23px;
}

.service-card h3 {
  font-size: 1.05rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.7;
  margin-top: 9px;
}

.service-card a,
.destination-card a {
  align-items: center;
  color: var(--gold);
  display: inline-flex;
  font-size: 0.71rem;
  font-weight: 800;
  gap: 7px;
  letter-spacing: 0.12em;
  margin-top: 20px;
  text-transform: uppercase;
}

.service-card a svg,
.destination-card a svg {
  height: 15px;
  transition: transform 0.25s ease;
  width: 15px;
}

.service-card:hover a svg,
.destination-card:hover a svg {
  transform: translate(3px, -1px);
}

.fleet-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.fleet-card {
  background: #0c1c25;
  border: 1px solid var(--line);
  border-radius: 17px;
  overflow: hidden;
  transition: 0.35s ease;
}

.fleet-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.fleet-card--featured {
  border-color: rgba(230, 184, 93, 0.44);
}

.fleet-image {
  height: 238px;
  overflow: hidden;
  position: relative;
}

.fleet-image::after {
  background: linear-gradient(0deg, rgba(5, 16, 23, 0.68), transparent 55%);
  content: "";
  inset: 0;
  position: absolute;
}

.fleet-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  width: 100%;
}

.fleet-card:hover .fleet-image img,
.destination-card:hover img {
  transform: scale(1.06);
}

.fleet-capacity,
.fleet-tag {
  align-items: center;
  border-radius: 30px;
  display: flex;
  font-size: 0.67rem;
  font-weight: 700;
  gap: 6px;
  letter-spacing: 0.06em;
  padding: 7px 10px;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.fleet-capacity {
  backdrop-filter: blur(12px);
  background: rgba(3, 10, 16, 0.68);
  bottom: 12px;
  color: rgba(255, 255, 255, 0.83);
  left: 12px;
}

.fleet-capacity svg {
  height: 14px;
  width: 14px;
}

.fleet-tag {
  background: var(--gold);
  color: #172129;
  right: 12px;
  top: 12px;
}

.fleet-content {
  padding: 23px;
}

.fleet-title {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.fleet-title span {
  color: var(--gold);
  display: block;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.fleet-title h3 {
  font-family: var(--display);
  font-size: 1.68rem;
  line-height: 1.1;
}

.fleet-title > svg {
  color: var(--gold);
  height: 22px;
  width: 22px;
}

.fleet-content > p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
  margin-top: 13px;
}

.amenities {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 9px 15px;
  margin-top: 19px;
  padding-top: 17px;
}

.amenities span {
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  display: flex;
  font-size: 0.7rem;
  gap: 5px;
}

.amenities svg {
  color: var(--gold);
  height: 14px;
  width: 14px;
}

.why-us {
  overflow: hidden;
  position: relative;
}

.why-us-backdrop {
  background:
    linear-gradient(90deg, rgba(3, 10, 16, 0.96), rgba(3, 10, 16, 0.72)),
    url("assets/lokatur-hero.png") center center / cover no-repeat;
  inset: 0;
  opacity: 0.65;
  position: absolute;
}

.why-us-grid {
  display: grid;
  gap: 64px;
  grid-template-columns: 0.8fr 1.2fr;
  position: relative;
}

.why-us-copy .btn {
  margin-top: 31px;
}

.benefit-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}

.benefit {
  align-items: flex-start;
  background: rgba(7, 21, 29, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  display: flex;
  gap: 14px;
  padding: 18px;
}

.benefit > svg {
  color: var(--gold);
  flex: 0 0 auto;
  height: 23px;
  width: 23px;
}

.benefit h3 {
  font-size: 0.91rem;
  margin-bottom: 5px;
}

.benefit p {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.6;
}

.destination-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 210px);
}

.destination-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.destination-card::after {
  background: linear-gradient(0deg, rgba(2, 10, 15, 0.92), rgba(2, 10, 15, 0.08) 70%);
  content: "";
  inset: 0;
  position: absolute;
}

.destination-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  width: 100%;
}

.destination-card > div {
  bottom: 17px;
  left: 19px;
  position: absolute;
  z-index: 1;
}

.destination-card span {
  color: var(--gold);
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.destination-card h3 {
  font-family: var(--display);
  font-size: 1.65rem;
}

.destination-card a {
  margin-top: 6px;
}

.destination-card--large {
  grid-column: span 2;
  grid-row: span 2;
}

.destination-card--large h3 {
  font-size: 2.4rem;
}

.destination-card--wide {
  grid-column: span 2;
}

.testimonials {
  background: rgba(10, 25, 34, 0.64);
}

.testimonial-grid {
  display: grid;
  gap: 17px;
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
  border-radius: 16px;
  padding: 26px;
}

.stars {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

blockquote {
  color: rgba(255, 255, 255, 0.83);
  font-family: var(--display);
  font-size: 1.11rem;
  line-height: 1.6;
  margin: 17px 0 24px;
}

.testimonial-author {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 11px;
  padding-top: 17px;
}

.testimonial-author img {
  border-radius: 50%;
  height: 42px;
  object-fit: cover;
  width: 42px;
}

.testimonial-author div {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  font-size: 0.79rem;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 0.68rem;
}

.quote-section {
  background:
    radial-gradient(circle at 10% 90%, rgba(197, 143, 58, 0.12), transparent 32%),
    linear-gradient(180deg, var(--bg), #07141c);
}

.quote-grid {
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-card {
  align-items: center;
  border-radius: 13px;
  display: flex;
  gap: 13px;
  padding: 15px;
  transition: 0.25s ease;
}

.contact-card:hover {
  border-color: rgba(230, 184, 93, 0.4);
}

.contact-card > svg {
  color: var(--gold);
  height: 22px;
  width: 22px;
}

.contact-card span {
  color: var(--muted);
  font-size: 0.7rem;
}

.contact-card strong {
  font-size: 0.84rem;
}

.quote-form {
  border-radius: 18px;
  padding: 30px;
}

.form-heading span {
  color: var(--gold);
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-heading h3 {
  font-family: var(--display);
  font-size: 2rem;
  margin-top: 4px;
}

.form-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 23px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field-full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  background: rgba(3, 10, 16, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.84rem;
  outline: none;
  padding: 12px 13px;
  transition: border-color 0.25s ease;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

textarea {
  resize: vertical;
}

.form-submit {
  border: 0;
  margin-top: 20px;
  width: 100%;
}

.form-note {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.66rem;
  gap: 6px;
  justify-content: center;
  margin-top: 14px;
}

.form-note svg {
  height: 13px;
  width: 13px;
}

.faq-grid {
  align-items: start;
  display: grid;
  gap: 80px;
  grid-template-columns: 0.78fr 1.22fr;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-question {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
  display: flex;
  font-size: 0.91rem;
  font-weight: 700;
  gap: 20px;
  justify-content: space-between;
  padding: 22px 0;
  text-align: left;
  width: 100%;
}

.faq-question svg {
  color: var(--gold);
  flex: 0 0 auto;
  height: 18px;
  transition: transform 0.25s ease;
  width: 18px;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.75;
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 21px;
}

.faq-item.is-open .faq-question svg {
  transform: rotate(45deg);
}

.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1.2fr 0.65fr 1fr 1.15fr;
  padding-bottom: 57px;
  padding-top: 62px;
}

.footer-brand img {
  width: 180px;
}

.footer-about p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
  margin-top: 18px;
  max-width: 240px;
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.social-links a {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  height: 36px;
  justify-content: center;
  transition: 0.25s ease;
  width: 36px;
}

.social-links a:hover {
  background: var(--gold);
  color: #172129;
}

.social-links svg {
  fill: currentColor;
  height: 16px;
  stroke: none;
  width: 16px;
}

.footer-grid h3 {
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  margin-bottom: 17px;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.78rem;
  gap: 7px;
  transition: color 0.2s ease;
}

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

.footer-contact svg {
  color: var(--gold);
  height: 14px;
  width: 14px;
}

.footer-map iframe {
  border: 0;
  border-radius: 10px;
  filter: grayscale(1) invert(0.9) contrast(0.8);
  height: 170px;
  opacity: 0.7;
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid var(--line);
}

.footer-bottom .container {
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  font-size: 0.65rem;
  justify-content: space-between;
  letter-spacing: 0.06em;
  padding-bottom: 16px;
  padding-top: 16px;
  text-transform: uppercase;
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border-radius: 999px;
  bottom: 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  color: #052d15;
  display: flex;
  font-size: 0.71rem;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.08em;
  padding: 13px 15px;
  position: fixed;
  right: 22px;
  text-transform: uppercase;
  transition: transform 0.25s ease;
  z-index: 40;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
}

.whatsapp-float svg {
  fill: currentColor;
  height: 19px;
  stroke: none;
  width: 19px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

@media (max-width: 1040px) {
  .main-nav { gap: 20px; }
  .main-nav a { font-size: 0.7rem; }
  .hero h1 { font-size: clamp(4.4rem, 9vw, 6.6rem); }
  .about-grid, .quote-grid { gap: 48px; }
  .about-image { height: 500px; }
  .why-us-grid { gap: 42px; grid-template-columns: 0.92fr 1.08fr; }
  .footer-grid { grid-template-columns: 1fr 0.7fr 1fr; }
  .footer-map { display: none; }
}

@media (max-width: 820px) {
  .section { padding: 88px 0; }
  .menu-toggle { display: block; }
  .main-nav {
    align-items: stretch;
    backdrop-filter: blur(18px);
    background: rgba(3, 10, 16, 0.97);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    left: 0;
    opacity: 0;
    padding: 14px 28px 24px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 82px;
    transform: translateY(-8px);
    transition: 0.25s ease;
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a { border-bottom: 1px solid var(--line); padding: 14px 0; }
  .main-nav .nav-cta { border-radius: 30px; margin-top: 14px; padding: 12px 16px; text-align: center; }
  .hero { min-height: 820px; }
  .hero-backdrop { background-position: 62% center; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 10, 16, 0.96), rgba(3, 10, 16, 0.62)),
      linear-gradient(0deg, var(--bg), rgba(6, 16, 23, 0) 30%);
  }
  .hero h1 { font-size: clamp(4.1rem, 14vw, 6.2rem); }
  .hero-text { font-size: 0.96rem; max-width: 510px; }
  .scroll-hint { display: none; }
  .about-grid, .quote-grid, .faq-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 610px; }
  .about-copy { max-width: 650px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: 1fr; margin: 0 auto; max-width: 600px; }
  .fleet-image { height: 300px; }
  .why-us-grid { grid-template-columns: 1fr; }
  .destination-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 190px); }
  .destination-card--large { grid-row: span 2; }
  .destination-card--wide { grid-column: span 2; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .faq-grid { gap: 35px; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .nav-wrap { height: 72px; }
  .brand img { width: 160px; }
  .main-nav { top: 72px; }
  .hero { min-height: 730px; padding-top: 72px; }
  .hero h1 { font-size: clamp(3.85rem, 20vw, 5rem); }
  .hero-actions { flex-direction: column; width: min(100%, 330px); }
  .btn { padding: 14px 17px; }
  .hero-bottom { bottom: 30px; gap: 23px; left: 18px; }
  .hero-stat strong { font-size: 1.6rem; }
  .hero-stat span { font-size: 0.54rem; letter-spacing: 0.1em; }
  .about-grid { gap: 36px; }
  .about-visual { padding: 0 13px 26px 0; }
  .about-image { border-radius: 3px 52px 3px 3px; height: 350px; }
  .about-badge { padding: 13px; }
  .about-badge svg { height: 24px; width: 24px; }
  .about-badge strong { font-size: 0.76rem; }
  .about-badge span { font-size: 0.61rem; }
  .about-points { grid-template-columns: 1fr; }
  .section-heading { align-items: start; flex-direction: column; gap: 16px; margin-bottom: 34px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .fleet-image { height: 220px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .destination-grid { display: flex; flex-direction: column; }
  .destination-card { height: 220px; }
  .quote-grid { gap: 34px; }
  .quote-form { padding: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; padding-bottom: 40px; padding-top: 45px; }
  .footer-bottom .container { flex-direction: column; gap: 5px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { border-radius: 50%; height: 52px; justify-content: center; padding: 0; width: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
