/* Luxury Real Estate Design System */

:root {
    --navy-primary: #0B132B;
    --navy-dark: #060A17;
    --navy-light: #1C2541;
    --gold-accent: #C5A880;
    --gold-dark: #A8895E;
    --gold-light: #E2D4C0;
    --off-white: #FAF9F6; /* Alabaster / warm white */
    --pure-white: #FFFFFF;
    --text-primary: #0B132B;
    --text-muted: #6C757D;
    --border-light: rgba(197, 168, 128, 0.2);
    --border-gold: rgba(197, 168, 128, 0.4);
    --glass-bg: rgba(11, 19, 43, 0.75);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* Global resets & Typography */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--off-white);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* Luxury Spacing */
.section-padding {
    padding-top: 7rem;
    padding-bottom: 7rem;
}
@media (max-width: 768px) {
    .section-padding {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

/* Transparent Sticky Navbar */
.navbar-luxury {
    padding: 1.5rem 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid transparent;
}
.navbar-luxury.scrolled {
    padding: 0.8rem 0;
    background-color: var(--navy-dark) !important;
    border-bottom: 1px solid var(--border-light);
    backdrop-filter: blur(15px);
}
.navbar-luxury .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pure-white) !important;
    letter-spacing: 0.05em;
}
.navbar-brand span {
    color: var(--gold-accent);
}
.navbar-luxury .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.2rem !important;
    transition: all 0.3s ease;
}
.navbar-luxury .nav-link:hover,
.navbar-luxury .nav-link.active {
    color: var(--gold-accent) !important;
}

/* Premium Buttons */
.btn-luxury {
    position: relative;
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--pure-white);
    background-color: var(--navy-primary);
    border: 1px solid var(--gold-accent);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}
.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--gold-accent);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}
.btn-luxury:hover {
    color: var(--navy-dark);
    border-color: var(--gold-accent);
}
.btn-luxury:hover::before {
    width: 100%;
}

.btn-luxury-outline {
    position: relative;
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    background-color: transparent;
    border: 1px solid var(--text-primary);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}
.btn-luxury-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}
.btn-luxury-outline:hover {
    color: var(--off-white);
}
.btn-luxury-outline:hover::before {
    width: 100%;
}

.btn-gold {
    background-color: var(--gold-accent);
    color: var(--navy-dark);
    border-color: var(--gold-dark);
}
.btn-gold:hover {
    background-color: var(--gold-dark);
    color: var(--pure-white);
}

/* Immersive Hero Section */
.hero-luxury {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.hero-bg-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 7.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.swiper-slide-active .hero-bg-slide {
    transform: scale(1.15);
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(6, 10, 23, 0.85) 0%, rgba(6, 10, 23, 0.4) 50%, rgba(6, 10, 23, 0.9) 100%),
                linear-gradient(to bottom, rgba(6, 10, 23, 0.3) 0%, rgba(6, 10, 23, 0.9) 100%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    color: var(--pure-white);
    padding-bottom: 2rem;
}
.hero-title {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}
.hero-title .hero-title-italic {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: italic;
    color: var(--gold-accent);
}
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }
}
@media (max-width: 575px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

.hero-subtitle-luxury {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
}

/* Premium Mouse Scroll Indicator */
.scroll-indicator-wrapper {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}
.scroll-mouse {
    width: 26px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    position: relative;
    transition: border-color 0.3s ease;
}
.scroll-mouse:hover {
    border-color: var(--gold-accent);
}
.scroll-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold-accent);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouseDot 2s infinite ease-in-out;
}
@keyframes scrollMouseDot {
    0% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 24px;
        opacity: 0.1;
    }
    100% {
        top: 8px;
        opacity: 1;
    }
}
.scroll-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-top: 0.3rem;
}

/* Premium Filter Search Bar */
.search-filter-wrapper {
    position: relative;
    background: var(--navy-primary);
    border: 1px solid rgba(197, 168, 128, 0.25);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 2.2rem;
    margin-top: -5rem;
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), 0 0 2px rgba(197, 168, 128, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.search-filter-wrapper:hover {
    border-color: rgba(197, 168, 128, 0.45);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55), 0 0 5px rgba(197, 168, 128, 0.3);
}
.filter-input-group {
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    padding-right: 1.5rem;
}
@media (max-width: 767px) {
    .filter-input-group {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding-right: 0;
        padding-bottom: 1rem;
    }
}
.search-filter-wrapper label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-accent);
    margin-bottom: 0.6rem;
    display: block;
}
.search-filter-wrapper .form-select {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--pure-white);
    border-radius: 0;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
    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='%23C5A880' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-size: 10px 10px;
}
.search-filter-wrapper .form-select:focus {
    border-color: var(--gold-accent);
    box-shadow: none;
    background-color: transparent;
    color: var(--pure-white);
}
.search-filter-wrapper .form-select:hover {
    border-color: rgba(197, 168, 128, 0.7);
}
.search-filter-wrapper option {
    background-color: var(--navy-dark);
    color: var(--pure-white);
    padding: 1rem;
}

/* Luxury Section Titles */
.section-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
}
.section-title {
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--navy-primary);
    margin-bottom: 2.5rem;
}
.section-title span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--gold-dark);
}
.section-title-white {
    color: var(--pure-white) !important;
}

/* High-End Property Cards */
.property-card {
    background: var(--pure-white);
    border: 1px solid var(--border-light);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 19, 43, 0.03);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(11, 19, 43, 0.08);
    border-color: var(--gold-accent);
}
.property-card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}
.property-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.property-card:hover .property-card-img {
    transform: scale(1.08);
}
.property-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 10, 23, 0) 60%, rgba(6, 10, 23, 0.5) 100%);
}
.property-card-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background-color: var(--navy-primary);
    color: var(--gold-light);
    border: 1px solid var(--gold-accent);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}
.property-card-type {
    position: absolute;
    bottom: 1rem;
    left: 1.2rem;
    color: var(--pure-white);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 2;
}
.property-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.property-card-title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--navy-primary);
    transition: color 0.3s ease;
}
.property-card:hover .property-card-title {
    color: var(--gold-dark);
}
.property-card-location {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.property-card-location i {
    color: var(--gold-accent);
}
.property-card-specs {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--navy-primary);
}
.property-card-specs span i {
    color: var(--gold-accent);
    margin-right: 0.4rem;
}
.property-card-price-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.property-card-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy-primary);
    font-family: 'Inter', sans-serif;
}
.property-card-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.3s ease;
}
.property-card-link:hover {
    color: var(--navy-primary);
    gap: 0.7rem;
}

/* Dark Sections */
.bg-navy-dark {
    background-color: var(--navy-dark);
    color: var(--pure-white);
}
.bg-navy-dark .section-title {
    color: var(--pure-white);
}

/* Animated Counters */
.counter-box {
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem 1.5rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}
.counter-box:hover {
    border-color: var(--gold-accent);
    background: rgba(255, 255, 255, 0.04);
}
.counter-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
}
.counter-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
}

/* Custom Swiper Testimonial Slider */
.testimonial-card {
    background: var(--navy-primary);
    border: 1px solid var(--border-gold);
    padding: 3.5rem;
    color: var(--pure-white);
    position: relative;
}
.testimonial-quote {
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: var(--gold-light);
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-accent);
}
.testimonial-author-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}
.testimonial-author-title {
    font-size: 0.8rem;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.swiper-pagination-bullet-active {
    background: var(--gold-accent) !important;
}

/* Floating WhatsApp / Contact CTA */
.floating-cta {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 999;
}
.floating-cta-btn {
    width: 60px;
    height: 60px;
    background-color: var(--navy-primary);
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.floating-cta-btn:hover {
    background-color: var(--gold-accent);
    color: var(--navy-dark);
    transform: scale(1.1) rotate(15deg);
}

/* Elegant Footer */
.footer-luxury {
    background-color: var(--navy-dark);
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}
.footer-title {
    font-size: 1.1rem;
    color: var(--pure-white);
    margin-bottom: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.8rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: var(--gold-accent);
    padding-left: 5px;
}
.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}
.footer-contact-info i {
    color: var(--gold-accent);
    margin-top: 0.3rem;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Glassmorphic Property Detail Gallery and Info Box */
.detail-gallery-swiper {
    width: 100%;
    height: 70vh;
    min-height: 500px;
}
.detail-gallery-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.detail-info-sidebar {
    background: var(--pure-white);
    border: 1px solid var(--border-light);
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.02);
}
.detail-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    border-bottom: 1px solid #ECECEC;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}
.detail-spec-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.detail-spec-item i {
    font-size: 1.4rem;
    color: var(--gold-accent);
}
.detail-spec-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}
.detail-spec-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-primary);
}

/* Custom Tabs styling */
.nav-luxury-tabs {
    border-bottom: 1px solid var(--border-light);
    gap: 1.5rem;
}
.nav-luxury-tabs .nav-link {
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    padding: 0.8rem 0;
    position: relative;
    border-radius: 0;
    transition: all 0.3s ease;
}
.nav-luxury-tabs .nav-link.active {
    color: var(--gold-dark);
    background: transparent;
}
.nav-luxury-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-accent);
    transition: width 0.3s ease;
}
.nav-luxury-tabs .nav-link.active::after {
    width: 100%;
}

/* Agent Card Styles */
.agent-card {
    border: 1px solid var(--border-light);
    padding: 2rem;
    background-color: var(--off-white);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.agent-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-accent);
}

/* Custom Page Banner */
.page-banner {
    background-color: var(--navy-dark);
    padding: 8rem 0 5rem 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}
.page-banner-title {
    color: var(--pure-white);
    font-size: 3.5rem;
    font-weight: 300;
}
.page-banner-title span {
    font-weight: 700;
    color: var(--gold-accent);
}
.breadcrumb-luxury a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}
.breadcrumb-luxury a:hover {
    color: var(--gold-accent);
}
.breadcrumb-luxury .active {
    color: var(--gold-accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Luxury Blog Cards */
.blog-card {
    background: var(--pure-white);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover {
    box-shadow: 0 15px 35px rgba(11, 19, 43, 0.06);
    border-color: var(--gold-accent);
}
.blog-card-img-wrapper {
    overflow: hidden;
    aspect-ratio: 16 / 10;
}
.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}
.blog-card-meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    margin-bottom: 0.8rem;
    display: block;
}
.blog-card-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--navy-primary);
    line-height: 1.4;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}
.blog-card:hover .blog-card-title {
    color: var(--gold-dark);
}

/* Skeleton Loaders */
.skeleton {
    background-color: #e2e5e7;
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 80%
    );
    background-size: 200% 100%;
    background-position-x: 180%;
    animation: loading 1.5s infinite ease-in-out;
}

@keyframes loading {
    to {
        background-position-x: -20%;
    }
}

.skeleton-card {
    border: 1px solid var(--border-light);
    background: var(--pure-white);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.skeleton-card-img {
    aspect-ratio: 3 / 2;
    width: 100%;
}
.skeleton-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.skeleton-text {
    height: 1rem;
    border-radius: 4px;
}
.skeleton-title {
    height: 1.5rem;
    width: 80%;
}
.skeleton-location {
    width: 50%;
}
.skeleton-specs {
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
    padding: 1rem 0;
    height: 3rem;
    width: 100%;
}
.skeleton-price {
    width: 40%;
    height: 1.5rem;
}

/* Luxury Alert Classes */
.alert-luxury {
    background-color: var(--navy-primary);
    color: var(--gold-light);
    border: 1px solid var(--gold-accent);
    border-radius: 0;
    padding: 1rem 1.2rem;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 25px rgba(11, 19, 43, 0.15);
}

.alert-luxury-danger {
    background-color: #4a1525;
    color: #f8d7da;
    border: 1px solid #dc3545;
    border-radius: 0;
    padding: 1rem 1.2rem;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 25px rgba(74, 21, 37, 0.15);
}

@media (max-width: 991.98px) {
    .floating-cta {
        display: none;
    }
}

/* Luxury Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    gap: 8px;
}
.pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent !important;
    border: 1px solid rgba(197, 168, 128, 0.3) !important;
    color: var(--navy-primary) !important;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 0 !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.pagination .page-item.active .page-link {
    background-color: var(--gold-accent) !important;
    border-color: var(--gold-accent) !important;
    color: var(--navy-dark) !important;
    font-weight: 600;
}
.pagination .page-item.disabled .page-link {
    opacity: 0.4;
    border-color: rgba(197, 168, 128, 0.2) !important;
    color: var(--text-muted) !important;
    pointer-events: none;
}
.pagination .page-item:not(.active):not(.disabled) .page-link:hover {
    background-color: var(--navy-primary) !important;
    border-color: var(--navy-primary) !important;
    color: var(--gold-light) !important;
}

/* Background Utility Colors */
.bg-gold-accent {
    background-color: var(--gold-accent) !important;
    color: var(--navy-dark) !important;
}
.bg-success-accent {
    background-color: #75ec88 !important;
    color: var(--navy-dark) !important;
}
