/* RESET & BASE */
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    html, body { overflow-x: hidden; margin: 0; padding: 0; }
    body { 
      font-family: 'Montserrat', Arial, sans-serif; 
      background: #fff; 
      line-height: 1.6;
      color: #333;
    }

    [hidden] {
      display: none !important;
    }

    /* NAVBAR */
    .navbar {
      background: rgba(255,255,255,0.95);
      border-bottom: 1px solid #e8e8e8;
      padding: 0 max(20px, 3vw);
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 70px;
      z-index: 1100;
      position: sticky;
      top: 0;
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }

    .navbar .brand {
      font-size: clamp(16px, 3vw, 22px);
      font-weight: 800;
      color: #233977;
      letter-spacing: 0.5px;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-logo {
      height: 36px;
      width: auto;
      object-fit: contain;
      display: block;
    }

    .navbar nav { 
      display: flex; 
      gap: clamp(16px, 3vw, 32px);
      align-items: center;
    }

    .navbar a {
      color: #1a2452;
      text-decoration: none;
      font-weight: 600;
      font-size: clamp(13px, 1.8vw, 14px);
      padding: 7px 11px;
      border-radius: 6px;
      transition: color .15s, background .15s;
      position: relative;
    }

    .navbar a:hover, .navbar a.active {
      color: #c9922a;
      background: rgba(201,146,42,0.08);
    }

    .auth-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 7px;
      border: 1.5px solid #dde3f0;
      background: transparent;
      color: #1a2452;
      font-size: 13px;
      font-weight: 600;
      padding: 8px 16px;
      cursor: pointer;
      transition: border-color .15s, background .15s;
      min-height: 34px;
      text-decoration: none;
      font-family: inherit;
    }

    .auth-btn.primary {
      background: #1a2452;
      color: #fff;
      border-color: #1a2452;
    }

    .auth-btn:hover { border-color: #1a2452; background: #f0f3fa; }
    .auth-btn.primary:hover { background: #0d1535; border-color: #0d1535; }

    .nav-auth {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-left: 16px;
      flex-wrap: wrap;
    }

    .lang-switch {
      display: inline-flex;
      border: 1px solid #dfe3f1;
      border-radius: 999px;
      overflow: hidden;
      margin-left: 12px;
    }

    .lang-btn {
      border: 0;
      background: transparent;
      font-size: 13px;
      font-weight: 600;
      padding: 6px 12px;
      cursor: pointer;
      color: #1c2441;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .lang-btn.is-active {
      background: #233977;
      color: #fff;
    }

    /* HAMBURGER */
    .burger {
      display: none;
      background: transparent;
      border: 0;
      font-size: 24px;
      width: 40px; 
      height: 40px;
      border-radius: 8px;
      color: #1c2441;
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }

    .nav-closed { display: none !important; }

    /* HERO SECTION */
    .hero {
      position: relative;
      min-height: 100vh;
      background: url('vito.png') center center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 max(20px, 5vw);
      gap: 40px;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: linear-gradient(100deg, rgba(10,15,50,0.48) 0%, rgba(10,15,50,0.22) 55%, rgba(0,0,0,0.02) 100%);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      color: #fff;
      max-width: 550px;
      flex: 1;
    }

    .hero-title {
      font-size: clamp(28px, 4.5vw, 44px);
      font-weight: 800;
      margin: 0 0 16px 0;
      line-height: 1.15;
      color: #fff;
      letter-spacing: -0.3px;
    }

    .hero-desc {
      font-size: clamp(15px, 2.5vw, 18px);
      font-weight: 400;
      margin-bottom: 26px;
      line-height: 1.55;
      color: rgba(255,255,255,0.82);
    }

    .mobile-booking-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 18px;
      padding: 13px 26px;
      border: 0;
      border-radius: 8px;
      font-weight: 700;
      font-size: 15px;
      color: #fff;
      background: #c9922a;
      box-shadow: 0 8px 20px rgba(201,146,42,0.35);
      cursor: pointer;
      letter-spacing: 0.2px;
      transition: filter .18s, transform .15s;
    }

    .mobile-booking-toggle:hover {
      filter: brightness(1.08);
      transform: translateY(-1px);
    }

    .mobile-booking-toggle:focus-visible {
      outline: 3px solid rgba(201,146,42,0.5);
      outline-offset: 4px;
    }

    .booking-wrap[hidden] {
      display: none !important;
    }

    /* BOOKING CARD */
    .booking-wrap {
      position: relative;
      z-index: 2;
      flex: 0 0 auto;
    }

    .booking-prestep {
      width: min(440px, 90vw);
      background: #fff;
      border-radius: 16px;
      padding: 32px 28px 28px;
      box-shadow: 0 16px 48px rgba(10,15,50,0.18);
      border: 1px solid #dde3f0;
      color: #1a1e2e;
      margin-bottom: 20px;
    }

    .prestep-panel h3 {
      margin: 0 0 8px;
      font-size: 18px;
      font-weight: 800;
      color: #1a2452;
      line-height: 1.3;
    }

    .prestep-panel p {
      margin: 0;
      font-size: 14px;
      color: #6b7280;
      line-height: 1.6;
    }

    .prestep-actions {
      display: flex;
      gap: 10px;
      margin-top: 22px;
    }

    .prestep-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      border: 1.5px solid #dde3f0;
      padding: 12px 20px;
      font-weight: 700;
      font-size: 14px;
      font-family: inherit;
      cursor: pointer;
      background: #f4f6fb;
      color: #1a2452;
      transition: border-color .15s, background .15s;
      text-decoration: none;
      flex: 1;
      text-align: center;
    }

    .prestep-btn:hover {
      border-color: #b8c3e4;
      background: #eef1f9;
    }

    .prestep-btn.primary {
      background: #c9922a;
      color: #fff;
      border-color: #c9922a;
    }

    .prestep-btn.primary:hover {
      background: #b5801f;
      border-color: #b5801f;
    }

    .prestep-btn:focus-visible {
      outline: 3px solid rgba(26,36,82,0.3);
      outline-offset: 3px;
    }

    .booking-card.is-hidden {
      display: none;
    }

    .booking-card {
      width: min(460px, 92vw);
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 20px 56px rgba(10,15,50,0.16);
      padding: 0;
      border: 1px solid #dde3f0;
      overflow: hidden;
    }

    /* Login strip at the top of the form */
    .form-login-strip {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #f4f6fb;
      border-bottom: 1px solid #dde3f0;
      padding: 10px 22px;
      font-size: 13px;
      color: #4a5568;
    }
    .form-login-strip svg {
      flex-shrink: 0;
      color: #1a2452;
    }
    .form-login-strip span {
      flex: 1;
    }
    .form-login-strip--member {
      background: #eef1f9;
      color: #1a2452;
    }
    .form-login-btn {
      background: #1a2452;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 700;
      padding: 6px 14px;
      cursor: pointer;
      font-family: inherit;
      letter-spacing: 0.2px;
      white-space: nowrap;
      text-decoration: none;
      transition: background 0.15s;
    }
    .form-login-btn:hover { background: #c9922a; }
    .form-login-btn--outline {
      background: transparent;
      color: #1a2452;
      border: 1.5px solid #1a2452;
    }
    .form-login-btn--outline:hover { background: #1a2452; color: #fff; }

    .form-body {
      padding: 22px 26px 26px;
    }

    .booking-title {
      color: #1a2452;
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 20px;
      letter-spacing: -0.2px;
    }

    .booking-back {
      background: transparent;
      border: 0;
      color: #6b7280;
      font-weight: 600;
      font-size: 13px;
      font-family: inherit;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      cursor: pointer;
      margin-bottom: 8px;
      padding: 0;
      transition: color .15s;
    }

    .booking-back:hover {
      color: #1a2452;
    }

    /* FORM STYLES */
    .form-group {
      margin-bottom: 18px;
    }

    .form-row {
      display: flex;
      gap: 15px;
      margin-bottom: 18px;
    }

    .half-width {
      flex: 1;
    }

    label {
      font-weight: 600;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      display: block;
      margin-bottom: 6px;
      color: #6b7280;
    }

    input, select {
      width: 100%;
      padding: 12px 14px;
      border-radius: 10px;
      border: 1.5px solid #dde3f0;
      font-size: 14px;
      background: #fff;
      font-family: 'Montserrat', Arial, sans-serif;
      color: #1a2452;
      transition: border-color 0.18s, box-shadow 0.18s;
      outline: none;
      box-sizing: border-box;
    }

    input:focus, select:focus {
      border-color: #c9922a;
      box-shadow: 0 0 0 3px rgba(201,146,42,0.12);
    }

    /* Google Places Autocomplete */
    .pac-container {
      border-radius: 8px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
      border: none;
      font-family: 'Montserrat', Arial, sans-serif;
    }

    .pac-item {
      border-bottom: 1px solid #f0f0f0;
      padding: 12px 16px;
    }

    .pac-item:hover {
      background: #f8f9fa;
    }

    .flight-input-wrap { position: relative; }
    .flight-hint {
      display: block;
      font-size: 11px;
      color: #8a8fa0;
      margin-top: 5px;
      font-style: italic;
    }

    /* Vehicle selection inside booking form */
    .vehicle-select-box {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #f4f6fb;
      border: 1.5px solid #dde3f0;
      border-radius: 10px;
      padding: 11px 14px;
      min-height: 44px;
    }
    .vehicle-select-box.has-vehicle {
      border-color: #c9922a;
      background: #fdf7ee;
    }
    .vehicle-display-text {
      flex: 1;
      font-size: 14px;
      color: #8a8fa0;
    }
    .vehicle-select-box.has-vehicle .vehicle-display-text {
      color: #1a2452;
      font-weight: 600;
    }
    .vehicle-clear-btn {
      background: none;
      border: none;
      color: #c9922a;
      font-size: 15px;
      cursor: pointer;
      padding: 0 2px;
      line-height: 1;
    }

    .submit-btn {
      background: #c9922a;
      color: #fff;
      border: none;
      width: 100%;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 700;
      padding: 15px;
      margin-top: 20px;
      cursor: pointer;
      letter-spacing: 0.3px;
      transition: filter .18s, transform .12s;
      box-shadow: 0 6px 18px rgba(201,146,42,0.3);
      position: relative;
      overflow: hidden;
    }

    .submit-btn:hover {
      filter: brightness(1.08);
      transform: translateY(-1px);
    }

    .submit-btn:active {
      transform: translateY(0);
    }

    .submit-btn.full {
      width: 100%;
      margin-top: 14px;
    }

    .auth-form .submit-btn {
      text-transform: none;
      letter-spacing: 0.2px;
    }

    .booking-backdrop,
    .auth-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(18, 24, 46, 0.55);
      backdrop-filter: blur(3px);
      z-index: 4000;
      display: none;
      transition: opacity 0.2s ease;
      opacity: 0;
    }

    .auth-backdrop.is-visible,
    .booking-backdrop.is-visible {
      display: block;
      opacity: 1;
    }

    /* ── AUTH MODAL (centred, unchanged) ── */
    .auth-modal {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -44%);
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 24px 60px rgba(10,15,50,0.2);
      z-index: 4001;
      padding: 0;
      display: none;
      opacity: 0;
      transition: opacity 0.22s ease, transform 0.22s ease;
      width: min(420px, calc(100vw - 32px));
      overflow: hidden;
    }
    .auth-modal.is-open {
      display: block;
      opacity: 1;
      transform: translate(-50%, -50%);
    }

    /* ── BOOKING DRAWER (slides in from right) ── */
    .booking-modal {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      height: 100dvh;
      width: min(500px, 100vw);
      background: #fff;
      border-radius: 16px 0 0 16px;
      box-shadow: -8px 0 40px rgba(10,15,50,0.18);
      z-index: 4001;
      display: block;
      overflow-y: auto;
      overscroll-behavior: contain;
      visibility: hidden;
      pointer-events: none;
      opacity: 0;
      transform: translateX(100%);
      transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
                  opacity 0.25s ease,
                  visibility 0s linear 0.3s;
    }
    .booking-modal.is-open {
      visibility: visible;
      pointer-events: auto;
      opacity: 1;
      transform: translateX(0);
      transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
                  opacity 0.25s ease,
                  visibility 0s linear 0s;
    }

    .booking-dialog {
      padding: 20px 24px 32px;
      position: relative;
    }

    .booking-close {
      position: sticky;
      top: 0;
      float: right;
      border: none;
      background: transparent;
      font-size: 26px;
      cursor: pointer;
      color: #6b7280;
      line-height: 1;
      padding: 4px 0 4px 8px;
      z-index: 2;
      transition: color 0.15s;
    }
    .booking-close:hover { color: #1a2452; }

    /* booking-scroll is no longer needed for overflow but keep for layout */
    .booking-scroll {
      clear: both;
    }

    .booking-scroll::-webkit-scrollbar {
      width: 0;
    }

    .booking-scroll::-webkit-scrollbar-thumb {
      background: transparent;
      border-radius: 999px;
    }

    .auth-dialog {
      display: flex;
      flex-direction: column;
      gap: 18px;
      padding: 32px 30px;
      max-height: calc(100vh - 120px);
      overflow-y: auto;
      overscroll-behavior: contain;
      padding-right: 18px;
      -webkit-overflow-scrolling: touch;
    }

    .auth-dialog::-webkit-scrollbar {
      width: 6px;
    }

    .auth-dialog::-webkit-scrollbar-thumb {
      background: rgba(35,57,119,0.25);
      border-radius: 999px;
    }

    .auth-close {
      align-self: flex-end;
      border: none;
      background: transparent;
      font-size: 24px;
      cursor: pointer;
      color: #1c2441;
    }

    .auth-title {
      margin: 0;
      text-align: center;
      font-size: 20px;
      font-weight: 700;
      color: #1c2441;
    }

    .auth-tabs {
      display: inline-flex;
      padding: 4px;
      background: #eef1f8;
      border-radius: 10px;
      gap: 3px;
      align-self: center;
      border: 1px solid #dde3f0;
    }

    .auth-tab {
      border: none;
      background: transparent;
      padding: 9px 20px;
      border-radius: 7px;
      font-weight: 600;
      font-size: 13.5px;
      color: #4a5168;
      cursor: pointer;
      transition: background .15s, color .15s;
      min-width: 110px;
      text-align: center;
      font-family: inherit;
    }

    .auth-tab:hover { background: #fff; color: #1a2452; }

    .auth-tab.active {
      background: #1a2452;
      color: #fff;
    }

    .auth-form {
      display: flex;
      width: 100%;
      flex-direction: column;
      gap: 16px;
    }

    .auth-form .form-group {
      margin-bottom: 0;
    }

    .auth-notice {
      min-height: 24px;
      font-size: 14px;
      color: #1c2441;
      text-align: center;
    }

    .auth-notice.error {
      color: #d93025;
    }

    body.auth-locked,
    body.booking-locked {
      overflow: hidden;
    }

    /* Form validation styles */
    .form-group.error input,
    .form-group.error select {
      border-color: #e74c3c;
      box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.15);
    }

    .form-group.success input,
    .form-group.success select {
      border-color: #27ae60;
      box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.15);
    }

    /* Loading animation */
    .submit-btn.loading::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 20px;
      height: 20px;
      margin: -10px 0 0 -10px;
      border: 2px solid transparent;
      border-top: 2px solid #fff;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* SECTIONS */
    section {
      max-width: 1200px;
      margin: 0 auto;
      padding: clamp(40px, 8vw, 80px) max(20px, 5vw);
    }

    section h2 {
      font-size: clamp(22px, 4vw, 34px);
      color: #1a2452;
      margin-bottom: 16px;
      font-weight: 800;
      text-align: center;
      letter-spacing: -0.2px;
      position: relative;
    }

    section h2::after {
      content: "";
      width: 40px;
      height: 3px;
      background: #c9922a;
      display: block;
      margin: 14px auto 0;
      border-radius: 2px;
    }

    section p {
      font-size: clamp(15px, 2.5vw, 17px);
      color: #4a5168;
      margin-bottom: 20px;
      line-height: 1.7;
      text-align: center;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
    }

    /* CAR CARDS */
    .car-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin-top: 36px;
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
    }

    .car-card {
      background: #fff;
      border-radius: 14px;
      border: 1px solid #dde3f0;
      overflow: hidden;
      transition: border-color .2s, box-shadow .2s;
      position: relative;
    }

    .car-card:hover {
      border-color: #b8c3e4;
      box-shadow: 0 8px 28px rgba(26,36,82,.12);
    }

    .car-image-wrap {
      position: relative;
      overflow: hidden;
    }

    .car-image-wrap img {
      display: block;
      width: 100%;
      height: auto;
      aspect-ratio: 5 / 2;
      object-fit: cover;
      transition: transform 0.4s ease;
      max-width: 100%;
    }

    .car-image-placeholder {
      width: 100%;
      aspect-ratio: 5 / 2;
      background: linear-gradient(90deg, #f0f2f5 0%, #e9eef6 100%);
      display: block;
    }

    .car-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: #c9922a;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      padding: 3px 9px;
      border-radius: 4px;
      pointer-events: none;
    }

    .car-card:hover .car-image-wrap img {
      transform: scale(1.08);
    }

    .car-info-content {
      padding: 25px;
    }

    .car-card .car-title {
      font-weight: 700;
      color: #1a2452;
      font-size: 19px;
      margin-bottom: 10px;
      text-align: center;
    }

    .car-specs {
      display: flex;
      justify-content: center;
      gap: 18px;
      margin: 12px 0;
      padding: 10px 14px;
      background: #f4f6fb;
      border-radius: 8px;
    }

    .car-spec {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .car-spec-icon {
      display: flex;
      align-items: center;
      color: #1a2452;
      flex-shrink: 0;
    }

    .car-spec-text {
      font-size: 12px;
      font-weight: 600;
      color: #4a5568;
    }

    .car-card .car-description {
      font-size: 14px; 
      color: #666; 
      text-align: center;
      line-height: 1.5;
      margin-top: 12px;
    }

    /* Car highlights */
    .car-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 10px;
      justify-content: center;
    }

    .hl-pill {
      display: inline-flex;
      align-items: center;
      background: #eef1f9;
      color: #233977;
      font-size: 11px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid #d0d8ef;
      white-space: nowrap;
    }
    .no-cars {
      text-align: center;
      padding: 28px;
      border-radius: 12px;
      background: #fff;
      border: 1px solid #eee;
      color: #6c6f7b;
      font-weight: 600;
    }
    .car-card-footer {
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px solid #eef1f9;
    }
    .car-book-btn {
      display: block;
      width: 100%;
      background: #1a2452;
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 700;
      padding: 10px 16px;
      cursor: pointer;
      letter-spacing: 0.3px;
      transition: background 0.18s;
    }
    .car-book-btn:hover { background: #c9922a; }
    /* DESKTOP: show three cards per row */
    @media (min-width: 1025px) {
      .car-list {
        max-width: 1200px;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
      }
    }
    /* Comment form */
    .comment-form { 
      background: #fff; border: 1px solid #eee; border-radius: 16px; 
      padding: 18px; max-width: 900px; margin: 24px auto 10px; 
      box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    }
    .comment-form .form-row { display: flex; gap: 12px; }
    .comment-form .half-width { flex: 1; }
    .comment-form label { font-size: 13px; color: #1c2441; font-weight: 600; margin-bottom: 6px; display: block; }
    .comment-form input, .comment-form textarea {
      width: 100%; padding: 12px 14px; border-radius: 10px; border: 2px solid #e8e8f0; font-size: 14px; font-family: 'Montserrat', Arial, sans-serif; color: #333;
    }
    .comment-form textarea { resize: vertical; }
    /* Comment form helpers */
    .comment-form .help.small { font-size: 12px; color:#8a8fa0; margin-top:6px; text-align:right; }
    .comment-form .error-msg { color:#e74c3c; font-size:12px; margin-top:6px; display:none; }
    .comment-form [aria-invalid="true"] { border-color:#e74c3c; box-shadow:0 0 0 3px rgba(231,76,60,.12); }
    @media (max-width: 768px) { .comment-form .form-row { flex-direction: column; } }
    .notice { margin-top: 12px; padding: 12px 14px; border-radius: 10px; font-size: 14px; text-align: center; display:none; }
    .notice.success { background: #ecfdf3; color: #166534; border: 1px solid #bbf7d0; }
    .notice.error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

    /* Prices table */
    .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 20px; }
    .price-table { width: 100%; border-collapse: collapse; min-width: 680px; }
    .price-table th, .price-table td { padding: 13px 16px; border-bottom: 1px solid #eef1f8; text-align: left; }
    .price-table th { background: #f4f6fb; color: #1a2452; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
    .price-table tbody tr:hover { background: #f9faff; }
    /* Align only the Ücret column to the right; keep Nereden/Nereye left */
    .price-table th:nth-child(3) { text-align: right; }
    .price-table td:nth-child(3) { text-align: right; font-weight: 700; color: #c9922a; font-size: 15px; }

    /* Floating contact buttons */
    .fab-container {
      position: fixed;
      right: 18px;
      bottom: 18px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 900;
    }
    .fab {
      width: 48px; height: 48px; border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      text-decoration: none; color: #fff;
      box-shadow: 0 10px 25px rgba(0,0,0,0.18);
      border: 0;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .fab:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.22); }
    .fab:active { transform: translateY(0); }
    .fab svg { width: 22px; height: 22px; fill: currentColor; display: block; }
    .fab-whatsapp { background: #25D366; }
    .fab-whatsapp:hover { background: #1fb65a; }
    .fab-phone { background: #233977; }
    .fab-phone:hover { background: #1a2a5c; }
    .fab-top { background: #cc9b2b; }
    .fab-top:hover { background: #b38720; }

    /* ── AI Chatbot Widget ──────────────────────────────── */
    #chatFab {
      position: fixed;
      bottom: 18px;
      left: 18px;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: linear-gradient(135deg, #6c3fc5, #4527a0);
      color: #fff;
      border: 0;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(108,63,197,0.45);
      z-index: 1000;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    #chatFab:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 32px rgba(108,63,197,0.55);
    }
    #chatFab.chat-fab-active {
      background: linear-gradient(135deg, #4527a0, #311b92);
    }
    #chatFab svg {
      width: 24px;
      height: 24px;
      fill: currentColor;
    }

    #chatPanel {
      position: fixed;
      bottom: 82px;
      left: 18px;
      width: 340px;
      max-width: calc(100vw - 36px);
      height: 480px;
      max-height: calc(100vh - 110px);
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.2);
      z-index: 1001;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      border: 1px solid rgba(108,63,197,0.15);
      animation: chatSlideUp 0.22s ease;
    }
    #chatPanel[hidden] { display: none !important; }

    @keyframes chatSlideUp {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .chat-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 16px;
      background: linear-gradient(135deg, #6c3fc5, #4527a0);
      color: #fff;
      flex-shrink: 0;
    }
    .chat-header-info {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .chat-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 16px;
      flex-shrink: 0;
    }
    .chat-header-title {
      font-weight: 700;
      font-size: 14px;
    }
    .chat-header-sub {
      font-size: 11px;
      opacity: 0.8;
      margin-top: 1px;
    }
    .chat-close-btn {
      background: transparent;
      border: 0;
      color: rgba(255,255,255,0.8);
      cursor: pointer;
      font-size: 16px;
      padding: 4px 6px;
      border-radius: 6px;
      line-height: 1;
      transition: background 0.15s;
    }
    .chat-close-btn:hover {
      background: rgba(255,255,255,0.15);
      color: #fff;
    }

    .chat-messages {
      flex: 1;
      overflow-y: auto;
      padding: 14px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      background: #f9f9fd;
    }
    .chat-messages::-webkit-scrollbar { width: 4px; }
    .chat-messages::-webkit-scrollbar-thumb { background: #d0d5e8; border-radius: 4px; }

    .chat-msg {
      max-width: 86%;
      padding: 10px 13px;
      border-radius: 14px;
      font-size: 13.5px;
      line-height: 1.55;
      word-break: break-word;
    }
    .chat-msg-user {
      align-self: flex-end;
      background: linear-gradient(135deg, #6c3fc5, #4527a0);
      color: #fff;
      border-bottom-right-radius: 4px;
    }
    .chat-msg-bot {
      align-self: flex-start;
      background: #fff;
      color: #1f2230;
      border: 1px solid #e8e8f0;
      border-bottom-left-radius: 4px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    /* Typing dots */
    .chat-typing {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 12px 16px;
    }
    .chat-typing span {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #9580c8;
      animation: chatDot 1.2s infinite ease-in-out;
    }
    .chat-typing span:nth-child(2) { animation-delay: 0.2s; }
    .chat-typing span:nth-child(3) { animation-delay: 0.4s; }
    @keyframes chatDot {
      0%, 60%, 100% { transform: scale(1); opacity: 0.5; }
      30%            { transform: scale(1.35); opacity: 1; }
    }

    .chat-input-row {
      display: flex;
      gap: 8px;
      padding: 12px;
      border-top: 1px solid #e8e8f0;
      background: #fff;
      flex-shrink: 0;
    }
    .chat-input-row input {
      flex: 1;
      border: 1.5px solid #d8d3ef;
      border-radius: 10px;
      padding: 10px 12px;
      font: inherit;
      font-size: 13px;
      outline: none;
      background: #f7f6fd;
      transition: border-color 0.15s;
    }
    .chat-input-row input:focus {
      border-color: #6c3fc5;
      background: #fff;
    }
    .chat-input-row input:disabled {
      opacity: 0.5;
    }
    #chatSendBtn {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      border: 0;
      background: linear-gradient(135deg, #6c3fc5, #4527a0);
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: opacity 0.15s;
    }
    #chatSendBtn:disabled { opacity: 0.4; cursor: not-allowed; }
    #chatSendBtn svg { width: 16px; height: 16px; }

    @media (max-width: 480px) {
      #chatPanel {
        width: calc(100vw - 24px);
        left: 12px;
        bottom: 80px;
        height: 420px;
      }
      #chatFab { left: 12px; bottom: 12px; }
    }
    /* ── /AI Chatbot Widget ─────────────────────────────── */

    /* Screen reader only */
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

    .section-subtitle {
      font-size: 16px;
      color: #6c6f7b;
      text-align: center;
      margin-top: -10px;
      margin-bottom: 35px;
    }

    #yorumlar {
      background: #f4f6fb;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 960px;
      margin: 40px auto 0;
    }

    .testimonial-card {
      background: #fff;
      border-radius: 12px;
      padding: 24px;
      border: 1px solid #dde3f0;
      position: relative;
    }

    .testimonial-card::before {
      content: "\201C";
      position: absolute;
      top: 16px;
      left: 22px;
      font-size: 52px;
      line-height: 1;
      color: #c9922a;
      opacity: 0.3;
      font-family: Georgia, serif;
      font-weight: 400;
    }

    .testimonial-text {
      font-size: 14px;
      color: #4a5168;
      line-height: 1.75;
      margin-bottom: 16px;
      padding-top: 18px;
      position: relative;
    }

    .testimonial-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 12px;
      border-top: 1px solid #eef1f8;
    }

    .testimonial-name {
      font-weight: 700;
      font-size: 13.5px;
      color: #1a2452;
    }

    .testimonial-detail {
      font-size: 12px;
      color: #8590a8;
    }

    /* CONTACT SECTION */
    .contact-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 16px;
      margin-top: 28px;
    }

    .contact-item {
      text-align: center;
      padding: 28px 20px;
      background: #fff;
      border: 1px solid #dde3f0;
      border-radius: 12px;
      transition: border-color .2s, box-shadow .2s;
    }

    .contact-item:hover {
      border-color: #b8c3e4;
      box-shadow: 0 6px 20px rgba(26,36,82,.08);
    }

    .contact-item a {
      color: #1a2452;
      text-decoration: none;
      font-weight: 700;
      font-size: 16px;
    }

    .contact-item a:hover { color: #c9922a; }

    /* REVIEWS SECTION */
    .reviews-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .review-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.1);
      padding: 30px;
      transition: all 0.3s ease;
      border: 1px solid rgba(0,0,0,0.05);
      position: relative;
    }

    .review-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .review-stars {
      color: #ffc107;
      font-size: 20px;
      margin-bottom: 15px;
      text-align: center;
    }

    .review-text {
      font-size: 16px;
      line-height: 1.6;
      color: #555;
      text-align: center;
      margin-bottom: 20px;
      font-style: italic;
    }

    .review-author {
      font-weight: 600;
      color: #233977;
      text-align: center;
      font-size: 14px;
    }

    /* KAPASITE ROZETLERİ */
    .capacity-section {
      text-align: center;
      margin-top: 40px;
      padding-top: 32px;
      border-top: 1px solid #eee;
    }

    .capacity-label {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #8a8fa0;
      font-weight: 700;
      margin-bottom: 16px !important;
    }

    .capacity-badges {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .cap-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 18px;
      background: #fff;
      border: 1.5px solid #dde3f0;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 700;
      color: #1a2452;
      transition: border-color .15s, background .15s;
    }

    .cap-badge:hover {
      background: #1a2452;
      border-color: #1a2452;
      color: #fff;
    }

    /* NEDEN BİZ — TRUST BÖLÜMÜ */
    .trust-section {
      background: #f7f8fc;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
      gap: 12px;
      margin-top: 28px;
    }

    .trust-item {
      background: #fff;
      border-radius: 10px;
      padding: 20px 14px 18px;
      text-align: center;
      border: 1px solid #dde3f0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      transition: border-color .2s, box-shadow .2s;
    }

    .trust-item:hover {
      border-color: #b8c3e4;
      box-shadow: 0 6px 20px rgba(26,36,82,.08);
    }

    .trust-icon {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      background: #eef1f9;
      color: #1a2452;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      font-weight: 700;
    }

    .trust-item strong {
      font-size: 13.5px;
      color: #1a2452;
      font-weight: 700;
      line-height: 1.35;
    }

    /* CAR LIST — 3 kart yan yana */
    @media (min-width: 900px) {
      .car-list { max-width: 1100px; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    }

    /* FOOTER */
    .footer {
      background: #0d1535;
      color: rgba(255,255,255,0.5);
      text-align: center;
      padding: 36px 20px 28px;
      font-size: 13px;
      margin-top: 0;
    }

    .footer a { color: rgba(255,255,255,0.65); }
    .footer a:hover { color: #c9922a; }

    /* NAV DRAWER + BACKDROP */
    .backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.4);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease;
      z-index: 1000;
      pointer-events: none;
    }

    body.drawer-open .backdrop {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    body.no-scroll { overflow: hidden; }

    @media (max-width: 768px) {
      /* Off-canvas drawer styles for mobile */
      #topnav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(85vw, 360px);
        transform: translateX(100%);
        transition: transform 0.28s ease;
        background: rgba(255,255,255,0.98);
        box-shadow: -10px 0 30px rgba(0,0,0,0.15);
        display: flex;
        flex-direction: column;
        padding: 20px;
        z-index: 1001;
      }

      body.drawer-open #topnav {
        transform: translateX(0);
        display: flex !important;
      }

      #topnav a { 
        display: block; 
        padding: 16px 8px; 
        border-bottom: 1px solid #f0f0f0; 
      }

      .lang-switch {
        width: 100%;
        margin: 12px 0 16px;
        justify-content: space-between;
      }

      .lang-btn {
        flex: 1;
        text-align: center;
      }

      .burger { display: flex; z-index: 1002; }
    }

    @media (min-width: 769px) {
      .backdrop { display: none !important; }
      #topnav { position: static; height: auto; transform: none; transition: none; box-shadow: none; padding: 0; }
    }

    /* Reduced motion preference */
    @media (prefers-reduced-motion: reduce) {
      * { animation: none !important; transition: none !important; }
      html { scroll-behavior: auto; }
    }

    /* TABLET OPTIMIZATIONS */
    @media (max-width: 1024px) and (min-width: 769px) {
      .hero {
        padding: 40px 3vw;
        gap: 30px;
      }

      .booking-card {
        width: min(400px, 85vw);
        padding: 30px 25px;
      }

      .car-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }

      section {
        padding: clamp(35px, 6vw, 60px) max(25px, 4vw);
      }
    }

    /* MOBILE OPTIMIZATIONS */
    @media (max-width: 768px) {
      .navbar {
        padding: 0;
        min-height: auto;
      }

      .navbar-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        width: 100%;
      }

      .burger { 
        display: flex; 
        z-index: 101;
      }

      .navbar nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        padding: 0;
        background: rgba(255,255,255,0.98);
        border-top: 1px solid #e8e8e8;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      }

      .navbar a {
        padding: 15px 20px;
        border-radius: 0;
        border-bottom: 1px solid #f0f0f0;
        background: transparent;
      }

      .navbar a:hover {
        background: rgba(204, 161, 43, 0.1);
      }

      .nav-auth {
        width: 100%;
        margin-left: 0;
        padding: 12px 20px 8px;
        border-top: 1px solid #f0f0f0;
        display: grid;
        gap: 10px;
      }

      .nav-auth .auth-btn {
        width: 100%;
        justify-content: center;
      }

      .hero {
        flex-direction: column;
        text-align: center;
        padding: 48px 20px 60px;
        min-height: auto;
        gap: 28px;
        align-items: center;
        background-position: 60% center;
      }
      .hero::before{
        background: linear-gradient(180deg, rgba(10,15,50,0.48) 0%, rgba(10,15,50,0.35) 60%, rgba(0,0,0,0.1) 100%);
      }

      .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .mobile-booking-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .booking-wrap {
        width: min(520px, 100%);
        margin: 0 auto;
      }

      .booking-prestep {
        width: 100%;
        padding: 24px 20px;
      }

      .booking-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 25px 20px;
      }

      .prestep-actions {
        flex-direction: column;
      }

      .prestep-btn {
        width: 100%;
      }

      .car-list {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
      }

      .car-card img {
        height: 200px;
      }

      .car-info-content {
        padding: 20px;
      }

      .car-specs {
        padding: 12px;
        margin: 12px 0;
      }

      .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      

      .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .form-row {
        flex-direction: column;
        gap: 15px;
      }

      .half-width {
        flex: none;
      }

      input, select { 
        font-size: 16px;
        padding: 14px 16px;
      }

      .submit-btn {
        padding: 16px;
        font-size: 16px;
      }

      .auth-modal {
        width: min(100%, calc(100vw - 24px));
      }

      .auth-dialog {
        padding: 24px 20px;
      }

      /* Drawer stays full-height on mid-size mobile */
      .booking-modal {
        width: 100vw;
        border-radius: 0;
      }

      section {
        padding: clamp(30px, 6vw, 50px) 20px;
      }
    }

    @media (max-width: 640px) {
      /* Bottom sheet on small mobile */
      .booking-modal {
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: auto;
        max-height: 94dvh;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        overflow-y: auto;
      }
      .booking-modal.is-open {
        transform: translateY(0);
      }
      .booking-dialog {
        padding: 20px 18px 36px;
      }

      .auth-modal {
        width: 100vw;
        max-height: 100vh;
        border-radius: 0;
      }

      .auth-dialog {
        padding: 20px 16px 18px;
      }

      .auth-tabs {
        width: 100%;
      }

      .auth-tab {
        flex: 1;
        min-width: 0;
      }
    }

    /* ANIMATIONS */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .booking-card {
      animation: fadeInUp 0.8s ease-out;
    }

    .car-card {
      animation: fadeInUp 0.6s ease-out;
    }

    .car-card:nth-child(2) {
      animation-delay: 0.2s;
    }

    /* LOADING STATES */
    .loading {
      opacity: 0.7;
      pointer-events: none;
    }

    /* ACCESSIBILITY */
    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      
      html { scroll-behavior: auto; }
    }

    /* HIGH CONTRAST MODE */
    @media (prefers-contrast: high) {
      .booking-card {
        background: #fff;
        border: 2px solid #000;
      }
      
      input, select {
        border: 2px solid #000;
      }
    }

    /* SMALL MOBILE */
    @media (max-width: 480px) {
      .hero-title {
        font-size: 24px;
      }

      .hero-desc {
        font-size: 16px;
      }

      .booking-card {
        padding: 20px 16px;
      }

      .booking-title {
        font-size: 22px;
      }

      .car-specs {
        flex-direction: column;
        gap: 10px;
      }

      .car-spec {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: left;
      }


    }

/* ── Campaign Banners ────────────────────────────────────────── */
#campaignBanners {
  display: none;
}
.campaign-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 20px;
  text-align: center;
  color: #fff;
  font-family: var(--font);
}
.campaign-banner-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}
.campaign-banner-desc {
  font-size: 13px;
  opacity: .88;
}

/* ── Campaign Notice in Booking Form ─────────────────────────── */
.campaign-notice {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #166534;
  margin-bottom: 12px;
  line-height: 1.5;
}

