.route-cta-container {
  background-color: #1a1a1a; 
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}
.feature-item {
  flex: 1;
  min-width: 250px;
  background: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
  transform: translateY(0);
  user-select: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: Arial, sans-serif;
  background-color: rgb(26, 26, 26);
}

.topbar {
  background-color: #1a1a1a;
  color: white;
  font-size: 14px;
  padding: 8px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  z-index: 1000;
  position: relative;
}

.topbar a {
  color: #cacaca;
  margin-right: 15px;
  text-decoration: none;
}

.topbar a:hover {
  color: rgb(4, 4, 4);
}

.topbar-left a,
.topbar-right a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
}

.topbar .dropdown {
  margin-right: 15px;
  cursor: pointer;
}

.user-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 5px;
}

.sell-btn {
  background-color: #b0873a;
  padding: 6px 12px;
  border-radius: 2px;
  font-weight: bold;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(20, 20, 20);
  padding: 15px 30px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
}

.navbar-section {
  flex: 1;
  display: flex;
  align-items: center;
}

.left {
  justify-content: flex-start;
}

.center {
  justify-content: center;
}

.right {
  justify-content: flex-end;
  gap: 25px;
}

.logo-img {
  width: 150px;
  height: auto;
}

.nav-links a {
  text-decoration: none;
  color: #dbdbdb;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #C07F00;
}

.hero {
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 50px;
  padding-top: 20px;
  text-align: left;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.hero p {
  font-size: 20px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.cta-button,
.search-btn {
  padding: 14px 30px;
  font-size: 16px;
  font-weight: bold;
  background: linear-gradient(to right, #a88e5c 0%, #d6c591 50%, #a88e5c 100%);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 20px;
}

.cta-button:hover,
.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.ride-search-wrapper {
  position: relative;
  z-index: 5;
  transform: translateY(-30%);
  margin-bottom: 0;
  padding-bottom: 0;
  background-color: rgba(26, 26, 26, 0.6);
}

.ride-search-tabs {
  display: flex;
  justify-content: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
  margin-bottom: 0;
}

.ride-search-tabs .tab {
  padding: 14px 22px;
  font-weight: bold;
  font-size: 14px;
  color: #333;
  background-color: rgba(26, 26, 26, 0.6);
  cursor: pointer;
  transition: all 0.3s;
  margin-right: 5px;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

.ride-search-tabs .tab:hover {
  background-color: rgba(26, 26, 26, 0.8);
}

.ride-search-tabs .tab.active {
  background-color: rgb(26, 26, 26);
  border: 1px solid #000000;
  border-bottom: 3px solid rgb(168, 168, 168);
  color: rgb(243, 243, 243);
}

.ride-search-form-bg {
  background-color: rgb(26, 26, 26);
  width: 100vw;
  padding: 60px 0 0 0;
  margin: 0 auto;
  border-bottom: none;
}

.search-form {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.form-group label {
  margin-bottom: 5px;
  color: #333;
  font-weight: 600;
}

.form-group input {
  padding: 12px;
  width: 220px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.our-services {
  background-color: rgb(16, 16, 16);
  padding: 100px 20px 100px 20px;
  color: #111;
  margin-top: 20px;
}

.our-services .container {
  max-width: 1280px;
  margin: 0 auto;
  background-color: transparent;
}

.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
  justify-content: center;
}

.service-card {
  background-color: rgb(34, 34, 34);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card .badge {
  background: #a88e5c;
  color: #fff;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  margin-left: 8px;
}

.service-card p {
  flex-grow: 1;
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 20px;
}

.service-card a {
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  color: #a88e5c;
  transition: color 0.3s;
}

.service-card a:hover {
  color: #6d5c3c;
}

.service-card span {
  color: #dddddd;
}

.services-intro-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(31, 31, 31);
  padding: 60px 0; 
  margin: 0;
  text-align: center;
}

.services-intro-content {
  width: 90%; 
  max-width: 1400px; 
  color: #ccc;
  padding: 40px;
}

.services-intro-content h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.services-intro-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 30px;
}

.services-feature-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-item i {
  font-size: 56px;
  margin-bottom: 12px;

  background: linear-gradient(to right, #a88e5c 0%, #d6c591 50%, #a88e5c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.feature-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 13px;
  color: #bbb;
}

.car-promo-section {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  background-color: rgb(22, 22, 22);
  position: relative;
  min-height: 500px; 
}

.car-box {
  width: 50%;
  padding: 60px;
  color: white;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  overflow: visible;
  z-index: 1;
}

.car-box.left {
  background-color: rgb(30, 30, 30);
}

.car-box.right {
  background-color: rgb(40, 40, 40);
}

.car-box h3 {
  font-style: italic;
  font-weight: 300;
  color: #ccc;
  margin-bottom: 10px;
  font-size: 18px;
}

.car-box h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.car-box p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 0;
  color: #ddd;
}

.car-box.left img {
  position: absolute;
  bottom: 0;
  right: -60px; 
  height: 220px; 
  width: auto;
  object-fit: contain; 
  pointer-events: none;
  z-index: 0;
}

.car-box.left img {
  left: -120px;
}

.car-box.right img {
  right: -120px;
}

.promo-bottom-buffer {
  background-color: rgb(22, 22, 22);
  height: 150px;
  position: relative;
  z-index: 0;
}

.car-split-section {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  min-height: 360px;
}

.split-box {
  width: 50%;
  padding: 80px 100px; 
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-left {
  background-color: #2a2a2a; 
  color: #f0f0f0;
}

.split-right {
  background-color: #1e1e1e; 
  color: #f0f0f0;
}

.split-box h3 {
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 10px;
  color: #cccccc;
}

.split-box h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.split-box p {
  font-size: 16px;
  color: #bbbbbb;
  max-width: 500px;
  line-height: 1.6;
}

.client-logo-section {
  background-color: #1e1e1e;
  padding: 80px 60px;
  text-align: center;
  color: #eee;
}

.client-logo-header p {
  font-style: italic;
  font-size: 18px;
  margin-bottom: 5px;
  color: #ccc;
}

.client-logo-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  gap: 60px;
  animation: scroll-logos 25s linear infinite;
  align-items: center;
}

.logo-track img {
  height: 120px;
  filter: brightness(0.9);
  transition: transform 0.3s;
}

.logo-track img:hover {
  transform: scale(1.1);
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.vip-about-block {
  background-color: #111;
  padding: 80px 0;
  color: #ccc;
}

.container.about-flex {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-left, .about-right {
  flex: 1;
  min-width: 300px;
}

.about-left h2 {
  font-size: 32px;
  color: #d2b26c;
  margin-bottom: 20px;
}

.about-left h2 span {
  color: #fff;
  font-weight: bold;
}

.about-left ul {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.about-left ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

.about-left ul i {
  margin-right: 10px;
  color: #d2b26c;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding-top: 50px;
  flex-wrap: wrap;
  border-top: 1px solid #333;
  margin-top: 40px;
}

.stat-box {
  text-align: center;
}

.stat-box i {
  font-size: 32px;
  color: #d2b26c;
  margin-bottom: 10px;
}

.stat-box h3 {
  font-size: 24px;
  color: #fff;
  margin: 5px 0;
}

.stat-box p {
  font-size: 14px;
  color: #aaa;
}

.vip-feature-icons {
  background-color: #111;
  padding: 80px 0;
}

.feature-grid {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.feature-item i {
  font-size: 36px;
  color: #d2b26c;
  margin-bottom: 15px;
}

.page-header {
  position: relative;
  background: url('../images/about-us-navbar.webp') center center/cover no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-header h1 {
  position: relative;
  z-index: 2;
  font-size: 48px;
  color: #fff;
  margin: 0;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.feature-item i {
  font-size: 36px;
  color: #d2b26c;
  margin-bottom: 15px;
  pointer-events: none;
}

.feature-item h3,
.feature-item p {
  pointer-events: none;
}

.feature-item:hover {
  transform: translateY(-8px);
  background-color: #1a1a1a;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.feature-item i,
.feature-item h3,
.feature-item p {
  pointer-events: none;
}

.vip-about-block {
  margin-bottom: 20px; 
}

.vip-feature-icons {
  margin-top: 0;
  padding-top: 0;
}

.vip-feature-icons {
  margin-bottom: 60px; 
}

.services-header {
  background: url('../images/service-hailing.jpg') center center/cover no-repeat;
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.services-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.services-header h1 {
  position: relative;
  z-index: 2;
  font-size: 48px;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-carousel-section {
  padding: 80px 20px;
  background-color: #111;
  text-align: center;
  position: relative;
}

.swiper.service-swiper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 60px;
  overflow: visible;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: filter 0.3s ease, opacity 0.3s ease;
  opacity: 0.5;
  filter: brightness(0.5);
}

.swiper-slide.swiper-slide-active {
  opacity: 1;
  filter: brightness(1);
}

.wide-service-card {
  background-color: #1c1c1c;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: row;
  width: 1000px;
  max-width: 1000px;
  min-height: 360px;
  transition: transform 0.3s ease;
}

.wide-service-card:hover {
  transform: scale(1.015);
}

.wide-service-card img {
  width: 50%;
  height: auto;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 32px;
  text-align: left;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-content h3 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 12px;
}

.card-content p {
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
}

.swiper-button-next,
.swiper-button-prev {
  color: #d2a74d;
  font-size: 30px;
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  transition: transform 0.2s ease;
  z-index: 15;
  position: absolute;
}

.swiper-button-prev {
  left: -60px;
}

.swiper-button-next {
  right: -60px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: #d2a74d;
  font-size: 30px;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
  color: #f0d88b;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: translateY(-50%) scale(1.2);
}

.swiper-pagination-bullet {
  background-color: #d2a74d !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
}

.top-routes {
  background-color: #111;
  color: #ddd;
  padding: 60px 20px;
  text-align: center;
}

.top-routes .section-title {
  font-size: 32px;
  color: #fff;
  margin-bottom: 30px;
}

.routes {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
}

.routes li {
  font-size: 17px;
  margin: 10px 0;
}

.routes a {
  color: #4da6ff;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .wide-service-card {
    flex-direction: column;
    width: 100%;
  }

  .wide-service-card img,
  .card-content {
    width: 100%;
  }

  .swiper-button-prev {
    left: 10px !important;
  }

  .swiper-button-next {
    right: 10px !important;
  }
}

@media screen and (max-width: 480px) {
  .services-header h1 {
    font-size: 36px;
  }

  .card-content h3 {
    font-size: 22px;
  }

  .card-content p {
    font-size: 15px;
  }
}

.top-routes-box {
  background-color: #1e1e1e; 
  padding: 60px 20px;
  text-align: center;
}

.top-routes-box .section-title {
  font-size: 32px;
  color: #fff;
  margin-bottom: 40px;
  font-weight: bold;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.route-card {
  background-color: #111; 
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.5);
  text-align: left;
  transition: transform 0.2s ease, background 0.3s ease;
}

.route-card:hover {
  transform: scale(1.03);
  background-color: #181818; 
}

.route-card .cities {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.route-card .info {
  font-size: 14px;
  color: #aaa;
}

@media screen and (max-width: 900px) {
  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 500px) {
  .routes-grid {
    grid-template-columns: 1fr;
  }
}

.route-cta-box {
  background-color: #1a1a1a; 
  padding: 40px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.route-cta-box .text h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
}

.route-cta-box .text p {
  color: #ccc;
  font-size: 16px;
}

.route-cta-box .cta-button {
  background: linear-gradient(135deg, #d2a74d, #f0d88b);
  color: #1a1a1a;
  border: none;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.route-cta-box .cta-button:hover {
  transform: scale(1.05);
}

.site-footer {
  background-color: #111;
  color: #ccc;
  padding: 60px 20px 30px;
  font-size: 15px;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-brand h2 {
  color: #d2a74d;
  font-size: 28px;
  margin-bottom: 10px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-column h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li i {
  margin-right: 10px;
  color: #d2a74d;
}

.footer-column a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #d2a74d;
}

.social-icons a {
  font-size: 20px;
  margin-right: 12px;
  color: #ccc;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #d2a74d;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding-top: 20px;
  color: #666;
  font-size: 14px;
}

.footer-logo {
  max-width: 160px;
  height: auto;
  margin-bottom: 10px;
  filter: brightness(1.2);
}

.contact-hero {
  position: relative;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.contact-hero-content h1 {
  font-size: 48px;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.contact-hero-content p {
  font-size: 18px;
  color: #ccc;
}

.contact-form-section {
  background-color: #111;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.form-container {
  background-color: #1c1c1c;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 600px;
}

.contact-form label {
  display: block;
  color: #fff;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: none;
  border-radius: 8px;
  background-color: #222;
  color: #fff;
  font-size: 15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.submit-btn {
  background: linear-gradient(135deg, #d2a74d, #f0d88b);
  color: #000;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.submit-btn:hover {
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .contact-hero-content h1 {
    font-size: 36px;
  }

  .form-container {
    padding: 30px 20px;
  }
}

.contact-description {
  background-color: #1a1a1a; 
  color: #ccc;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  padding: 60px 20px 40px;
  max-width: 700px;
  margin: 0 auto;
}

/* -----------------------------
   Login Page - VIP Fixed Fullscreen (No Scroll + Responsive)
------------------------------ */

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #1a1a1a;
  font-family: Arial, sans-serif;
}

.auth-wrapper {
  display: flex;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  flex-direction: row;
}

/* Sol panel (form tarafı) */
.auth-left {
  flex: 1.2;
  background-color: #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Sağ panel (görsel) */
.auth-right {
  flex: 0.8;
  position: relative;
  overflow: hidden;
  display: block;
}

.auth-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

/* Karartma */
.auth-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Form kutusu */
.auth-form-box {
  width: 100%;
  max-width: 440px;
  background-color: #2a2a2a;
  border-radius: 16px;
  padding: 50px 50px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  max-height: 100%;
  overflow-y: auto;
}

.auth-form-box h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #d2a74d;
}

.auth-form-box p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 30px;
}

.auth-form input {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 20px;
  border: 1px solid #444;
  border-radius: 8px;
  font-size: 15px;
  background-color: #111;
  color: #fff;
}

.auth-form input::placeholder {
  color: #888;
}

.auth-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(to right, #a88e5c, #d6c591, #a88e5c);
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  color: #1a1a1a;
  transition: background 0.3s;
}

.auth-btn:hover {
  background: linear-gradient(to right, #d6c591, #a88e5c, #d6c591);
}

.auth-divider {
  text-align: center;
  margin: 30px 0;
  color: #999;
  font-size: 13px;
}

.social-login button {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  border: none;
}

.google-btn {
  background-color: #fff;
  color: #000;
}

.apple-btn {
  background-color: #000;
  color: #fff;
}

.auth-footer {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #ccc;
}

.auth-footer a {
  color: #d2a74d;
  text-decoration: none;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* Tablet uyumu */
@media (max-width: 1024px) {
  .auth-form-box {
    max-width: 380px;
    padding: 40px 30px;
  }

  .auth-form-box h2 {
    font-size: 24px;
  }
}

/* Mobil uyum */
@media (max-width: 768px) {
  html, body {
    overflow: auto;
  }

  .auth-wrapper {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  .auth-left {
    padding: 30px 20px;
  }

  .auth-form-box {
    max-width: 100%;
    padding: 30px 20px 40px;
    border-radius: 0;
    box-shadow: none;
  }

  .auth-right {
    display: none;
  }
}

/* -----------------------------
   Auth Page - Login & Register (Modern Responsive & Clean)
------------------------------ */

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background-color: #1a1a1a;
  font-family: Arial, sans-serif;
  /* overflow: hidden; KALDIRILDI */
  overflow-x: hidden;
  overflow-y: auto;
}

.auth-wrapper {
  display: flex;
  min-height: 100vh;
  width: 100vw;
  flex-direction: row;
  background: #1a1a1a;
}

.auth-left {
  flex: 1.2;
  background-color: #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.auth-right {
  flex: 0.8;
  position: relative;
  overflow: hidden;
  display: block;
}

.auth-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.auth-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.auth-form-box {
  width: 100%;
  max-width: 400px;
  background-color: #242424;
  border-radius: 16px;
  padding: 36px 36px 28px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
  max-height: 100%;
  overflow-y: auto;
}

/* Title & Desc - same color and improved readability */
.form-title {
  color: #ffdfa0;
  font-size: 25px;
  margin-bottom: 9px;
  font-weight: bold;
  letter-spacing: 0.2px;
}
.form-desc {
  color: #fff !important;
  margin-bottom: 32px;
}

/* Error message above form */
.form-error {
  color: #e53935;
  background: #181313;
  border-radius: 5px;
  padding: 8px 12px;
  margin-bottom: 16px;
  font-size: 15px;
  text-align: center;
  font-weight: 500;
}

/* Input & Wrapper */
.input-wrapper {
  margin-bottom: 28px;
}
.input-wrapper:last-child {
  margin-bottom: 0;
}
.auth-form label {
  display: block;
  color: #e8d9ae;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.1px;
}
.auth-form input {
  width: 100%;
  padding: 12px 40px 12px 13px;
  border: 1px solid #3b3b3b;
  border-radius: 8px;
  font-size: 16px;
  background-color: #111;
  color: #fff;
  box-sizing: border-box;
  margin-bottom: 0;
  transition: border 0.2s;
}
.auth-form input:focus {
  outline: none;
  border-color: #d2a74d;
}
.auth-form input::placeholder {
  color: #8d8161;
  opacity: 1;
}

/* Hata mesajı inputa tam yakın ve orantılı */
.input-error {
  color: #e53935;
  font-size: 0.93em;
  min-height: 16px;
  margin: 3px 0 0 2px;
  font-weight: 500;
  display: block;
  background: none;
  line-height: 1.3;
}

/* Password field wrapper and eye icon */
.password-wrapper {
  position: relative;
  width: 100%;
}
.toggle-password {
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  cursor: pointer;
  height: 18px;
  width: 18px;
  object-fit: contain;
  pointer-events: all;
  opacity: 0.7;
  transition: opacity 0.18s;
}
.toggle-password:hover {
  opacity: 1;
}

/* Buton */
.auth-btn {
  width: 100%;
  padding: 13px;
  background: linear-gradient(to right, #a88e5c, #d6c591, #a88e5c);
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 17px;
  cursor: pointer;
  color: #1a1a1a;
  transition: background 0.3s;
  margin-top: 14px;
}
.auth-btn:hover {
  background: linear-gradient(to right, #d6c591, #a88e5c, #d6c591);
}

.auth-divider {
  text-align: center;
  margin: 25px 0;
  color: #9c8c5e;
  font-size: 13px;
}

/* Sosyal Login */
.social-login button {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 13px;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  border: none;
}
.google-btn {
  background-color: #fff;
  color: #000;
}
.apple-btn {
  background-color: #000;
  color: #fff;
}

/* Footer */
.auth-footer {
  text-align: center;
  margin-top: 22px;
  font-size: 14px;
  color: #d1bb7c;
}
.auth-footer a {
  color: #ffdfa0;
  text-decoration: none;
}
.auth-footer a:hover {
  text-decoration: underline;
}

/* Tablet uyumu */
@media (max-width: 1024px) {
  .auth-form-box {
    max-width: 350px;
    padding: 30px 18px;
  }
  .form-title {
    font-size: 20px;
  }
}

/* Mobil uyum */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    overflow-y: auto;
  }
  .auth-wrapper {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }
  .auth-left {
    padding: 22px 4vw;
  }
  .auth-form-box {
    max-width: 100%;
    padding: 16px 4vw 28px;
    border-radius: 0;
    box-shadow: none;
  }
  .input-wrapper {
    margin-bottom: 24px;
  }
  .auth-right {
    display: none;
  }
  .toggle-password {
    height: 18px;
    width: 18px;
  }
  .auth-footer {
    margin-top: 16px;
    font-size: 13px;
  }
  .form-title {
    font-size: 18px;
    margin-bottom: 7px;
  }
}

/* Ekstra küçük ekranlar (iPhone SE, Galaxy Mini gibi) */
@media (max-width: 440px) {
  .auth-form-box {
    padding: 8px 2vw 18px;
  }
  .input-wrapper {
    margin-bottom: 16px;
  }
  .auth-btn {
    padding: 10px;
    font-size: 15px;
  }
}

/* -----------------------------
   Custom Scrollbar (Modern Look)
------------------------------ */
.auth-form-box::-webkit-scrollbar {
  width: 8px;
}
.auth-form-box::-webkit-scrollbar-track {
  background: transparent;
}
.auth-form-box::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 10px;
}
.auth-form-box::-webkit-scrollbar-thumb:hover {
  background: #777;
}
