

:root {
    --primary-color: var(--color-rank-1);
    --secondary-color: var(--color-rank-3);
    --accent-color: var(--color-rank-8);
    --text-dark: var(--color-rank-3);
    --text-light: var(--color-rank-4);
    --white: var(--color-rank-2);
    --bg-light: var(--color-rank-5);
    --bg-gray: var(--color-rank-8);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 28px;
    font-weight: 500;
    border-radius: 30px;
}

.btn-primary:hover {
    background-color: var(--color-rank-7);
    border-color: var(--color-rank-7);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 28px;
    font-weight: 500;
    border-radius: 30px;
}

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

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.brand-stellar {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.5rem;
}

.brand-cars {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar {
    background-color: var(--white);
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: none;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px var(--color-rank-13);
    padding: 10px 0;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 18px;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background-color: var(--primary-color);
    display: none;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px var(--color-rank-13);
    border-radius: 10px;
    padding: 10px 0;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.btn-contact {
    padding: 10px 25px;
}

.lang-dropdown .btn-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.offcanvas {
    max-width: 300px;
}

.offcanvas-body .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-rank-6);
}

.hero-section {
    position: relative;
    padding: 180px 0 80px;
    background:
        radial-gradient(circle at top left, var(--color-rank-6) 0, transparent 55%),
        radial-gradient(circle at bottom right, var(--bg-light) 0, var(--white) 55%);
    overflow: hidden;
    color: var(--text-dark);
}

.hero-backdrop-layer {
    display: none;
}

.hero-orbit {
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.35;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
}

.hero-orbit--primary {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, var(--primary-color) 0, transparent 70%);
    top: -90px;
    right: 0;
}

.hero-orbit--accent {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--color-rank-8) 0, transparent 70%);
    bottom: -120px;
    left: -40px;
}

.hero-slider {
    position: relative;
    margin: 0 auto;
}

.hero-slider .swiper-wrapper {
    padding-inline: 0;
}

.hero-slider .swiper-slide {
    padding-block: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 40px;
    align-items: stretch;
    width: 100%;
}

.hero-content {
    order: 1;
    position: relative;
}

.hero-content-card {
    position: relative;
    padding: 32px 32px 30px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid var(--bg-light);
    box-shadow:
        0 10px 25px var(--color-rank-12);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--bg-light);
    border: 1px solid var(--color-rank-6);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 18px;
}

.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 0 0 6px rgba(200, 16, 46, 0.15);
}

.hero-eyebrow-text {
    white-space: nowrap;
}

.hero-title {
    font-size: clamp(2.3rem, 3vw + 1.2rem, 3.4rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.hero-title span {
    color: var(--primary-color);
}

.hero-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 28px;
    max-width: 32rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-cta {
    padding-inline: 30px;
}

.hero-cta span {
    font-weight: 600;
}

.hero-media {
    order: 2;
    position: relative;
}

.hero-media-frame {
    position: relative;
    border-radius: 28px;
    padding: 8px;
    background: var(--white);
    box-shadow:
        0 10px 25px var(--color-rank-12);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hero-media-glow {
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.26), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(200, 16, 46, 0.26), transparent 60%);
    opacity: 0.9;
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-media-inner {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: var(--bg-light);
    flex: 1;
}

.hero-media-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.9s ease, filter 0.9s ease;
}

.hero-media-frame:hover .hero-media-img {
    transform: scale(1.06);
    filter: saturate(1.06);
}

.hero-slider-controls {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 32px;
    padding-inline: 1.5rem;
}

.services-section {
    padding: 80px 0;
    background-color: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--color-rank-12);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--color-rank-13);
}

.service-card .card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.service-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .card-img img {
    transform: scale(1.1);
}

.service-card .card-body {
    padding: 25px;
}

.service-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card .card-title a:hover {
    color: var(--primary-color);
}

.service-card .card-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

.about-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 10px;
}

.about-badge h4 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.about-badge span {
    font-size: 0.9rem;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.about-feature i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-banner {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.video-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-rank-19);
}

.video-banner .container {
    position: relative;
    z-index: 1;
}

.video-banner h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.video-banner p {
    color: var(--color-rank-16);
    max-width: 600px;
    margin-bottom: 30px;
}
.video-banner p:last-child {
    margin-bottom: 0px;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--white);
    color: var(--primary-color);
}

.advantages-section {
    padding: 80px 0;
    background: var(--white);
}

.advantage-box {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: var(--bg-light);
    transition: var(--transition);
    height: 100%;
}

.advantage-box:hover {
    background: var(--primary-color);
    color: var(--white);
}

.advantage-box:hover .advantage-icon {
    background: var(--white);
    color: var(--primary-color);
}

.advantage-box:hover p {
    color: var(--color-rank-16);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.advantage-box h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.advantage-box p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    transition: var(--transition);
}

.listings-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.listing-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--color-rank-12);
    transition: var(--transition);
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--color-rank-13);
}

.listing-card .card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.listing-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.listing-card .card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.listing-card .card-body {
    padding: 20px;
}

.listing-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.listing-card .card-title a:hover {
    color: var(--primary-color);
}

.listing-card .card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.listing-card .card-specs {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--color-rank-6);
}

.listing-card .card-spec {
    font-size: 0.85rem;
    color: var(--text-light);
}

.listing-card .card-spec i {
    margin-right: 5px;
    color: var(--primary-color);
}

.team-section {
    padding: 80px 0;
    background: var(--white);
}

.team-card {
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card .card-img {
    aspect-ratio: 1/1;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.team-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-card h5 a:hover {
    color: var(--primary-color);
}

.team-card span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.team-card .team-social {
    display: flex;
    justify-content: center !important;
    gap: 10px;
    margin-top: 15px;
}

.team-card .team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.team-card .team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.gallery-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.gallery-item {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: var(--color-rank-20);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item .gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
}

.blog-section {
    padding: 80px 0;
    background: var(--white);
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--color-rank-12);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--color-rank-13);
}

.blog-card .card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.blog-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-card .card-body {
    padding: 25px;
}

.blog-card .card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-card .card-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-card .card-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card .card-title a:hover {
    color: var(--primary-color);
}

.blog-card .card-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cta-section {
    padding: 80px 0;
    background: var(--primary-color);
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--color-rank-21);
    margin-bottom: 30px;
}

.cta-section .btn-white {
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
}

.cta-section .btn-white:hover {
    background: var(--text-dark);
    color: var(--white);
}

.page-banner {
    position: relative;
    padding: 125px 0 125px;
    background-size: cover;
    background-position: center;
    margin-top: 99px;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: var(--color-rank-22);
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.banner-content h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.breadcrumb-item a {
    color: var(--color-rank-16);
}

.breadcrumb-item a:hover {
    color: var(--white);
}

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

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--color-rank-23);
}

.footer-area {
    background: var(--text-dark);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo .brand-stellar {
    color: var(--white);
}

.footer-widget p {
    color: var(--color-rank-14);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-rank-14);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--color-rank-14);
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
}

.footer-contact a {
    color: var(--color-rank-14);
}

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

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-rank-17);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.footer-social a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--color-rank-17);
}

.footer-bottom p {
    color: var(--color-rank-14);
    font-size: 0.9rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: var(--color-rank-14);
    font-size: 0.9rem;
}

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

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--text-dark);
}

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px var(--color-rank-12);
}

.sidebar-widget h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

.sidebar-search .form-control {
    border-radius: 30px 0 0 30px;
    border-right: none;
}

.sidebar-search .btn {
    border-radius: 0 30px 30px 0;
}

.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li {
    margin-bottom: 10px;
}

.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    color: var(--text-dark);
    padding: 10px 0;
    border-bottom: 1px solid var(--color-rank-6);
}

.sidebar-categories a:hover {
    color: var(--primary-color);
}

.sidebar-posts .post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-rank-6);
}

.sidebar-posts .post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-posts .post-img {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-posts .post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-posts .post-title {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.4;
}

.sidebar-posts .post-title a:hover {
    color: var(--primary-color);
}

.sidebar-posts .post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.pagination-area {
    margin-top: 40px;
}

.pagination .page-link {
    border: none;
    color: var(--text-dark);
    padding: 12px 18px;
    margin: 0 3px;
    border-radius: 8px;
}

.pagination .page-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    color: var(--white);
}

.filter-topbar {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px var(--color-rank-12);
}

.filter-sidebar {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px var(--color-rank-12);
}

.filter-sidebar h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.filter-sidebar-header {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-rank-6);
}

.filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-rank-24);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.filter-overlay.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991.98px) {
    .filter-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        overflow-y: auto;
        z-index: 1041;
        border-radius: 0;
        transition: left 0.3s ease;
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .filter-sidebar.show {
        left: 0;
    }

    .filter-sidebar .filter-group:last-child {
        margin-bottom: 25px;
    }

    .filter-topbar {
        flex-direction: column;
        align-items: flex-start !important;
        padding: 15px;
        gap: 15px !important;
    }

    .filter-topbar > div:first-child {
        width: 100%;
        margin-bottom: 0;
    }

    .filter-topbar > div:last-child {
        width: 100%;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .filter-topbar > div:last-child > div {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .filter-topbar span {
        font-size: 0.9rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .filter-topbar .form-select {
        flex: 1;
        min-width: 120px;
    }
}

.filter-group {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--color-rank-6);
}

.filter-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.form-check-label {
    font-size: 0.9rem;
}

.form-control,
.form-select {
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid var(--color-rank-6);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem var(--color-rank-15);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px 12px;
    padding-right: 45px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-select:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23C8102E' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.form-control:disabled,
.form-select:disabled {
    background-color: var(--bg-light);
    opacity: 0.6;
    cursor: not-allowed;
}

.editor-content {
    line-height: 1.8;
}

.editor-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.editor-content h1,
.editor-content h2,
.editor-content h3,
.editor-content h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.editor-content ul,
.editor-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.editor-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.editor-content blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    margin: 2rem 0;
    font-style: italic;
}

.editor-content img {
    border-radius: 15px;
    margin: 1.5rem 0;
}

.detail-gallery {
    margin-bottom: 30px;
}

.detail-gallery .main-image {
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    margin-bottom: 15px;
}

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

.detail-gallery .thumb-slider .swiper-slide {
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
}

.detail-gallery .thumb-slider .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--primary-color);
}

.detail-gallery .thumb-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px var(--color-rank-12);
}

.detail-info h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.detail-info .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.detail-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.detail-spec {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
}

.detail-spec i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.detail-spec span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.detail-spec strong {
    display: block;
    font-weight: 600;
}

.advisor-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px var(--color-rank-12);
    text-align: center;
}

.advisor-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.advisor-card h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.advisor-card span {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.advisor-card .btn {
    width: 100%;
}

.contact-info-box {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px var(--color-rank-12);
    height: 100%;
}

.contact-info-box i {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px auto;
}

.contact-info-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-box p {
    color: var(--text-light);
    margin: 0;
}

.contact-info-box a {
    color: var(--text-dark);
}

.contact-info-box a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px var(--color-rank-12);
}

.contact-form h3 {
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid var(--color-rank-6);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem var(--color-rank-15);
}

.map-area {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.map-area iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--color-rank-12);
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    background: var(--white);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 20px 25px;
    color: var(--text-light);
}

.history-section {
    padding: 80px 0;
}

.history-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}

.history-year {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.history-content h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.history-content p {
    color: var(--text-light);
    margin: 0;
}

.values-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 15px;
    height: 100%;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--color-rank-13);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    margin: 0;
}

.ik-form {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px var(--color-rank-12);
}

.ik-form h3 {
    font-weight: 600;
    margin-bottom: 30px;
}

.ik-form .form-control,
.ik-form .form-select {
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid var(--color-rank-6);
}

.ik-form .form-control:focus,
.ik-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem var(--color-rank-15);
}

.gallery-categories {
    margin-bottom: 40px;
}

.gallery-categories a {
    display: inline-block;
    padding: 10px 25px;
    background: var(--white);
    border-radius: 30px;
    margin: 5px;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.gallery-categories a:hover,
.gallery-categories a.active {
    background: var(--primary-color);
    color: var(--white);
}

.testimonial-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px var(--color-rank-12);
}

.testimonial-card .quote {
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card .author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .author h6 {
    font-weight: 600;
    margin: 0;
}

.testimonial-card .author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.swiper-pagination {
    position: relative;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--text-dark);
    opacity: 0.2;
    border-radius: 10px;
    transition: var(--transition);
    margin: 0 !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    width: 30px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 5px 20px var(--color-rank-13);
    transition: var(--transition);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: var(--white);
}

.hero-slider .swiper-pagination {
    position: static;
    margin-top: 0;
    justify-content: end;
}

.hero-slider .swiper-pagination-bullet {
    background: var(--color-rank-10);
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    width: 28px;
}

.listings-slider .swiper-pagination,
.team-slider .swiper-pagination,
.testimonial-slider .swiper-pagination {
    margin-top: 40px;
}

.related-slider .swiper-button-next,
.related-slider .swiper-button-prev {
    top: 40%;
}

@media (max-width: 767.98px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 0.8rem;
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .swiper-pagination-bullet-active {
        width: 24px;
    }
}

@media (max-width: 1199.98px) {
    .hero-slide-layout {
        gap: 40px;
    }
}

@media (max-width: 991.98px) {
    .hero-slide-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .hero-content {
        order: 2;
    }

    .hero-media {
        order: 1;
    }

    .hero-content-card {
        padding: 26px 22px 24px;
    }

    .hero-title {
        font-size: clamp(2rem, 2.4rem, 2.5rem);
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 120px 0 44px;
    }

    .hero-slider .swiper-wrapper {
        padding-inline: 1rem;
    }

    .hero-content-card {
        text-align: left;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-media-img {
        height: 260px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }

    .detail-specs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .page-banner {
        padding: 120px 0 60px;
    }

    .banner-content h1 {
        font-size: 1.75rem;
    }

    .contact-info-box {
        margin-bottom: 20px;
    }

    .gallery-categories a {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .filter-topbar {
        padding: 12px;
    }

    .filter-topbar span {
        font-size: 0.85rem;
    }

    .filter-topbar .form-select {
        font-size: 0.85rem;
        padding: 10px 15px;
    }
}

.listing-card .card-body {
    display: flex;
    flex-direction: column;
}

.listing-card .card-price {
    margin-top: auto;
}

.blog-card .card-body {
    display: flex;
    flex-direction: column;
}

.service-card .card-body {
    display: flex;
    flex-direction: column;
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    border: none;
}

.btn-white:hover {
    background: var(--text-dark);
    color: var(--white);
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-outline-success {
    color: var(--color-rank-9);
    border-color: var(--color-rank-9);
}

.btn-outline-success:hover {
    background-color: var(--color-rank-9);
    border-color: var(--color-rank-9);
    color: var(--white);
}

.gallery-main .swiper-slide {
    border-radius: 15px;
    overflow: hidden;
}

.gallery-thumbs {
    margin-top: 15px;
}

.gallery-thumbs .swiper-slide {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
}

.detail-gallery .main-image {
    border-radius: 15px;
    overflow: hidden;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 28px;
    height: 28px;
}


/* whatsapp-Ã§errez */

.whatsapp-button {
    position: fixed;

    left: 20px;

    bottom: 20px;

    z-index: 999;

    /* DiÄŸer elementlerin Ã¼zerinde gÃ¶rÃ¼nmesini saÄŸlar */
}

.whatsapp-button a {
    display: block;
}

.whatsapp-button img {
    width: 45px;

    /* Ä°kon boyutunu ayarlayabilirsiniz */

    height: 45px;

    border-radius: 50%;

    /* Yuvarlak gÃ¶rÃ¼nÃ¼m iÃ§in */

    box-shadow: 2px 2px 8px var(--color-rank-25);

    /* Hafif gÃ¶lge */

    transition: transform 0.3s ease-in-out;

    /* Hover efekti iÃ§in geÃ§iÅŸ */
}

.whatsapp-button img:hover {
    transform: scale(1.1);

    /* Hoverda hafif bÃ¼yÃ¼me efekti */
}

/* Ã§erez bandÄ± */

.cookie-banner {
    position: fixed;

    left: 0;

    bottom: 0;

    width: 100%;

    background-color: #f8f8f8ef;

    color: var(--color-rank-10);

    padding: 15px 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    z-index: 1000;

    /* DiÄŸer elementlerin Ã¼zerinde gÃ¶rÃ¼nmesini saÄŸlar */

    box-shadow: 0 -2px 5px var(--color-rank-13);

    transform: translateY(100%);

    /* BaÅŸlangÄ±Ã§ta aÅŸaÄŸÄ± kaydÄ±rarak gizle */

    opacity: 0;

    /* GÃ¶rÃ¼nÃ¼rlÃ¼ÄŸÃ¼ de sÄ±fÄ±ra indir */

    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;

    /* OpaklÄ±k geÃ§iÅŸini de ekle */
}

.cookie-banner.show {
    transform: translateY(0);

    /* GÃ¶stermek iÃ§in yukarÄ± kaydÄ±r */

    opacity: 1;

    /* GÃ¶rÃ¼nÃ¼r yap */
}

.cookie-banner.hidden {
    transform: translateY(100%);

    opacity: 0;
}

.cookie-text {
    font-size: 16px;
}

.cookie-link {
    color: var(--primary-color);

    text-decoration: none;

    margin-left: 10px;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-button {
    background-color: var(--primary-color);

    color: var(--color-rank-2);

    border: none;

    padding: 5px 15px;

    border-radius: 5px;

    cursor: pointer;

    font-size: 16px;

    transition: all 0.3s ease-in-out;
}

.cookie-button:hover {
    transform: translateY(-3px);
    background-color: var(--secondary-color);
}

/* Responsive TasarÄ±m */

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;

        align-items: stretch;

        padding: 10px;

        text-align: center;
    }

    .cookie-text {
        margin-bottom: 10px;
    }

    .cookie-link {
        display: block;

        margin: 5px 0;
    }

    .cookie-button {
        width: 100%;
    }
}

/* Ã§erez bandÄ± */

/* whatsapp-Ã§errez */

/* formlarla */

.swal2-container {
    z-index: 99999999999 !important;
}

.swal2-container .select2-container {
    display: none;
}

.zorunlu-alanlar {
    display: flex;

    gap: 10px;

    flex-direction: column;
}

.zorunlu-alanlar span {
    color: var(--color-rank-11);

    font-size: 14px;

    font-weight: 500;
}

div:where(.swal2-container) div:where(.swal2-actions) .swal2-confirm {
    background-image: none;
    color: var(--color-rank-2);
    background-color: var(--primary-color);
}

/* Spinner Stili */

.custom-spinner {
    display: inline-block;

    width: 16px;

    height: 16px;

    border: 2px solid var(--color-rank-2);

    border-top: 2px solid transparent;

    border-radius: 50%;

    animation: spin 0.8s linear infinite;

    margin-left: 8px;

    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.navbar-brand img, .footer-logo img, .offcanvas-title img {
    width: 160px;
    height: auto;
    object-fit: contain;
    object-position: left;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.custom-icon {
    width: 40px;
    height: 40px;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    background-color: var(--primary-color);
}

.advantage-icon .custom-icon {
    background-color: var(--white);
}
.advantage-box:hover .advantage-icon .custom-icon {
    background-color: var(--primary-color);

}

.listing-card .card-specs p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}


/* GRID: Listeleme sayfasında kartların eşit yükseklikte olması için */
.listing-list .row.g-4 > .col-md-6 {
    display: flex;
}

.listing-list .row.g-4 > .col-md-6 .listing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
/* SLIDER: Swiper içindeki ilan kartları için */
.listings-slider .swiper-slide,
.related-swiper .swiper-slide {
    height: auto;
}

.listings-slider .listing-card,
.related-swiper .listing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.listing-card .card-title {
    font-size: 1.5rem;
}

.make-sticky {
    position: sticky;
    top: 100px;
}

.pagination-area {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination {
    gap: 8px;
    display: flex;
    align-items: center;
}

.pagination .page-link {
    border: none;
    color: var(--text-dark);
    padding: 10px 16px;
    margin: 0;
    border-radius: 12px;
    background-color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 8px var(--color-rank-18);
}

.pagination .page-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--color-rank-26);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary-color), var(--color-rank-7));
    color: var(--white);
    box-shadow: 0 4px 12px var(--color-rank-27);
    font-weight: 600;
}

.pagination .page-item.disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

.pagination .page-item.disabled .page-link:hover {
    transform: none;
    background-color: var(--white);
    color: var(--text-dark);
    box-shadow: 0 2px 8px var(--color-rank-18);
}

.sidebar-categories a.active {
    color: var(--primary-color);
}

.btn-primary:active, .btn-primary:focus, .btn-primary:disabled {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:active, .btn-outline-primary:focus, .btn-outline-primary:disabled {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    background-color: transparent !important;
}




#filterSidebar .temizle-btn:hover {
    color: var(--primary-color);
}

#filterSidebar .filter-btn-area.make-float {
    position: sticky;
    bottom: 30px;
    background: var(--color-rank-28);
    box-shadow: 0 -5px 20px var(--color-rank-13);
    border-radius: 15px;
    padding: 25px;
   
}

#filterSidebar .filter-group {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Webkit tarayıcılar (Chrome, Safari, Edge) için özel scrollbar */
#filterSidebar .filter-group::-webkit-scrollbar {
    width: 8px;
}

#filterSidebar .filter-group::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

#filterSidebar .filter-group::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--color-rank-7));
    border-radius: 10px;
    transition: var(--transition);
}

#filterSidebar .filter-group::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--color-rank-7), var(--primary-color));
}

/* Listing Detail Widget - Price ve Specs */
.listing-detail-widget {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px var(--color-rank-12);
}

.listing-detail-widget .price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
    text-align: center;
    letter-spacing: -0.02em;
}

.listing-detail-widget .detail-specs {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 0;
}

.listing-detail-widget .spec-item {
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.listing-detail-widget .spec-item:hover {
    background: var(--bg-gray);
    border-left-color: var(--primary-color);
    transform: translateX(3px);
}

.listing-detail-widget .spec-item p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.listing-detail-widget .spec-item p::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    margin-top: 5px;
    border-radius: 2px;
}

.listing-detail-widget .spec-item > *:not(p) {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
    .listing-detail-widget .price {
        font-size: 1.75rem;
    }
    
    .listing-detail-widget .spec-item {
        padding: 12px;
    }
}

.advisor-info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.advisor-info .btn {
    width: max-content;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}