/* ==========================================================
   VIP Transfer Global Styles - SEO & Performance Optimized
   Author: VIP Transfer | 2025
   ========================================================== */

/* Google Fonts - Removed @import (render-blocking), moved to head */

/* GLOBAL RESETS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Roboto', sans-serif;
  scroll-behavior: smooth;
  background-color: #f8f9fa;
  color: #333;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
}

/* Hide all scrollbars */
* {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

*::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

* {
  max-width: 100% !important;
  box-sizing: border-box !important;
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important; /* IE and Edge */
}

*::-webkit-scrollbar {
  display: none !important; /* Chrome, Safari, Opera */
}

.row {
  overflow-x: hidden !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.container, .container-fluid {
  overflow-x: hidden !important;
  max-width: 100% !important;
}

/* LINKS */
a {
  color: #000;
  transition: color 0.3s ease;
}
a:hover {
  color: #d4af37; /* gold hover */
}

/* NAVBAR */
.modern-navbar {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(18, 18, 18, 0.98) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.modern-navbar.scrolled {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(18, 18, 18, 0.99) 100%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  padding: 0.5rem 0;
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: translateY(-2px);
}

.navbar-logo {
  height: 50px;
  width: auto;
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
  filter: brightness(1.15) drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
  transition: all 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
  filter: brightness(1.3) drop-shadow(0 4px 8px rgba(255, 193, 7, 0.5));
  transform: scale(1.05);
}

.brand-text {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.95rem;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffc107, #ffb300);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  width: 80%;
}

.navbar-nav .nav-link:hover {
  color: #ffc107 !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
  color: #ffc107 !important;
  font-weight: 600;
}

.navbar-nav .nav-link i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover i {
  transform: scale(1.2);
}

.modern-btn {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  border: none;
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  border-radius: 8px;
}

.modern-btn:hover {
  background: linear-gradient(135deg, #ffb300 0%, #ffa000 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
  color: #000;
}

.navbar-toggler {
  border: 2px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  padding: 0.4rem 0.6rem;
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  border-color: #ffc107;
  background: rgba(255, 193, 7, 0.1);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.navbar-toggler:not(.collapsed) {
  border-color: #ffc107;
  background: rgba(255, 193, 7, 0.15);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .modern-navbar {
    padding: 0.5rem 0;
  }
  
  .navbar-nav {
    padding: 1rem 0;
    text-align: center;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    margin: 0.25rem 0;
    display: block;
    width: 100%;
  }
  
  .navbar-nav .nav-link::before {
    display: none;
  }
  
  .brand-text {
    font-size: 1rem;
  }
  
  .navbar-logo {
    height: 40px;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  .navbar-collapse {
    background: rgba(18, 18, 18, 0.98);
    margin-top: 1rem;
    border-radius: 8px;
    padding: 0.5rem;
  }
  
  .navbar-toggler {
    z-index: 1050;
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 193, 7, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
}

@media (max-width: 576px) {
  .brand-text {
    font-size: 0.9rem;
  }
  
  .navbar-logo {
    height: 35px;
  }
  
  .navbar-nav .nav-link {
    padding: 0.6rem 1rem !important;
    font-size: 0.9rem;
  }
  
  .navbar-nav .nav-link i {
    font-size: 0.9rem;
  }
  
  .navbar-brand {
    font-size: 0.95rem;
  }
  
  .modern-navbar .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Social Media Buttons - Mobile */
  .card-body .d-flex.gap-3 {
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 1rem !important;
    display: flex !important;
  }
  
  .card-body .d-flex.gap-3 .btn,
  .card-body .d-flex.gap-3 a.btn {
    flex-shrink: 0 !important;
    min-width: 50px !important;
    width: 50px !important;
    height: 50px !important;
  }
  
  /* Manage Reservation Buttons - Mobile */
  .d-flex.flex-wrap.gap-3.justify-content-center {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  
  .d-flex.flex-wrap.gap-3.justify-content-center .btn {
    width: 100% !important;
    margin-bottom: 0.5rem;
  }
  
  .d-flex.flex-wrap.gap-3.justify-content-center .btn:last-child {
    margin-bottom: 0;
  }
}

/* HERO */
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}
.hero .btn-warning {
  background-color: #d4af37;
  border: none;
  font-weight: 600;
}
.hero .btn-warning:hover {
  background-color: #b7950b;
}

/* CARDS */
.card {
  border-radius: 10px;
  overflow-x: hidden !important;
  overflow-y: visible !important;
  overflow: visible !important;
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
  height: auto !important;
}

.hover-card {
  overflow-x: hidden !important;
  overflow-y: visible !important;
  overflow: visible !important;
  height: auto !important;
}

.card,
.card *,
.card *::before,
.card *::after {
  overflow-x: hidden !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.card-body {
  overflow-x: hidden !important;
  overflow-y: visible !important;
  overflow: visible !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  height: auto !important;
}

.card-text,
.card-title {
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  max-width: 100% !important;
}
.card img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.card:hover img {
  transform: scale(1.03);
}

/* SECTION TITLES */
section h2 {
  color: #222;
}
section p.lead {
  color: #ffffff;
}

/* FOOTER */
footer {
  background-color: #111;
  color: #ccc;
  font-size: 0.9rem;
}
footer a {
  color: #d4af37;
}
footer a:hover {
  text-decoration: underline;
}

/* BUTTONS */
.btn-dark {
  background-color: #000;
  border: none;
  transition: 0.3s;
}
.btn-dark:hover {
  background-color: #222;
}
.btn-warning {
  background-color: #d4af37;
  border: none;
  transition: 0.3s;
}
.btn-warning:hover {
  background-color: #b7950b;
}

/* FORM */
form input, form textarea {
  border-radius: 5px;
  border: 1px solid #ccc;
}
form input:focus, form textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* MAP */
.ratio iframe {
  border-radius: 10px;
}

/* MEDIA QUERIES */
@media (max-width: 767px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
#submitBtn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}
.modal-header.bg-success {
  background-color: #d4af37 !important; /* Gold theme */
  color: #000 !important;
}
.spinner-border {
  color: #000;
}

/* Hover Card - Prevent Scroll */
.hover-card,
.hover-card * {
  overflow-x: hidden !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.hover-card .card-body {
  overflow-x: hidden !important;
  overflow-y: visible !important;
  overflow: visible !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  height: auto !important;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  background-color: rgba(212,175,55,0.15);
  transition: all 0.3s ease;
}
.hover-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.icon-circle i {
  color: #d4af37;
  transition: color 0.3s ease;
}
.hover-card:hover .icon-circle {
  background-color: #d4af37;
}
.hover-card:hover .icon-circle i {
  color: #fff;
}
.fleet-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 10px;
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}
.image-wrapper {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.fleet-card img {
  transition: transform 0.5s ease;
}
.fleet-card:hover img {
  transform: scale(1.08);
}
.title-line {
  display: block;
  width: 60px;
  height: 3px;
  background-color: #d4af37;
  margin: 6px auto 0;
  border-radius: 2px;
}
.btn-warning {
  background-color: #d4af37;
  border: none;
  transition: all 0.3s ease;
}
.btn-warning:hover {
  background-color: #b7950b;
  color: #fff;
}
/* TESTIMONIAL CAROUSEL CUSTOM STYLE */
.custom-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: #d4af37;
  border: none;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: all 0.3s ease;
  z-index: 2;
}

.custom-carousel-btn:hover {
  opacity: 1;
  background-color: #b28d28;
}

.carousel-control-prev.custom-carousel-btn {
  left: -60px; /* kenar mesafesi */
}

.carousel-control-next.custom-carousel-btn {
  right: -60px;
}

@media (max-width: 992px) {
  .carousel-control-prev.custom-carousel-btn {
    left: 10px;
  }
  .carousel-control-next.custom-carousel-btn {
    right: 10px;
  }
}
.section-divider {
  border: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  width: 60%;
  margin: 60px auto;
  opacity: 0.9;
  border-radius: 2px;
}

/* How It Works - hover animation */
.bg-light .col-md-4 .bg-white {
  transition: all 0.3s ease;
}
.bg-light .col-md-4 .bg-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.btn-warning {
  background-color: #d4af37;
  border: none;
  color: #111;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  background-color: #b8932e;
  color: #fff;
  transform: translateY(-2px);
}
/* Blog Card Hover */
/* Blog Cards */
.card-img-top {
  height: 220px;
  object-fit: cover;
}

.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Button Styles */
.btn-outline-warning {
  border-color: #d4af37;
  color: #d4af37;
  transition: all 0.3s ease;
}

.btn-outline-warning:hover {
  background-color: #d4af37;
  color: #111;
}

.btn-warning {
  background-color: #d4af37;
  border: none;
  color: #111;
}

.btn-warning:hover {
  background-color: #b8932e;
  color: #fff;
  transform: translateY(-2px);
}
footer {
  color: #f8f9fa !important;
}

footer a {
  color: #f8f9fa !important;
  text-decoration: none;
}

footer a:hover {
  color: #d4af37 !important;
}

footer p, footer li {
  color: #f8f9fa !important;
}
.table thead th {
    vertical-align: middle;
    background-color: #121212 !important;
    color: #f8f9fa !important;
  }

  .table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
  }

  .table tbody tr:hover {
    background-color: #fffbea;
    transition: 0.3s ease;
  }

  .table td, .table th {
    border-color: #ddd !important;
  }

  .table td {
    font-size: 0.95rem;
  }

  .table .fw-bold {
    color: #333;
  }
  .section-divider {
    border: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
    width: 60%;
    margin: 60px auto;
    opacity: 0.9;
    border-radius: 2px;
  }

/* Booking Page - Mobile Responsive */
@media (max-width: 576px) {
  /* Progress Steps - Mobile (Styles are now in booking.blade.php for better control) */
  
  /* Progress Bar Container */
  .progress-steps-container {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .progress-steps-container::-webkit-scrollbar {
    display: none;
  }
  
  /* Card Body Padding */
  .card-body {
    padding: 1rem !important;
  }
  
  /* Form Elements */
  .form-control,
  .form-select {
    font-size: 0.9rem !important;
  }
  
  /* Review Section */
  .row.mb-3 .col-12 {
    margin-bottom: 0.5rem;
  }
}

/* ==========================================================
   INDEX PAGE SPECIFIC STYLES - Moved from inline for performance
   ========================================================== */

/* Hero Section */
.hero {
  padding-top: 80px !important;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 70px !important;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-top: 60px !important;
  }
}

/* Hero Section Responsive */
@media (max-width: 991px) {
  .hero {
    min-height: 70vh !important;
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center center !important;
  }
}

/* Force scroll on mobile for better performance */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll !important;
  }
  
  .hero h1 {
    font-size: 2rem !important;
  }
  
  .hero .lead {
    font-size: 1rem !important;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 60vh !important;
    padding: 2rem 0 !important;
  }
  
  .hero h1 {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
  }
  
  .hero .lead {
    font-size: 0.9rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .row {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }
  
  .row > * {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

@media (max-width: 575px) {
  .hero {
    min-height: 55vh !important;
    padding: 1.5rem 0 !important;
  }
  
  .hero h1 {
    font-size: 1.25rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .hero .lead {
    font-size: 0.85rem !important;
    margin-bottom: 1rem !important;
  }
  
  .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  
  .row > * {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* Prevent horizontal scroll */
img, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
}

.container, .container-fluid {
  max-width: 100%;
}

main, section, div {
  max-width: 100%;
  overflow-x: hidden;
}

/* Section responsive */
@media (max-width: 767px) {
  section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .card {
    margin-bottom: 1rem;
  }
  
  h2, h3 {
    font-size: 1.5rem !important;
  }
  
  .lead {
    font-size: 1rem !important;
  }
}

/* Carousel responsive */
@media (max-width: 767px) {
  .carousel-inner .card {
    margin: 0 0.5rem;
    padding: 1.5rem !important;
  }
  
  .carousel-inner .card p {
    font-size: 0.95rem !important;
  }
}
