* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: #fefefe;
}

.navbar-dark .navbar-nav .nav-link {
    color: #f0f0f0;
    font-weight: 500;
    transition: 0.3s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-item.active .nav-link {
    color: #ff0909;
}

.services-hero {
    background: linear-gradient(135deg, #1a2a3a 0%, #0f1a24 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: white;
}

.filter-section {
    background: #f8f9fa;
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
}

.filter-group {
    background: white;
    padding: 18px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

.filter-group h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2a3a;
    border-left: 4px solid #ff0909;
    padding-left: 12px;
    margin-bottom: 18px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    row-gap: 12px;
}

.filter-btn {
    background: transparent;
    border: 2px solid #ff0909;
    color: #ff0909;
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
    margin: 0 4px 8px 0;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: #ff0909;
    color: #fff;
}

.price-range input,
select {
    padding: 8px 14px;
    border: 1px solid #ccc;
    border-radius: 40px;
    font-size: 0.9rem;
    outline: none;
}

.apply-filters-btn,
.clear-filters-btn {
    border: none;
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.apply-filters-btn {
    background: #ff0909;
    color: white;
}

.apply-filters-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.clear-filters-btn {
    background: #6c757d;
    color: white;
}

.clear-filters-btn:hover {
    background: #495057;
}

.booking-summary-banner {
    background: linear-gradient(90deg, #ff0909 0%, #d62828 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 60px;
    margin-bottom: 20px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.booking-summary-banner i {
    margin-right: 6px;
}

.booking-summary-banner span {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 40px;
}

.active-filters {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-badge {
    background: #ff0909;
    color: white;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-badge .remove-filter {
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

.service-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.service-card:hover .service-img img {
    transform: scale(1.03);
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff0909;
    color: #fff;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.service-content {
    padding: 20px;
    flex: 1;
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-price {
    font-size: 26px;
    font-weight: 800;
    color: #ff0909;
    margin: 8px 0;
}

.service-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #5a6874;
    margin-bottom: 12px;
}

.service-meta i {
    color: #ff0909;
    margin-right: 5px;
}

.btn-detail {
    background: transparent;
    border: 2px solid #ff0909;
    color: #ff0909;
    padding: 8px 0;
    border-radius: 40px;
    font-weight: 600;
    text-align: center;
    transition: 0.3s;
    margin-top: 12px;
    cursor: pointer;
    width: 100%;
}

.btn-detail:hover {
    background: #ff0909;
    color: white;
}

.detail-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

.detail-container {
    background: #fff;
    max-width: 950px;
    width: 90%;
    margin: 30px auto;
    border-radius: 32px;
    position: relative;
    animation: fadeUp 0.3s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-detail {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 36px;
    cursor: pointer;
    color: white;
    background: #ff0909;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 12;
    font-weight: bold;
}

.detail-header {
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 32px 32px 0 0;
    position: relative;
}

.detail-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    padding: 30px;
    color: white;
    border-radius: 0 0 32px 32px;
}

.detail-header-overlay h2 {
    font-size: 2rem;
    font-weight: 700;
}

.detail-body {
    padding: 32px;
}

.detail-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 18px;
    margin: 20px 0;
}

.stat-box {
    background: #f1f5f9;
    border-radius: 20px;
    padding: 12px;
    text-align: center;
}

.stat-box i {
    font-size: 28px;
    color: #ff0909;
}

.booking-btn {
    background: #ff0909;
    color: white;
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* footer {
    background: #1a2a3a;
    color: #ddd;
    padding-top: 45px;
    margin-top: 60px;
}

.footer h3 {
    color: #ff0909;
} */

.copyright {
    background: #0f1a24;
    padding: 15px 0;
    text-align: center;
    margin-top: 35px;
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 32px;
    }

    .filter-options {
        flex-direction: column;
        align-items: stretch;
    }
}