/* --- GLOBAL STYLES --- */
    body { font-family: 'Roboto', sans-serif; }
    
    :root {
        --theme-blue: #29a7de;
        --theme-orange: #f37021;
        --text-dark: #333;
        --border-color: #ddd;
    }

    .bg-theme { background-color: var(--theme-blue) !important; }
    .text-theme { color: var(--theme-blue) !important; }

    /* --- 1. HEADER SECTION --- */
    .navbar { padding: 12px 0; background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
    
    .brand-logo {
        font-style: italic;
        font-weight: 800;
        letter-spacing: 1px;
        font-size: 1.5rem;
        background: var(--theme-blue);
        color: white;
        padding: 2px 15px;
        border-radius: 4px;
        text-decoration: none;
    }
.n-nave{
    font-weight:500;
    font-size:19px;
    margin:0px 11px;
}
    .contact-box {
        display: flex;
        border: 1px solid var(--theme-blue);
        border-radius: 4px;
        overflow: hidden;
        font-size: 14px;
        font-weight: 600;
    }
    .contact-label { background: white; padding: 6px 12px; color: #000; }
    .contact-number { background: var(--theme-blue); padding: 6px 12px; color: white; }

    .nav-buttons .btn { font-size: 14px; font-weight: 600; }

    /* --- 2. HERO BACKGROUND --- */
    .hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=1920&auto=format&fit=crop');
        background-size: cover;
        background-position: center;
        padding: 80px 0 80px 0; /* Bottom padding increased for overlapping content */
        min-height: 600px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        color: white;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        margin-bottom: 40px;
    }

    /* --- 3. BOOKING CARD --- */
    .booking-card {
        background: white;
        border-radius: 10px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        position: relative; /* For absolute positioning of the button */
    }

    /* TABS (Rectangular Design) */
    .tabs-header {
        display: flex;
        justify-content: center;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .tab-btn {
        background: white;
        border: 1px solid #ccc;
        padding: 10px 30px;
        font-weight: 700;
        font-size: 13px;
        cursor: pointer;
        text-transform: uppercase;
        color: #555;
        transition: 0.2s;
        margin-left: -1px; /* Borders merge */
    }
    
    .tab-btn:first-child { border-top-left-radius: 4px; border-bottom-left-radius: 4px; margin-left: 0; }
    .tab-btn:last-child { border-top-right-radius: 4px; border-bottom-right-radius: 4px; }

    .tab-btn.active {
        background-color: var(--theme-blue);
        color: white;
        border-color: var(--theme-blue);
        z-index: 1;
    }

    /* FORM INPUTS */
    .booking-form-content {
        padding: 10px 40px 50px 40px;
        min-height: 150px;
    }

    .form-label-custom {
        font-size: 12px;
        font-weight: 700;
        color: #222;
        text-transform: uppercase;
        margin-bottom: 2px;
        letter-spacing: 0.5px;
    }

    .input-group-custom {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #ccc;
        padding-bottom: 5px;
    }

    .input-group-custom i { color: #888; font-size: 14px; margin-right: 10px; }

    .form-control-custom {
        border: none;
        padding: 5px 0;
        font-size: 14px;
        font-weight: 500;
        width: 100%;
        outline: none;
        color: #444;
    }
    .form-control-custom::placeholder { color: #999; font-weight: 400; }
    
    .input-group-custom:focus-within { border-bottom: 2px solid var(--theme-blue); }

    .error-msg {
        font-size: 11px;
        color: #dc3545;
        margin-top: 4px;
        display: none; 
    }

    /* Exchange Icon */
    .exchange-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        color: var(--theme-blue);
        font-size: 18px;
        cursor: pointer;
    }

    /* Explore Button */
    .btn-explore {
        background-color: var(--theme-orange);
        color: white;
        font-weight: 800;
        padding: 15px 50px;
        font-size: 18px;
        border: none;
        border-radius: 4px;
        text-transform: uppercase;
        box-shadow: 0 4px 10px rgba(243, 112, 33, 0.4);
        position: absolute;
        bottom: -28px;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        transition: 0.3s;
    }
    .btn-explore:hover { background-color: #d65d13; transform: translateX(-50%) scale(1.05); }

    /* Dropdown Style */
    .dropdown-list {
        position: absolute;
        background: white;
        width: 100%;
        border: 1px solid #ddd;
        border-radius: 0 0 4px 4px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 100;
        display: none;
        top: 100%;
    }
    .dropdown-header { font-size: 11px; color: #888; padding: 8px 12px; border-bottom: 1px solid #eee; }
    .dropdown-item-c { padding: 10px 12px; font-size: 13px; color: var(--theme-blue); cursor: pointer; font-weight: 500; }
    .dropdown-item-c:hover { background: #f9f9f9; }

    /* Trust Badge & Ratings */
    .trust-badge { color: white; margin-top: 50px; font-size: 16px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
    
    .app-ratings-container {
        margin-top: 30px;
        background: white;
        padding: 10px 30px;
        border-radius: 50px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        display: inline-flex;
        gap: 30px;
    }
    .rating-item { display: flex; align-items: center; gap: 10px; }
    .rating-text h6 { margin: 0; font-size: 13px; font-weight: 700; }
    .stars { color: var(--theme-orange); font-size: 11px; }
    .reviews { font-size: 10px; color: #777; }

    /* Animation for Tabs */
    .tab-section { display: none; animation: fadeIn 0.4s; }
    .tab-section.active { display: block; }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

       /* --- PROMO CARDS SECTION --- */
    .promo-section {
        padding: 60px 0;
        background-color: #f8f9fa; /* லேசான சாம்பல் நிற பின்னணி */
    }

    .promo-card {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        height: 180px;
        color: white;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: all 0.4s ease;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: flex-end; /* Text Right Side */
        padding-right: 20px;
    }

    /* Hover Animation: Card மேலே எழும் */
    .promo-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }

    /* Background Images with Overlay */
    .card-bg-1 {
        background: linear-gradient(to right, rgba(0,0,0,0.1), rgba(0,0,0,0.7)), 
                    url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?auto=format&fit=crop&w=600&q=80');
        background-size: cover;
        background-position: center;
    }
    .card-bg-2 {
        background: linear-gradient(to right, rgba(0,0,0,0.1), rgba(0,0,0,0.8)), 
                    url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=600&q=80');
        background-size: cover;
        background-position: center;
    }
    .card-bg-3 {
        background: linear-gradient(to right, rgba(0,0,0,0.1), rgba(0,0,0,0.7)), 
                    url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=600&q=80');
        background-size: cover;
        background-position: center;
    }

    /* Text Styling inside Cards */
    .promo-text {
        text-align: right;
        z-index: 2;
        width: 70%;
    }
    .promo-title {
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 5px;
        color: #29a7de; /* Savaari Blue */
        text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    }
    .promo-subtitle {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.3;
    }

    /* Floating Icon Badge (Left Side) */
    .icon-badge {
        position: absolute;
        left: 20px;
        bottom: 20px;
        width: 60px;
        height: 60px;
        background-color: rgba(41, 167, 222, 0.9); /* Blue transparent */
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 3px solid rgba(255,255,255,0.3);
        font-size: 24px;
        color: white;
        box-shadow: 0 0 15px rgba(41, 167, 222, 0.6);
    }

    /* --- FEATURES BANNER SECTION (Blue Bar) --- */
    .features-wrapper {
        margin-top: 50px;
    }
    .features-header {
        text-align: center;
        color: #29a7de;
        font-weight: 800;
        font-size: 24px;
        margin-bottom: 25px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .features-banner {
        background: linear-gradient(135deg, #29a7de, #1c8bbd); /* Gradient Blue */
        border-radius: 15px;
        padding: 30px 10px;
        box-shadow: 0 10px 25px rgba(41, 167, 222, 0.3);
        color: white;
    }

    .feature-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        padding: 10px;
        transition: 0.3s;
    }
    
    .feature-item:hover {
        transform: scale(1.05); /* Slight Zoom on Hover */
    }

    /* Circular Icon Container */
    .feature-icon-circle {
        width: 65px;
        height: 65px;
        background-color: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 28px;
        color: #29a7de;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        flex-shrink: 0;
    }

    .feature-text {
        font-weight: 700;
        font-size: 15px;
        line-height: 1.2;
    }
    
    /* Mobile Responsive Adjustments */
    @media (max-width: 768px) {
        .feature-item {
            justify-content: flex-start; /* Align left on mobile */
            margin-bottom: 15px;
            padding-left: 20px;
        }
        .promo-card {
            margin-bottom: 20px;
        }
    }


    .services-section {
        padding: 80px 0;
        background-color: #ffffff;
        position: relative;
    }

    /* Section Title Styling */
    .section-title {
        text-align: center;
        color: #29a7de;
        font-weight: 800;
        font-size: 32px;
        margin-bottom: 50px;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        display: inline-block;
    }
    
    /* Decorative line below title */
    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: #29a7de;
        margin: 10px auto 0;
        border-radius: 2px;
    }

    /* --- SERVICE CARD STYLING --- */
    .service-card {
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Soft Shadow */
        overflow: hidden;
        transition: all 0.4s ease;
        height: 100%;
        border: 1px solid #eee;
        position: relative;
    }

    /* Hover Effect: Card Lifts Up */
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    /* Image Wrapper for Zoom Effect */
    .card-img-wrapper {
        position: relative;
        overflow: hidden;
        height: 200px;
    }

    .card-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    /* Zoom Image on Hover */
    .service-card:hover .card-img-wrapper img {
        transform: scale(1.1);
    }

    /* FLOATING ICON BADGE */
    .floating-icon {
        position: absolute;
        bottom: -25px; /* Half inside, half outside */
        right: 20px;
        width: 50px;
        height: 50px;
        background-color: #29a7de;
        color: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        border: 4px solid white; /* Thick white border */
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        z-index: 2;
    }

    /* Card Content */
    .card-body-custom {
        padding: 35px 20px 20px 20px; /* Top padding extra for floating icon */
        text-align: center;
    }

    .service-name {
        font-size: 18px;
        font-weight: 700;
        color: #29a7de;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .service-desc {
        font-size: 13px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    /* Bottom Feature Icons */
    .features-grid {
        display: flex;
        justify-content: space-around;
        border-top: 1px solid #f1f1f1;
        padding-top: 20px;
    }

    .f-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .f-icon {
        font-size: 18px;
        color: #555;
        background: #f8f9fa;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.3s;
    }

    .service-card:hover .f-icon {
        background: #e0f3fc;
        color: #29a7de;
    }

    .f-text {
        font-size: 10px;
        font-weight: 600;
        color: #333;
        text-align: center;
    }



     .about-section {
        padding: 80px 0;
        background-color: #ffffff;
        font-family: 'Roboto', sans-serif;
    }

    /* Highlighted Text Styles */
    .highlight-text {
        color: #29a7de;
        font-weight: 700;
    }

    /* --- PART 1: INTRO SPLIT --- */
    .about-heading {
        font-size: 32px;
        font-weight: 800;
        color: #333;
        line-height: 1.3;
        margin-bottom: 20px;
        position: relative;
    }
    
    /* Stylized Image Border */
    .about-img-container {
        position: relative;
        padding: 10px;
    }
    .about-img {
        width: 100%;
        border-radius: 50px 0 50px 0; /* Leaf Shape */
        box-shadow: 10px 10px 0px rgba(41, 167, 222, 0.2); /* Offset Blue Shadow */
        transition: 0.3s;
    }
    .about-img:hover {
        transform: scale(1.02);
        box-shadow: 15px 15px 0px rgba(41, 167, 222, 0.4);
    }

    /* --- PART 2: BLUE QUOTE BOX --- */
    .philosophy-box {
        background-color: #f0f9fd; /* Very Light Blue */
        border-left: 5px solid #29a7de;
        padding: 30px;
        margin: 40px 0;
        border-radius: 0 10px 10px 0;
    }
    .philosophy-title {
        font-size: 22px;
        font-weight: 700;
        color: #29a7de;
        margin-bottom: 15px;
    }
    .philosophy-text {
        font-size: 15px;
        color: #555;
        line-height: 1.8;
        font-style: italic;
    }

    /* --- PART 3: SERVICE GRID (Bottom) --- */
    .info-card {
        background: white;
        padding: 25px;
        border: 1px solid #eee;
        border-radius: 10px;
        transition: 0.3s;
        height: 100%;
    }
    .info-card:hover {
        background: #fff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        border-color: #29a7de;
    }
    
    .info-icon {
        font-size: 24px;
        color: #29a7de;
        margin-bottom: 15px;
        background: #eaf6fb;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    
    .info-title {
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .info-desc {
        font-size: 13px;
        color: #666;
        line-height: 1.6;
    }










    /* Tagline Style */
    .seo-tagline {
        text-align: center;
        font-size: 18px;
        color: #555;
        margin-bottom: 40px;
        font-weight: 500;
    }
    .seo-tagline strong {
        color: #29a7de; /* Savaari Blue */
        font-weight: 800;
    }

    /* Category Headings */
    .link-category-title {
        font-size: 16px;
        font-weight: 700;
        color: #333;
        margin-bottom: 20px;
        text-transform: uppercase;
        position: relative;
        padding-bottom: 10px;
    }
    
    /* Small underline for headings */
    .link-category-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background-color: #29a7de;
    }

    /* Link List Styles */
    .footer-links-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links-list li {
        margin-bottom: 10px;
    }

    .footer-link {
        text-decoration: none;
        color: #666;
        font-size: 14px;
        transition: all 0.3s ease;
        display: inline-block;
    }

    /* Hover Effect: Color change & Slide Right */
    .footer-link:hover {
        color: #29a7de;
        transform: translateX(5px); /* Slide effect */
    }
    
    /* Mobile Responsive: 2 columns on mobile */
    @media (max-width: 768px) {
        .seo-links-section {
            padding: 40px 0;
        }
    }


      /* 1. FOOTER BACKGROUND & LAYOUT */
    .footer-modern {
        background-color: #0b1e33; /* Dark Navy Blue (Premium Look) */
        color: #b0b9c6; /* Soft Gray Text */
        padding-top: 70px;
        font-family: 'Roboto', sans-serif;
        position: relative;
        overflow: hidden;
    }

    /* 2. LOGO & ABOUT TEXT */
    .footer-logo {
        font-size: 28px;
        font-weight: 900;
        color: white;
        font-style: italic;
        margin-bottom: 20px;
        display: inline-block;
        letter-spacing: 1px;
    }
    .footer-desc {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
        color: #dbe4ef;
    }

    /* 3. HEADINGS WITH ORANGE LINE */
    .footer-widget-title {
        color: white;
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
    }
    .footer-widget-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 3px;
        background-color: #f37021; /* Savaari Orange */
        border-radius: 2px;
    }

    /* 4. LINKS STYLING & HOVER ANIMATION */
    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-links li {
        margin-bottom: 12px;
    }
    .footer-links a {
        color: #b0b9c6;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
        display: inline-block;
    }
    
    /* Magic Hover Effect: Color Change + Move Right */
    .footer-links a:hover {
        color: #29a7de; /* Bright Blue */
        transform: translateX(8px);
    }

    /* 5. NEWSLETTER INPUT */
    .subscribe-form {
        position: relative;
        margin-bottom: 20px;
    }
    .subscribe-input {
        width: 100%;
        padding: 12px 15px;
        border-radius: 4px;
        border: none;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        outline: none;
    }
    .subscribe-btn {
        position: absolute;
        right: 5px;
        top: 5px;
        background: #f37021;
        border: none;
        color: white;
        padding: 7px 15px;
        border-radius: 3px;
        cursor: pointer;
        font-weight: bold;
    }

    /* 6. SOCIAL ICONS (ROUNDED) */
    .social-area {
        display: flex;
        gap: 10px;
        margin-top: 10px;
    }
    .social-btn {
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.1);
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        color: white;
        text-decoration: none;
        transition: 0.3s;
    }
    .social-btn:hover {
        background: #29a7de;
        transform: translateY(-3px);
        color: white;
    }

    /* 7. COPYRIGHT BAR */
    .copyright-area {
        background-color: #071524; /* Even Darker Blue */
        padding: 20px 0;
        margin-top: 50px;
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    .copy-text {
        font-size: 13px;
        margin: 0;
    }











    /* --- INNER PAGE HERO SECTIONS --- */
.page-hero {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    margin-bottom: 50px;
}
.page-hero::before {
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.6); /* Dark Overlay */
}
.page-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}
.breadcrumb-custom {
    background: transparent;
    justify-content: center;
    padding: 0;
}
.breadcrumb-item a { color: var(--theme-orange); text-decoration: none; font-weight: 600; }
.breadcrumb-item.active { color: #ddd; }

/* --- ABOUT PAGE SPECIFICS --- */
.stat-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-bottom: 4px solid var(--theme-blue);
    transition: 0.3s;
}
.stat-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.stat-number { font-size: 3rem; font-weight: 900; color: var(--theme-blue); }
.stat-label { font-size: 1rem; font-weight: 600; color: #555; text-transform: uppercase; }

.team-img {
    width: 150px; height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

/* --- CONTACT PAGE SPECIFICS --- */
.contact-info-box {
    background: #0b1e33;
    color: white;
    padding: 40px;
    border-radius: 10px;
    height: 100%;
}
.contact-icon-circle {
    width: 50px; height: 50px;
    background: var(--theme-orange);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-right: 15px;
    color: white; font-size: 20px;
}
.form-control-lg-custom {
    border: 1px solid #ddd;
    padding: 15px;
    font-size: 14px;
    border-radius: 5px;
    background: #f8f9fa;
}
.form-control-lg-custom:focus {
    border-color: var(--theme-blue);
    box-shadow: none;
    background: white;
}

/* --- FLEET SECTION (Services) --- */
.fleet-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}
.fleet-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-color: var(--theme-blue); }
.fleet-img { width: 100%; height: 200px; object-fit: contain; background: #fdfdfd; padding: 20px; }
.fleet-details { padding: 20px; text-align: center; }
.price-tag { color: var(--theme-orange); font-size: 1.2rem; font-weight: 800; }



/* --- CAR RESULT CARD DESIGN (Themed) --- */

.car-result-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.car-result-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: var(--theme-blue); /* Hover பண்ணும்போது Blue Border வரும் */
}

.img-area {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.img-area img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* The Line and Price Box */
.price-line-container {
    position: relative;
    border-top: 1px solid #ddd;
    margin: 20px 0;
    width: 100%;
}

.price-pill {
    position: absolute;
    top: -16px; 
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 3px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    
    /* CHANGE: Green -> Theme Blue */
    color: var(--theme-blue); 
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Texts */
.car-name {
    font-weight: 800;
    color: #333;
    margin-bottom: 5px;
    font-size: 18px;
}

.km-info {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.car-spec {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}

/* Button Styling (Renamed logically, but keeps compatibility) */
.btn-book-green {
    width: 100%;
    
    /* CHANGE: Green -> Theme Orange (Matches Explore Button) */
    background-color: var(--theme-orange); 
    
    color: #fff;
    font-weight: 700;
    border: none;
    padding: 12px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.btn-book-green:hover {
    /* CHANGE: Darker Orange on Hover */
    background-color: #d65d13; 
    color: #fff;
    box-shadow: 0 5px 15px rgba(243, 112, 33, 0.3);
}



/* --- BOOKING PAGE STYLES --- */

.booking-card-custom {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.booking-header {
    color: #0b1e33; /* Navy Blue */
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    border-left: 4px solid var(--theme-blue);
    padding-left: 10px;
}

/* Summary Rows */
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
    font-size: 14px;
    color: #333;
}

.small-text {
    font-size: 11px;
    line-height: 1.2;
}

/* Total Amount Box (Themed Blue instead of Green) */
.total-amount-box {
    background-color: #eaf6fb; /* Light Blue BG */
    color: var(--theme-blue);
    padding: 15px;
    border-radius: 4px;
    border: 1px dashed var(--theme-blue);
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 18px;
}

/* Note Box (Pink/Red as in screenshot) */
.note-box {
    background-color: #fadbd8;
    border: 1px solid #f5b7b1;
    color: #a93226;
    padding: 15px;
    font-size: 12px;
    border-radius: 4px;
    line-height: 1.5;
}

/* Form Inputs */
.booking-card-custom .form-control {
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 14px;
}
.booking-card-custom .form-control:focus {
    border-color: var(--theme-blue);
    box-shadow: none;
}

/* Final Book Button (Theme Orange) */
.btn-book-final {
    background-color: var(--theme-orange);
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
}

.btn-book-final:hover {
    background-color: #d65d13;
    color: white;
    box-shadow: 0 5px 15px rgba(243, 112, 33, 0.3);
}





/* --- PRIVACY POLICY PAGE STYLES --- */

.privacy-content-box {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
}

.privacy-title {
    color: var(--theme-blue); /* Uses your site's Blue color */
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 15px;
}

.privacy-heading {
    color: #333;
    font-weight: 700;
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-text {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify; /* Makes text look neat blocks */
}

.highlight-link {
    color: var(--theme-blue);
    text-decoration: none;
    font-weight: 500;
}

.highlight-link:hover {
    color: var(--theme-orange);
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .privacy-content-box {
        padding: 25px;
    }
    .privacy-title {
        font-size: 24px;
    }
}


/* --- TERMS OF USE PAGE STYLES --- */



.terms-title {
    color: var(--theme-blue); /* Theme Blue Color */
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 15px;
}

.terms-heading {
    color: #0b1e33; /* Dark Navy Color */
    font-weight: 700;
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid var(--theme-orange); 
    padding-left: 10px;
}

.terms-text {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

/* Links inside the text */
.highlight-link {
    color: var(--theme-blue);
    text-decoration: none;
    font-weight: 600;
}

.highlight-link:hover {
    color: var(--theme-orange);
    text-decoration: underline;
}

/* Bold text inside paragraphs */
.terms-text b, .terms-text strong {
    color: #333;
    font-weight: 700;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .terms-content-box {
        padding: 25px;
    }
    .terms-title {
        font-size: 24px;
    }
}



/* --- MODERN TARIFF PAGE STYLES --- */

/* Title Section */
.ls-2 { letter-spacing: 2px; font-size: 14px; }
.tariff-main-title {
    color: #333;
    font-weight: 800;
    font-size: 32px;
    margin-top: 5px;
}
.title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--theme-blue), var(--theme-orange));
    margin: 15px auto;
    border-radius: 2px;
}

/* Card Container */
.tariff-card-modern {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 0 0 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

/* Top Color Bar */
.card-top-accent {
    height: 6px;
    background: var(--theme-blue);
    width: 100%;
}

/* Hover Effect: Lift Up & Shadow */
.tariff-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(41, 167, 222, 0.15);
}

/* Image Styling */
.car-img-box {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.car-img-box img {
    max-width: 90%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s;
}
.tariff-card-modern:hover .car-img-box img {
    transform: scale(1.1); /* Zoom effect on hover */
}

/* Typography */
.modern-car-name {
    font-weight: 800;
    color: #333;
    font-size: 24px;
    margin-bottom: 2px;
}

/* Icons Row */
.features-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
    color: #777;
    font-size: 13px;
    font-weight: 500;
}
.features-row i { color: var(--theme-blue); margin-right: 4px; }

/* Pricing Box */
.pricing-box {
    background: #f8fbff;
    margin: 15px 20px;
    padding: 15px;
    border-radius: 10px;
    border: 1px dashed #dbe4ef;
}

.p-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.p-row:last-child { margin-bottom: 0; }

.p-label { font-size: 14px; font-weight: 600; color: #555; }
.p-amount { font-size: 18px; font-weight: 800; color: var(--theme-blue); }
.p-amount small { font-size: 12px; font-weight: 500; color: #888; }

/* Details & Batta */
.tariff-details {
    margin-bottom: 25px;
    font-size: 14px;
    color: #555;
}
.tiny-text { font-size: 11px; margin-top: 5px; }

/* Action Button */
.btn-tariff-action {
    background: white;
    color: var(--theme-orange);
    border: 2px solid var(--theme-orange);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
}

.btn-tariff-action:hover {
    background: var(--theme-orange);
    color: white;
    box-shadow: 0 5px 15px rgba(243, 112, 33, 0.3);
}

/* --- POPULAR CARD HIGHLIGHTS --- */
.popular-card {
    border: 2px solid var(--theme-blue);
    transform: scale(1.03); /* Slightly bigger */
}
.popular-card .card-top-accent { background: var(--theme-orange); }

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--theme-orange);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Mobile Fix */
@media (max-width: 768px) {
    .popular-card { transform: none; margin-top: 10px; }
}