:root {
  --black: #030507;
  --dark: #080c12;
  --panel: #0c1118;
  --line: #222933;
  --white: #ffffff;
  --muted: #d0d5dc;
  --yellow: #f7b900;
  --yellow2: #ffca22;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.wrap,
.topbar-inner,
.hero-inner {
  width: min(1440px, 92%);
  margin: 0 auto;
}

.topbar {
  height: 94px;
  background: #020304;
  border-bottom: 1px solid #171c23;
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  width: 300px;
  flex: 0 0 auto;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 38px;
}

.menu a {
  position: relative;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  padding: 37px 0 32px;
}

.menu a:hover,
.menu a.active {
  color: var(--yellow);
}

.menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 3px;
  border-radius: 3px;
  background: var(--yellow);
}

.call-top {
  margin-left: 18px;
  text-decoration: none;
  background: linear-gradient(180deg, var(--yellow2), #f1a900);
  color: #090909;
  font-weight: 900;
  padding: 15px 21px;
  border-radius: 7px;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2, 5, 8, 0.99) 0%,
    rgba(2, 5, 8, 0.96) 26%,
    rgba(2, 5, 8, 0.72) 38%,
    rgba(2, 5, 8, 0.28) 53%,
    rgba(2, 5, 8, 0) 67%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 610px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: 470px;
  max-width: 38%;
  margin-left: 0;
  padding: 18px 0 10px;
}

.hero h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1.00;
  letter-spacing: -1.1px;
  font-weight: 900;
}

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

.subtitle {
  margin: 14px 0 0;
  color: #edf0f4;
  font-size: 18px;
  line-height: 1.4;
}

.hero-buttons {
  display: flex;
  gap: 13px;
  margin-top: 23px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 6px;
  padding: 14px 19px;
  font-weight: 900;
  font-size: 15px;
}

.btn-gold {
  background: linear-gradient(180deg, var(--yellow2), #f1ac00);
  color: #080808;
}

.btn-outline {
  border: 1px solid var(--yellow);
  background: rgba(4, 7, 11, 0.62);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 29px;
  width: 560px;
  max-width: 100%;
}

.benefit {
  display: flex;
  gap: 9px;
  padding: 0 17px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.benefit:first-child {
  padding-left: 0;
}

.benefit:last-child {
  border-right: 0;
}

.icon {
  color: var(--yellow);
  font-size: 29px;
  line-height: 1;
}

.benefit strong {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}

.benefit span {
  display: block;
  color: #d6dae0;
  font-size: 12px;
  line-height: 1.34;
}

.services {
  background: #05070a;
  padding: 28px 0 42px;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.section-title h2 {
  margin: 0;
  font-size: 31px;
}

.section-title span {
  display: block;
  width: 55px;
  height: 3px;
  background: var(--yellow);
  margin: 8px auto 0;
}

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

.card {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background:
    radial-gradient(circle at 100% 0%, rgba(247, 185, 0, 0.10), transparent 36%),
    linear-gradient(145deg, #111720, #080c11);
}

.card-icon {
  font-size: 30px;
  color: var(--yellow);
  margin-bottom: 15px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

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

.card a {
  color: var(--yellow);
  font-weight: 900;
  text-decoration: none;
}

footer {
  border-top: 1px solid var(--line);
  background: #020304;
  padding: 28px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .8fr .8fr 1fr;
  gap: 28px;
  align-items: center;
}

.footer-grid img {
  width: 260px;
}

.footer-grid strong {
  color: var(--yellow);
  font-size: 14px;
}

.footer-grid p {
  margin: 6px 0;
  color: #d5d8dc;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .logo {
    width: 240px;
  }

  .menu {
    gap: 22px;
  }

  .call-top {
    display: none;
  }

  .hero-copy {
    max-width: 43%;
  }

  .hero h1 {
    font-size: 46px;
  }
}

@media (max-width: 760px) {
  .topbar {
    height: auto;
  }

  .topbar-inner {
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .logo {
    width: 210px;
  }

  .menu {
    width: 100%;
    order: 3;
    overflow-x: auto;
    margin-left: 0;
    gap: 22px;
  }

  .menu a {
    padding: 10px 0;
  }

  .menu a.active::after {
    bottom: 0;
  }

  .hero {
    min-height: 700px;
  }

  .hero-bg {
    object-position: 66% center;
    opacity: .76;
  }

  .hero-shade {
    background: linear-gradient(
      180deg,
      rgba(2, 5, 8, 0.18) 0%,
      rgba(2, 5, 8, 0.46) 38%,
      rgba(2, 5, 8, 0.95) 68%,
      rgba(2, 5, 8, 1) 100%
    );
  }

  .hero-inner {
    min-height: 700px;
    align-items: flex-end;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    padding: 300px 0 34px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .benefits,
  .cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefit {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0 0 12px;
  }

  .footer-grid img {
    width: 220px;
  }
}



/* ===== INNER PAGES ===== */

.page-hero {
  background:
    radial-gradient(circle at 75% 30%, rgba(247,185,0,.08), transparent 28%),
    linear-gradient(180deg, #0a0f16, #05080c);
  border-bottom: 1px solid var(--line);
  padding: 58px 0 48px;
}

.page-hero .wrap {
  width: min(1440px, 92%);
  margin: 0 auto;
}

.eyebrow {
  color: var(--yellow);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .04em;
  margin-bottom: 12px;
}

.page-hero h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
  max-width: 860px;
}

.page-hero h1 span {
  color: var(--yellow);
}

.page-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 760px;
}

.inner-section {
  padding: 48px 0;
  background: #05070a;
}

.inner-section.alt {
  background: #090d13;
}

.inner-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 34px;
  align-items: start;
}

.photo-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #0b1017;
}

.photo-panel img {
  width: 100%;
  display: block;
}

.copy-panel {
  background: #0b1017;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px;
}

.copy-panel h2,
.copy-panel h3 {
  margin-top: 0;
}

.copy-panel p,
.copy-panel li {
  color: var(--muted);
  line-height: 1.65;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.service-list li {
  position: relative;
  padding: 9px 0 9px 28px;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  color: var(--yellow);
  font-weight: 900;
}

.contact-box {
  background:
    radial-gradient(circle at 100% 0%, rgba(247,185,0,.08), transparent 36%),
    #0b1017;
  border: 1px solid var(--yellow);
  border-radius: 12px;
  padding: 28px;
}

.contact-box h2 {
  margin-top: 0;
  color: var(--yellow);
}

.phone {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 27px;
  font-weight: 900;
  padding: 8px 0;
}

.phone:hover {
  color: var(--yellow);
}

.taxi-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-box {
  background: #0b1017;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
}

.value-box strong {
  display: block;
  color: var(--yellow);
  margin-bottom: 6px;
}

.value-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.vehicle-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #0b1017;
}

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

.vehicle-card .vehicle-info {
  padding: 24px;
}

.vehicle-card h2 {
  margin: 0 0 8px;
}

.vehicle-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.more-box {
  margin-top: 26px;
  border: 1px solid var(--yellow);
  border-radius: 12px;
  padding: 26px;
  text-align: center;
  background: #090d13;
}

.more-box h2 {
  margin: 0 0 8px;
  color: var(--yellow);
}

.more-box p {
  color: var(--muted);
  margin: 0 0 20px;
}

.about-copy {
  max-width: 930px;
  margin: 0 auto;
}

.about-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.about-copy b {
  color: var(--yellow);
}

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

.stat {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 18px;
  text-align: center;
  background: #0b1017;
  color: var(--muted);
}

.stat strong {
  display: block;
  font-size: 30px;
  color: var(--yellow);
  margin-bottom: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 26px;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.address-card {
  background: #0b1017;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
}

.address-card h2 {
  margin-top: 0;
}

.address-card p {
  color: var(--muted);
  line-height: 1.6;
}

.address-card a {
  color: var(--yellow);
  font-weight: 800;
  text-decoration: none;
}

.map {
  width: 100%;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0b1017;
}

.inner-footer {
  border-top: 1px solid var(--line);
  background: #020304;
  padding: 28px 0;
}

.inner-footer-grid {
  width: min(1440px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr 1fr;
  gap: 28px;
  align-items: center;
}

.inner-footer img {
  width: 250px;
}

.inner-footer strong {
  color: var(--yellow);
  font-size: 14px;
}

.inner-footer p {
  color: #d5d8dc;
  margin: 6px 0;
  font-size: 14px;
}

.inner-footer a {
  color: #d5d8dc;
  text-decoration: none;
}

@media (max-width: 900px) {
  .inner-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .stats,
  .value-strip,
  .inner-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
  .stats,
  .value-strip,
  .inner-footer-grid {
    grid-template-columns: 1fr;
  }

  .phone {
    font-size: 22px;
  }

  .vehicle-card img {
    height: 320px;
  }
}


/* =========================================================
   FINAL RESPONSIVE / MOBILE OPTIMIZATION
   ========================================================= */

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

/* Compact inner pages on desktop */
.page-hero {
  padding: 34px 0 30px;
}

.page-hero h1 {
  font-size: 42px;
}

.page-hero p {
  margin-bottom: 0;
}

.inner-section {
  padding: 32px 0;
}

.inner-section.alt {
  padding: 24px 0;
}

.taxi-image {
  max-height: 350px;
  object-position: center 50%;
}

.copy-panel,
.contact-box {
  padding: 24px;
}

.value-box {
  padding: 18px 22px;
}

.inner-footer {
  padding: 22px 0;
}

/* Tablet */
@media (max-width: 900px) {
  body {
    padding-bottom: 68px;
  }

  .topbar {
    height: auto;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .topbar-inner {
    width: 94%;
    min-height: 74px;
    padding: 10px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
    align-items: center;
  }

  .logo {
    width: 210px;
    max-width: 68vw;
  }

  .menu-toggle {
    display: inline-flex;
    width: 46px;
    height: 42px;
    align-items: center;
    justify-content: center;
    justify-self: end;
    border: 1px solid #343b46;
    border-radius: 7px;
    background: #0a0e14;
    color: #fff;
    font-size: 23px;
    cursor: pointer;
  }

  .menu {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin: 4px 0 0;
    padding: 8px 0 4px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: visible;
    background: #05070a;
    border-top: 1px solid #222933;
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    padding: 13px 6px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .menu a.active::after {
    display: none;
  }

  .call-top {
    display: none !important;
  }

  .mobile-call-bar {
    display: flex;
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 2000;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    text-decoration: none;
    background: linear-gradient(180deg, #ffca22, #f1a900);
    color: #080808;
    font-weight: 900;
    font-size: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,.42);
  }

  /* Homepage mobile */
  .hero {
    min-height: 610px;
  }

  .hero-inner {
    min-height: 610px;
    align-items: flex-end;
  }

  .hero-bg {
    object-position: 66% center;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    padding: 250px 0 28px;
  }

  .hero h1 {
    font-size: clamp(38px, 10vw, 48px);
    line-height: .98;
  }

  .subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 330px;
  }

  .btn {
    min-height: 48px;
  }

  .benefits {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 22px;
    gap: 0;
  }

  .benefit {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 10px 0;
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .services {
    padding: 24px 0 30px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .card {
    min-height: 0;
    padding: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Inner pages mobile/tablet */
  .page-hero {
    padding: 28px 0 24px;
  }

  .page-hero h1 {
    font-size: clamp(34px, 8vw, 42px);
  }

  .page-hero p {
    font-size: 16px;
  }

  .inner-section {
    padding: 24px 0;
  }

  .inner-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .taxi-image {
    max-height: 290px;
    border-radius: 9px;
  }

  .copy-panel,
  .contact-box,
  .address-card {
    padding: 21px;
  }

  .phone {
    font-size: 23px;
  }

  .value-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .vehicle-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vehicle-card img {
    height: auto;
    max-height: 430px;
    object-fit: cover;
  }

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

  .map {
    min-height: 380px;
  }

  .inner-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}

/* Small phones */
@media (max-width: 560px) {
  .wrap,
  .hero-inner,
  .topbar-inner,
  .page-hero .wrap,
  .inner-footer-grid {
    width: 92%;
  }

  .logo {
    width: 185px;
  }

  .hero {
    min-height: 590px;
  }

  .hero-inner {
    min-height: 590px;
  }

  .hero-copy {
    padding-top: 235px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .footer-grid,
  .inner-footer-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .footer-grid img,
  .inner-footer img {
    width: 210px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .taxi-image {
    max-height: 240px;
  }

  .phone {
    font-size: 21px;
    padding: 9px 0;
  }

  .more-box .btn {
    width: 100%;
    margin: 7px 0 !important;
  }

  .map {
    min-height: 330px;
  }
}

/* ===== PHOTO REFRESH 25.08.2026 ===== */
/* Taxi fleet: keep the complete row of cars prominent on desktop and mobile. */
.taxi-image {
  height: clamp(300px, 32vw, 460px);
  max-height: none;
  object-fit: cover;
  object-position: center 44%;
}

/* Rent-a-car photos use a consistent premium landscape frame. */
.vehicle-card img {
  height: 390px;
  object-fit: cover;
  background: #080c12;
}
.vehicle-card:nth-child(1) img {
  object-position: center 58%;
}
.vehicle-card:nth-child(2) img {
  object-position: center 52%;
}

@media (max-width: 900px) {
  .taxi-image {
    height: clamp(240px, 52vw, 390px);
    max-height: none;
    object-position: center 46%;
  }
  .vehicle-card img {
    height: clamp(300px, 68vw, 430px);
  }
}

@media (max-width: 560px) {
  .taxi-image {
    height: 245px;
    max-height: none;
  }
  .vehicle-card img {
    height: 320px;
  }
}

/* Final professional service icons */
.card-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.service-svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: #f7b900;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Premium realistic service cards */
.premium-service-cards { gap: 24px; }
.premium-service-card {
  padding: 0;
  overflow: hidden;
  min-height: 0;
  border: 1px solid rgba(247,185,0,.48);
  border-radius: 16px;
  background: linear-gradient(180deg,#0d131a 0%,#05080c 100%);
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.premium-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247,185,0,.85);
  box-shadow: 0 22px 55px rgba(0,0,0,.42);
}
.service-photo { height: 230px; overflow: hidden; background:#080b0f; }
.service-photo img { width:100%; height:100%; object-fit:cover; display:block; filter:saturate(.9) contrast(1.05); }
.premium-service-card:nth-child(1) .service-photo img { object-position:center; }
.premium-service-card:nth-child(2) .service-photo img { object-position:center 58%; }
.premium-service-card:nth-child(3) .service-photo img { object-position:center; }
.service-card-body { padding: 25px 26px 28px; text-align:center; }
.premium-service-card h3 { margin:0; color:#f3a11b; font-size:25px; letter-spacing:.5px; }
.service-line { display:block; width:44px; height:2px; margin:12px auto 16px; background:#f3a11b; }
.premium-service-card p { min-height:48px; margin:0 0 24px; color:#e2e5e9; line-height:1.55; }
.premium-service-card a { color:#f3a11b; letter-spacing:.7px; }
@media (max-width: 760px) {
  .premium-service-cards { gap:18px; }
  .service-photo { height:220px; }
  .service-card-body { padding:22px 20px 25px; }
  .premium-service-card p { min-height:0; }
}

/* Final refined service cards — elegant, realistic, balanced */
.services { padding-top: 72px; padding-bottom: 84px; }
.premium-service-cards { gap: 26px; align-items: stretch; }
.premium-service-card {
  border: 1px solid rgba(243,161,27,.46);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(12,17,23,.98), rgba(6,10,14,.99));
  box-shadow: 0 18px 45px rgba(0,0,0,.26);
  overflow: hidden;
}
.premium-service-card:hover { transform: translateY(-3px); border-color: rgba(243,161,27,.68); }
.service-photo { height: 255px; background:#070b0f; overflow:hidden; }
.service-photo img { width:100%; height:100%; object-fit:cover; display:block; filter:saturate(.92) contrast(1.04) brightness(.92); }
/* Taxi intentionally remains a wider/smaller composition because the hero already shows the same car close-up. */
.premium-service-card:nth-child(1) .service-photo img { object-fit:cover; object-position:center 52%; padding:0; box-sizing:border-box; background:#080c10; }
.premium-service-card:nth-child(2) .service-photo img { object-position:center 55%; }
.premium-service-card:nth-child(3) .service-photo img { object-position:center 48%; }
.service-card-body { padding: 28px 28px 31px; text-align:center; }
.premium-service-card h3 { font-size:26px; font-weight:800; color:#f3a11b; }
.service-line { width:46px; height:3px; border-radius:3px; margin:13px auto 17px; }
.premium-service-card p { color:#f0f1f2; font-size:15px; line-height:1.65; min-height:50px; margin-bottom:27px; }
.premium-service-card a { font-weight:800; font-size:15px; letter-spacing:1px; }
@media (max-width: 900px) {
  .services { padding-top:52px; padding-bottom:62px; }
  .premium-service-cards { gap:20px; }
  .service-photo { height:235px; }
}
@media (max-width: 680px) {
  .premium-service-card { border-radius:17px; }
  .service-photo { height:225px; }
  .service-card-body { padding:24px 22px 27px; }
  .premium-service-card h3 { font-size:23px; }
  .premium-service-card p { min-height:0; font-size:14px; }
}

/* Final Rent a Car layout — Peugeot 301 only */
.vehicle-grid {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}
.vehicle-grid .vehicle-card img {
  width: 100%;
  object-position: center;
}

/* Transferi — dedicated page */
.transfer-page-main { background:#05080c; }
.transfer-poster-section { padding: 42px 18px 64px; }
.transfer-poster-wrap { width:min(1536px,100%); margin:0 auto; border:1px solid rgba(243,161,27,.28); border-radius:18px; overflow:hidden; box-shadow:0 24px 70px rgba(0,0,0,.42); background:#05080c; }
.transfer-poster { width:100%; height:auto; display:block; }
@media (max-width:680px){
  .transfer-poster-section { padding:18px 0 34px; }
  .transfer-poster-wrap { border-radius:0; border-left:0; border-right:0; }
  .transfer-poster { width:100%; }
}

/* Final full-width service posters */
.poster-page-main{background:#050505;padding:0;margin:0}
.poster-page-section{padding:0;margin:0;background:#050505}
.poster-page-wrap{width:100%;max-width:1600px;margin:0 auto;line-height:0}
.full-page-poster{display:block;width:100%;height:auto;object-fit:contain;margin:0 auto}
@media (max-width:700px){
  .poster-page-wrap{width:100%;overflow:hidden}
  .full-page-poster{width:100%;height:auto}
}
