:root {
  --ink: #0d1626;
  --navy: #0b2a4d;
  --blue: #14558e;
  --orange: #f18723;
  --orange-deep: #d96c12;
  --gold: #f4b24c;
  --green: #13854f;
  --paper: #f5f7f8;
  --soft: #e9edf1;
  --white: #ffffff;
  --line: rgba(13, 22, 38, 0.12);
  --shadow: 0 28px 90px rgba(13, 22, 38, 0.16);
  --soft-shadow: 0 18px 45px rgba(13, 22, 38, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  height: 78px;
  padding: 0 clamp(18px, 4vw, 58px);
  background: rgba(245, 247, 248, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(20px) saturate(1.12);
  transition: height 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header.scrolled {
  height: 66px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 38px rgba(13, 22, 38, 0.12);
}

.brand {
  display: grid;
  place-items: center;
  width: 166px;
  height: 52px;
  padding: 2px 12px 0;
  border: 1px solid rgba(13, 22, 38, 0.06);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(13, 22, 38, 0.08);
  overflow: hidden;
}

.brand img {
  width: 142px;
  height: auto;
  transform: translateY(-7px);
}

.desktop-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: #111827;
  font-size: 14px;
  font-weight: 800;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #143b6a);
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 12px 24px rgba(11, 42, 77, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(11, 42, 77, 0.28);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 150px clamp(20px, 7vw, 112px) 68px;
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(6, 13, 24, 0.94), rgba(6, 13, 24, 0));
  pointer-events: none;
}

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

.hero-slide {
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: slowZoom 11s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 72% 30%, rgba(241, 135, 35, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(4, 10, 19, 0.9), rgba(4, 10, 19, 0.62) 46%, rgba(4, 10, 19, 0.24)),
    linear-gradient(0deg, rgba(4, 10, 19, 0.76), rgba(4, 10, 19, 0.22));
}

.route-line {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 17%;
  width: min(56vw, 760px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244, 178, 76, 0.9), var(--orange), transparent);
  transform: rotate(-6deg);
  opacity: 0.72;
  animation: routePulse 3s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(900px, 100%);
  margin-top: clamp(20px, 6vh, 72px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  font-family: "Manrope", "Inter", sans-serif;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(42px, 4.85vw, 68px);
  line-height: 1.01;
}

h1 span {
  display: block;
}

.hero-copy {
  margin: 24px 0 0;
  max-width: 630px;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.32), transparent 70%);
  transform: translateX(-120%);
  transition: transform 550ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.btn:hover::after {
  transform: translateX(120%);
}

.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
}

.whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, #19a463, var(--green));
}

.ghost {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #173e69);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(112px, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 38px;
}

.hero-stats div {
  position: relative;
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(10, 18, 31, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.hero-stats div::before,
.service-cards article::before,
.why-grid article::before,
.contact-card::before,
.realestate-list article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(var(--orange), var(--gold));
  opacity: 0;
  transform: scaleY(0.35);
  transform-origin: center;
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero-stats div:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 178, 76, 0.46);
  background: rgba(10, 18, 31, 0.82);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-stats div:hover::before,
.service-cards article:hover::before,
.why-grid article:hover::before,
.contact-card:hover::before,
.realestate-list article:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.hero-stats strong {
  display: block;
  color: var(--gold);
  font-size: 26px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.slider-controls {
  position: absolute;
  z-index: 5;
  right: clamp(20px, 5vw, 72px);
  bottom: 44px;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.slider-dot.active {
  width: 56px;
  background: var(--orange);
}

.section {
  padding: clamp(76px, 9vw, 124px) clamp(20px, 6vw, 88px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading h2,
.service-copy h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.08;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(13, 22, 38, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(13, 22, 38, 0.07);
}

.brand-mark img {
  width: auto;
  max-width: 146px;
  height: 34px;
  object-fit: contain;
}

.brand-mark span {
  color: rgba(13, 22, 38, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.brand-mark.on-dark {
  background: rgba(255, 255, 255, 0.92);
}

.intro {
  background: linear-gradient(180deg, var(--paper), #ffffff 55%, #eef3f6);
}

.intro-grid,
.service-layout,
.realestate-grid,
.trip-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.story-panel,
.office-card,
.contact-card,
.why-grid article,
.service-cards article,
.timeline {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.story-panel {
  padding: clamp(30px, 4vw, 54px);
  color: rgba(13, 22, 38, 0.76);
  font-size: 18px;
  line-height: 1.8;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  padding: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 31px;
  width: 2px;
  background: linear-gradient(var(--orange), var(--blue));
}

.timeline div {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 12px 18px 0;
  opacity: 0.58;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.timeline div::before {
  content: "";
  position: absolute;
  left: 8px;
  width: 14px;
  height: 14px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 1px rgba(241, 135, 35, 0.35);
  transition: transform 420ms ease, box-shadow 420ms ease;
}

.timeline.visible div {
  opacity: 1;
  transform: translateY(0);
}

.timeline.visible div:nth-child(1) {
  transition-delay: 80ms;
}

.timeline.visible div:nth-child(2) {
  transition-delay: 160ms;
}

.timeline.visible div:nth-child(3) {
  transition-delay: 240ms;
}

.timeline.visible div:nth-child(4) {
  transition-delay: 320ms;
}

.timeline.visible div:nth-child(5) {
  transition-delay: 400ms;
}

.timeline.visible div::before {
  transform: scale(1.06);
  box-shadow: 0 0 0 5px rgba(241, 135, 35, 0.1), 0 0 0 1px rgba(241, 135, 35, 0.35);
}

.timeline span {
  padding-left: 42px;
  color: var(--orange);
  font-weight: 900;
}

.timeline strong {
  color: var(--navy);
  font-size: 17px;
}

.service-tourism {
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(6, 18, 34, 0.96), rgba(14, 54, 91, 0.92)),
    url("images/WhatsApp Image 2026-06-26 at 17.00.30.jpeg") center/cover;
  padding-top: clamp(70px, 7vw, 96px);
  padding-bottom: clamp(70px, 7vw, 96px);
}

.service-copy p,
.trip-copy p,
.office-card p,
.why-grid p,
.footer p {
  line-height: 1.7;
}

.service-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.fleet-panel {
  position: relative;
  height: clamp(380px, 34vw, 460px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.fleet-panel::after {
  content: "19-55 kişilik filo";
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(6, 18, 34, 0.76);
  font-weight: 900;
}

.fleet-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 78%;
  transition: transform 520ms ease;
}

.fleet-panel:hover img,
.gallery img:hover {
  transform: scale(1.03);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.service-cards article {
  position: relative;
  min-height: 190px;
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-cards article:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(244, 178, 76, 0.42);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.service-cards span {
  color: var(--gold);
  font-weight: 900;
}

.service-cards strong {
  display: block;
  margin-top: 18px;
  font-size: 20px;
}

.service-cards p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

.realestate {
  background: linear-gradient(135deg, #eef2f5, #ffffff 58%, #e7edf3);
}

.realestate-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.realestate-list article {
  position: relative;
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.9)),
    linear-gradient(135deg, rgba(20, 85, 142, 0.06), rgba(241, 135, 35, 0.04));
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.realestate-list article::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(244, 178, 76, 0.2));
  opacity: 0.72;
}

.realestate-list article:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 85, 142, 0.32);
  box-shadow: var(--shadow);
}

.realestate-list strong {
  display: block;
  margin-top: 20px;
  color: var(--navy);
  font-size: 20px;
}

.realestate-list article > span:not(.icon-box) {
  display: block;
  margin-top: 9px;
  color: rgba(13, 22, 38, 0.64);
  line-height: 1.55;
}

.office-card {
  position: relative;
  padding: clamp(30px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(244, 248, 251, 0.72)),
    radial-gradient(circle at 90% 16%, rgba(241, 135, 35, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(20, 85, 142, 0.2), rgba(241, 135, 35, 0.14));
  box-shadow: 0 28px 80px rgba(13, 22, 38, 0.12);
  overflow: hidden;
}

.office-card::after {
  content: "";
  position: absolute;
  inset: 16px 16px auto auto;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(20, 85, 142, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 85, 142, 0.1), transparent 68%);
  pointer-events: none;
}

.office-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 29px;
}

.office-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.office-points span {
  padding: 10px 12px;
  border: 1px solid rgba(20, 85, 142, 0.12);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 800;
}

.trips {
  background: #ffffff;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  grid-auto-rows: 165px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: var(--soft-shadow);
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item::after {
  content: "Büyüt";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(6, 18, 34, 0.34);
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  transition: opacity 260ms ease;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.04);
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-row: span 2;
}

.trip-copy {
  color: rgba(13, 22, 38, 0.72);
  font-size: 18px;
}

.why {
  background: #edf1f4;
}

.why-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.why-grid article {
  position: relative;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.why-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 135, 35, 0.42);
  box-shadow: var(--shadow);
}

.why-grid span {
  color: var(--orange);
  font-weight: 900;
  font-size: 13px;
}

.why-grid strong {
  display: block;
  margin-top: 28px;
  color: var(--navy);
  font-size: 20px;
}

.why-grid p {
  margin: 12px 0 0;
  color: rgba(13, 22, 38, 0.66);
}

.contact {
  background: var(--paper);
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card {
  position: relative;
  min-height: 124px;
  padding: 22px 22px 22px 76px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 251, 252, 0.9)),
    linear-gradient(135deg, rgba(20, 85, 142, 0.04), rgba(241, 135, 35, 0.03));
  overflow: hidden;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 135, 35, 0.34);
  box-shadow: var(--shadow);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(20, 85, 142, 0.13);
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(180deg, #ffffff, #eef4f8);
  box-shadow: 0 10px 22px rgba(13, 22, 38, 0.08);
}

.icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-box .accent {
  stroke: var(--orange);
}

.contact-icon {
  position: absolute;
  top: 22px;
  left: 22px;
}

.contact-card > span:not(.icon-box) {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-size: 19px;
}

.map-section {
  width: 100vw;
  height: max(35vh, 280px);
  margin-left: calc(50% - 50vw);
  background: #d9dee5;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  padding: 62px clamp(20px, 6vw, 88px) 24px;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 18% 0%, rgba(241, 135, 35, 0.14), transparent 32%),
    linear-gradient(135deg, #07111f, #0b2038);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 34px;
}

.footer > .footer-grid > div:first-child > img {
  width: 142px;
  height: auto;
  padding: 8px 10px 3px;
  border-radius: 8px;
  background: var(--white);
}

.footer h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 17px;
}

.footer a,
.footer p {
  display: block;
  margin: 8px 0;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
}

.social-links img {
  width: 23px;
  height: 23px;
}

.copyright {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

.fixed-actions {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 12px;
}

.fixed-actions a {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(13, 22, 38, 0.23);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.fixed-actions a::before {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(241, 135, 35, 0.18);
  border-radius: inherit;
  transform: scale(0.9);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.fixed-actions a:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 48px rgba(13, 22, 38, 0.3);
}

.fixed-actions a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.fixed-actions img {
  width: 32px;
  height: 32px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 72px clamp(16px, 4vw, 64px);
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-frame {
  width: min(1120px, 100%);
  height: min(78vh, 760px);
  margin: 0;
  transform: scale(0.96);
  opacity: 0;
  transition: transform 300ms ease, opacity 300ms ease;
}

.lightbox.open .lightbox-frame {
  transform: scale(1);
  opacity: 1;
}

.lightbox-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  user-select: none;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(241, 135, 35, 0.62);
}

.lightbox-close {
  top: 22px;
  right: 22px;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.lightbox svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.lightbox-active {
  overflow: hidden;
  touch-action: none;
}

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

.reveal:nth-child(2) {
  transition-delay: 90ms;
}

.reveal:nth-child(3) {
  transition-delay: 180ms;
}

.service-cards.reveal.visible article,
.why-grid article.visible,
.contact-card.visible,
.realestate-list.reveal.visible article {
  animation: cardCascade 520ms ease both;
}

.service-cards.reveal.visible article:nth-child(2),
.why-grid article.visible:nth-child(2),
.contact-card.visible:nth-child(2),
.realestate-list.reveal.visible article:nth-child(2) {
  animation-delay: 90ms;
}

.service-cards.reveal.visible article:nth-child(3),
.why-grid article.visible:nth-child(3),
.contact-card.visible:nth-child(3),
.realestate-list.reveal.visible article:nth-child(3) {
  animation-delay: 180ms;
}

.service-cards.reveal.visible article:nth-child(4),
.why-grid article.visible:nth-child(4),
.contact-card.visible:nth-child(4),
.realestate-list.reveal.visible article:nth-child(4) {
  animation-delay: 270ms;
}

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

@keyframes slowZoom {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.09);
  }
}

@keyframes routePulse {
  0%,
  100% {
    opacity: 0.42;
    transform: translateX(-8%) rotate(-6deg);
  }
  50% {
    opacity: 0.9;
    transform: translateX(8%) rotate(-6deg);
  }
}

@keyframes cardCascade {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 14px;
  }
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-call {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    justify-self: end;
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 0;
    border-radius: 8px;
    background: var(--navy);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 21px;
    height: 2px;
    background: var(--white);
    transition: transform 200ms ease, opacity 200ms ease;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: clamp(18px, 4vw, 42px);
    display: grid;
    width: min(340px, calc(100vw - 36px));
    padding: 10px;
    border: 1px solid rgba(13, 22, 38, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-nav a {
    padding: 13px 14px;
    border-radius: 7px;
    font-weight: 900;
  }

  .mobile-nav a:hover {
    color: var(--white);
    background: var(--navy);
  }

  .intro-grid,
  .service-layout,
  .realestate-grid,
  .trip-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-cards,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fleet-panel,
  .fleet-panel img {
    height: 340px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 66px;
    padding-inline: 16px;
  }

  .site-header.scrolled {
    height: 62px;
  }

  .brand {
    width: 142px;
    height: 46px;
    padding-inline: 10px;
  }

  .brand img {
    width: 122px;
    transform: translateY(-6px);
  }

  .hero {
    min-height: 78vh;
    padding: 110px 18px 42px;
  }

  .hero-content {
    margin-top: 24px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(34px, 11vw, 47px);
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: calc(100% - 74px);
    padding-right: 0;
  }

  .hero-stats div {
    min-height: 86px;
    padding: 13px;
  }

  .hero-stats strong {
    font-size: 22px;
  }

  .slider-controls {
    right: auto;
    left: 18px;
    bottom: 18px;
  }

  .section {
    padding: 68px 18px;
  }

  .section-heading h2,
  .service-copy h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .brand-mark {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .brand-mark img {
    max-width: 132px;
    height: 32px;
  }

  .story-panel {
    font-size: 16px;
  }

  .timeline div {
    grid-template-columns: 76px 1fr;
  }

  .fleet-panel,
  .fleet-panel img {
    height: 300px;
  }

  .fleet-panel img {
    object-position: center 78%;
  }

  .service-cards,
  .realestate-list,
  .why-grid,
  .contact-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-auto-rows: 238px;
  }

  .gallery-item:first-child,
  .gallery-item:nth-child(4) {
    grid-row: auto;
  }

  .lightbox {
    padding: 72px 14px 26px;
  }

  .lightbox-frame {
    width: 100%;
    height: calc(100vh - 126px);
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    width: 44px;
    height: 44px;
  }

  .lightbox-prev {
    left: 18px;
  }

  .lightbox-next {
    right: 18px;
  }

  .fixed-actions {
    right: 14px;
    bottom: 14px;
  }

  .fixed-actions a {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 390px) {
  .hero-stats {
    width: calc(100% - 66px);
  }

  .hero-stats strong {
    font-size: 20px;
  }
}

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