/* Services Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Armata", sans-serif;
    background-color: #000000;
    color: #fff;
}

/* Hero Section - Removing background image */
.services-hero {
    height: 250px;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.services-hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.services-hero h1 {
    font-size: 48px;
    color: #7154c5;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-hero p {
    font-size: 20px;
    color: #b7b1b1;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-category {
    margin-bottom: 80px;
}

.service-category h2 {
    font-size: 36px;
    color: #7154c5;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-category h2 i {
    font-size: 30px;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: rgba(113, 84, 197, 0.1);
    border-radius: 10px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #7154c5;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-item h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
}

.service-item p {
    color: #b7b1b1;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-item ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-item ul li {
    color: #b7b1b1;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.service-item ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #7154c5;
    position: absolute;
    left: 0;
}

.service-btn {
    display: inline-block;
    background-color: #7154c5;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    margin-top: auto;
}

.service-btn:hover {
    background-color: #5a43a0;
    transform: translateY(-3px);
}

/* CTA Section - Removing background image */
.booking-cta {
    padding: 80px 20px;
    background-color: #111111;
    text-align: center;
}

.booking-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.booking-cta h2 {
    font-size: 36px;
    color: #7154c5;
    margin-bottom: 20px;
}

.booking-cta p {
    font-size: 18px;
    color: #b7b1b1;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    background-color: #7154c5;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
    background-color: #5a43a0;
    transform: translateY(-3px);
}

/* Back Button */
#mbcbtn {
    position: fixed;
    bottom: 40px;
    left: 40px;
    background-color: #7154c5;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#mbcbtn::before {
    content: '\f060';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
}

#mbcbtn:hover {
    background-color: #5a43a0;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .services-hero {
        height: 250px;
    }

    .services-hero h1 {
        font-size: 36px;
    }

    .services-hero p {
        font-size: 18px;
    }

    .services-section {
        padding: 50px 20px;
    }

    .service-category h2 {
        font-size: 30px;
    }

    .service-items {
        grid-template-columns: 1fr;
    }

    .booking-cta h2 {
        font-size: 30px;
    }

    #mbcbtn {
        bottom: 20px;
        left: 20px;
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        height: 200px;
    }

    .services-hero h1 {
        font-size: 28px;
    }

    .services-hero p {
        font-size: 16px;
    }

    .service-category h2 {
        font-size: 24px;
    }

    .service-item {
        padding: 20px;
    }

    .service-item h3 {
        font-size: 20px;
    }

    .booking-cta {
        padding: 50px 20px;
    }

    .booking-cta h2 {
        font-size: 24px;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 16px;
    }

    #mbcbtn {
        bottom: 15px;
        left: 15px;
        padding: 8px 14px;
        font-size: 12px;
    }
}