/* Color Palette */
html {
    scroll-behavior: smooth;

}
/* Prevent scrolling while loading */
    body.loading {
        overflow: hidden;
    }

    /* Animation for the text */
    .tracking-widest {
        letter-spacing: 0.2rem;
        animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
        0% { opacity: 1; }
        50% { opacity: 0.5; }
        100% { opacity: 1; }
    }
:root {
    --primary-yellow: #ffcc00;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}
.whatsapp-btn{
   
    border-radius: 50%;
    background-color: #25D366;
    animation: wapp 2s infinite ease-in-out;
    width:  80px !important;
    height: 80px;
    display: inline-block;
 align-content: center;
}
.whatsapp-btn:hover{
    background-color: var(--dark-bg);
}
@keyframes wapp{
0%{
    opacity: 0.5;
   transform: scale(1.0,1.0);
}
50%{
    opacity: 1;
     box-shadow: 1px 3px 20px  #25D366;
     transform: scale(1.1,1.1);
}
100%{
    opacity: 0.5;
     transform: scale(1.0,1.0);
}
}
.wa-container{
 
    position: fixed;
    bottom: 50px;
    right: 10px;
    z-index: 1000;     
   
}
/* Navbar */
.bg-dark-translucent {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    transition: 0.3s;
}

.navbar-toggler {
    border-color: #e6b800 !important;
}

.nav-link:hover {
    color: var(--primary-yellow) !important;
}

/* Hero Section */
.hero-section {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../images/banner-head.png');
    background-size: cover;
    background-position: center;
}
.hero-section-tourist {
  height: 330px !important;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../images/tourist-header.png');
    background-size: cover;
    background-position: center;
  
}

@media (max-width:400px) {
    .hero-section {
        min-height: 80vh;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
            url('../images/banner-mob.png');
        background-size: cover;
        background-position: center;
    }
}



/* Features Highlight Bar */
.bg-yellow-accent {
    background-color: var(--primary-yellow);
}

/* Fleet Cards */
.fleet-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-width: 2px;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.2);
}

.title-divider {
    opacity: 1;
}

.fleet-card img {
    height: 220px;
    object-fit: cover;
}

/* Buttons */
.btn-warning {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: #000;
}

.btn-warning:hover {
    background-color: #e6b800;
    transform: scale(1.05);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-yellow);
    border-radius: 5px;
}

/* Custom FAQ Styling */
.custom-faq .accordion-button::after {
    filter: invert(1) brightness(100) sepia(100%) saturate(10000%) hue-rotate(10deg);
    /* Makes the arrow yellow-ish */
}

.custom-faq .accordion-button:not(.collapsed) {
    color: #ffc107 !important;
    /* Yellow text when open */
    background-color: transparent !important;
}

.custom-faq .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 193, 7, 0.5);
}

::selection {
    background-color: #ffc107;
    /* Your warning yellow */
    color: #000000;
    /* Black text for high contrast */
}

section , header{
    overflow: hidden;
}

@media(min-width:993px) {}

.ss {
    position: relative;
}

.list-drop {

    position: absolute;
    transform: translateY(-15px);
    transition: 0.5s all ease-in-out;
    opacity: 0;

}

.ss:hover .list-drop {

    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

@media (max-width:991px) {

    .list-drop {
        position: relative;
        opacity: 1;
        transform: translateY(0);
        margin-left: 16px;
        padding: 10px !important;
    }

}

.text-warning {
    color: #ffc107 !important;
}

.bg-dark-custom {
    background-color: #000;
    color: #fff;
}

.self-drive-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.278), rgba(0, 0, 0, 0.8)) ;
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: white;
    text-align: center;
    border-bottom: 5px solid #e6b800;
}

.car-card {
    border: none;
    border-radius: 15px;
    transition: 0.3s;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.car-info-list {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
    color: #666;
}

.car-info-list li {
    display: inline-block;
    margin-right: 10px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #ffc107;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
}

.nav-logo-custom {
    width: 100px;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
}

.btn-whatsapp {
    background-color: #ffc107;
    color: black;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background-color: black;
    color: white;
}

.pic-img {
    height: auto;
    width: 100%;
}

.car-thumb {
    width: 80px;
    height: auto;
    border-radius: 4px;
}

.price-daily {
    font-weight: bold;
}

.price-monthly {
    font-weight: bold;


}



.policy-header {
    background: #000;
  
    padding: 60px 0;
    border-bottom: 5px solid #ffc107;
}

.content-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

h3 {
    color: #000;
    font-weight: 700;
    margin-top: 25px;
    border-left: 4px solid #ffc107;
    padding-left: 15px;
}

.contact-box {
    background: #e6b800a7;
    border: 1px solid #ffeeba;
    border-radius: 8px;
}

    .hero {
      position: relative;
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1408 60%, #0a0a0a 100%);
      border-bottom: 5px solid #ffc107;
      padding: 80px 0 60px;
      overflow: hidden;
      color: white;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(200,169,110,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .section-card {
            background: var(--bg-dark);
            border: 1px solid #ffc107;
            border-radius: 14px;
            padding: 36px 40px;
            margin-bottom: 24px;
            position: relative;
            transition: border-color 0.3s;
        }

        .section-card:hover {
            border-color: rgba(200, 169, 110, 0.45);
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: -60px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(200, 169, 110, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .brand-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(200, 169, 110, 0.1);
            border: 1px solid #ffc107;
            border-radius: 50px;
            padding: 6px 18px;
            font-size: 0.75rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #ffc107;
            margin-bottom: 28px;
        }

        .brand-badge .dot {
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
        }

 

        .hero h1 span {
            color: #ffc107;
        }

        .hero-sub {
            font-size: 0.95rem;
            color: var(--text-muted);
            max-width: 520px;
        }

        .meta-strip {
            display: flex;
            gap: 32px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .meta-label {
            font-size: 0.7rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .meta-value {
            font-size: 0.9rem;
            color: #ffc107;
            font-weight: 500;
        }

        /* ── STICKY NAV ── */
        .sticky-toc {
            position: sticky;
            top: 20px;
        }

        .toc-card {
            background: var(--card);
            border: 1px solid #ffc107;
            border-radius: 12px;
            padding: 28px 24px;
        }

        .toc-title {
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #ffc107;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .toc-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .toc-list li {
            margin-bottom: 4px;
        }

        .toc-list a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #999;
            text-decoration: none;
            font-size: 0.83rem;
            padding: 7px 10px;
            border-radius: 6px;
            transition: all 0.2s;
        }

        .toc-list a:hover {
            color: #ffc107;
            background: rgba(200, 169, 110, 0.07);
        }

        .toc-list a .num {
            font-size: 0.65rem;
            color: #ffc107;
            opacity: 0.6;
            min-width: 20px;
            font-variant-numeric: tabular-nums;
        }

        /* ── CONTENT ── */
        .content-area {
            padding: 60px 0 80px;
        }

        .section-card {
            background: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;;
            border: 1px solid #ffc107;
            border-radius: 14px;
            padding: 36px 40px;
            margin-bottom: 24px;
            position: relative;
            transition: border-color 0.3s;
        }

        .section-card:hover {
            border-color: rgba(200, 169, 110, 0.45);
        }

        .section-num {
            position: absolute;
            top: -14px;
            left: 36px;
            background: #ffc107;
            color: #000;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            padding: 3px 12px;
            border-radius: 50px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 18px;
            margin-top: 8px;
        }

        .section-card p {
            font-size: 0.92rem;
            color: #B0A898;
            margin-bottom: 14px;
        }

        .section-card p:last-child {
            margin-bottom: 0;
        }

        /* lists inside cards */
        .tc-list {
            list-style: none;
            padding: 0;
            margin: 14px 0 0;
        }

        .tc-list li {
            display: flex;
            gap: 12px;
            font-size: 0.88rem;
            color: #B0A898;
            padding: 9px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .tc-list li:last-child {
            border-bottom: none;
        }

        .tc-list li::before {
            content: '›';
            color: #ffc107;
            font-size: 1.1rem;
            flex-shrink: 0;
            line-height: 1.5;
        }

        /* highlight box */
        .highlight-box {
            background: rgba(200, 169, 110, 0.07);
            border-left: 3px solid #ffc107;
            border-radius: 0 8px 8px 0;
            padding: 16px 20px;
            margin: 18px 0;
            font-size: 0.88rem;
            color: #C8C0B0;
        }

        .highlight-box strong {
            color: #ffc107;
        }
 
        /* acceptance strip */
        .acceptance-strip {
            background: linear-gradient(90deg, rgba(200, 169, 110, 0.12), rgba(200, 169, 110, 0.05));
            border: 1px solid #ffc107;
            border-radius: 12px;
            padding: 28px 36px;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .acceptance-strip .icon {
            font-size: 2rem;
            flex-shrink: 0;
        }

        .acceptance-strip p {
            margin: 0;
            font-size: 0.88rem;
            color: #999;
        }

        .acceptance-strip strong {
            color: #E8E2D9;
            display: block;
            margin-bottom: 4px;
            font-size: 0.95rem;
        }

        @media (max-width: 768px) {
            .section-card {
                padding: 28px 22px;
            }

            .hero {
                padding: 60px 0 40px;
            }

            .meta-strip {
                gap: 20px;
            }
        }
        .icon-box{
            min-width: 50px;
        }
              .contact-header {
            background: linear-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0.856));
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
        }

        .info-card {
            background: var(--dark-bg);
            color: white;
            border-radius: 15px;
            height: 100%;
        }

        .icon-box {
            width: 50px;
            height: 50px;
            background: rgba(13, 110, 253, 0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-right: 15px;
        }

        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        @media(max-width:500px){
            .whatsapp-btn{
                font-size: 33px !important;
            }
        }