* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.noto {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

body {
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
    background-color: #f8f9fa;
}

.keywords {
    color: #ecb537;
}

.breadcrumb {
    --bs-breadcrumb-divider-color: #fff;
    /* This will set divider color */
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff !important;
    /* Force white divider */
}


/* Navbar */
.mauli-nav-navbar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 12px 2%;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.mauli-nav-logo img {
    width: 115px;
}

/* Nav Links */
.mauli-nav-links ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.mauli-nav-links a {
    text-decoration: none;
    color: #3c4b5e;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.mauli-nav-links a.mauli-nav-active {
    color: #ecb537;
}

.mauli-nav-links a.mauli-nav-active::after {
    width: 100%;
}

.mauli-nav-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #b70885;
    transition: width 0.3s ease;
}

.mauli-nav-item:hover::after,
.mauli-nav-item.mauli-nav-active::after {
    width: 100%;
}

.mauli-nav-item:hover {
    color: #ecb537;
}

/* Dropdown */
.mauli-nav-dropdown {
    position: relative;
}

.mauli-nav-dropdown-menu {
    position: absolute;
    top: 40px;
    left: 0;
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px) scaleY(0.95);
    transform-origin: top;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    border-radius: 10px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mauli-nav-dropdown.hovered .mauli-nav-dropdown-menu {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    pointer-events: all;
}

.mauli-nav-dropdown-menu li {
    opacity: 0;
    transform: translateX(-10px);
    width: 100%;
    transition: all 0.25s ease;
}

.mauli-nav-dropdown.hovered .mauli-nav-dropdown-menu li {
    opacity: 1;
    transform: translateX(0);
}

.mauli-nav-dropdown-menu li a {
    display: block;
    width: 250px;
    padding: 5px 20px;
    text-align: left;
    color: #3c4b5e;
    transition: background 0.2s ease, color 0.2s ease;
    border-radius: 0;
}

.mauli-nav-dropdown-menu li a:hover {
    color: #ecb537;
}

/* Right Side */
.mauli-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mauli-nav-phone {
    text-decoration: none;
    color: #3c4b5e;
    font-weight: 500;
}

.mauli-nav-book-now {
    background: linear-gradient(45deg, #ecb537, #b70885);
    border: none;
    padding: 10px 20px;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.mauli-nav-book-now:hover {
    transform: scale(1.05);
}

.mauli-nav-hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* Mobile Sidebar */
.mauli-nav-mobile-sidebar,
.mauli-nav-vehicle-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.mauli-nav-close-btn,
.mauli-nav-back-btn {
    font-size: 20px;
    color: #b70885;
    cursor: pointer;
    margin-bottom: 24px;
    font-weight: bold;
}

.mauli-nav-mobile-menu,
.mauli-nav-vehicle-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mauli-nav-mobile-menu li,
.mauli-nav-vehicle-menu li {
    margin-bottom: 18px;
}

.mauli-nav-mobile-menu a,
.mauli-nav-vehicle-menu a {
    text-decoration: none;
    color: #3c4b5e;
    font-size: 16px;
    padding: 10px 12px;
    display: block;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

.mauli-nav-mobile-menu a:hover,
.mauli-nav-vehicle-menu a:hover {
    background: #f4f4f4;
    color: #b70885;
}

/* Bottom contact */
.mauli-nav-mobile-contact {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: auto;
}

.mauli-num:hover {
    color: #ecb537;
}

.mauli-nav-mobile-contact .mauli-nav-phone {
    display: block;
    margin-bottom: 15px;
    color: #3c4b5e;
    font-weight: 500;
    text-decoration: none;
}

.mauli-nav-mobile-contact .mauli-nav-book-now {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-radius: 6px;
    background: linear-gradient(45deg, #ecb537, #b70885);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 960px) {
    .mauli-nav-links {
        display: none;
    }

    .mauli-nav-hamburger {
        display: block;
    }

    .mauli-nav-right .mauli-nav-phone,
    .mauli-nav-right .mauli-nav-book-now {
        display: none;
    }
}

/* ====================contact us start =================== */
/* Unique class names, no CSS variables used */
.page-wrap-contact {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-card-shell {
    border: transparent;
    background: #f8f9fa;
}

.info-pane-zone {
    height: 100%;
}

.info-pane-zone h2 {
    font-weight: 700;
    letter-spacing: 0.3px;
}

.info-item-line {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.info-item-line:last-child {
    border-bottom: 0;
}

.info-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #ecb537, #b70885);
    color: #fff;
    flex: 0 0 44px;
    font-size: 18px;
}

.info-text-area .label-lite {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 2px;
    letter-spacing: 0.2px;
}

.info-text-area .value-strong {
    font-size: 15px;
    font-weight: 600;
    color: #212529;
}

.form-pane-zone h2 {
    font-weight: 700;
    letter-spacing: 0.3px;
}

.form-label {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.input-polish {
    border-radius: 12px !important;
    padding: 10px 14px !important;
}

/* Gradient button (your colors) */
.btn-royal-gradient {
    background: linear-gradient(45deg, #ecb537, #b70885);
    border: none;
    color: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: transform 0.08s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-royal-gradient:hover {
    opacity: 0.95;
    box-shadow: 0 8px 18px rgba(183, 8, 133, 0.25);
    transform: translateY(-1px);
    color: #fff;
}

.btn-royal-gradient:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(183, 8, 133, 0.25);
}

/* Extra small tweaks */
@media (max-width: 576px) {

    .info-pane-zone,
    .form-pane-zone {
        padding: 18px !important;
    }

    .info-item-line {
        gap: 10px;
        padding: 12px 0;
    }
    .value-strong{
        font-size: 12px !important;
    }
}

.qrcode{
    width: 100%;
    height: 650px;
}

.maps{
    width: 100%;
    height: 450px;
}
/* ====================contact us end =================== */


/*===================== footer start ====================== */


.fleetflow-footer {
    background: #f8f9fa;
}

.fleetflow-footer a {
    color: #212529;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fleetflow-footer a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -3px;
    background: #b70885;
    transition: width 0.3s ease;
}

.fleetflow-footer a:hover {
    color: #ecb537;
}

.fleetflow-footer a:hover::after {
    width: 100%;
}

.ft {
    color: #b70885;
}

.social-links a {
    display: inline-block;
    font-size: 18px;
    margin-right: 10px;
    margin-bottom: 10px;
    color: #212529;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ecb537;
}

.call-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ecb537, #b70885);
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.call-btn:hover {
    opacity: 0.85;
    text-decoration: none;
}

/*===================== footer end ====================== */