/* ============================================================
   BP DRIVING SCHOOL — style.css
   Single external stylesheet for all 35 pages
   Replaces all inline <style> blocks site-wide
   ============================================================ */


/* ============================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */

:root {
    --bp-blue: #1F4E8C;
    --bp-blue-05: rgba(31, 78, 140, 0.05);
    --bp-blue-10: rgba(31, 78, 140, 0.10);
    --bp-blue-15: rgba(31, 78, 140, 0.15);
    --bp-silver: #BFC0C0;
    --bp-footer-link-hover: #7ec8ff;
    --google-blue: #4285F4;
    --google-red: #EA4335;
    --star: #F9AB00;
}


/* ============================================================
   2. GLOBAL BASE
   ============================================================ */

body {
    padding-top: 72px;
    background-color: #fff;
}

.text-primary  { color: #1F4E8C !important; }

.btn-primary            { background-color: #1F4E8C; border-color: #1F4E8C; }
.btn-primary:hover      { background-color: #173a68; border-color: #173a68; }

.btn-success            { background-color: #25D366; border-color: #25D366; }
.btn-success:hover      { background-color: #1ea955; border-color: #1ea955; }


/* ============================================================
   3. BRAND UTILITIES
   ============================================================ */

.brand-tint { background: linear-gradient(180deg, var(--bp-blue-05), transparent); }

.section-title { position: relative; }
.section-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 4px;
    margin: 12px auto 0;
    background: var(--bp-blue);
    border-radius: 2px;
}

.card.brand-edge { border: 1px solid var(--bp-blue-10); }

.brand-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--bp-blue), transparent);
    opacity: 0.2;
}

.price-badge {
    background: var(--bp-blue);
    color: #fff;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    font-size: 1.3rem;
    font-weight: 700;
    display: inline-block;
}

.pill {
    display: inline-block;
    background: var(--bp-blue-05);
    border: 1px solid var(--bp-blue-10);
    color: #1F4E8C;
    padding: 3px 11px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 600;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(31, 78, 140, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.card:hover .icon-circle { background: rgba(31, 78, 140, 0.2); }


/* ============================================================
   4. NAVIGATION
   ============================================================ */

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: #1F4E8C !important;
    text-shadow: 0 0 5px rgba(31, 78, 140, 0.5);
}
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--bp-silver) !important;
    font-weight: 600;
}

.offcanvas-collapse .navbar-nav {
    text-align: center;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991.98px) {
    .offcanvas-collapse .navbar-nav .nav-link {
        font-size: 1.05rem;
        padding: 0.5rem 0;
    }
    .offcanvas-collapse .btn-close {
        z-index: 1070;
        opacity: 0.85;
        transition: opacity 0.3s ease;
    }
    .offcanvas-collapse .btn-close:hover { opacity: 1; }
}


/* ============================================================
   5. HERO / COVER SECTION
   ============================================================ */

.cover-section {
    position: relative;
    background: linear-gradient(180deg, rgba(31, 78, 140, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cover-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
    pointer-events: none;
}
.cover-section .col-md-8 { position: relative; z-index: 1; }


/* ============================================================
   6. CARDS — Services, Locations, Features
   ============================================================ */

#services .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#services .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.location-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

#why-us .feature-card,
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#why-us .feature-card:hover,
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

#services .card,
#locations .location-card,
#why-us .feature-card { background-color: #fff; }

#locations .location-card { border: 1px solid var(--bp-blue-10); }
#why-us .feature-card     { border: 1px solid var(--bp-blue-10); }

/* Testimonial cards */
#testimonials .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#testimonials .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}
#testimonials i.bi-quote {
    opacity: 0.3;
    position: absolute;
    top: 10px;
    right: 20px;
}


/* ============================================================
   7. SOCIAL ICONS
   ============================================================ */

.social-icon {
    color: #ffffff;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}
.social-icon:hover         { text-decoration: none; transform: translateY(-3px); }
.social-icon.facebook:hover  { color: #1877F2; }
.social-icon.instagram:hover { color: #E1306C; }
.social-icon.whatsapp:hover  { color: #25D366; }
.social-icon.tiktok:hover    { color: #010101; }
.social-icon.youtube:hover   { color: #FF0000; }


/* ============================================================
   8. WHATSAPP FLOATING BUTTON
   ============================================================ */

.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
}

.whatsapp-float {
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: visible;
}
.whatsapp-float:hover {
    background-color: #1ea955;
    transform: scale(1.1);
    color: #fff;
}

.whatsapp-bubble {
    position: absolute;
    bottom: 70px;
    right: 0;
    background-color: #fff;
    color: #000;
    padding: 10px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.whatsapp-bubble::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 18px;
    border-width: 6px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

/* Pulse ring */
.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.5);
    z-index: -1;
    animation: pulse 3s infinite;
    top: 0;
    left: 0;
}

@keyframes pulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    70%  { transform: scale(1.8); opacity: 0;   }
    100% { transform: scale(1);   opacity: 0;   }
}


/* ============================================================
   9. COOKIE BANNER
   ============================================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111827;
    color: #f3f4f6;
    padding: 12px 20px;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.4);
}
.cookie-link         { color: #93c5fd; text-decoration: underline; }
.cookie-link:hover   { color: #bfdbfe; }


/* ============================================================
   10. BOOKING MODAL
   ============================================================ */

.booking-modal {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}
.booking-modal .modal-header {
    background: linear-gradient(135deg, var(--bp-blue), var(--bp-blue-15));
    color: #fff;
    border-bottom: none;
}
.booking-modal .modal-header .btn-close { filter: invert(1); }

.booking-modal .modal-body {
    background: #f8fafc;
    padding: 1.75rem 1.75rem 1.5rem;
}
.booking-modal .form-label        { font-weight: 600; font-size: 0.9rem; color: #1f2933; }
.booking-modal .form-control,
.booking-modal .form-select,
.booking-modal textarea {
    border-radius: 10px;
    border-color: var(--bp-blue-10);
    background-color: #ffffff;
}
.booking-modal .form-control:focus,
.booking-modal .form-select:focus,
.booking-modal textarea:focus {
    border-color: var(--bp-blue);
    box-shadow: 0 0 0 0.15rem rgba(31, 78, 140, 0.16);
}
.booking-modal small.text-muted  { font-size: 0.8rem; }
.booking-modal .g-recaptcha      { transform: scale(0.95); transform-origin: left; }

#recaptchaError   { font-size: 0.8rem; }
#bookingThankYou h5 { color: var(--bp-blue); }
#bookingSubmitBtn { border-radius: 999px; padding-inline: 1.6rem; }

@media (max-width: 575.98px) {
    .booking-modal .modal-body { padding: 1.25rem 1.25rem 1rem; }
}


/* ============================================================
   11. FOOTER
   ============================================================ */

footer .footer-link {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s ease;
}
footer .footer-link:hover,
footer .footer-link:focus {
    color: var(--bp-footer-link-hover) !important;
    text-decoration: underline;
}


/* ============================================================
   12. PAGE HEADER BANNER (FAQ, Contact)
   ============================================================ */

.page-header {
    background: var(--bp-blue);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
    margin-bottom: 0;
}

.breadcrumbs-wrapper { background: #f1f3f5; }
.breadcrumbs {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: #6c757d;
}
.breadcrumbs a       { color: var(--bp-blue); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }


/* ============================================================
   13. HOMEPAGE — Reviews Carousel
   ============================================================ */

#homepage-reviews .review-carousel-card {
    max-width: 860px;
    border-radius: 20px;
}
#homepage-reviews .review-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 2px;
}
#homepage-reviews .quote-mark {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 2.4rem;
    opacity: 0.12;
    color: var(--bp-blue);
}
#homepage-reviews .carousel-control-prev,
#homepage-reviews .carousel-control-next { width: 8%; }
#homepage-reviews .review-carousel-control {
    filter: invert(36%) sepia(27%) saturate(1160%) hue-rotate(181deg) brightness(88%) contrast(88%);
}

@media (max-width: 767.98px) {
    #homepage-reviews .carousel-control-prev,
    #homepage-reviews .carousel-control-next { width: 12%; }
    #homepage-reviews .card-body { padding: 2rem 1.25rem; }
    #homepage-reviews .lead      { font-size: 1rem; }
}


/* ============================================================
   14. ABOUT PAGE
   ============================================================ */

.about-hero {
    display: flex;
    align-items: stretch;
}
.about-hero-photo { flex: 0 0 55%; background: #0d1f38; }
.about-hero-photo img { width: 100%; height: auto; display: block; }

.about-hero-text {
    flex: 0 0 45%;
    background: #0d1f38;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 56px;
}
.about-hero-text .badge-label {
    display: inline-block;
    background: var(--bp-blue);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 6px;
}
.about-hero-text h1 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 10px;
}
.about-hero-text .title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
    opacity: 0.9;
}
.about-hero-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}

.rsa-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 10px 16px;
    margin-top: 0;
    margin-bottom: 0;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.rsa-badge:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
}
.rsa-badge-text  { display: flex; flex-direction: column; }
.rsa-badge-title { color: #fff; font-weight: 700; font-size: 1rem; letter-spacing: 0.02em; }
.rsa-badge-sub   { color: rgba(255, 255, 255, 0.55); font-size: 0.72rem; margin-top: 2px; }

.bio-section  { max-width: 820px; margin: 0 auto; }
.bio-lead {
    font-size: 1.2rem;
    line-height: 1.85;
    color: #2c3e50;
    font-weight: 600;
    border-left: 5px solid var(--bp-blue);
    padding: 16px 24px;
    background: var(--bp-blue-05);
    border-radius: 0 10px 10px 0;
    margin-bottom: 2rem;
}
.bio-section p    { font-size: 1.05rem; line-height: 1.85; color: #555; margin-bottom: 1.4rem; }
.bio-qualities    { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2rem; }
.bio-quality {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bp-blue-05);
    border: 1px solid var(--bp-blue-10);
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--bp-blue);
    flex: 1 1 180px;
}
.bio-quality i { font-size: 1.2rem; flex-shrink: 0; }

@media (max-width: 991.98px) {
    .about-hero { flex-direction: column; }
    .about-hero-photo { flex: none; }
    .about-hero-text  { flex: none; padding: 40px 32px; }
}
@media (max-width: 575.98px) {
    .about-hero-text        { padding: 32px 24px; }
    .about-hero-text h1     { font-size: 1.75rem; }
}


/* ============================================================
   15. FAQ PAGE
   ============================================================ */

.content-box       { max-width: 900px; margin: 0 auto; padding: 40px 20px; }
.faq-container     { max-width: 900px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border: 1px solid var(--bp-blue-10);
    border-radius: 10px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.faq-item h3      { color: var(--bp-blue); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.faq-item p       { color: #374151; line-height: 1.75; margin-bottom: 0; }
.faq-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2a3a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 2rem 0 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--bp-blue-10);
}


/* ============================================================
   16. CONTACT PAGE
   ============================================================ */

.contact-card {
    border: 1px solid var(--bp-blue-10);
    border-radius: 12px;
    padding: 2rem;
    background: #fff;
    transition: box-shadow 0.3s;
}
.contact-card:hover { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); }

@keyframes fadeSlide {
    to { opacity: 1; transform: translateX(0); }
}


/* ============================================================
   17. BLOG HUB PAGE
   ============================================================ */

.blog-hero {
    background: linear-gradient(180deg, rgba(31, 78, 140, 0.45) 0%, rgba(0, 0, 0, 0.45) 100%);
    min-height: 38vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card {
    border: 1px solid var(--bp-blue-10);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.blog-card-body   { padding: 1.25rem; }
.blog-card-cat {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1F4E8C;
    margin-bottom: 0.5rem;
}
.blog-card-title   { font-size: 1rem; font-weight: 700; color: #1a2a3a; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card-excerpt { font-size: 0.85rem; color: #6b7280; line-height: 1.6; margin-bottom: 0.75rem; }
.blog-card-date    { font-size: 0.78rem; color: #9ca3af; }


/* ============================================================
   18. BLOG ARTICLE PAGES
   ============================================================ */

.article-hero {
    background: linear-gradient(180deg, rgba(31, 78, 140, 0.55) 0%, rgba(0, 0, 0, 0.55) 100%);
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}
.article-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
}

.article-body h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--bp-blue-10);
}
.article-body h3   { font-size: 1.1rem; font-weight: 600; color: #1F4E8C; margin-top: 1.4rem; margin-bottom: 0.4rem; }
.article-body p    { color: #374151; line-height: 1.8; margin-bottom: 1rem; }
.article-body ul,
.article-body ol   { color: #374151; line-height: 1.8; margin-bottom: 1rem; padding-left: 1.5rem; }
.article-body li   { margin-bottom: 0.4rem; }

/* Table of Contents */
.toc {
    background: var(--bp-blue-05);
    border: 1px solid var(--bp-blue-10);
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 2rem;
}
.toc h6 {
    color: var(--bp-blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}
.toc ol        { margin-bottom: 0; padding-left: 1.2rem; }
.toc li        { margin-bottom: 0.25rem; }
.toc a         { color: #1F4E8C; font-size: 0.86rem; text-decoration: none; }
.toc a:hover   { text-decoration: underline; }

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #1F4E8C, #173a68);
    border-radius: 12px;
    padding: 1.75rem 2rem;
    color: #fff;
    margin: 2.5rem 0;
}
.cta-box h3    { color: #fff !important; border: none !important; margin-top: 0 !important; font-size: 1.2rem; }
.cta-box p     { color: rgba(255, 255, 255, 0.8); margin-bottom: 1rem; }

/* Info / Warning boxes */
.info-box {
    background: var(--bp-blue-05);
    border-left: 4px solid var(--bp-blue);
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.2rem;
    margin: 1.5rem 0;
}
.warn-box {
    background: #fff8e1;
    border-left: 4px solid #f59e0b;
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.2rem;
    margin: 1.5rem 0;
}

/* Step box */
.step-box {
    border-left: 3px solid var(--bp-blue);
    background: #fff;
    padding: 0.9rem 1.1rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 0.6rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* Related article cards */
.related-card {
    border: 1px solid var(--bp-blue-10);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    background: #fff;
    transition: box-shadow 0.3s;
}
.related-card:hover             { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08); }
.related-card a                 { color: #1F4E8C; font-weight: 600; text-decoration: none; font-size: 0.9rem; }
.related-card a:hover           { text-decoration: underline; }
.related-card .small            { color: #6b7280; }

/* Compare table */
.compare-table th               { background: var(--bp-blue); color: #fff; padding: 0.75rem 1rem; }
.compare-table td               { padding: 0.7rem 1rem; vertical-align: middle; font-size: 0.9rem; }

.check  { color: #1F4E8C; font-size: 1.2rem; }
.cross  { color: #ccc;    font-size: 1.2rem; }


/* ============================================================
   19. REVIEWS PAGE
   ============================================================ */

.score-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 2.5rem 2rem;
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
}
.score-num   { font-size: 5rem; font-weight: 900; color: var(--bp-blue); line-height: 1; }
.stars-lg    { color: var(--star); font-size: 1.6rem; letter-spacing: 2px; }
.stars-sm    { color: var(--star); font-size: 0.95rem; letter-spacing: 1px; }

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #3c4043;
    text-decoration: none;
    transition: box-shadow 0.2s;
}
.google-badge:hover { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); color: #3c4043; }

.google-g {
    font-size: 1.1rem;
    font-weight: 900;
    background: linear-gradient(135deg, #4285F4, #EA4335, #FBBC04, #34A853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.google-icon-sm { color: var(--google-blue); font-size: 1.1rem; }

/* Review carousel */
.review-carousel-wrap { position: relative; overflow: hidden; }
.review-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.review-slide { flex: 0 0 100%; padding: 0 0.5rem; }

@media (min-width: 992px)                       { .review-slide { flex: 0 0 33.333%; } }
@media (min-width: 768px) and (max-width: 991.98px) { .review-slide { flex: 0 0 50%; } }

.review-card {
    background: #fff;
    border: 1px solid var(--bp-blue-10);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s, transform 0.3s;
}
.review-card:hover { box-shadow: 0 8px 28px rgba(0, 0, 0, 0.11); transform: translateY(-3px); }

.reviewer-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.95rem; color: #1a2a3a; }
.reviewer-date { font-size: 0.75rem; color: #9ca3af; }
.review-text   { font-size: 0.88rem; color: #4b5563; line-height: 1.7; flex: 1; }

.carousel-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--bp-blue-10);
    background: #fff;
    color: var(--bp-blue);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}
.carousel-btn:hover    { background: var(--bp-blue); color: #fff; border-color: var(--bp-blue); }
.carousel-btn:disabled { opacity: 0.3; cursor: default; }

.carousel-dots  { display: flex; justify-content: center; gap: 7px; margin-top: 1.25rem; }
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bp-blue-15);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
}
.carousel-dot.active   { background: var(--bp-blue); transform: scale(1.3); }

.google-cta {
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    border-radius: 18px;
    padding: 2.5rem 2rem;
    color: #fff;
    text-align: center;
}

.photo-item i { font-size: 2.5rem; color: var(--bp-blue); opacity: 0.4; }


/* ============================================================
   20. SERVICE PAGES (EDT, Mock Test, Pre-Test, Reduced EDT, Car Hire)
   ============================================================ */

/* Syllabus steps — EDT page */
.syllabus-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--bp-blue-10);
    background: #fff;
    transition: box-shadow 0.3s;
}
.syllabus-step:hover { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08); }
.step-num {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bp-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Timeline — Mock Test page */
.timeline-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.timeline-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bp-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.9rem;
}
.test-area {
    border: 1px solid var(--bp-blue-10);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    background: #fff;
    margin-bottom: 0.75rem;
}

/* Route cards — Pre-Test page */
.route-card {
    border: 1px solid var(--bp-blue-10);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    background: #fff;
    transition: box-shadow 0.3s;
}
.route-card:hover { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08); }

.fault-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff0f0;
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.82rem;
    margin: 3px;
}

/* Step card — Reduced EDT page */
.step-card {
    border-left: 3px solid var(--bp-blue);
    background: #fff;
    padding: 0.9rem 1.1rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 0.6rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.country-badge {
    display: inline-block;
    background: var(--bp-blue-05);
    border: 1px solid var(--bp-blue-10);
    color: var(--bp-blue);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 3px;
}