/* =========================================================================
   Otovio - Main Stylesheet
   Primary: #5f008c → #500078 | Secondary: #f68716 | Light theme
   ========================================================================= */

:root {
    --primary: #5f008c;
    --primary-dark: #500078;
    --primary-light: #7b1fa2;
    --primary-rgb: 95, 0, 140;
    --secondary: #f68716;
    --secondary-dark: #e07a0e;
    --secondary-light: #ffad4a;
    --text: #1a1a2e;
    --text-muted: #6b7280;
    --bg: #ffffff;
    --bg-light: #f8f9fc;
    --bg-gray: #f1f3f7;
    --border: #e5e7eb;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 2px 16px rgba(0,0,0,.06);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.1);
    --transition: all .3s ease;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a { color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); }

/* =========================================================================
   TOPBAR
   ========================================================================= */
.topbar {
    background: #3d005e;
    padding: 5px 0;
    font-size: .7rem;
    margin-bottom: 0;
    border-bottom: none;
}

.topbar-link {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.topbar-link:hover { color: #fff; }

.topbar-social {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: .85rem;
    transition: var(--transition);
}
.topbar-social:hover { color: #fff; background: rgba(255,255,255,.15); }

/* =========================================================================
   NAVBAR
   ========================================================================= */
.navbar {
    background: var(--primary);
    padding: .6rem 0;
    z-index: 1040;
    position: sticky;
    top: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

.navbar-logo {
    height: 36px;
    width: auto;
    padding-bottom: 5px;
}

.footer-logo {
    height: 32px;
    width: auto;
}

.navbar .nav-link {
    color: rgba(255,255,255,.85);
    font-weight: 500;
    font-size: .95rem;
    padding: .5rem .9rem !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #fff;
    background: rgba(255,255,255,.12);
}

.navbar-toggler {
    border-color: rgba(255,255,255,.3);
}
.navbar-toggler-icon {
    filter: invert(1);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
}
.btn-whatsapp:hover { background: #1ebe5d; color: #fff; }

.btn-call {
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
}
.btn-call:hover { background: var(--secondary-dark); color: #fff; }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    padding: .6rem 1.5rem;
    transition: var(--transition);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #3d005e);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), .3);
}

.btn-secondary-accent {
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
}
.btn-secondary-accent:hover { background: var(--secondary-dark); color: #fff; }

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    border-radius: var(--radius-sm);
}
.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* =========================================================================
   HERO / BANNER
   ========================================================================= */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    height: calc(100vh - 93px);
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: calc(100vh - 93px);
    display: flex;
    align-items: center;
}

.hero-slide .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-slide .hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(var(--primary-rgb),.35) 0%, transparent 50%, rgba(var(--primary-rgb),.35) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
    margin-left: 60px;
}

.hero-content h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.hero-content p {
    font-size: 1.15rem;
    opacity: .9;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 6px rgba(0,0,0,.3);
}

/* =========================================================================
   SECTION TITLES
   ========================================================================= */
.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: .5rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.section-title .accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: .75rem auto 0;
    border-radius: 2px;
}

/* =========================================================================
   VEHICLE CARDS
   ========================================================================= */
.vehicle-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
    transition: var(--transition);
    background: #fff;
}

.vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,.15);
    border-color: rgba(var(--primary-rgb),.2);
}

.vehicle-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform .4s ease;
}

.vehicle-card:hover .card-img-top {
    transform: scale(1.05);
}

.vehicle-card .card-body {
    padding: 1rem 1.25rem;
}

.vehicle-card .card-title {
    font-size: 1rem;
    font-weight: 700;
}

.vehicle-card .card-title a { color: var(--text); text-decoration: none; }
.vehicle-card .card-title a:hover { color: var(--primary); }

.vehicle-specs {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .8rem;
    font-size: .8rem;
}

.vehicle-specs span {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.vehicle-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: .5rem;
}

/* =========================================================================
   VEHICLE DETAIL
   ========================================================================= */
.detail-gallery .main-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1rem;
}

.detail-gallery .main-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.detail-gallery .thumb-strip {
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    padding-bottom: .5rem;
}

.detail-gallery .thumb-strip img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.detail-gallery .thumb-strip img:hover,
.detail-gallery .thumb-strip img.active {
    border-color: var(--primary);
}

.inquiry-card {
    border: 2px solid var(--primary);
    border-radius: var(--radius);
}

.inquiry-card .card-header {
    background: var(--primary);
    color: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius) var(--radius) 0 0;
}

.inquiry-card .card-body {
    padding: 1.5rem;
}

.spec-table {
    width: 100%;
}
.spec-table td {
    padding: .6rem .75rem;
    border-bottom: 1px solid var(--border);
}
.spec-table td:first-child {
    font-weight: 600;
    color: var(--text-muted);
    width: 40%;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: .5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    padding: .4rem .6rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.feature-item i { color: var(--primary); }

.feature-item-inactive {
    opacity: .35;
}

.feature-item-inactive i { color: var(--text-muted); }

/* Detail box (description & features on vehicle detail) */
.detail-box {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.25rem;
    background: #fff;
    overflow: auto;
}

.detail-box::-webkit-scrollbar { width: 6px; }
.detail-box::-webkit-scrollbar-track { background: var(--bg-light); border-radius: 3px; }
.detail-box::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
.detail-box::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }
.detail-box { scrollbar-color: var(--primary) var(--bg-light); scrollbar-width: thin; }

.detail-box-title {
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: .75rem;
    color: var(--text);
}

.detail-box-content {
    font-size: .9rem;
    line-height: 1.7;
    color: var(--text);
}

.detail-box-empty {
    color: var(--text-muted);
    opacity: .6;
    font-style: italic;
}

.detail-box-empty i {
    font-size: .85rem;
    margin-right: .25rem;
}

/* =========================================================================
   FILTER SIDEBAR
   ========================================================================= */
.filter-sidebar {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: 90px;
}

.filter-sidebar h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.filter-group {
    margin-bottom: 1.25rem;
}

.filter-group label {
    font-weight: 600;
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: .4rem;
    display: block;
}

.filter-group .form-select,
.filter-group .form-control {
    font-size: .9rem;
    border-radius: var(--radius-sm);
}

.active-filter-tag {
    cursor: pointer;
    font-size: .8rem;
}

.active-filter-tag .remove {
    margin-left: 4px;
    font-weight: 700;
}

/* =========================================================================
   HOW IT WORKS
   ========================================================================= */
.how-it-works-section { background: var(--bg-light); }

.how-step {
    text-align: center;
    padding: 2rem 1.5rem;
}

.how-step .step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), .3);
    position: relative;
}

.how-step .step-number {
    position: absolute;
    top: -6px;
    left: -6px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    line-height: 28px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}

.how-step h5 { font-weight: 700; margin-bottom: .5rem; }
.how-step p { color: var(--text-muted); font-size: .95rem; }

/* =========================================================================
   WHY OTOVIO
   ========================================================================= */
.advantage-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.advantage-card .adv-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(var(--primary-rgb), .08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.advantage-card h5 { font-weight: 700; font-size: 1rem; }
.advantage-card p { color: var(--text-muted); font-size: .9rem; }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.testimonial-carousel-wrapper {
    position: relative;
}

.testimonial-carousel {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform .4s ease;
}

.testimonial-slide {
    min-width: calc(100% / 3);
    padding: 0 12px;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .testimonial-slide { min-width: 50%; }
}

@media (max-width: 575px) {
    .testimonial-slide { min-width: 100%; }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    color: var(--text);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.carousel-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.carousel-btn-prev { left: -22px; }
.carousel-btn-next { right: -22px; }

@media (max-width: 767px) {
    .carousel-btn-prev { left: -8px; }
    .carousel-btn-next { right: -8px; }
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
}

.testimonial-card .stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: .75rem;
}

.testimonial-card .comment {
    color: var(--text-muted);
    font-size: .95rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--text);
}

/* =========================================================================
   BLOG CARDS
   ========================================================================= */
.blog-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.15); border-color: rgba(var(--primary-rgb),.2); }

.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
    object-position: top;
}

.blog-card .card-body { padding: 1.25rem; }

.blog-card .card-title {
    font-size: 1.05rem;
    font-weight: 700;
}
.blog-card .card-title a { color: var(--text); text-decoration: none; }
.blog-card .card-title a:hover { color: var(--primary); }

.blog-card .card-date {
    font-size: .8rem;
    color: var(--text-muted);
}

/* =========================================================================
   FAQ ACCORDION
   ========================================================================= */
.faq-section .accordion-button {
    font-weight: 600;
    color: var(--text);
}
.faq-section .accordion-button:not(.collapsed) {
    background: rgba(var(--primary-rgb), .05);
    color: var(--primary);
}
.faq-section .accordion-button:focus { box-shadow: none; border-color: var(--border); }

.faq-tabs .nav-link {
    color: var(--text);
    font-weight: 600;
    border-radius: var(--radius-sm);
    padding: .6rem 1.2rem;
}
.faq-tabs .nav-link.active {
    background: var(--primary);
    color: #fff;
}

/* =========================================================================
   WIZARD
   ========================================================================= */
.wizard-container {
    max-width: 800px;
    margin: 0 auto;
}

.wizard-progress {
    height: 6px;
    background: var(--bg-gray);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.wizard-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width .4s ease;
}

.wizard-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.wizard-step-indicator {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-gray);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    transition: var(--transition);
}

.wizard-step-indicator.active {
    background: var(--primary);
    color: #fff;
}

.wizard-step-indicator.completed {
    background: #10b981;
    color: #fff;
}

.wizard-step { display: none; }
.wizard-step.active { display: block; }

.wizard-step .card { box-shadow: none !important; }

.wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* Tramer table */
.tramer-table {
    width: 100%;
    font-size: .9rem;
}
.tramer-table td, .tramer-table th {
    padding: .5rem;
    vertical-align: middle;
}
.tramer-table .form-check-input {
    margin: 0;
    width: 1.25em;
    height: 1.25em;
    cursor: pointer;
}
.tramer-table td {
    cursor: pointer;
}

/* =========================================================================
   CONTACT / BRANCHES
   ========================================================================= */
.branch-card {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    height: 100%;
}

.branch-card .branch-badge {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

/* =========================================================================
   NEWSLETTER
   ========================================================================= */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 4rem 0;
}

.newsletter-section .form-control {
    border: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    padding: .75rem 1rem;
}

.newsletter-section .btn {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: .75rem 1.25rem;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
    background: #1a1a2e;
    color: rgba(255,255,255,.8);
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: .95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li { margin-bottom: .4rem; }

.footer-links a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-size: .9rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--secondary); }

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: .5rem;
    font-size: .9rem;
    display: flex;
    align-items: flex-start;
    gap: .5rem;
}

.footer-contact a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
}
.footer-contact a:hover { color: var(--secondary); }

.footer-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--secondary);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom-link:hover {
    opacity: 1 !important;
    text-decoration: underline !important;
}

.newsletter-form .form-control {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.5); }

/* Footer mobile */
@media (max-width: 767.98px) {
    .site-footer .row > [class*="col-"] {
        text-align: center;
    }
    .site-footer .footer-brand {
        display: flex;
        justify-content: center;
    }
    .site-footer .footer-social {
        justify-content: center;
    }
    .site-footer .footer-contact li {
        justify-content: center;
    }
    .site-footer .footer-links-inline {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: .25rem .75rem;
    }
    .site-footer .footer-links-inline li {
        margin-bottom: 0;
    }
    .site-footer .newsletter-form {
        max-width: 320px;
        margin: 0 auto;
    }
    .site-footer .footer-bottom {
        justify-content: center !important;
        text-align: center;
    }
    .site-footer .footer-bottom nav {
        justify-content: center;
    }
}

/* =========================================================================
   COOKIE CONSENT
   ========================================================================= */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: rgba(255,255,255,.9);
    padding: 1rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}

/* =========================================================================
   PAGE HEADER
   ========================================================================= */
.page-banner {
    position: relative;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/img/inpage.jpg') center -200px/cover no-repeat;
    filter: blur(6px);
    transform: scale(1.2);
    z-index: 0;
}

.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(var(--primary-rgb), .25);
    z-index: 1;
}

.page-banner > * {
    position: relative;
    z-index: 2;
}

.page-banner-title {
    font-size: 1.4rem;
    font-weight: 700;
    max-width: 50%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 auto .5rem;
}

.page-banner-blog::before {
    background-image: url('/assets/img/inpage_blog.jpg');
}

.page-banner-contact::before {
    background-image: url('/assets/img/inpage_contact.jpg');
}

.page-banner-cars::before {
    background-image: url('/assets/img/inpage_cars.jpg');
}

.page-banner-faq::before {
    background-image: url('/assets/img/inpage_faq.jpg');
    background-position: center top;
}

.page-banner-sellcar::before {
    background-image: url('/assets/img/inpage_sellcar.jpg');
}

/* Similar Vehicles Carousel */
.similar-carousel-wrapper { position: relative; }
.similar-carousel { overflow: hidden; }
.similar-track { display: flex; transition: transform .4s ease; }
.similar-slide { flex: 0 0 auto; min-width: 25%; padding: 0 12px; box-sizing: border-box; }

@media (max-width: 991px) { .similar-slide { min-width: 33.333%; } }
@media (max-width: 767px) { .similar-slide { min-width: 50%; } }
@media (max-width: 575px) { .similar-slide { min-width: 85%; } }

.page-banner h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: .25rem;
}

.page-banner .breadcrumb {
    justify-content: center;
    margin: 0;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
    color: rgba(255,255,255,.7);
    font-size: .9rem;
}

.page-banner .breadcrumb-item.active { color: #fff; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 991.98px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-slide { min-height: 380px; }
    .filter-sidebar { position: static; margin-bottom: 1.5rem; }
}


@media (max-width: 575.98px) {
    .hero-content h1 { font-size: 1.6rem; }
    .hero-slide { min-height: 320px; }
    .detail-gallery .main-image img { height: 280px; }
    .section-title h2 { font-size: 1.5rem; }
}

/* =========================================================================
   UTILITY
   ========================================================================= */
/* =========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================= */
.floating-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fab-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    transition: transform .2s ease, box-shadow .2s ease;
}

.fab-btn:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,.35);
}

.fab-call { background: var(--secondary); }
.fab-whatsapp { background: #25d366; }
.fab-message { background: var(--primary); }

.text-primary { color: var(--primary) !important; }
.bg-primary { background: var(--primary) !important; }
.bg-gradient-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important; }
