/* GLOBAL */
body {
    font-family: var(--main-font);
    color: var(--text-color);
}

h1, h2, h3, h4, h5 {
    font-family: var(--heading-font);
}

/* NAVBAR */
.navbar {
    background-color: var(--secondary-color);
}

.navbar-brand {
    color: var(--white-color) !important;
    font-weight: bold;
}

.nav-link {
    color: var(--secondary-color) !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* SLIDER */
.slider-img {
    height: 85vh;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    padding: 25px;
    border-radius: 6px;
}

/* BUTTONS */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: var(--btn-radius);
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background-color: #a80000;
    color: var(--white-color);
}

/* SECTION BACKGROUND */
.bg-light-custom {
    background-color: var(--accent-color);
}

/* FOOTER */
footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

footer a {
    color: var(--primary-color);
}

footer a:hover {
    text-decoration: underline;
}

.cookie-box {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 20px;
    width: 300px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    z-index: 9999;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    z-index: 9999;
}
/*We Specialize Section*/
/* BRAND SECTION BACKGROUND */
.brand-section {
    background: linear-gradient(to right, #f3c2c2, #ebbcbc);
    padding: 80px 0;
}

/* WHITE LUXURY BRAND SECTION */
.brand-section {
    background: #ffffff;
    padding: 90px 0;
}

.section-title {
    font-weight: 600;
    letter-spacing: 1px;
    color: #111;
}

/* CARD STYLE */
.brand-card {
    background: #d4d1f8;
    padding: 40px 20px;
    border-radius: 14px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border: 1px solid #f1f1f1;
}

/* LOGO */
.brand-card img {
    max-width: 110px;
    margin-bottom: 15px;
    filter: grayscale(100%);
    transition: var(--transition);
}

/* BRAND NAME */
.brand-card h6 {
    color: #444;
    font-weight: 500;
    margin-top: 10px;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

/* HOVER EFFECT (Luxury Style) */
.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.brand-card:hover img {
    filter: grayscale(0%);
}

.brand-card:hover h6 {
    color: var(--primary-color);
}
/* VAG SUMMARY SECTION (vag.html)*/
.vag-summary {
    padding: 80px 0;
}

.lead-text {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #555;
}
.vag-hero {
    height: 550px;   /* force height */
    display: flex;
    align-items: center;   /* vertically center text */
    justify-content: center;

    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('../images/car6.jpg');
    background-size: cover;
    background-position: center;
}


.cta-section {
    background: #f9f9f9;
}

/* HERO IMAGE */
.about-hero img {
    max-height: 420px;
    object-fit: cover;
}

/* PAGE TITLE */
.page-title {
    font-family: var(--heading-font);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* BODY TEXT */
.about-wrapper p {
    font-family: var(--main-font);
    color: #555;
    line-height: 1.8;
}

/* SIDEBAR BOOKING BOX */
.booking-box {
    background: #474444;
    color: white;
    padding: 25px;
    margin-bottom: 20px;
    min-height: 180px;
    position: relative;
}

.booking-box h5 {
    font-family: var(--heading-font);
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 2.0rem;
}
.booking-box a {
    margin-top: 30px;
}
.btn-sidebar {
    background: linear-gradient(to right, #111 80%, var(--primary-color) 20%);
    color: white;
    padding: 10px 15px;
    border: none;
    width: 100%;
    text-align: left;
}

.btn-sidebar:hover {
    background: var(--primary-color);
}

/* PAGE HEADER SECTION */
.page-header {
    background: #f2f2f2;
    padding: 50px 0 40px 0;  /* Top & bottom spacing */
}

/* BREADCRUMB */
.breadcrumb-links {
    font-size: 14px;
    margin-bottom: 15px;  /* Gap between breadcrumb and title */
    color: #666;
}

.breadcrumb-links a {
    text-decoration: none;
    color: #333;
}

.breadcrumb-links a:hover {
    color: var(--primary-color);
}

.separator {
    margin: 0 8px;
}

.active-page {
    color: var(--primary-color);
}

/* MAIN TITLE */
.page-title-main {
    font-family: var(--heading-font);
    font-size: 2.4rem;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0;
}
.custom-wide {
    max-width: 1400px;   /* increase width */
}
.about-wrapper p {
    font-size: 1.3 rem;      /* smaller text */
    line-height: 1.3;       /* tighter spacing */
    margin-bottom: 3px;    /* less gap */
    color: #555;
    padding-top: 7px;
}
.about-hero img {
    margin-bottom: 15px;
}




