:root {
    --primary-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --primary-background: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    --header-background: linear-gradient(135deg, #c1c3c5 0%, #e1ecff 100%);
    --text-color: #000;
    --box-shadow-color: rgba(0,0,0,0.85);
    --text-secondary-color: white;
    --nav-hover-color: linear-gradient(to left, #8e9eab, #eef2f3);

    --heading-font: "Cinzel", serif;
    --body-font: "DM Mono", monospace;
    --nav-head-font: "Lexend Zetta", sans-serif;
    --head-font: "Bungee Shade", sans-serif;
}

/* ===== BASE ===== */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    overflow-x: hidden;
}

.header {
    position: fixed;
    top: 0;
    z-index: 1000;
}

.serviceBody {
    background: var(--primary-background);
    color: var(--text-color);
    font-family: var(--body-font);
}

/* ===== SLIDER SECTION ===== */
.servicesSlider {
    margin-top: 5rem;   /* prevents navbar overlap */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.servicesSlider h1 {
    font-family: var(--heading-font);
    font-size: 2rem;
    text-align: center;
}
.servicesSlider p {
    max-width: 900px;
    text-align: center;
    line-height: 1.7;
    font-size: 1.14rem;
}

/* ===== SLIDES ===== */
.slide-track {
    position: relative;
    width: 90%;
    max-width: 900px;
    min-height: 500px;
    margin-top: 2rem;
}

.slide {
    display: none;
    background: var(--primary-gradient);
    border-radius: 2rem;
    padding: 1rem;
    box-shadow: 0 0 12px rgba(0,0,0,0.25);
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 2rem;
}

.slideTitle {
    text-align: center;
    padding: 1rem;
}

.slideTitle h5 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--head-font);
}

.slideTitle p {
    line-height: 1.6;
}

/* ===== NAV BUTTONS ===== */
.navigationBtn {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: gray;
    cursor: pointer;
}

.btn.active {
    background: black;
}

/* ===== SERVICES LIST ===== */
.services-list {
    margin: 2rem auto;
    width: 92%;
    max-width: 1100px;
}

.services-title {
    text-align: center;
    font-family: var(--heading-font);
    font-size: 2rem;
}

.services-list h5 {
    background: var(--primary-gradient);
    padding: 1.5rem;
    border-radius: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    font-size: 1.5rem;
    line-height: 1.8;
}

.services-list ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.services-list li {
    margin-bottom: 0.75rem;
    font-size: 1.14rem;
}

/* ===== CTA SECTIONS ===== */
.book-appointment,
.chat-us,
.make-call {
    margin: 2rem auto;
    width: 90%;
    max-width: 900px;
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: 2rem;
    text-align: center;
    transition: 0.3s;
}

.book-appointment:hover,
.chat-us:hover,
.make-call:hover {
    box-shadow: 0 0 18px var(--box-shadow-color);
}

.book-appointment h3,
.chat-us h3,
.make-call h3 {
    font-family: var(--heading-font);
}

.appointment-link,
.chat-link,
.call-link {
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
    color: black;
    padding: 12px 20px;
    border-radius: 999px;
    background: #d8e4ff;
    font-weight: bold;
    transition: 0.3s;
}

.appointment-link:hover,
.chat-link:hover,
.call-link:hover {
    background: #b7cbf6;
}

/* ===== WHATSAPP FLOAT ===== */
.waBook {
    position: fixed;
    right: 2%;
    bottom: 2%;
    z-index: 999;
}

.WaChat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    text-decoration: none;
}

.waLogo {
    display: block;
    width: 35px;
    height: auto;
}

.WaChat span {
    background-color: #00da54;
    border: 2px solid #ffffff;
    font-size: .875rem;
    padding-left: 4px;
    padding-right: 4px;
    border-radius: 1rem;
    font-family: "Reem Kufi Fun", sans-serif;
    color: white;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .servicesSlider h1,
    .services-title {
        font-size: 1.4rem;
    }

    .slide-track {
        min-height: auto;
    }

    .slide img {
        height: 220px;
    }

    .slideTitle h5 {
        font-size: 1.1rem;
    }

    .services-list h5 {
        font-size: 1.2rem;
    }

    .book-appointment,
    .chat-us,
    .make-call {
        width: 95%;
        padding: 1.5rem;
    }
}