/* 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(20px, 4vw, 26px);
      font-weight: 800;
      color: #233977;
      letter-spacing: 0.5px;
      text-decoration: none;
    }

    .navbar nav { 
      display: flex; 
      gap: clamp(16px, 3vw, 32px);
      align-items: center;
    }

    .navbar a {
      color: #1c2441;
      text-decoration: none;
      font-weight: 500;
      font-size: clamp(14px, 2vw, 15px);
      padding: 8px 12px;
      border-radius: 6px;
      transition: all 0.2s ease;
      position: relative;
    }

    .navbar a:hover, .navbar a.active { 
      color: #cca12b;
      background: rgba(204, 161, 43, 0.1);
    }

    .auth-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      border: 1px solid #233977;
      background: transparent;
      color: #233977;
      font-size: 14px;
      font-weight: 600;
      padding: 8px 18px;
      cursor: pointer;
      transition: all 0.2s ease;
      min-height: 36px;
      text-decoration: none;
    }

    .auth-btn.primary {
      background: #233977;
      color: #fff;
      border-color: #233977;
      box-shadow: 0 12px 24px rgba(35,57,119,0.15);
    }

    .auth-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 24px rgba(35,57,119,0.18);
    }

    .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: min(85vh, 800px);
      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(135deg, rgba(35, 57, 119, 0.5) 0%, rgba(26, 42, 92, 0.45) 50%, rgba(0,0,0,0.2) 100%);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      color: #fff;
      max-width: 550px;
      flex: 1;
    }

    .hero-title {
      font-size: clamp(28px, 5vw, 42px);
      font-weight: 800;
      margin: 0 0 16px 0;
      line-height: 1.2;
      background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .hero-desc { 
      font-size: clamp(16px, 3vw, 20px); 
      font-weight: 400; 
      margin-bottom: 24px; 
      line-height: 1.4;
      opacity: 0.95;
      text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    }

    .mobile-booking-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 18px;
      padding: 14px 22px;
      border: 0;
      border-radius: 999px;
      font-weight: 700;
      font-size: 16px;
      color: #fff;
      background: linear-gradient(135deg,#23d160,#1ca454);
      box-shadow: 0 12px 24px rgba(35,57,119,0.25);
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .mobile-booking-toggle:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 28px rgba(35,57,119,0.25);
    }

    .mobile-booking-toggle:focus-visible {
      outline: 3px solid rgba(35,57,119,0.4);
      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(450px, 90vw);
      background: rgba(255,255,255,0.95);
      border-radius: 20px;
      padding: 28px;
      box-shadow: 0 18px 40px rgba(0,0,0,0.18);
      border: 1px solid rgba(255,255,255,0.4);
      backdrop-filter: blur(12px);
      color: #1c2441;
      margin-bottom: 20px;
    }

    .prestep-panel h3 {
      margin: 0 0 10px;
      font-size: 20px;
      font-weight: 700;
    }

    .prestep-panel p {
      margin: 0;
      font-size: 15px;
      opacity: 0.85;
    }

    .prestep-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 18px;
    }

    .prestep-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      border: 0;
      padding: 14px 22px;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      background: #eef1ff;
      color: #233977;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      text-decoration: none;
      min-width: 160px;
    }

    .prestep-btn.primary {
      background: linear-gradient(135deg,#23d160,#1ca454);
      color: #fff;
      box-shadow: 0 16px 30px rgba(35,209,96,0.25);
    }

    .prestep-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 32px rgba(23,55,117,0.18);
    }

    .prestep-btn:focus-visible {
      outline: 3px solid rgba(35,57,119,0.35);
      outline-offset: 3px;
    }

    .booking-card.is-hidden {
      display: none;
    }

    .booking-card {
      width: min(450px, 90vw);
      background: rgba(255,255,255,0.98);
      border-radius: 20px;
      box-shadow: 0 25px 50px rgba(0,0,0,0.25);
      padding: 35px 32px;
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255,255,255,0.3);
    }

    .booking-title { 
      color: #1c2441; 
      font-size: 26px; 
      font-weight: 700; 
      margin-bottom: 25px; 
      text-align: center; 
    }

    .booking-back {
      background: transparent;
      border: 0;
      color: #1c2441;
      font-weight: 600;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      cursor: pointer;
      margin-bottom: 8px;
      padding: 0;
    }

    .booking-back:hover {
      color: #233977;
      text-decoration: underline;
    }

    /* 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: 14px; 
      display: block; 
      margin-bottom: 8px; 
      color: #1c2441; 
    }

    input, select {
      width: 100%; 
      padding: 16px 18px; 
      border-radius: 12px; 
      border: 2px solid #e8e8f0;
      font-size: 15px; 
      background: #fff; 
      font-family: 'Montserrat', Arial, sans-serif; 
      color: #333;
      transition: all 0.2s ease;
      outline: none;
      box-sizing: border-box;
    }

    input:focus, select:focus {
      border-color: #cca12b;
      box-shadow: 0 0 0 4px rgba(204, 161, 43, 0.15);
      transform: translateY(-1px);
    }

    /* 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;
    }

    .submit-btn {
      background: linear-gradient(135deg, #23d160 0%, #18a747 100%);
      color: #fff; 
      border: none; 
      width: 100%; 
      border-radius: 12px; 
      font-size: 17px; 
      font-weight: 700;
      padding: 18px; 
      margin-top: 25px; 
      cursor: pointer; 
      letter-spacing: 0.5px; 
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(35,209,96,0.3);
      text-transform: uppercase;
      position: relative;
      overflow: hidden;
    }

    .submit-btn:hover { 
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(35,209,96,0.4);
    }

    .submit-btn:active {
      transform: translateY(-1px);
    }

    .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;
    }

    .booking-modal,
    .auth-modal {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -44%);
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 35px 75px rgba(0,0,0,0.25);
      z-index: 4001;
      padding: 0;
      display: none;
      opacity: 0;
      transition: opacity 0.25s ease, transform 0.25s ease;
      max-height: calc(100vh - 32px);
      width: min(520px, calc(100vw - 32px));
      overflow: hidden;
    }

    .auth-modal {
      width: min(420px, calc(100vw - 32px));
    }

    .auth-modal.is-open,
    .booking-modal.is-open {
      display: block;
      opacity: 1;
      transform: translate(-50%, -50%);
    }

    .booking-dialog {
      padding: 28px 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      max-height: inherit;
      overflow: hidden;
      min-height: 0;
    }

    .booking-close {
      align-self: flex-end;
      border: none;
      background: transparent;
      font-size: 28px;
      cursor: pointer;
      color: #1c2441;
      line-height: 1;
    }

    .booking-scroll {
      overflow-y: auto;
      padding-right: 6px;
      margin-right: -6px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      flex: 1;
      min-height: 0;
      overscroll-behavior: contain;
    }

    .booking-scroll::-webkit-scrollbar {
      width: 6px;
    }

    .booking-scroll::-webkit-scrollbar-thumb {
      background: rgba(35,57,119,0.25);
      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: #f1f3ff;
      border-radius: 999px;
      gap: 4px;
      align-self: center;
    }

    .auth-tab {
      border: none;
      background: transparent;
      padding: 10px 20px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 14px;
      color: #233977;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease;
      min-width: 120px;
      text-align: center;
    }

    .auth-tab:hover {
      background: rgba(35, 57, 119, 0.12);
    }

    .auth-tab.active {
      background: #233977;
      color: #fff;
      box-shadow: 0 10px 20px rgba(35,57,119,0.2);
    }

    .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(24px, 5vw, 36px);
      color: #233977;
      margin-bottom: 20px;
      font-weight: 800;
      text-align: center;
      position: relative;
    }

    section h2::after {
      content: "";
      width: 60px;
      height: 4px;
      background: linear-gradient(135deg, #cca12b, #e6b84d);
      display: block;
      margin: 12px auto 0;
      border-radius: 2px;
    }

    section p {
      font-size: clamp(16px, 3vw, 18px);
      color: #555;
      margin-bottom: 20px;
      line-height: 1.6;
      text-align: center;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* CAR CARDS - Updated for 2 vehicles */
    .car-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .car-card {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
      overflow: hidden;
      transition: all 0.4s ease;
      border: 1px solid rgba(0,0,0,0.05);
      position: relative;
    }

    .car-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    }

    .car-card img {
      width: 100%;
      height: auto;
      aspect-ratio: 5 / 2;
      object-fit: cover;
      display: block;
      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-card:hover img {
      transform: scale(1.08);
    }

    .car-info-content {
      padding: 25px;
    }

    .car-card .car-title {
      font-weight: 700; 
      color: #233977; 
      font-size: 22px; 
      margin-bottom: 12px; 
      text-align: center;
    }

    .car-specs {
      display: flex;
      justify-content: space-around;
      margin: 15px 0;
      padding: 15px;
      background: #f8f9fa;
      border-radius: 12px;
    }

    .car-spec {
      text-align: center;
      flex: 1;
    }

    .car-spec-icon{
  font-family: "Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji",
               "Segoe UI Symbol","EmojiOne Color","Android Emoji", sans-serif;
  font-size: 20px;
  line-height: 1;
  display: block;
}

    .car-spec-text {
      font-size: 12px;
      font-weight: 600;
      color: #666;
    }

    .car-card .car-description {
      font-size: 14px; 
      color: #666; 
      text-align: center;
      line-height: 1.5;
      margin-top: 12px;
    }

    /* Car highlights */
    .car-highlights {
      font-size: 13px;
      color: #4a4d59;
      background: #f8f9fa;
      border: 1px solid rgba(0,0,0,0.05);
      padding: 12px 14px;
      border-radius: 12px;
      margin-top: 10px;
      line-height: 1.5;
      text-align: center;
    }
    .no-cars {
      text-align: center;
      padding: 28px;
      border-radius: 12px;
      background: #fff;
      border: 1px solid #eee;
      color: #6c6f7b;
      font-weight: 600;
    }
    /* 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: 14px 16px; border-bottom: 1px solid #eee; text-align: left; }
    .price-table th { background: #f3f5fa; color: #1c2441; font-weight: 700; }
    /* 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: 600; color: #233977; }

    /* 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; }

    /* 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: #f8f9fc;
    }

    .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: 16px;
      padding: 28px;
      box-shadow: 0 16px 40px rgba(0,0,0,0.1);
      border: 1px solid rgba(0,0,0,0.04);
      position: relative;
      overflow: hidden;
    }

    .testimonial-card::before {
      content: """;
      position: absolute;
      top: 18px;
      left: 24px;
      font-size: 44px;
      color: rgba(35, 57, 119, 0.25);
      font-weight: 700;
    }

    .testimonial-text {
      font-size: 15px;
      color: #4a4d59;
      line-height: 1.7;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

    .testimonial-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      color: #7a7f8c;
    }

    .testimonial-name {
      font-weight: 700;
      color: #233977;
    }

    .testimonial-detail {
      font-size: 13px;
      color: #a0a4b1;
    }

    /* CONTACT SECTION */
    .contact-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .contact-item {
      text-align: center;
      padding: 30px 20px;
      background: #f8f9fa;
      border-radius: 12px;
      transition: all 0.3s ease;
    }

    .contact-item:hover {
      background: #e9ecef;
      transform: translateY(-4px);
    }

    .contact-item a {
      color: #233977;
      text-decoration: none;
      font-weight: 600;
      font-size: 18px;
    }

    /* 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;
    }

    /* FOOTER */
    .footer { 
      text-align: center; 
      color: #888; 
      padding: 40px 20px 20px;
      font-size: 14px; 
      background: #f8f9fa;
      margin-top: 60px;
    }

    /* 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: center top;
      }
      .hero::before{
        background: linear-gradient(160deg, rgba(35,57,119,0.7) 0%, rgba(26,42,92,0.6) 45%, rgba(0,0,0,0.25) 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;
      }

      .booking-modal {
        width: min(100%, calc(100vw - 20px));
      }

      .booking-dialog {
        padding: 24px 20px 20px;
      }

      section {
        padding: clamp(30px, 6vw, 50px) 20px;
      }
    }

    @media (max-width: 640px) {
      .booking-modal,
      .auth-modal {
        width: 100vw;
        max-height: 100vh;
        border-radius: 0;
      }

      .booking-dialog,
      .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;
      }

      
    }


