 :root {
     --primary-color: #2c3e50;
     --secondary-color: #e67e22;
     --accent-color: #3498db;
     --testxt-color-nav: #000000;
     --background-color: #f8f9fa;
     --text-color: #333;
     --light-text: #666;
     --white: #fff;
     --border-color: #e2e8f0;
     --radius: 12px;
     --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
     --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
     --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
 }

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 .navbar {
     position: fixed;
     top: 0;
     width: 100%;
     z-index: 1000;
     transition: all 0.4s ease-in-out;
     padding: 20px 0;
     background: transparent !important;
     box-shadow: none;
 }

 .navbar.scrolled {
     background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%) !important;
     padding: 10px 0;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 .navbar .nav-link {
     color: var(--testxt-color-nav) !important;
     font-weight: 600;
     transition: color 0.3s ease;
 }

 .navbar.scrolled .nav-link {
     color: #ffffff !important;
 }

 .btn .btn-warning .text-warning :hover {
     color: #000000;
 }

 .navbar-brand {
     font-size: 1.8rem;
     font-weight: bold;
 }

 .logo {
     width: 160px;
     height: auto;
     border-radius: 50%;
 }

 .hero-section,
 .carousel-item {
     height: 700px;
     background-size: cover;
     background-position: center;
     display: flex;
     align-items: center;
     color: #2c3e50;
     position: relative;
 }

 .page-banner {
     height: 600px;
     background-size: cover;
     background-position: center;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     margin-bottom: 50px;
 }

 .page-banner .banner-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(255, 255, 255, 0.4);
     z-index: 1;
 }

 .page-banner h1 {
     position: relative;
     z-index: 2;
     color: var(--testxt-color-nav);
     font-size: 3.5rem;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 2px;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
 }

 .hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     /* background: rgba(255, 255, 255, 0.160); */
     z-index: 1;
 }

 .carousel-item h3 {
     font-size: 2.8rem;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
     letter-spacing: -0.5px;
     color: var(--testxt-color-nav) !important;
 }

 .carousel-item p {
     font-size: 1.3rem;
     text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
     color: var(--testxt-color-nav) !important;
     font-weight: 500;
 }

 .carousel-control-prev,
 .carousel-control-next {
     width: 5%;
     z-index: 5;
 }

 .carousel-control-prev-icon,
 .carousel-control-next-icon {
     background-color: var(--secondary-color);
     border-radius: 50%;
     padding: 25px;
     background-size: 50%;
 }

 .service-card {
     transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
     border: 1px solid rgba(0, 0, 0, 0.05);
     border-radius: 20px;
     background: #ffffff;
     overflow: hidden;
     height: 100%;
 }

 .service-card:hover {
     transform: translateY(-12px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
     border-color: var(--secondary-color);
 }

 .service-icon-wrapper {
     width: 80px;
     height: 80px;
     background: rgba(230, 126, 34, 0.1);
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 20px;
     margin: 0 auto 20px;
     transition: all 0.3s ease;
 }

 .service-card:hover .service-icon-wrapper {
     background: var(--secondary-color);
     transform: rotateY(180deg);
 }

 .service-card:hover .service-icon-wrapper i {
     color: #ffffff !important;
 }

 .service-icon {
     font-size: 2.5rem;
     color: var(--secondary-color);
     transition: all 0.3s ease;
 }

 .enquiry-form {
     background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
     border-radius: 20px;
     padding: 30px;
 }

 .btn-primary-custom {
     background: var(--secondary-color);
     border: none;
     padding: 12px 30px;
     transition: all 0.3s ease;
 }

 .btn-primary-custom:hover {
     background: #d35400;
     transform: scale(1.05);
 }

 .footer {
     background: #0f172a;
     color: #ffffff;
     padding: 80px 0 30px;
     font-size: 0.95rem;
 }

 .footer h5 {
     color: #ffffff;
     font-weight: 700;
     margin-bottom: 25px;
     position: relative;
     padding-bottom: 10px;
 }

 .footer h5::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 0;
     width: 40px;
     height: 2px;
     background: var(--secondary-color);
 }

 .footer-links a {
     color: #ffffff;
     text-decoration: none;
     transition: all 0.3s ease;
     display: inline-block;
     margin-bottom: 12px;
 }

 .footer-links a:hover {
     color: var(--secondary-color);
     padding-left: 8px;
 }

 .footer-contact li {
     margin-bottom: 15px;
     display: flex;
     align-items: flex-start;
 }

 .footer-contact i {
     color: var(--secondary-color);
     margin-right: 15px;
     margin-top: 5px;
     font-size: 1.1rem;
 }

 .social-links a {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.05);
     display: inline-flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     color: white;
     margin-right: 10px;
     transition: all 0.3s ease;
     text-decoration: none;
 }

 .social-links a:hover {
     background: var(--secondary-color);
     transform: translateY(-5px);
     color: white;
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     margin-top: 50px;
     padding-top: 30px;
 }

 .dashboard-card {
     border-radius: 15px;
     border: none;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
 }

 .admin-dashboard-page,
 .user-dashboard-page {
     padding-top: 125px !important;
 }

 @media (max-width: 991.98px) {
     .admin-dashboard-page,
     .user-dashboard-page {
         padding-top: 145px !important;
     }
 }

 .dashboard-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
 }

 .app-toast {
     border-radius: 10px !important;
     box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18) !important;
     font-size: 0.98rem !important;
 }

 .status-badge {
     padding: 5px 12px;
     border-radius: 20px;
     font-size: 0.85rem;
 }

 .status-pending {
     background: #ffc107;
     color: #000;
 }

 .status-processing {
     background: #17a2b8;
     color: #fff;
 }

 .status-confirmed {
     background: #28a745;
     color: #fff;
 }

 .status-cancelled {
     background: #dc3545;
     color: #fff;
 }

 .status-completed {
     background: #6f42c1;
     color: #fff;
 }

 /* Back to Top with Progress */
 .progress-wrap {
     position: fixed;
     right: 30px;
     bottom: 30px;
     height: 46px;
     width: 46px;
     cursor: pointer;
     display: block;
     border-radius: 50px;
     box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
     z-index: 10000;
     opacity: 0;
     visibility: hidden;
     transform: translateY(15px);
     transition: all 200ms linear;
     background: #fff;
 }

 .progress-wrap.active-progress {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .progress-wrap::after {
     position: absolute;
     content: '\f077';
     font-family: 'Font Awesome 5 Free';
     font-weight: 900;
     text-align: center;
     line-height: 46px;
     font-size: 18px;
     color: var(--secondary-color);
     left: 0;
     top: 0;
     height: 46px;
     width: 46px;
     cursor: pointer;
     display: block;
     z-index: 1;
     transition: all 200ms linear;
 }

 .progress-wrap svg path {
     fill: none;
 }

 .progress-wrap svg.progress-circle path {
     stroke: var(--secondary-color);
     stroke-width: 4;
     box-sizing: border-box;
     transition: all 200ms linear;
 }

/* --- Fleet & Services custom styles moved from home.blade.php --- */

/* Fleet cards */
.fleet-card { border-radius: 32px; background: rgba(255,255,255,.98); overflow: hidden; transition: transform .4s ease, box-shadow .4s ease; border: 1px solid rgba(255,184,0,.18); }
.fleet-card:hover { transform: translateY(-12px); box-shadow: 0 32px 60px rgba(0,0,0,.14); }
.fleet-media { height: 210px; overflow: hidden; border-bottom: 1px solid rgba(0,0,0,.06); }
.fleet-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.fleet-card:hover .fleet-media img { transform: scale(1.05); }
.fleet-label { letter-spacing: .08em; padding: .55rem 1rem; border-radius: 999px; }
.fleet-specs li { display: flex; align-items: center; gap: .75rem; margin-bottom: .9rem; color: #5a5a5a; }
.fleet-specs li i { width: 2rem; height: 2rem; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: #fff5d8; color: #b37f00; font-size: .95rem; box-shadow: 0 10px 24px rgba(179,127,0,.12); }
.fleet-pricing { gap: .9rem; }
.fleet-pricing .price-box { border-radius: 18px; background: rgba(255,255,255,.95); border: 1px solid rgba(230,184,84,.3); padding: 1rem; }
.fleet-pricing .price-box h5 { margin-bottom: 0; font-size: 1.1rem; }
.fleet-btn { min-width: 160px; }
.fleet-banner { border-radius: 32px; overflow: hidden; }
.fleet-banner img { transition: transform .45s ease; }
.fleet-banner:hover img { transform: scale(1.04); }
.fleet-banner-card { position: absolute; top: 1.5rem; left: 1.5rem; right: auto; background: rgba(255,255,255,.92); border-radius: 24px; padding: 1.3rem 1.4rem; box-shadow: 0 24px 50px rgba(0,0,0,.12); }
.fleet-banner-card h5 { margin-bottom: .35rem; }

/* Fleet Terms banner */
.fleet-terms-section { background: linear-gradient(90deg,#0b2a4a,#06243a); border-radius: 18px; }
.fleet-terms-card { color: #fff; padding: 1.6rem; border-radius: 14px; background: transparent !important; border: none !important; }
.fleet-terms-card h4 { color: #fff; margin-bottom: .25rem; }
.fleet-terms-item { display:flex; gap:1rem; align-items:flex-start; }
.fleet-terms-item .icon { width:44px; height:44px; border-radius:10px; display:inline-flex; align-items:center; justify-content:center; background: rgba(255,255,255,.06); box-shadow: none; }
.fleet-terms-item .icon i { color: #ffd27a; font-size:1.1rem; }
.fleet-terms-item strong { color:#fff; display:block; }
.fleet-terms-note { color: rgba(255,255,255,.85); }
@media(min-width:992px){ .fleet-terms-grid { display:grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap:1.2rem; } }

/* Services cards */
/* Services Carousel Styles */
#servicesCarousel { margin-bottom: 0; position: relative; }
#servicesCarousel .carousel-inner { overflow: hidden; padding: 0.5rem 0; }
#servicesCarousel .carousel-item { display: none; width: 100%; padding: 0; }
#servicesCarousel .carousel-item.active { display: block; animation: fadeIn 0.6s ease-in-out; }
#servicesCarousel .carousel-item { transition: opacity 0.6s ease-in-out; height: auto;}
#servicesCarousel .carousel-control-prev,
#servicesCarousel .carousel-control-next { width: 50px; height: 50px; top: 50%; transform: translateY(-50%); background-color: rgba(255, 193, 7, 0.9); border-radius: 50%; }
#servicesCarousel .carousel-control-prev:hover,
#servicesCarousel .carousel-control-next:hover { background-color: #ffc107; }
#servicesCarousel .carousel-control-prev-icon,
#servicesCarousel .carousel-control-next-icon { filter: invert(1); }


.svc-card { border-radius:18px; overflow:hidden; background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%); border:1px solid rgba(10,10,10,.04); transition: transform .32s ease, box-shadow .32s ease; }
.svc-card:hover { transform: translateY(-10px); box-shadow: 0 20px 45px rgba(13,20,30,.08); }
.svc-media { height:110px; display:flex; align-items:center; justify-content:center; background: linear-gradient(90deg,#fff7ed,#fffdf7); }
.svc-icon { width:72px; height:72px; border-radius:14px; display:inline-flex; align-items:center; justify-content:center; background: radial-gradient(circle at 30% 20%, rgba(255,200,80,.18), rgba(255,200,80,0)); font-size:28px; color:#ffb84d; }
.svc-body { padding:1.25rem; text-align:center; }
.svc-title { font-weight:700; margin-bottom:.45rem; }
.svc-desc { color:#6b6b6b; font-size:.95rem; margin-bottom:1rem; }
.svc-cta { display:inline-flex; gap:.5rem; align-items:center; }
.svc-cta .btn { padding:.48rem .9rem; border-radius:999px; }
@keyframes popIn { from { transform: translateY(8px); opacity:0 } to { transform: translateY(0); opacity:1 } }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
.svc-card { animation: popIn .45s ease both; }

/* End moved styles */
