/* RTL Support */
body {
    direction: rtl;
    text-align: right;
}

.card {
    direction: rtl;
    text-align: right;
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 400;
}


/* Modern Minimalist Design */
body {
    font-family: 'Assistant', 'Rubik', 'Open Sans', Arial, sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    line-height: 1.6;
}

.logo {
    max-width: 150px;
}

/* Mobile header improvements */
@media (max-width: 768px) {
    .logo {
        max-width: 200px;
        max-height: 100px;
    }

    .mobile-logo {
        max-width: 80px;
        max-height: 60px;
    }

    header .container {
        padding: 0.75rem 1rem;
    }

    header .row {
        align-items: center;
    }

    .social-icons {
        margin-top: 0.5rem;
    }

    .social-icons .btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* Floating Waze Button */
.floating-waze-btn {
    position: fixed;
    bottom: 90px;
    left: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #33ccff 0%, #0099cc 100%);
    color: white;
    border: none;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 15px rgba(51, 204, 255, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
}

.floating-waze-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(51, 204, 255, 0.5);
}

.floating-waze-btn:active {
    transform: scale(0.95);
}

.floating-waze-btn i {
    animation: pulse 2s infinite;
}

/* Floating Call Now Button */
.floating-call-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5);
}

.floating-call-btn:active {
    transform: scale(0.95);
}

.floating-call-btn i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .floating-waze-btn {
        bottom: 75px;
        left: 15px;
        width: 55px;
        height: 55px;
        font-size: 1.1rem;
    }

    .floating-call-btn {
        bottom: 15px;
        left: 15px;
        width: 55px;
        height: 55px;
        font-size: 1.1rem;
    }
}

/* Filter Toggle Button */
.filter-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.filter-toggle .btn {
    border-radius: 15px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.filter-toggle .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,123,255,0.4);
}

/* Filters Sidebar */
.filters-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #0d0f10 0%, #34495e 100%);
    box-shadow: -8px 0 35px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-radius: 20px 0 0 20px;
    direction: rtl;
    font-family: 'Rubik', 'Assistant', 'Open Sans', Arial, sans-serif;
    text-align: right;
    color: white;
}

.filters-sidebar.open {
    right: 0;
}

.filters-sidebar-header {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px 0 0 0;
}

.filters-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.filters-sidebar-content {
    padding: 1.25rem;
}

.filter-section {
    margin-bottom: 1.5rem;
    background: rgba(52, 73, 94, 0.8);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.filter-section:hover {
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.filter-section-title {
    color: #ecf0f1;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sensitivity-filters .form-check {
    background: rgba(248, 249, 250, 0.5);
    border-radius: 6px;
    padding: 0.5rem;
    margin-bottom: 0.25rem;
    border: 1px solid #dee2e6;
}

.sensitivity-filters .form-check-input:checked {
    background-color: #7fd6f7;
    border-color: #7fd6f7;
}

.sensitivity-filters .form-check-label {
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
}

/* Filters Overlay */
.filters-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.filters-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Form Enhancements */
.form-select, .form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    font-family: 'Assistant', sans-serif;
}

.form-select:focus, .form-control:focus {
    border-color: #7fd6f7;
    box-shadow: 0 0 0 0.2rem rgba(127, 214, 247, 0.25);
    transform: translateY(-1px);
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

/* Sensitivity Filters */
.sensitivity-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.form-check-inline {
    margin-right: 0;
    margin-left: 0.5rem;
}

.form-check-input:checked {
    background-color: #7fd6f7;
    border-color: #7fd6f7;
}

.form-check-label {
    cursor: pointer;
    transition: color 0.3s ease;
}

.form-check-input:checked ~ .form-check-label {
    color: #7fd6f7;
    font-weight: 600;
}

/* Enhanced Menu Items */
.menu-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
}

.menu-item.animate-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.menu-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hover-lift:hover {
    transform: translateY(-8px) scale(1.02);
}

.card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Card Image Enhancements */
.card-image-wrapper {
    position: relative;
    overflow: hidden;
}

.card-img-top {
    transition: transform 0.4s ease;
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,123,255,0.9) 0%, rgba(0,86,179,0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translateY(20px);
}

.card:hover .card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.quick-view-btn {
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.card:hover .quick-view-btn {
    transform: scale(1);
}

/* Card Content Enhancements */
.card-header-info {
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #6c757d;
}

.rating-display {
    background: #fff3cd;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    border: 1px solid #ffeaa7;
}

.review-count {
    font-size: 0.75rem;
    opacity: 0.8;
}

.card-img-top {
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #7fd6f7;
}

.sensitivities {
    color: #6c757d;
}

.btn-outline-primary {
    border-color: #212529;
    color: #7fd6f7;
}

.btn-outline-primary:hover {
    background-color: #8B4513;
    border-color: #8B4513;
}

/* Rating Stars */
.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 5px;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 2.5rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 5px;
}

.rating label:hover {
    transform: scale(1.2);
    color: #ffc107;
}

.rating input:checked ~ label,
.rating input:checked ~ label ~ label {
    color: #ffc107;
}

.rating-stars {
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    margin: 10px 0;
}

.rating-text {
    font-weight: 600;
    color: #495057;
}

/* Review Modal Enhancements */
.modal-header {
    border-bottom: 2px solid #dee2e6;
}

.modal-body {
    padding: 2rem;
}

.form-control:focus {
    border-color: #7fd6f7;
    box-shadow: 0 0 0 0.2rem rgba(127, 214, 247, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-1px);
}

.btn-outline-secondary {
    border: 2px solid #6c757d;
    color: #6c757d;
    padding: 10px 25px;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

/* Category Sections */
.category-section {
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.category-header {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.category-subtitle {
    font-size: 0.95rem;
    color: #6c757d;
}

.category-stats {
    text-align: left;
}

.rating-summary {
    background: #fff3cd;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #ffeaa7;
}

.rating-summary i {
    color: #ffc107;
}

/* Header Overlay on Hero */
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: none;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Hero Image */
.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 20px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide.loading {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content .btn {
    animation: fadeInUp 1s ease-out 0.6s both;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.hero-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    color: white;
}

.loading-spinner i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.loading-spinner p {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.9;
}

/* Slide Counter */
.slide-counter {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 3;
    backdrop-filter: blur(10px);
}

.hero-slider .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-slider .slick-dots li {
    margin: 0 5px;
}

.hero-slider .slick-dots li button:before {
    color: white;
    opacity: 0.7;
    font-size: 12px;
    transition: all 0.3s ease;
}

.hero-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    transform: scale(1.2);
}

.hero-slider .slick-dots li button:hover:before {
    opacity: 1;
    transform: scale(1.3);
}

.hero-slider .slick-prev,
.hero-slider .slick-next {
    z-index: 3;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.hero-slider .slick-prev {
    left: 30px;
}

.hero-slider .slick-next {
    right: 30px;
}

.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
    color: white;
    font-size: 20px;
    opacity: 0.9;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    /* Hero Slider Mobile */
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    /* Show all items by default on mobile, filters are optional */
    .menu-item {
        display: block !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .category-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .filters {
        margin: 0 -15px;
        border-radius: 0;
    }

    .filter-toggle {
        position: fixed;
        bottom: 160px;
        left: 15px;
        top: auto;
        right: auto;
        z-index: 1000;
        padding: 0;
    }

    .filter-toggle .btn {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        box-shadow: 0 4px 15px rgba(0,123,255,0.3);
    }

    .filter-toggle .btn i {
        margin: 0;
    }

    .filter-toggle .btn {
        font-size: 0;
    }

    .filter-toggle .btn i {
        font-size: 1.1rem;
        margin: 0;
    }

    .filters-sidebar {
        width: 280px;
        right: -280px;
    }

    .menu-item {
        margin-bottom: 2rem;
    }

    .card-body {
        padding: 1.25rem;
    }

    .card-title {
        font-size: 1.1rem;
    }
}


/* Large Desktop Enhancements */
@media (min-width: 1200px) {
    .filters-sidebar-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 2rem;
    }

    .filter-section {
        padding: 1.5rem;
    }

    .sensitivity-filters {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }

    .filters .row > div {
        margin-bottom: 1rem;
    }

    .filter-actions .d-flex {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch !important;
    }

    .filter-results {
        text-align: center;
    }
}

/* Smooth Transitions */
* {
    transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Custom Notification Styles */
.custom-notification {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: none;
    border-radius: 8px;
}

/* Enhanced Modal Styles */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-header {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-body {
    background: #f8f9fa;
}

/* Loading Animation */
.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced Button Animations */
.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn:active {
    transform: translateY(0);
    transition: all 0.1s ease;
}

/* Smooth Page Load */
* {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Enhanced Focus States */
.form-control:focus,
.form-select:focus,
.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(127, 214, 247, 0.3);
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Categories List */
.categories-list {
    margin-bottom: 2rem;
}

.categories-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-btn {
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: white;
    direction: rtl;
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.category-btn.active {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border-color: #007bff;
}

.category-btn i {
    opacity: 0.8;
}

.category-btn .badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

/* Filters Section */
.filters-section {
    border-top: 2px solid #e9ecef;
    padding-top: 1.5rem;
    margin-top: 1rem;
}

/* No Results Message */
.no-results-message {
    display: none;
}

.no-results-message.show {
    display: block;
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
    margin-top: -90px;
}
