/* =============================================
   OTHERPAGES.CSS — Maxos Auto
   Shared styles for: Cars, Car Detail, Contact, FAQ
   ============================================= */

/* ===== CARS PAGE HEADER ===== */
.cars-page-header {
  background-image: url(../images/background-images/cars-page-bg.jpg) !important;
  background-size: cover;
  background-position: center 40%;
  min-height: 55vh !important;
  justify-content: flex-end !important;
  padding-top: calc(var(--top-bar-height, 38px) + 80px) !important;
  padding-bottom: 100px !important;
}

/* Darker overlay for inner pages */
.cars-page-header::before {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.2) 100%
  ) !important;
}

/* ===== FILTER BAR ===== */
.cars-page-filters {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(10, 10, 10, 0.863);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  padding: 20px 24px;
  flex-wrap: wrap;
}

.cars-page-filters select {
  flex: 1;
  min-width: 160px;
  padding: 13px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-family: Arial, sans-serif;
  transition: all 0.25s ease;
  appearance: auto;
}

.cars-page-filters select:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(243, 113, 33, 0.5);
}

.cars-page-filters select:focus {
  outline: none;
  border-color: #f37121;
  box-shadow: 0 0 0 3px rgba(243, 113, 33, 0.15);
}

.cars-page-filters select option {
  color: #222;
  background: #fff;
}

.cars-page-searchBtn {
  flex: 1;
  min-width: 140px;
}

.cars-page-searchBtn button {
  width: 100%;
  padding: 13px 20px;
  border-radius: 8px;
  background: #f37121;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(243, 113, 33, 0.35);
  font-family: Arial, sans-serif;
  position: relative;
  overflow: hidden;
}

.cars-page-searchBtn button::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.cars-page-searchBtn button:hover::before { left: 100%; }

.cars-page-searchBtn button:hover {
  background: #e06010;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(243, 113, 33, 0.5);
}

.cars-page-searchBtn button:active {
  transform: translateY(0);
}

/* ===== CAR PAGE TITLE (detail pages) ===== */
.car-page-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
  color: #1a1a1a;
  margin: 50px 0 8px;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.car-page-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #f37121;
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ===== SLIDER ===== */
.slider {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 40px auto 50px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.slider-foto {
  position: relative;
  width: 100%;
  height: 560px;
}

.slider-foto img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slider-foto img.active {
  opacity: 1;
}

.slider-buttons {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 10;
  pointer-events: none;
}

.prev-btn,
.next-btn {
  pointer-events: all;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.prev-btn:hover,
.next-btn:hover {
  background: #f37121;
  border-color: #f37121;
  transform: scale(1.08);
}

.slider-indicators {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-indicators span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-indicators span.active {
  background: #f37121;
  transform: scale(1.3);
}

/* ===== CAR DETAILS CONTAINER ===== */
.car-details-container {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.car-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

/* ===== SPECIFICATIONS ===== */
.specifications {
  background: #fff;
  padding: 36px;
  border-radius: 14px;
  border: 1px solid #ebebeb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.specifications:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.specifications h2 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0f0f0;
  font-family: Arial, sans-serif;
  position: relative;
}

.specifications h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #f37121;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f5f5f5;
  transition: padding-left 0.2s ease;
}

.spec-item:last-child { border-bottom: none; }
.spec-item:hover { padding-left: 6px; }

.spec-label {
  font-weight: 600;
  color: #888;
  font-size: 0.9rem;
  font-family: Arial, sans-serif;
  margin: 0;
}

.spec-value {
  color: #111;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: Arial, sans-serif;
  margin: 0;
}

/* ===== PRICING ===== */
.pricing {
  background: #111;
  padding: 36px;
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #f37121;
}

.pricing:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pricing h2 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: Arial, sans-serif;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: padding-left 0.2s ease;
}

.price-item:last-child { border-bottom: none; }
.price-item:hover { padding-left: 6px; }

.price-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: Arial, sans-serif;
  margin: 0;
}

.price-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: #f37121;
  font-family: Arial, sans-serif;
  margin: 0;
}

.phone-booking {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: #f37121;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.25s ease;
  font-family: Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(243, 113, 33, 0.4);
}

.phone-booking:hover {
  background: #e06010;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(243, 113, 33, 0.55);
}

.phone-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ===== FEATURES ===== */
.features {
  background: #fff;
  padding: 36px;
  border-radius: 14px;
  border: 1px solid #ebebeb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 28px;
  transition: box-shadow 0.3s ease;
}

.features:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.features h2 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0f0f0;
  font-family: Arial, sans-serif;
  position: relative;
}

.features h2::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 40px; height: 2px;
  background: #f37121;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-item {
  text-align: center;
  padding: 20px 14px;
  background: #fafafa;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.feature-item:hover {
  background: #fff;
  border-color: #f37121;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(243, 113, 33, 0.12);
}

.feature-icon {
  width: 36px;
  height: 36px;
  fill: #f37121;
  margin-bottom: 10px;
  transition: transform 0.25s ease;
}

.feature-item:hover .feature-icon { transform: scale(1.1); }

.feature-item p {
  margin: 0;
  font-size: 0.8rem;
  color: #444;
  font-weight: 600;
  font-family: Arial, sans-serif;
}

/* ===== ADDITIONAL INFO ===== */
.additional-info {
  background: #fff;
  padding: 36px;
  border-radius: 14px;
  border: 1px solid #ebebeb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 28px;
  transition: box-shadow 0.3s ease;
}

.additional-info:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.additional-info h2 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0f0f0;
  font-family: Arial, sans-serif;
  position: relative;
}

.additional-info h2::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 40px; height: 2px;
  background: #f37121;
}

.additional-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fafafa;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.info-item:hover {
  background: #fff;
  border-color: #f37121;
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(243, 113, 33, 0.1);
}

.info-icon {
  width: 22px;
  height: 22px;
  fill: #bbb;
  flex-shrink: 0;
  transition: fill 0.25s ease;
}

.info-item:hover .info-icon { fill: #f37121; }

.info-item p {
  margin: 0;
  font-size: 0.88rem;
  color: #333;
  font-weight: 600;
  font-family: Arial, sans-serif;
}

/* ===== DESCRIPTION ===== */
.description {
  background: #fff;
  padding: 36px;
  border-radius: 14px;
  border: 1px solid #ebebeb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.description:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.description h2 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0f0f0;
  font-family: Arial, sans-serif;
  position: relative;
}

.description h2::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 40px; height: 2px;
  background: #f37121;
}

.description p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 16px;
  font-family: Arial, sans-serif;
}

.description p:last-child { margin-bottom: 0; }

/* ===== CONTACT PAGE ===== */
.contact-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-map {
  flex: 1.2;
}

#contact-register {
  flex: 0.8;
  margin: 0;
}

#contactMap {
  height: 580px;
  width: 100%;
  border: none;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ===== REGISTER / LOGIN FORM ===== */
form {
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 14px;
}

.register {
  display: flex;
  flex-direction: column;
  padding: 40px 44px;
  width: 100%;
  background: #fff;
  border: 1px solid #ebebeb;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

.register::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #f37121;
}

.register label {
  text-align: left;
  margin-bottom: 6px;
  width: 100%;
  color: #222;
  font-size: 13px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: block;
}

.register input[type="text"],
.register input[type="email"],
.register input[type="password"] {
  margin-bottom: 18px;
  border: 1.5px solid #e8e8e8;
  width: 100%;
  padding: 13px 15px;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.25s ease;
  background: #fafafa;
  font-family: Arial, sans-serif;
  color: #111;
}

.register input[type="text"]:focus,
.register input[type="email"]:focus,
.register input[type="password"]:focus {
  border-color: #f37121;
  outline: none;
  box-shadow: 0 0 0 3px rgba(243, 113, 33, 0.12);
  background: #fff;
}

.register ::placeholder {
  font-size: 13px;
  color: #bbb;
}

.remember-me-container {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 18px;
  gap: 10px;
}

.remember-me-container input[type="checkbox"] {
  margin: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #f37121;
}

.remember-me-container label {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: #666;
  text-transform: none;
  letter-spacing: 0;
}

#login-p {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-bottom: 18px;
  font-family: Arial, sans-serif;
}

#login-p button {
  background: none;
  border: none;
  color: #f37121;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px solid #f37121;
  padding: 0;
  transition: color 0.25s ease;
}

#login-p button:hover { color: #d06010; }

#registerBtn {
  margin-top: 4px;
  padding: 14px;
  border-radius: 8px;
  border: none;
  background: #f37121;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  width: 100%;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(243, 113, 33, 0.3);
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#registerBtn:hover {
  background: #e06010;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(243, 113, 33, 0.45);
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(6px);
}

.modalContent {
  background: #fff;
  padding: 40px 44px;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  width: 90%;
  max-width: 400px;
  overflow: hidden;
}

.modalContent::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #f37121;
}

.modalContent label {
  display: block;
  text-align: left;
  margin-bottom: 6px;
  color: #222;
  font-size: 13px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modalContent input[type="email"],
.modalContent input[type="password"] {
  margin-bottom: 18px;
  border: 1.5px solid #e8e8e8;
  width: 100%;
  padding: 13px 15px;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.25s ease;
  background: #fafafa;
  font-family: Arial, sans-serif;
}

.modalContent input[type="email"]:focus,
.modalContent input[type="password"]:focus {
  border-color: #f37121;
  outline: none;
  box-shadow: 0 0 0 3px rgba(243, 113, 33, 0.12);
  background: #fff;
}

.modalContent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #f37121;
  margin-right: 8px;
}

#login-remember-me-p {
  display: inline;
  font-size: 13px;
  color: #666;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 18px;
}

#register-p {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin: 16px 0;
  font-family: Arial, sans-serif;
}

#register-p button {
  background: none;
  border: none;
  color: #f37121;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border-bottom: 1px solid #f37121;
  padding: 0;
  transition: color 0.25s ease;
}

#register-p button:hover { color: #d06010; }

#closeBtn {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #bbb;
  transition: color 0.25s ease;
  line-height: 1;
}

#closeBtn:hover { color: #f37121; }

.contact-login #modalLoginBtn {
  margin-top: 4px;
  padding: 14px;
  border-radius: 8px;
  border: none;
  background: #f37121;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  width: 100%;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(243, 113, 33, 0.3);
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-login #modalLoginBtn:hover {
  background: #e06010;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(243, 113, 33, 0.45);
}

.error-message {
  color: #e74c3c;
  font-size: 12px;
  margin-top: -14px;
  margin-bottom: 12px;
  display: block;
  font-family: Arial, sans-serif;
}

.input-error {
  border-color: #e74c3c !important;
  animation: shake 0.3s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* ===== FEEDBACK FORM ===== */
.feedback {
  width: 100%;
  max-width: 900px;
  margin: 60px auto 80px;
  padding: 0 24px;
}

.feedback h2 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 32px;
  font-family: Arial, sans-serif;
  text-align: center;
  position: relative;
  padding-bottom: 16px;
}

.feedback h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 3px;
  background: #f37121;
  border-radius: 2px;
}

#feedback-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
}

#feedback-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #f37121;
}

.feedbackInfo {
  display: flex;
  gap: 20px;
  width: 100%;
}

.feedbackInfo > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feedback label {
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feedback input[type="text"],
.feedback input[type="email"] {
  width: 100%;
  padding: 13px 15px;
  border-radius: 8px;
  border: 1.5px solid #e8e8e8;
  background: #fafafa;
  font-size: 14px;
  font-family: Arial, sans-serif;
  transition: all 0.25s ease;
  color: #111;
}

.feedback input[type="text"]:focus,
.feedback input[type="email"]:focus {
  border-color: #f37121;
  outline: none;
  box-shadow: 0 0 0 3px rgba(243, 113, 33, 0.12);
  background: #fff;
}

.feedback textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 8px;
  border: 1.5px solid #e8e8e8;
  background: #fafafa;
  font-size: 14px;
  font-family: Arial, sans-serif;
  min-height: 200px;
  resize: vertical;
  transition: all 0.25s ease;
  color: #111;
}

.feedback textarea:focus {
  border-color: #f37121;
  outline: none;
  box-shadow: 0 0 0 3px rgba(243, 113, 33, 0.12);
  background: #fff;
}

#feedback-submit-btn {
  padding: 14px 40px;
  border-radius: 8px;
  border: none;
  background: #f37121;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  width: fit-content;
  align-self: center;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(243, 113, 33, 0.3);
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#feedback-submit-btn:hover {
  background: #e06010;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(243, 113, 33, 0.45);
}

/* ===== FAQ PAGE ===== */
.faq-section {
  max-width: 760px;
  margin: 60px auto;
  padding: 0 24px;
}

.faq-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 16px;
}

.faq-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 3px;
  background: #f37121;
  border-radius: 2px;
}

.faq-item {
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ebebeb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-question {
  width: 100%;
  background: #fff;
  color: #111;
  font-size: 15px;
  font-weight: 600;
  padding: 18px 22px;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: #f37121;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-question:hover {
  background: #fafafa;
  color: #f37121;
}

.faq-question:focus {
  background: #f37121;
  color: #fff;
  border-radius: 0;
}

.faq-question:focus::after {
  content: '−';
  color: #fff;
}

.faq-answer {
  display: none;
  background: #fafafa;
  padding: 16px 22px;
  line-height: 1.7;
  color: #555;
  font-size: 0.95rem;
  font-family: Arial, sans-serif;
  border-top: 1px solid #f0f0f0;
}

/* ===== FAQ CONTACT CARD ===== */
.faq-contact {
  position: relative;
  margin: 50px auto;
  border: 1px solid #ebebeb;
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-contact h2 {
  text-align: center;
  padding: 18px 20px;
  color: #fff;
  background: #111;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.faq-contact .svg-navs {
  display: flex;
  gap: 10px;
  padding: 28px 20px;
  justify-content: center;
  flex-wrap: wrap;
  background: #fff;
}

.faq-contact .svg-navs div {
  width: 48px;
  height: 48px;
}

.faq-contact .svg-navs div svg {
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 12px;
  border-radius: 50%;
  border: 1.5px solid #e8e8e8;
  background: #fafafa;
  fill: #555;
}

.faq-contact .svg-navs div svg:hover {
  background: #f37121;
  border-color: #f37121;
  fill: #fff;
  transform: translateY(-2px);
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
  .car-info-grid { gap: 20px; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-content-wrapper { gap: 24px; padding: 40px 20px; }
  #contactMap { height: 500px; }
  .register { padding: 32px 36px; }
  .slider-foto { height: 480px; }
}

@media (max-width: 768px) {
  :root {
    --top-bar-height: 70px;
  }

  .cars-page-header {
    min-height: 55vh !important;
    padding-top: calc(var(--top-bar-height, 70px) + 65px) !important;
    padding-bottom: 100px !important;
  }

  .cars-page-filters {
    flex-direction: column;
    padding: 16px;
    width: 95%;
    gap: 10px;
  }

  .cars-page-filters select,
  .cars-page-searchBtn { width: 100%; min-width: unset; }

  .car-page-title { font-size: 1.8rem; margin: 35px 0 8px; }

  .slider { border-radius: 10px; }
  .slider-foto { height: 380px; }

  .car-details-container { padding: 0 15px; margin-bottom: 60px; }
  .car-info-grid { grid-template-columns: 1fr; gap: 16px; }

  .specifications,
  .pricing,
  .features,
  .additional-info,
  .description { padding: 26px 22px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .additional-info-grid { grid-template-columns: 1fr; gap: 10px; }

  .contact-content-wrapper { flex-direction: column; padding: 30px 15px; }
  .contact-map, #contact-register { width: 100%; max-width: 100%; flex: unset; }
  #contactMap { height: 380px; }

  .register { padding: 28px 24px; }
  .feedbackInfo { flex-direction: column; gap: 0; }
  #feedback-form { padding: 28px 24px; }
  .faq-section { margin: 40px auto; }
}

@media (max-width: 480px) {
  :root {
    --top-bar-height: 120px;
  }

  .cars-page-header {
    min-height: 60vh !important;
    padding-top: calc(var(--top-bar-height, 120px) + 60px) !important;
    padding-bottom: 120px !important;
  }

  .cars-page-filters {
    width: 97%;
    padding: 14px 12px;
    gap: 10px;
  }

  .car-page-title { font-size: 1.4rem; }
  .slider-foto { height: 280px; }

  .specifications,
  .pricing,
  .features,
  .additional-info,
  .description { padding: 22px 18px; }

  .features-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .feature-item { padding: 16px 10px; }
  .feature-item p { font-size: 0.75rem; }

  #contactMap { height: 300px; }
  .register, .modalContent { padding: 24px 20px; }

  #registerBtn,
  .contact-login #modalLoginBtn,
  #feedback-submit-btn { font-size: 12px; padding: 13px 24px; }

  .faq-question { font-size: 14px; padding: 16px 18px; }
  .faq-answer { padding: 14px 18px; }
}

@media (max-width: 360px) {
  :root {
    --top-bar-height: 135px;
  }

  .cars-page-header {
    min-height: 65vh !important;
    padding-top: calc(var(--top-bar-height, 135px) + 60px) !important;
    padding-bottom: 130px !important;
  }
}