/* =========================================================
   GLOBAL SETTINGS
========================================================= */
.lang-switch {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
  margin-bottom: 8px;
}

.lang-btn {
  border: none;
  background: #e5e7eb;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  cursor: pointer;
}

.lang-btn.active {
  background: #e5ff00;
  color: #fff;
  font-weight: 600;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    background: #f3f4f6;
    color: #111827;
    overflow-x: hidden;
  }
  
  img {
    display: block;
    max-width: 100%;
  }
  
  /* Uygulama çerçevesi (mobil-app görünümü) */
  .app-shell {
    max-width: 480px;
    margin: 0 auto;
    background: #f3f4f6;
    min-height: 100vh;
    padding-bottom: 80px;
  }
  
  
  /* =========================================================
     WELCOME SCREEN
  ========================================================= */
  
  .welcome-screen {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
  }
  
  .welcome-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.55);
    z-index: -2;
  }
  
  .welcome-screen::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.15));
    z-index: -1;
  }
  
  .welcome-card {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 420px;
    background: #ffffff;
    padding: 24px 20px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 18px 36px rgba(0,0,0,0.35);
  }
  
  .welcome-card h1 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
  }
  
  .welcome-card p {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 24px;
  }
  
  .primary-btn {
    width: 100%;
    background: #ffd900;
    color: #000000;
    border: none;
    padding: 14px 0;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 12px 25px rgba(47,128,237,0.55);
    transition: 0.12s ease;
  }
  
  .primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(47,128,237,0.75);
  }
  
  
  /* =========================================================
     LIST SCREEN (Region Selection)
  ========================================================= */
  
  .list-header {
    padding: 20px 20px 8px;
  }
  
  .location-line {
    font-size: 0.8rem;
    color: #afaa9c;
  }
  
  .location-title {
    font-size: 1.3rem;
    font-weight: 600;
  }
  
  /* Direction Toggle */
  .direction-toggle {
    display: flex;
    gap: 10px;
    padding: 0 20px 12px;
  }
  
  .dir-btn {
    flex: 1;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 8px;
    border-radius: 999px;
    font-size: 0.85rem;
    color: #6b7280;
    cursor: pointer;
  }
  
  .dir-btn.active {
    background: #ffee00;
    border-color: #fffb00;
    color: #000000;
    font-weight: 600;
  }
  
  /* Search Row */
  .search-row {
    display: flex;
    gap: 10px;
    padding: 0 20px 12px;
  }
  
  .search-input {
    flex: 1;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    padding: 10px 12px;
    font-size: 0.9rem;
    background: #ffffff;
  }
  
  .filter-btn {
    width: 44px;
    height: 44px;
    background: #fffb00;
    color: white;
    border-radius: 14px;
    border: none;
    font-size: 1.1rem;
  }
  
  /* Tabs */
  .tabs {
    display: flex;
    gap: 18px;
    padding: 0 20px;
    margin-bottom: 12px;
    border-bottom: 1px solid #eaebe5;
  }
  
  .tab {
    background: none;
    border: none;
    font-size: 0.9rem;
    color: #9ca3af;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
  }
  
  .tab.active {
    color: #111827;
    font-weight: 600;
  }
  
  .tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #ffee00;
  }
  
  /* Transfer Cards */
  .transfer-cards {
    padding: 12px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: 0.12s;
  }
  
  .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.18);
  }
  
  .card img {
    height: 160px;
    object-fit: cover;
    width: 100%;
  }
  
  .card-body {
    padding: 12px 14px 16px;
  }
  
  .card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
  }
  
  .card-meta {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 6px;
  }
  
  .card-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffc400;
  }
  
  
  /* =========================================================
     RESERVATION SCREEN
  ========================================================= */
  
  .reservation-header {
    max-width: 480px;
    margin: 0 auto;
    padding: 16px 20px 8px;
    display: flex;
    justify-content: space-between;
  }
  
  .back-btn,
  .fav-btn {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: none;
    background: #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
  }
  
  /* Image */
  .reservation-img {
    max-width: 480px;
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 18px;
    margin: 0 auto;
  }
  
  /* Content */
  .reservation-info {
    max-width: 480px;
    margin: 0 auto;
    padding: 16px 20px 100px;
  }
  
  .reservation-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .reservation-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 14px;
  }
  
  .reservation-price span {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
  }
  
  .reservation-price small {
    font-size: 0.75rem;
    color: #9ca3af;
  }
  
  .reservation-desc {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  
  /* Icons Row */
  .details-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-bottom: 18px;
    color: #4b5563;
    font-size: 0.88rem;
  }
  
  .detail-icon {
    width: 22px;
    height: 22px;
    background: #e5e7eb;
    border-radius: 999px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 4px;
  }
  
  /* Form */
  #reservationForm label {
    font-size: 0.8rem;
    color: #4b5563;
    margin-top: 10px;
    display: block;
    font-weight: 600;
  }
  
  #reservationForm input {
    width: 100%;
    margin-top: 4px;
    padding: 12px;
    font-size: 0.95rem;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    background: #ffffff;
  }
  
  /* Bottom bar */
  .bottom-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 480px;
    width: 100%;
    background: #ffffff;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
  }
  
  .bottom-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: #000000;
  }
  
  .reserve-btn {
    background: #fbff00;
    color: rgb(0, 0, 0);
    border: none;
    padding: 12px 22px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(255, 238, 0, 0.65);
  }
  
  .reserve-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.8);
  }
  .hotel-field{
  position: relative;
}

.hotel-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 50;
  overflow: hidden;
}

.hotel-list div {
  padding: 10px 12px;
  font-size: 0.9rem;
  cursor: pointer;
}

.hotel-list div:hover {
  background: #f3f4f6;
}
.match-info{
  margin: 6px 20px 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #374151;
  font-size: 0.85rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.match-info b{
  color: #111827;
}
/* =========================================================
   DESKTOP UPGRADE (>= 900px)
   Mobile tasarım aynen kalır, masaüstünde web-app görünümü.
========================================================= */

@media (min-width: 900px) {

  body {
    
    background: #ffd000; /* koyu arka plan */
    background-image: url("arkaplans.jpg");
    background-repeat: no-repeat;
  }

  /* Uygulama shell'i ortala + büyüt */
  .app-shell {
    max-width: 1100px;
    margin: 28px auto;
    min-height: calc(100vh - 56px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
    background: #f3f4f6;
    padding-bottom: 0; /* bottom bar için */
  }

  /* Sayfalarda genel yatay padding artır */
  .list-header,
  .transfers,
  .reservation-info {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  /* LIST PAGE: kartları tek sütun yerine grid yap */
  .transfer-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 16px 28px 28px;
  }

  .card img {
    height: 180px;
  }

  /* Search + toggle aynı hizada daha geniş dursun */
  .direction-toggle,
  .search-row,
  .tabs {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  /* RESERVATION PAGE: 2 kolon layout */
  body[data-page="reservation"] .app-shell {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }

  body[data-page="reservation"] .reservation-header {
    grid-column: 1 / -1;
    max-width: none;
    margin: 0;
    padding: 18px 22px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
  }

  body[data-page="reservation"] .reservation-img {
    grid-column: 1 / 2;
    max-width: none;
    height: 100%;
    min-height: 520px;
    border-radius: 0;
    margin: 0;
    object-fit: cover;
  }

  body[data-page="reservation"] .reservation-info {
    grid-column: 2 / 3;
    max-width: none;
    padding: 22px 26px 110px;
    background: #f3f4f6;
  }

  /* Form daha premium görünsün */
  body[data-page="reservation"] #reservationForm input {
    background: #fff;
  }

  /* Bottom bar masaüstünde sağ kolonda kalsın */
  body[data-page="reservation"] .bottom-bar {
    left: auto;
    transform: none;
    max-width: none;
    width: auto;
    right: 0;
    bottom: 0;
    grid-column: 2 / 3;
    position: sticky;
    margin-top: 14px;
    border-top: 1px solid #e5e7eb;
    box-shadow: none;
    border-radius: 18px;
  }

  /* WELCOME PAGE: kartı ortala + daha şık yap */
  body[data-page="welcome"] .welcome-card {
    max-width: 520px;
    padding: 28px 26px;
    border-radius: 26px;
  }
}
/* =========================================
   FIX: WELCOME PAGE FULLSCREEN (DESKTOP)
========================================= */

body[data-page="welcome"] {
  margin: 0;
  overflow: hidden;          /* scroll olmasın */
  background: #000;          /* yedek */
}

body[data-page="welcome"] .app-shell {
  max-width: none !important;    /* desktop 1100px'i iptal */
  margin: 0 !important;          /* ortalama/margin iptal */
  border-radius: 0 !important;   /* köşe yuvarlama iptal */
  min-height: 100vh !important;
  height: 100vh !important;
  padding-bottom: 0 !important;
  box-shadow: none !important;
  overflow: hidden;
  background: transparent;
}

/* Welcome ekranı tam ekran */
body[data-page="welcome"] .welcome-screen {
  position: relative;
  width: 100%;
  height: 100vh;                 /* tam ekran */
  min-height: 100vh;
  overflow: hidden;
}

/* Arka plan görseli tam ekran kaplasın */
body[data-page="welcome"] .welcome-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Kartın alttan taşmaması için */
body[data-page="welcome"] .welcome-card {
  left: 50%;
  transform: translateX(-50%);
  bottom: 28px;
  width: min(520px, calc(100% - 40px));
}
/* =========================================================
   HARD FIX: WELCOME PAGE FULLSCREEN ON DESKTOP
   (Put this at the VERY end of style.css)
========================================================= */

@media (min-width: 900px) {

  html, body {
    height: 100%;
  }

  body[data-page="welcome"] {
    margin: 0;
    overflow: hidden;
    background: #000;
  }

  /* Desktop "centered app" görünümünü welcome'da tamamen kapat */
  body[data-page="welcome"] .app-shell {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;

    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    padding: 0 !important;
    padding-bottom: 0 !important;

    overflow: hidden !important;
    background: transparent !important;

    display: block !important; /* grid vs. varsa iptal */
  }

  /* Senin sayfa wrapper'ın hangisiyse ikisini de kapsa */
  body[data-page="welcome"] .welcome-screen,
  body[data-page="welcome"] .landing {
    position: relative !important;
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    overflow: hidden !important;
  }

  /* Arka plan görseli (img) tam ekran cover */
  body[data-page="welcome"] .welcome-bg,
  body[data-page="welcome"] .landing-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    z-index: -2 !important;
  }

  /* Welcome overlay varsa */
  body[data-page="welcome"] .welcome-screen::before,
  body[data-page="welcome"] .landing::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
  }

  /* Kart altta kalsın, taşma yapmasın */
  body[data-page="welcome"] .welcome-card,
  body[data-page="welcome"] .landing-content {
    width: min(520px, calc(100% - 48px)) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 28px !important;
  }
}
/* =========================================================
   WELCOME PAGE BACKGROUND (MOBILE / DESKTOP)
========================================================= */

body[data-page="welcome"] .welcome-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

/* 📱 MOBİL */
@media (max-width: 899px) {
  body[data-page="welcome"] .welcome-bg {
    content: url("mobil.jpg");
  }
}

/* 💻 MASAÜSTÜ */
@media (min-width: 900px) {
  body[data-page="welcome"] .welcome-bg {
    content: url("masaüstü.jpg");
  }
}
/* =========================================================
   VEHICLE PAGE
========================================================= */

.vehicle-wrap{
  padding: 14px 20px 110px;
}

.vehicle-title{
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.vehicle-sub{
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 14px;
}

.vehicle-card{
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
  border: 2px solid transparent;
}

.vehicle-card.selected{
  border-color: #2f80ed;
}

.vehicle-img{
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.vehicle-body{
  padding: 14px 14px 16px;
}

.vehicle-name{
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.vehicle-meta{
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 10px;
}

.vehicle-selected-badge{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(47,128,237,0.12);
  color: #2f80ed;
  font-weight: 700;
  font-size: 0.85rem;
}
/* WELCOME */
/* =========================
   WELCOME (DEFAULT: DESKTOP)
========================= */

.welcome-screen{
  position: relative;
  height: 100dvh;
  overflow: hidden; /* desktop'ta scroll yok */
}

.welcome-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55);
  z-index: -2;
}

.welcome-screen::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
  z-index: -1;
}

/* Kart: masaüstünde altta sabit */
.welcome-card{
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 420px;
  background: #fff;
  padding: 24px 20px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 18px 36px rgba(0,0,0,0.35);
}

/* =========================
   MOBILE: SCROLL AÇ
========================= */

@media (max-width: 480px), (max-height: 750px){

  /* Scroll: sayfa akışa geçsin */
  .welcome-screen{
    height: auto;
    min-height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px 0 calc(16px + env(safe-area-inset-bottom));
  }

  /* Kart: artık absolute değil -> scroll içinde aşağıda dursun */
  .welcome-card{
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 60vh auto 16px;  /* kart aşağıda görünsün */
  }
}
/* =========================================================
   FINAL FIX: WELCOME MOBILE SCROLL (PUT AT VERY END)
   - Desktop: fullscreen + no scroll
   - Mobile: scroll enabled (so button always reachable)
========================================================= */

html, body { height: 100%; }

/* --- WELCOME GLOBAL (base) --- */
body[data-page="welcome"]{
  margin: 0;
  background: #000;
}

/* background image always cover */
body[data-page="welcome"] .welcome-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

/* overlay */
body[data-page="welcome"] .welcome-screen::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
  z-index:-1;
}

/* =========================
   DESKTOP (>=900px): NO SCROLL
========================= */
@media (min-width: 900px){
  body[data-page="welcome"]{
    overflow: hidden; /* desktop sabit */
  }

  body[data-page="welcome"] .welcome-screen{
    position: relative;
    width: 100vw;
    height: 100dvh;
    overflow: hidden;
  }

  body[data-page="welcome"] .welcome-card{
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    width: min(520px, calc(100% - 48px));
    max-width: 520px;
  }
}

/* =========================
   MOBILE (<900px): SCROLL ON
========================= */
@media (max-width: 899px){

  /* ✅ EN ÖNEMLİ: welcome sayfasında scroll'u aç */
  body[data-page="welcome"]{
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  /* Screen scroll container olsun */
  body[data-page="welcome"] .welcome-screen{
    position: relative;
    height: 100dvh;              /* ekran kadar */
    overflow-y: auto;            /* ✅ scroll */
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 16px 0 calc(24px + env(safe-area-inset-bottom));
  }

  /* Kartı akışa al ki gerçek yükseklik üretsin (scroll oluşsun) */
  body[data-page="welcome"] .welcome-card{
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;

    width: calc(100% - 40px);
    max-width: 420px;
    margin: 57vh auto 16px; /* kart aşağıda dursun */
  }
}

/* =========================================================
   WELCOME PAGE BACKGROUND (MOBILE / DESKTOP)
   (Senin mobil.jpg / masaüstü.jpg sistemi)
========================================================= */
@media (max-width: 899px){
  body[data-page="welcome"] .welcome-bg{ content: url("mobil.jpg"); }
}
@media (min-width: 900px){
  body[data-page="welcome"] .welcome-bg{ content: url("masaüstü.jpg"); }
}
/* =========================
   VEHICLE PAGE (2 options)
========================= */

.vehicle-grid{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vehicle-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
}

.vehicle-plus{
  margin-top: 6px;
  font-weight: 700;
  color: #111827;
  font-size: 0.95rem;
  opacity: 0.9;
}

.hidden{ display:none !important; }

/* Mobile images */
@media (max-width: 899px){
  .vehicle-img--transporter{ content: url("transporter.jpg"); }
  .vehicle-img--vito{ content: url("vitoicis.jpg"); }
}

/* Desktop images */
@media (min-width: 900px){
  .vehicle-img--transporter{ content: url("transporter-desktop.jpg"); }
  .vehicle-img--vito{ content: url("vitoicib.jpg"); }
}
/* =========================================
   VEHICLE PAGE - DESKTOP BOTTOM BAR CARD
   (sadece PC'de kart gibi dursun)
========================================= */

@media (min-width: 900px){

  /* vehicle sayfasında bottom-bar'ı kartlaştır */
  body[data-page="vehicle"] .bottom-bar{
    position: sticky;          /* sayfayı aşağı indirince de güzel dursun */
    bottom: 18px;

    left: auto;
    transform: none;
    right: auto;

    max-width: none;
    width: calc(30% - 12px);
    margin: 18px auto 0;

    border-radius: 20px;
    padding: 18px 20px;

    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
  }

  /* fiyat kısmını premium yap */
  body[data-page="vehicle"] .bottom-price{
    font-size: 1.8rem;
    font-weight: 800;
    color: #000;
  }

  /* buton: reserve-btn zaten var -> onu daha şık yap */
  body[data-page="vehicle"] .reserve-btn{
    border-radius: 16px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(0,0,0,0.20);
  }

  body[data-page="vehicle"] .reserve-btn:hover{
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
  }
}
/* Phone input row */
.phone-row{
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.country-code{
  width: 110px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  background: #fff;
  font-size: 1rem;
  cursor: pointer;
  appearance: none;
}

.phone-input{
  flex: 1;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  background: #fff;
  font-size: 0.95rem;
}
.site-footer{
  background:#000;
  color:#fff;
  padding:24px;
  text-align:center;
}

.payment-logos img{
  max-width:320px;
  opacity:0.9;
  margin-bottom:12px;
}

.footer-links a{
  color:#aaa;
  font-size:13px;
  margin:0 8px;
  text-decoration:none;
}

.footer-links a:hover{
  color:#fff;
}











