:root {
  --navy: #0a192f;
  --navy-2: #004b91;
  --gold: #d4af37;
  --gold-2: #f0c547;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #f5f7fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(10, 25, 47, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 58%, #ffffff 100%);
}

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(10, 25, 47, 0.09);
  backdrop-filter: blur(16px);
}

.top-strip {
  background: linear-gradient(90deg, rgba(255,255,255,0), #0a4f92 35%, #003d78 100%);
  color: #fff;
  min-height: 38px;
}

.top-strip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255,255,255,0.92);
}

.top-contact strong { color: #fff; }

.main-nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: transparent;
  border-radius: 999px;
  box-shadow: 0 12px 22px rgba(10, 25, 47, 0.25);
  transform: translateY(-12px);
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 16px;
  font-weight: 700;
}

.nav-links a {
  padding: 11px 16px;
  border-radius: 8px;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--gold);
  background: var(--navy);
  box-shadow: inset 0 0 0 2px rgba(212, 175, 55, 0.8);
}

.language {
  padding-left: 10px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--navy);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 430px;
  overflow: hidden;
}

.hero__blue {
  position: relative;
  display: flex;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 28% 40%, rgba(0, 91, 177, 0.55), transparent 42%),
    linear-gradient(135deg, #005ca9 0%, #003f7e 34%, var(--navy) 100%);
  color: #fff;
}

.hero__blue::after {
  content: "";
  position: absolute;
  right: -34px;
  top: 0;
  width: 70px;
  height: 100%;
  background: linear-gradient(180deg, #efd66d, var(--gold));
  transform: skewX(-6deg);
  z-index: 2;
}

.hero-copy {
  width: min(590px, calc(100% - 40px));
  padding: 52px 38px 82px 0;
  position: relative;
  z-index: 3;
}

.eyebrow {
  margin: 0 0 18px;
  color: #d9bf62;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  font-weight: 900;
}

.hero h1 span { color: var(--gold-2); }

.hero-list {
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,0.92);
  font-size: 20px;
  line-height: 1.55;
}

.hero-list li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 9px;
  font-weight: 900;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  color: var(--gold-2);
  border: 3px solid var(--gold);
  border-radius: 999px;
  font-weight: 900;
  font-size: 23px;
  background: rgba(10, 25, 47, 0.42);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  background: rgba(10, 25, 47, 0.78);
}

.hero__image {
  position: relative;
  min-width: 0;
  background: #d9e2ef;
}

.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(212,175,55,0.28), transparent 26%, rgba(255,255,255,0.18) 100%);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.booking-shell {
  position: relative;
  z-index: 4;
  margin-top: -78px;
}

.booking-card {
  background: linear-gradient(180deg, #0d56a0, #004987);
  border: 3px solid rgba(212, 175, 55, 0.9);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 10px 14px 14px;
}

.trip-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.trip-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 8px 8px 0 0;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.trip-tab.active {
  color: #fff;
  background: linear-gradient(180deg, var(--gold-2), #c79616);
}

.trip-tab input { accent-color: var(--navy); }

.booking-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(130px, 1fr));
  gap: 10px;
  align-items: end;
}

.field {
  min-width: 0;
  display: grid;
  gap: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.field span {
  opacity: 0.95;
}

.field input,
.field select {
  width: 100%;
  height: 48px;
  border: 1px solid #d9e2ef;
  border-radius: 8px;
  background: #fff;
  color: #1f2937;
  padding: 0 12px;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
}

.field input:focus,
.field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.24);
}

.counter {
  height: 48px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.counter button {
  border: 0;
  color: var(--navy);
  background: #eef2f7;
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
}

.counter strong {
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 18px;
}

.search-button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  color: #111827;
  background: linear-gradient(180deg, #f7cd4e, #c99016);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45);
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.search-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.is-hidden { display: none !important; }

.quote-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.quote-panel div {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.quote-panel span {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  margin-bottom: 4px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 34px 0 16px;
}

.benefits article {
  display: grid;
  place-items: center;
  gap: 10px;
  text-align: center;
  color: var(--navy);
  font-weight: 900;
}

.benefits span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: #fff;
  background: linear-gradient(180deg, var(--gold-2), #ba8614);
  border: 4px solid #fff;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.35);
}

.section-pad {
  padding: 34px 0 46px;
}

.section-title {
  text-align: left;
  margin-bottom: 18px;
}

.section-title h2,
.testimonials h2,
.destinations h2,
.faq h2 {
  margin: 0;
  color: var(--navy);
  font-size: 26px;
  font-weight: 900;
}

.section-title p,
.destinations p {
  margin: 5px 0 0;
  color: var(--muted);
}

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

.vehicle-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(10, 25, 47, 0.12);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.vehicle-card:hover { transform: translateY(-4px); }

.vehicle-card.is-disabled {
  opacity: 0.42;
  filter: grayscale(0.8);
}

.vehicle-card img {
  display: block;
  width: 100%;
  height: 172px;
  object-fit: cover;
}

.vehicle-card img.image-right { object-position: 78% center; }
.vehicle-card img.image-center { object-position: 58% center; }

.vehicle-card__body { padding: 16px 18px 18px; }

.vehicle-card h3 {
  margin: 0;
  font-size: 24px;
}

.vehicle-card p {
  margin: 2px 0 12px;
  font-size: 17px;
}

.vehicle-card ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  line-height: 1.55;
}

.vehicle-card li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 7px;
  font-weight: 900;
}

.vehicle-card button {
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  color: #1a2433;
  background: linear-gradient(180deg, #e5bd39, #bf8813);
  font-weight: 900;
  cursor: pointer;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: 26px 0 44px;
}

.tour-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 8px;
  margin-bottom: 28px;
  padding: 28px 32px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10,25,47,0.94), rgba(10,25,47,0.72)),
    url("assets/group-transfer-cyprus.png") center/cover;
  box-shadow: var(--shadow);
}

.tour-hero {
  min-height: 470px;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10,25,47,0.96) 0%, rgba(10,25,47,0.72) 46%, rgba(10,25,47,0.18) 100%),
    url("assets/group-transfer-cyprus.png") center/cover;
}

.tour-hero__inner {
  padding: 72px 0;
}

.tour-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 900;
}

.tour-hero p {
  max-width: 640px;
  margin: 18px 0 28px;
  color: rgba(255,255,255,0.86);
  font-size: 19px;
  line-height: 1.55;
}

.tours-section,
.tour-vehicles {
  padding: 46px 0;
}

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

.tour-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(10, 25, 47, 0.12);
}

.tour-card img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.tour-card div {
  padding: 18px;
}

.tour-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.tour-card h3 {
  margin: 8px 0;
  color: var(--navy);
  font-size: 23px;
}

.tour-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.5;
}

.tour-card ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  line-height: 1.6;
}

.tour-card li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 7px;
  font-weight: 900;
}

.tour-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  width: 100%;
  border-radius: 6px;
  color: var(--navy);
  background: linear-gradient(180deg, #f7cd4e, #c99016);
  font-weight: 900;
}

.section-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.tour-preview h2 {
  margin: 0;
  font-size: 28px;
}

.tour-preview p {
  max-width: 700px;
  margin: 8px 0 0;
  color: rgba(255,255,255,0.82);
}

.gold-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  flex: 0 0 auto;
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(180deg, #f7cd4e, #c99016);
  font-weight: 900;
}

.testimonials,
.destinations {
  text-align: center;
}

.stars {
  margin: 8px 0 20px;
  color: var(--gold);
  font-size: 24px;
  letter-spacing: 2px;
}

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

.testimonial-row article {
  min-height: 160px;
  padding: 18px 14px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(10, 25, 47, 0.08);
}

.testimonial-row p {
  margin: 0 0 12px;
  color: #374151;
  font-size: 13px;
  line-height: 1.45;
}

.testimonial-row strong,
.testimonial-row span {
  display: block;
  font-size: 13px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.destination-grid article {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  color: #fff;
  background:
    linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.78) 100%),
    var(--bg, url("assets/group-transfer-cyprus.png")) center/cover;
  box-shadow: 0 12px 24px rgba(10, 25, 47, 0.14);
}

.destination-one { --bg: url("assets/group-transfer-cyprus.png"); background-position: 38% center; }
.destination-two { --bg: url("assets/group-transfer-cyprus.png"); background-position: 52% center; }
.destination-three { --bg: url("assets/group-transfer-cyprus.png"); background-position: 68% center; }

.destination-grid strong {
  font-size: 16px;
  margin-bottom: 4px;
}

.destination-grid span {
  color: rgba(255,255,255,0.86);
  font-size: 12px;
}

.faq {
  padding: 8px 0 44px;
}

.faq h2 { text-align: center; margin-bottom: 14px; }

.faq details {
  margin: 8px auto;
  max-width: 880px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.faq summary {
  padding: 14px 18px;
  color: #fff;
  background: var(--navy);
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin: 0;
  padding: 16px 18px;
  color: #374151;
}

.site-footer {
  color: #fff;
  background: linear-gradient(135deg, #082044, #052755 70%, #071b35);
  border-top: 8px solid var(--gold);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 10, 23, 0.74);
  backdrop-filter: blur(10px);
}

.reservation-modal {
  width: min(980px, 100%);
  max-height: calc(100vh - 48px);
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  overflow: auto;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,0.42);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(10, 25, 47, 0.85);
  font-size: 24px;
  cursor: pointer;
}

.modal-summary {
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(10,25,47,0.96), rgba(10,25,47,0.82)),
    url("assets/group-transfer-cyprus.png") center/cover;
}

.modal-summary span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.modal-summary h2 {
  margin: 10px 0 24px;
  font-size: 26px;
}

.modal-summary dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.modal-summary div {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.modal-summary dt {
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  font-weight: 800;
}

.modal-summary dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.modal-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.modal-form h2 {
  margin: 0;
  color: var(--navy);
}

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

.modal-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  outline: none;
}

.modal-form input:focus,
.modal-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.payment-row label,
.terms {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  font-size: 13px;
  font-weight: 700;
}

.payment-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.confirm-button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(180deg, #f7cd4e, #c99016);
  font-weight: 900;
  cursor: pointer;
}

.modal-message {
  min-height: 18px;
  margin: 0;
  color: #047857;
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  border: 2px solid rgba(255,255,255,0.78);
  box-shadow: 0 14px 34px rgba(10, 25, 47, 0.28);
  font-weight: 900;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.admin-body {
  background: #eef2f7;
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px clamp(16px, 4vw, 44px);
  color: #fff;
  background: var(--navy);
  border-bottom: 5px solid var(--gold);
}

.admin-header span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.admin-header h1 {
  margin: 4px 0 0;
  font-size: 28px;
}

.admin-header nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-header a,
.admin-header button {
  min-height: 38px;
  border: 1px solid rgba(212,175,55,0.7);
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  background: rgba(255,255,255,0.08);
  font-weight: 800;
  cursor: pointer;
}

.admin-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 26px auto 60px;
  display: grid;
  gap: 22px;
}

.admin-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(10, 25, 47, 0.1);
}

.admin-card h1,
.admin-card h2 {
  margin: 0 0 16px;
  color: var(--navy);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 14px;
}

.admin-card label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.admin-card input,
.admin-card select,
.admin-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.admin-card textarea {
  resize: vertical;
}

.admin-card input:focus,
.admin-card select:focus,
.admin-card textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.admin-wide {
  grid-column: 1 / -1;
}

.admin-check {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.admin-check input {
  width: auto;
}

.admin-alert {
  margin: 0;
  padding: 13px 15px;
  border-radius: 8px;
  color: #065f46;
  background: #d1fae5;
  border: 1px solid #a7f3d0;
  font-weight: 800;
}

.admin-alert--error {
  color: #991b1b;
  background: #fee2e2;
  border-color: #fecaca;
}

.admin-muted {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #f9fafb;
}

.admin-list summary {
  padding: 14px 16px;
  color: var(--navy);
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

.admin-list summary small {
  margin-left: 8px;
  color: var(--muted);
  font-weight: 700;
}

.admin-list .admin-grid {
  padding: 16px;
}

.admin-danger {
  padding: 0 16px 16px;
}

.admin-danger button {
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  background: #b91c1c;
  font-weight: 900;
  cursor: pointer;
}

.admin-google-tools {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 8px;
  background: #fffaf0;
}

.admin-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-secondary-button {
  min-height: 40px;
  border: 1px solid rgba(10, 25, 47, 0.18);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--navy);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.admin-secondary-button:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.14);
}

.admin-map-wrap {
  display: grid;
  gap: 8px;
}

.admin-map {
  min-height: 320px;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #dbe4f0;
}

.leaflet-container {
  position: relative;
  overflow: hidden;
  background: #dbe4f0;
  outline: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.leaflet-container img {
  max-width: none !important;
  max-height: none !important;
}

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  user-select: none;
  -webkit-user-drag: none;
}

.leaflet-tile {
  border: 0;
  filter: inherit;
  visibility: hidden;
}

.leaflet-tile-loaded {
  visibility: inherit;
}

.leaflet-map-pane {
  z-index: 400;
}

.leaflet-tile-pane {
  z-index: 200;
}

.leaflet-overlay-pane {
  z-index: 400;
}

.leaflet-shadow-pane {
  z-index: 500;
}

.leaflet-marker-pane {
  z-index: 600;
}

.ates-map-pin {
  width: 30px !important;
  height: 42px !important;
  margin-left: -15px !important;
  margin-top: -40px !important;
  background: transparent;
}

.ates-map-pin span {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  margin: 2px auto 0;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(180deg, var(--gold-2), #c99016);
  box-shadow: 0 6px 14px rgba(10, 25, 47, 0.35);
  transform: rotate(-45deg);
}

.ates-map-pin span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--navy);
  transform: translate(-50%, -50%);
}

.leaflet-tooltip-pane {
  z-index: 650;
}

.leaflet-popup-pane {
  z-index: 700;
}

.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: auto;
}

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.leaflet-top {
  top: 0;
}

.leaflet-right {
  right: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  left: 0;
}

.leaflet-control-zoom {
  margin: 10px;
  border: 2px solid rgba(0,0,0,0.18);
  border-radius: 6px;
  overflow: hidden;
}

.leaflet-control-zoom a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #111827;
  background: #fff;
  border-bottom: 1px solid #d1d5db;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.leaflet-control-zoom a:last-child {
  border-bottom: 0;
}

.leaflet-control-attribution {
  margin: 0;
  padding: 3px 6px;
  color: #374151;
  background: rgba(255,255,255,0.82);
  font-size: 11px;
}

.admin-google-tools p,
.admin-map-wrap p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 90px;
  gap: 30px;
  padding: 32px 0 28px;
}

.site-footer h3 {
  margin: 0 0 10px;
  color: #f4d46b;
}

.site-footer p {
  margin: 0;
  color: rgba(255,255,255,0.84);
  line-height: 1.7;
}

.footer-mark {
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 62px;
}

.footer-bottom {
  padding: 11px 16px;
  text-align: center;
  color: rgba(255,255,255,0.7);
  background: #07152b;
  font-size: 13px;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 112px;
    padding: 16px;
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.is-open { display: flex; }
  .menu-toggle { display: inline-grid; place-items: center; }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    background:
      linear-gradient(180deg, rgba(10,25,47,0.92), rgba(10,25,47,0.48) 52%, rgba(10,25,47,0.12)),
      url("assets/group-transfer-cyprus.png") center/cover;
  }
  .hero__blue {
    justify-content: center;
    background: transparent;
  }
  .hero__blue::after { display: none; }
  .hero-copy { padding: 38px 0 62px; }
  .hero__image { display: none; }
  .booking-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid,
  .split-section,
  .tour-preview,
  .reservation-modal,
  .tour-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .tour-preview { align-items: flex-start; flex-direction: column; }
  .modal-grid { grid-template-columns: 1fr; }
  .admin-grid { grid-template-columns: 1fr; }
  .admin-header { align-items: flex-start; flex-direction: column; }
  .testimonial-row,
  .destination-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .top-contact { font-size: 13px; gap: 10px; }
  .brand {
    width: 92px;
    height: 92px;
    transform: translateY(-8px);
  }
  .hero h1 { font-size: 34px; }
  .hero-list { font-size: 17px; }
  .booking-shell { margin-top: -40px; }
  .booking-grid,
  .quote-panel,
  .benefits { grid-template-columns: 1fr; }
  .trip-tabs { flex-direction: column; }
  .modal-backdrop { padding: 12px; }
  .modal-summary,
  .modal-form { padding: 22px 18px; }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 14px;
    font-size: 14px;
  }
}
