/* Main body styling */
body {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #2e2e2e;
  background-color: #fff; /* subtle ivory for warm feel */
  letter-spacing: 0.02em; /* slight spacing for legibility */
  -webkit-font-smoothing: antialiased; /* better rendering on macOS */
  -moz-osx-font-smoothing: grayscale; /* smoother fonts on Firefox/Mac */
}

.text-primary{
  color:#470B78 !important;
}

/* Paragraph specifics */
p {
  margin-bottom: 1.2rem;
}

/* Link styles for readability and elegance */
a {
  color: #1f2937; /* Elegant dark slate for base links */
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: #1f909b; /* Soft gold accent on hover */
  text-decoration: none;
}

.container {
  max-width: 1450px;
  margin: 0 auto; /* Center the container */
  padding: 0 15px; /* Add some padding for spacing */
}


/* Headings with Playfair Display for contrast */
/* Headings */
h1, h2, h3, h4 {
  
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}




/* Header Wrapper */
.header {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.6rem 0;
}

/* Logo */
.header-logo img {
  height: 42px;
}

/* Nav Links */
.header-nav .nav-link {
  color: #1a1a1a;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.header-nav .nav-link:hover {
  background-color: rgba(71, 11, 120, 0.08);
  color: #470B78;
}

/* Book Button */
.book-button {
  background-color: #470B78;
  border: none;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 6px 14px rgba(71, 11, 120, 0.15);
  transition: all 0.2s ease;
}
.book-button:hover {
  background-color: #35065a;
  transform: translateY(-1px);
}

/* Language Switcher */
.language-switcher .btn {
  background: none;
  border: none;
  padding: 0.25rem;
}
.language-switcher .flag-icon {
  font-size: 1.2rem;
}
.glass-dropdown {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0,0,0,0.04);
}

/* Mobile Toggle */
.menu-toggle i {
  color: #1a1a1a;
  font-size: 1.5rem;
}

/* OFFCANVAS: Modern Glassmorphic Panel */
.offcanvas.mobile-nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0 16px 16px 0;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.08);
  padding: 2rem 1.5rem;
  width: 320px;
  transition: transform 0.3s ease-in-out;
}

/* FULL WIDTH on Small Phones */
@media (max-width: 480px) {
  .offcanvas.mobile-nav {
    width: 100%;
    border-radius: 0;
  }
}

/* Offcanvas Header */
.offcanvas.mobile-nav .offcanvas-header {
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offcanvas.mobile-nav .offcanvas-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

/* Better Close Button */
.offcanvas.mobile-nav .btn-close {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  padding: 0.5rem;
  transition: background 0.2s ease;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offcanvas.mobile-nav .btn-close:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/* Nav Links */
.offcanvas.mobile-nav .nav-link {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.6rem 1rem;
  color: #1a1a1a;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.offcanvas.mobile-nav .nav-link:hover {
  background-color: rgba(71, 11, 120, 0.08);
  color: #470B78;
}

/* CTA Button */
.offcanvas.mobile-nav .btn-primary {
  background-color: #470B78;
  border: none;
  padding: 0.7rem 1rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.offcanvas.mobile-nav .btn-primary:hover {
  background-color: #35065a;
}


/* Contact Section */
.mobile-contact {
  font-size: 0.95rem;
  color: #333;
}

.mobile-contact i {
  font-size: 1rem;
}

.mobile-contact a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.mobile-contact a:hover {
  color: #470B78;
}

.mobile-contact .btn-success {
  background-color: #25D366;
  border: none;
  font-weight: 600;
  border-radius: 8px;
}

.mobile-contact .btn-success:hover {
  background-color: #1ebe5b;
}

.hero {
  position: relative;
  padding: 6rem 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(to right, #470B78, #2e064d);
}

/* Blurred background image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/home-hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(10px);
  transform: scale(1.1); /* prevents blur edge clipping */
  z-index: 1;
}

/* Dark overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* Content stays sharp */
.hero .hero-content {
  position: relative;
  z-index: 3;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

@media (min-width: 768px) {
  .hero .hero-title {
    font-size: 3.5rem;
  }
}

.hero .hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: 1rem;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.hero .hero-form .form-label {
  color: #ffffffcc;
  font-weight: 500;
}

.hero .hero-form .form-control {
  border-radius: 8px;
  border: none;
  padding: 0.6rem 1rem;
}

.hero .hero-form .form-control:focus {
  box-shadow: 0 0 0 3px rgba(71, 11, 120, 0.4);
}

.hero .hero-submit {
  background-color: #fff;
  color: #470B78;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero .hero-submit:hover {
  background-color: #f4f4f4;
  color: #35065a;
}



.footer {
  background: linear-gradient(to bottom, #1a022b, #0d0116);
  color: #ffffff;
  font-size: 0.95rem;
}

.footer .footer-brand {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer .footer-tagline {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.4;
}

.footer .footer-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffffdd;
}

.footer .footer-links,
.footer .footer-contact,
.footer .footer-legal {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer .footer-links li,
.footer .footer-contact li,
.footer .footer-legal li {
  margin-bottom: 0.5rem;
}

.footer .footer-link {
  display: block;
  color: #cccccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer .footer-link:hover {
  color: #ffffff;
}

.footer .footer-contact i {
  color: #9c6cf3;
  min-width: 20px;
  margin-right: 0.3rem;
}

.footer .footer-contact a {
  color: #ffffffcc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer .footer-contact a:hover {
  color: #ffffff;
}

.footer .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer .footer-social .footer-icon {
  font-size: 1.25rem;
  color: #ffffffcc;
  transition: color 0.2s ease;
}

.footer .footer-social .footer-icon:hover {
  color: #ffffff;
}

.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  margin-top: 2rem;
  color: #cccccc;
  font-size: 0.85rem;
  text-align: center;
}



.footer .footer-anpc {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

.footer .footer-anpc img {
  height: 40px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer .footer-anpc img:hover {
  opacity: 1;
}


.homepage .why {
  background-color: #f9f8fb;
  color: #1a1a1a;
}

.homepage .why-title {
  font-size: 2rem;
  font-weight: 700;
}

.homepage .why-subtitle {
  font-size: 1rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.homepage .why-box {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease-in-out;
  height: 100%;
}

.homepage .why-box i {
  color: #470B78;
  background-color: #f0e7f8;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}

.homepage .why-box:hover i {
  transform: scale(1.1);
}

.homepage .why-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.homepage .why-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.homepage .why-text {
  font-size: 0.95rem;
  opacity: 0.8;
}


.homepage .fleet {
  background-color: #ffffff;
  color: #1a1a1a;
}

.homepage .fleet-title {
  font-size: 2rem;
  font-weight: 700;
}

.homepage .fleet-subtitle {
  font-size: 1rem;
  opacity: 0.8;
}


.homepage .how-it-works {
  background-color: #f9f8fb;
  color: #1a1a1a;
}

.homepage .how-title {
  font-size: 2rem;
  font-weight: 700;
}

.homepage .how-subtitle {
  font-size: 1rem;
  opacity: 0.8;
}

.homepage .how-step {
  background-color: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.homepage .how-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(71, 11, 120, 0.1);
}

.homepage .how-icon {
  background-color: #f0e7f8;
  color: #470B78;
  font-size: 1.8rem;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.homepage .how-label {
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.homepage .how-text {
  font-size: 0.95rem;
  opacity: 0.85;
}


.fleet-page .fleet-header .fleet-title {
  font-size: 2.2rem;
  font-weight: 700;
}

.fleet-page .fleet-header .fleet-subtitle {
  font-size: 1rem;
  color: #555;
  opacity: 0.85;
  margin-bottom: 2rem;
}

.fleet-page .fleet-filters .form-label {
  font-weight: 500;
  color: #1a1a1a;
}

.fleet-page .fleet-filters .form-control,
.fleet-page .fleet-filters .form-select {
  border-radius: 12px;
  padding: 0.6rem 1rem;
}

.fleet-page .fleet-filters button {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  background-color: #3C0D7E;
  color: #fff;
  transition: all 0.2s ease-in-out;
}

.fleet-page .fleet-filters button:hover {
  background: linear-gradient(90deg, #3C0D7E, #FF5C97);
  box-shadow: 0 4px 14px rgba(60, 13, 126, 0.25);
}





.car-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    color: #1a1a1a;
    position: relative;
}

.car-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
}

.car-card .status-badge {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.car-card .bg-available {
    background-color: #28a745;
    color: #fff;
}

.car-card .car-image {
    max-height: 160px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.car-card:hover .car-image {
    transform: scale(1.05);
}

.car-card .car-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
}

.car-card .car-title small {
    font-weight: 400;
    color: #777;
    font-size: 0.85rem;
}

.car-card .car-tags span {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: #333;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.3s;
}

.car-card .car-tags span:hover {
    background: rgba(255, 255, 255, 0.4);
}

.car-card .car-pricing .line {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 0.92rem;
}

.car-card .car-pricing .line strong {
    font-weight: 600;
    color: #1a1a1a;
}

.car-card .car-pricing .text-success strong {
    color: #28a745;
}

.car-card .car-pricing .text-primary strong {
    color: #6f42c1;
}

.car-card hr {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin: 10px 0;
}

.car-card .btn.btn-primary {
    background: #4B0082;
    border: none;
    padding: 10px 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: background 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.car-card .btn.btn-primary:hover {
    background: #36005e;
}

.min-days-alert {
  background: rgba(255, 193, 7, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-left: 3px solid #ffc107;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  color: #856404;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.booking-glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  color: #111;
}

.booking-glass .car-img {
  max-width: 260px;
  object-fit: contain;
  background: #fff;
  padding: 12px;
  border-radius: 10px;
}

.booking-glass .car-tags span {
  font-size: 0.75rem;
  background: rgba(0, 0, 0, 0.04);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
  color: #444;
}

/* Option Cards */
.booking-glass .option-box {
  border: 2px solid transparent;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  cursor: pointer;
}

.booking-glass .option-box:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.booking-glass .option-box .option-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-radius: 12px;
}

.booking-glass input[type="radio"]:checked + .option-box,
.booking-glass input[type="checkbox"]:checked + .option-box {
  border-color: #6f42c1;
  background: rgba(111, 66, 193, 0.1);
  box-shadow: 0 0 0 2px #6f42c1 inset;
}

/* Totals */
.booking-glass .glass-totals {
  background: rgba(255, 255, 255, 0.5);
  border: 1px dashed rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

/* Responsive */
@media (max-width: 768px) {
  .booking-glass .car-img {
    max-width: 100%;
    width: 100%;
  }

  .booking-glass .option-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .booking-glass .totals-summary {
    font-size: 0.95rem;
  }
}

.booking-steps-progress {
  position: relative;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-size: 0.85rem;
}

.booking-steps-progress .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
}

.booking-steps-progress .circle {
  background: rgba(255,255,255,0.8);
  border: 2px solid #ccc;
  color: #333;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 50%;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.booking-steps-progress .step.active .circle {
  background: #6f42c1;
  color: #fff;
  border-color: #6f42c1;
  box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.2);
}

.booking-steps-progress .label {
  color: #333;
  font-weight: 500;
}

.booking-steps-progress .divider {
  height: 2px;
  flex: 0.2;
  background: rgba(0,0,0,0.1);
  margin: 0 6px;
  border-radius: 999px;
}

@media (max-width: 768px) {
  .booking-steps-progress {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    padding: 10px 14px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .booking-steps-progress .step {
    flex: 0 0 auto;
    min-width: 70px;
    text-align: center;
  }

  .booking-steps-progress .divider {
    display: none;
  }

  .booking-steps-progress .label {
    font-size: 0.75rem;
    max-width: 80px;
    line-height: 1.2;
    word-break: break-word;
  }

  .booking-steps-progress .circle {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }
}

/* Totals Sidebar */
.totals-sidebar {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border: 1px dashed rgba(0, 0, 0, 0.08);
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.totals-sidebar h5 {
  font-weight: 600;
}

.totals-sidebar strong {
  font-weight: 600;
}

@media (min-width: 992px) {
  
}

@media (max-width: 991.98px) {
  .totals-sidebar {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
  }
}

/* Glass style card for extras */
.booking-glass .glass-extra {
  background: rgba(255, 255, 255, 0.65);
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 16px 20px;
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
}

.booking-glass .glass-extra:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.booking-glass input[type="checkbox"]:checked + .glass-extra {
  border-color: #6f42c1;
  background: rgba(111, 66, 193, 0.1);
  box-shadow: 0 0 0 3px #6f42c1 inset;
}

/* Icon size and spacing */
.booking-glass .glass-extra i {
  flex-shrink: 0;
  color: #6f42c1;
}

/* Extra card text styles */
.booking-glass .glass-extra h6 {
  font-size: 1rem;
  font-weight: 600;
}

.booking-glass .glass-extra .price {
  font-size: 1rem;
  color: #111;
}

.booking-glass .glass-extra p {
  font-size: 0.85rem;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .booking-glass .glass-extra {
    padding: 14px 16px;
  }
}



.intl-tel-input{
  width:100%;
}

.inside-modal{
  width:500px;
}



/* 404 Container Section */
.tgj-404 {
  min-height: 80vh;
  background: linear-gradient(135deg, #f7f7ff, #f0f0ff);
  display: flex;
  padding: 60px 0;
}

/* Glass Card */
.error-card {
  max-width: 580px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

/* Icon */
.error-card .error-icon {
  font-size: 56px;
  color: #6f42c1;
  opacity: 0.85;
}

/* Content */
.error-card .error-content .error-code {
  font-size: 92px;
  font-weight: 700;
  color: #6f42c1;
  margin-bottom: 0.5rem;
}

.error-card .error-content .error-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
}

.error-card .error-content .error-description {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* Button */
.error-card .btn-back-home {
  background-color: #6f42c1;
  border: none;
  border-radius: 12px;
  padding: 12px 26px;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s ease;
}

.error-card .btn-back-home:hover {
  background-color: #5a34a1;
  color: #fff;
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .error-card {
    padding: 40px 20px;
  }

  .error-card .error-icon {
    font-size: 48px;
  }

  .error-card .error-content .error-code {
    font-size: 72px;
  }

  .error-card .error-content .error-title {
    font-size: 1.25rem;
  }

  .error-card .btn-back-home {
    padding: 10px 22px;
    font-size: 0.95rem;
  }
}

/* --- Fancybox 5: Glassmorphism Overlay + Container (No Transitions) --- */

/* Overlay */
.fancybox__backdrop {
  background: rgba(18, 18, 20, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Container */
.fancybox__container {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 0;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

/* Slide content */
.fancybox__slide {
  padding: 24px;
}

/* Content (image/video container) */
.fancybox__content {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  max-width: 95vw;
  max-height: 90vh;
}

/* Close Button */
.fancybox__button--close {
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
  color: #000;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Hover state without transitions */
.fancybox__button--close:hover {
  background: rgba(255,255,255,0.9);
  color: #111;
}

/* General transition for styling (keeps nice opening) */
.fancybox__container {
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

/* When closing, remove transition to prevent lag */
.fancybox__container[aria-hidden="true"],
.fancybox__backdrop[aria-hidden="true"],
.fancybox__content[aria-hidden="true"] {
  transition: none !important;
  animation: none !important;
  backdrop-filter: none !important;
  filter: none !important;
}


.totals-sidebar .reservation-details {

  font-size: 0.9rem;
  color: #333;
  margin-bottom:10px;
  border-bottom:1px solid #eee;
  padding-bottom:10px;

}

.totals-sidebar .reservation-details .section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}

.totals-sidebar .reservation-details .detail-item i {
  font-size: 1.1rem;
  min-width: 20px;
  opacity: 0.8;
  text-align:center;
}

.totals-sidebar .reservation-details .detail-item strong {
  font-weight: 600;
  color: #222;
}

.totals-sidebar .reservation-details .detail-item small {
  font-size: 0.8rem;
  color: #666;
}

@media (max-width: 768px) {
  .totals-sidebar .reservation-details {
    padding: 12px 0px;
    font-size: 0.85rem;
  }
}



.default-page-wrapper {
  background: #f8f9fc;
  padding: 4rem 0;
  color: #1a1a1a;
  line-height: 1.7;
  font-size: 1rem;
}

.default-page-wrapper .container,
.default-page-wrapper .container-fluid {
  padding-left: 1rem;
  padding-right: 1rem;
}

.default-page-wrapper .page-heading {
  margin-bottom: 2rem;
  text-align: center;
}

.default-page-wrapper .page-heading .page-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
}

.default-page-wrapper .page-heading .breadcrumb {
  background: transparent;
  padding: 0;
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: 0.95rem;
  justify-content: center;
}

.default-page-wrapper .page-heading .breadcrumb .breadcrumb-item a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.2s ease;
}

.default-page-wrapper .page-heading .breadcrumb .breadcrumb-item a:hover {
  color: #470B78;
}

.default-page-wrapper .page-banner {
  text-align: center;
  margin-bottom: 2.5rem;
}

.default-page-wrapper .page-banner img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.default-page-wrapper .page-content {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.04);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.default-page-wrapper .page-content-full {
  max-width: 100%;
  background: none;
  padding: 0;
  box-shadow: none;
}

.default-page-wrapper .page-content h2,
.default-page-wrapper .page-content h3 {
  color: #470B78;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.default-page-wrapper .page-content p {
  margin-bottom: 1.2rem;
  color: #333;
}

.default-page-wrapper .page-content ul,
.default-page-wrapper .page-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.default-page-wrapper .page-content ul li,
.default-page-wrapper .page-content ol li {
  margin-bottom: 0.6rem;
}

@media (max-width: 768px) {
  .default-page-wrapper .page-heading .page-title {
    font-size: 1.75rem;
  }

  .default-page-wrapper .page-content {
    padding: 1.5rem;
  }
}



.contact-section {
  padding: 3rem 0;
}

.contact-section .container .contact-card,
.contact-section .container .info-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.contact-section .container .contact-card h2,
.contact-section .container .info-card h4 {
  font-weight: 700;
  color: #1a1a1a;
}

.contact-section .container .contact-card form .form-label {
  font-weight: 500;
}

.contact-section .container .contact-card form .form-control {
  border-radius: 10px;
  border: 1px solid #dee2e6;
  transition: all 0.2s ease;
}

.contact-section .container .contact-card form .form-control:focus {
  border-color: #470B78;
  box-shadow: 0 0 0 0.15rem rgba(71, 11, 120, 0.15);
}

.contact-section .container .contact-card form .invalid-feedback {
  font-size: 0.9rem;
  color: #dc3545;
}

.contact-section .container .contact-card form .btn-primary {
  background-color: #470B78;
  border: none;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.contact-section .container .contact-card form .btn-primary:hover {
  background-color: #35065a;
}

.contact-section .container .info-card ul {
  padding-left: 0;
  list-style: none;
}

.contact-section .container .info-card ul li {
  margin-bottom: 0.75rem;
}

.contact-section .container .info-card ul li a {
  text-decoration: none;
  color: #1a1a1a;
  transition: color 0.2s ease;
}

.contact-section .container .info-card ul li a:hover {
  color: #470B78;
}

.contact-section .container .info-card ul li i {
  width: 20px;
}

.contact-section .container .info-card .footer-social {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.contact-section .container .info-card .footer-social a {
  color: #1a1a1a;
  font-size: 1.2rem;
  transition: color 0.2s ease;
}

.contact-section .container .info-card .footer-social a:hover {
  color: #470B78;
}

.contact-section .container .info-card .map-wrapper {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.contact-section .container .info-card .map-wrapper #map {
  height: 250px;
  width: 100%;
}


.register-container,
.login-container {
  max-width: 460px;
  margin: 5rem auto;
  padding: 2.75rem 2.25rem;
  border-radius: 18px;

  /* Modern soft glass */
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  /* Depth without heaviness */
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04);

  /* Subtle border for definition */
  border: 1px solid rgba(255, 255, 255, 0.6);

  position: relative;
  overflow: hidden;
  z-index: 1;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

/* Hover lift (desktop only, feels premium) */
@media (hover: hover) {
  .register-container:hover,
  .login-container:hover {
    transform: translateY(-2px);
    box-shadow:
      0 28px 60px rgba(0, 0, 0, 0.12),
      0 6px 14px rgba(0, 0, 0, 0.06);
  }
}

/* Soft ambient highlight */
.register-container::before,
.login-container::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(71, 11, 120, 0.08),
    rgba(0, 180, 216, 0.08)
  );
  opacity: 0.6;
  z-index: -1;
}


.register-container .logo img , .login-container .logo img{
  max-width:120px;
  margin-bottom:20px;
}
.register-container h1, .login-container h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}



/* =========================================================
   RESERVATION PAGE — 2026 (Bootstrap 5.3 friendly)
========================================================= */

.reservation-page {
  --res-bg: rgba(255, 255, 255, 0.55);
  --res-border: rgba(15, 23, 42, 0.10);
  --res-shadow: 0 16px 44px rgba(15, 23, 42, 0.10);
  --res-shadow-soft: 0 10px 26px rgba(15, 23, 42, 0.08);

  --res-text: #0f172a;
  --res-muted: #64748b;

  --res-radius-lg: 20px;
  --res-radius-md: 16px;
  --res-radius-sm: 12px;
}

/* Glass base (compatible with your existing .glass-box idea) */
.reservation-page .glass-box {
  background: var(--res-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: var(--res-shadow-soft);
  border-radius: var(--res-radius-lg);
}

/* Main cards */
.reservation-page .res-card {
  border-radius: var(--res-radius-lg);
  overflow: hidden;
}

/* =========================================================
   TOP BAR (not a hero)
========================================================= */

.reservation-page .res-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;

  padding: 18px;
  border-radius: var(--res-radius-lg);
  border: 1px solid var(--res-border);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--res-shadow);
}

@media (min-width: 992px) {
  .reservation-page .res-top {
    grid-template-columns: 1fr 420px;
    align-items: start;
  }
}

.reservation-page .res-top__kicker {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--res-muted);
  font-weight: 700;
}

.reservation-page .res-top__title {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}

/* =========================================================
   RESERVATION TOP — BADGE SAME STYLE AS CODE
========================================================= */

.reservation-page .res-top__title .badge,
.reservation-page .reservation-hero__meta .badge {
  /* Same base as reservation-code */
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px 12px;
  min-height: 28px;

  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  color: var(--text-primary);

  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 999px;

  box-shadow:
    0 2px 8px rgba(15, 23, 42, 0.12);

  /* Remove Bootstrap look */
  line-height: 1;
}

/* =========================================================
   OPTIONAL: STATUS COLOR ACCENT (SUBTLE)
========================================================= */

.reservation-page .res-top__title .badge.bg-success,
.reservation-page .reservation-hero__meta .badge.bg-success {
  color: #166534;
  border-color: rgba(22, 163, 74, 0.35);
}

.reservation-page .res-top__title .badge.bg-secondary,
.reservation-page .reservation-hero__meta .badge.bg-secondary {
  color: var(--text-secondary);
}

.reservation-page .res-top__title .badge.bg-warning,
.reservation-page .reservation-hero__meta .badge.bg-warning {
  color: #92400e;
  border-color: rgba(217, 119, 6, 0.35);
}

.reservation-page .res-top__title .badge.bg-danger,
.reservation-page .reservation-hero__meta .badge.bg-danger {
  color: #991b1b;
  border-color: rgba(220, 38, 38, 0.35);
}

.reservation-page .res-top__note {
  margin-top: 10px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--res-muted);
}

.reservation-page .res-top__note i {
  color: #16a34a;
}

/* CTA box */
.reservation-page .res-top__cta {
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: var(--res-radius-md);
  background: rgba(255,255,255,0.70);
  padding: 14px;
  box-shadow: var(--res-shadow-soft);
}

.reservation-page .res-top__cta-title {
  font-weight: 700;
  color: var(--res-text);
  font-size: 13px;
  margin-bottom: 10px;
}

.reservation-page .res-top__cta-hint {
  margin-top: 8px;
  font-size: 12px;
}

.reservation-page .res-top__cta--ok .res-top__cta-ok {
  display: flex;
  gap: 10px;
  align-items: center;
}

.reservation-page .res-top__cta--ok .res-top__cta-ok i {
  font-size: 18px;
  color: #16a34a;
}

/* Bank details box */
.reservation-page .res-bank {
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: var(--res-radius-sm);
  padding: 12px;
  font-size: 13px;
  color: var(--res-text);
}

/* =========================================================
   RENTAL CODE — “washed red” but readable
========================================================= */

.reservation-page .rental-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px 10px;
  border-radius: 999px;

  background: rgba(220, 38, 38, 0.10);
  border: 1px solid rgba(220, 38, 38, 0.22);
  color: #991b1b;

  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 12px;
}

/* =========================================================
   SUMMARY (left)
========================================================= */

.reservation-page .res-summary {
  padding: 16px;
}

.reservation-page .res-summary__car {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.reservation-page .res-summary__car-media {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--res-radius-md);
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reservation-page .res-summary__car-media img {
  max-height: 180px;
  width: 100%;
  object-fit: contain;
}

.reservation-page .res-summary__car-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--res-text);
}

.reservation-page .res-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.reservation-page .res-tags span {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--res-muted);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.reservation-page .res-divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.08);
  margin: 14px 0;
}

.reservation-page .res-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.reservation-page .res-fact {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.reservation-page .res-fact__label {
  font-size: 12px;
  color: var(--res-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.reservation-page .res-fact__value {
  font-size: 14px;
  font-weight: 700;
  color: var(--res-text);
}

.reservation-page .res-mini__label {
  font-size: 12px;
  color: var(--res-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.reservation-page .res-mini__value {
  margin-top: 6px;
  font-weight: 700;
}

/* =========================================================
   SECTIONS (right)
========================================================= */

.reservation-page .res-section {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.reservation-page .res-section:first-child {
  border-top: none;
}

.reservation-page .res-section__head {
  padding: 14px 16px;
  background: rgba(255,255,255,0.55);
}

.reservation-page .res-section__title {
  font-weight: 800;
  color: var(--res-text);
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.reservation-page .res-section__body {
  padding: 16px;
}

/* Client KV */
.reservation-page .res-kv__main {
  font-size: 16px;
  font-weight: 800;
  color: var(--res-text);
}

.reservation-page .res-kv__sub {
  margin-top: 4px;
  font-size: 13px;
}

.reservation-page .res-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .reservation-page .res-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.reservation-page .res-info {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--res-radius-md);
  padding: 12px;
}

.reservation-page .res-info__label {
  font-size: 12px;
  color: var(--res-muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.reservation-page .res-info__value {
  margin-top: 6px;
  font-weight: 700;
  color: var(--res-text);
}

/* =========================================================
   TIMELINE (date first, location under)
========================================================= */

.reservation-page .res-timeline {
  display: grid;
  gap: 12px;
}

.reservation-page .res-timeline__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;

  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--res-radius-md);
  padding: 12px;
}

.reservation-page .res-timeline__dot {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255,255,255,0.70);
}

.reservation-page .res-timeline__dot--pickup i {
  color: #0ea5e9;
}

.reservation-page .res-timeline__dot--dropoff i {
  color: #16a34a;
}

.reservation-page .res-timeline__date {
  font-weight: 800;
  color: var(--res-text);
}

.reservation-page .res-timeline__place {
  margin-top: 4px;
  font-size: 13px;
}

/* =========================================================
   MESSAGE
========================================================= */

.reservation-page .res-message {
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: var(--res-radius-md);
  padding: 14px;
  color: var(--res-text);
}

/* =========================================================
   COST LIST
========================================================= */

.reservation-page .res-cost-list .list-group-item {
  border: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255,255,255,0.55);
}

.reservation-page .res-cost-list .list-group-item:last-child {
  border-bottom: none;
}

.reservation-page .res-totals {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--res-radius-md);
  padding: 12px;
}

.reservation-page .res-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
}

/* =========================================================
   MOBILE TUNING
========================================================= */

@media (max-width: 576px) {
  .reservation-page .res-top {
    padding: 14px;
  }
  .reservation-page .res-summary__car-name {
    font-size: 16px;
  }
}


