:root {
    --primary: #7c3aed;
    --secondary: #ec4899;
    --pink: #fce7f3;
    --purple: #ede9fe;
    --yellow: #fef3c7;
    --dark: #312e81;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background: #fff;
}

.navbar-brand {
    font-size: 1.5rem;
}

.hero-section {
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 80px 0;

    background:
        radial-gradient(
            circle at 80% 20%,
            #fbcfe8 0,
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #ede9fe,
            #fdf2f8,
            #fff7ed
        );
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #312e81;
    line-height: 1.1;
}

.hero-section h1 span {
    color: #ec4899;
}

.hero-section p {
    max-width: 650px;
    margin: 25px 0;
}

.hero-card {
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(10px);
    padding: 50px 30px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(124,58,237,.15);
}

.massage-icon {
    font-size: 7rem;
    margin-bottom: 20px;
}

.services-section {
    padding: 90px 0;
    background: #fff;
}

.section-label {
    color: #ec4899;
    font-weight: bold;
    letter-spacing: 2px;
}

.services-section h2 {
    font-size: 2.7rem;
    font-weight: 800;
    color: #312e81;
}

.service-card {
    height: 100%;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid #f1f1f1;
    box-shadow: 0 12px 35px rgba(0,0,0,.07);
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(124,58,237,.18);
}

.service-image {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;

    background:
        linear-gradient(
            135deg,
            #ede9fe,
            #fce7f3
        );
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: #312e81;
    font-weight: 700;
}

.service-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.service-info strong {
    font-size: 1.4rem;
    color: #ec4899;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        #7c3aed,
        #ec4899
    );

    border: none;
}

.btn-primary:hover {
    background: linear-gradient(
        135deg,
        #6d28d9,
        #db2777
    );
}

.why-section {
    padding: 80px 0;
    background: linear-gradient(
        135deg,
        #fdf2f8,
        #ede9fe
    );
}

.feature-box {
    padding: 30px;
}

.feature-box > div {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-box h4 {
    color: #312e81;
    font-weight: 700;
}

.footer {
    padding: 50px 0;
    color: white;
    background: #312e81;
}

.footer h4 {
    color: white;
}

@media (max-width: 768px) {

    .hero-section {
        text-align: center;
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 2.7rem;
    }

    .hero-card {
        margin-top: 40px;
    }

    .services-section h2 {
        font-size: 2rem;
    }
}

.booking-section {
    min-height: 750px;
    padding: 80px 0;

    background:
        radial-gradient(
            circle at 10% 20%,
            #fbcfe8,
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #f5f3ff,
            #fff1f2,
            #fff7ed
        );
}

.booking-card {
    background: rgba(255,255,255,.96);
    border-radius: 30px;
    padding: 45px;
    box-shadow: 0 20px 60px rgba(0,0,0,.10);
}

.booking-card h1 {
    color: #312e81;
    font-weight: 800;
}

.form-label {
    font-weight: 600;
    color: #312e81;
}

.form-control,
.form-select {
    border-radius: 12px;
    border: 1px solid #ddd6fe;
    padding: 13px 16px;
}

.form-control:focus,
.form-select:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 .2rem rgba(124,58,237,.12);
}

@media (max-width: 768px) {

    .booking-section {
        padding: 40px 15px;
    }

    .booking-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

}

/* =========================================
   ADMIN PANEL
========================================= */

.admin-body {
    background: #f5f3ff;
}

.admin-navbar {
    background: linear-gradient(
        135deg,
        #4c1d95,
        #be185d
    );
}

.admin-sidebar {
    background: white;
    border-radius: 18px;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
}

.admin-sidebar a {
    display: block;
    padding: 13px 15px;
    margin-bottom: 5px;

    color: #4b5563;
    text-decoration: none;

    border-radius: 10px;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    color: white;

    background: linear-gradient(
        135deg,
        #7c3aed,
        #ec4899
    );
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 25px;

    background: white;
    border-radius: 20px;

    box-shadow: 0 8px 25px rgba(0,0,0,.06);
}

.stat-card span {
    display: block;
    color: #6b7280;
    font-size: 14px;
}

.stat-card strong {
    display: block;
    margin-top: 5px;

    font-size: 30px;
    color: #312e81;
}

.stat-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    font-size: 25px;
}

.stat-card.purple .stat-icon {
    background: #ede9fe;
}

.stat-card.pink .stat-icon {
    background: #fce7f3;
}

.stat-card.orange .stat-icon {
    background: #ffedd5;
}

.stat-card.green .stat-icon {
    background: #dcfce7;
}

.admin-card {
    background: white;
    padding: 25px;

    border-radius: 20px;

    box-shadow: 0 8px 25px rgba(0,0,0,.06);
}

.status-badge {
    display: inline-block;

    padding: 6px 12px;

    border-radius: 50px;

    font-size: 12px;
    font-weight: 700;
}

.status-pending {
    color: #92400e;
    background: #fef3c7;
}

.status-confirmed {
    color: #166534;
    background: #dcfce7;
}

.status-completed {
    color: #1e40af;
    background: #dbeafe;
}

.status-cancelled {
    color: #991b1b;
    background: #fee2e2;
}

.admin-login {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background:
        linear-gradient(
            135deg,
            #ede9fe,
            #fce7f3,
            #fff7ed
        );
}

.admin-login-card {
    width: 100%;
    max-width: 430px;

    padding: 40px;

    background: white;

    border-radius: 25px;

    box-shadow:
        0 25px 70px rgba(0,0,0,.12);
}

.admin-logo {
    font-size: 4rem;
}

.admin-login-card h2 {
    color: #312e81;
    font-weight: 800;
}

@media (max-width: 991px) {

    .admin-sidebar {
        margin-bottom: 20px;
    }

    .admin-sidebar a {
        display: inline-block;
        margin-right: 5px;
    }

}

.service-admin-card {
    height: 100%;

    padding: 22px;

    background: #fafafa;

    border: 1px solid #eee;

    border-radius: 18px;
}

.service-admin-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;

    border-radius: 15px;

    font-size: 30px;

    background: linear-gradient(
        135deg,
        #ede9fe,
        #fce7f3
    );
}

.service-admin-card h4 {
    color: #312e81;
    font-weight: 700;
}

.text-pink {
    color: #ec4899;
}

.time-slot-card {
    padding: 25px;

    text-align: center;

    background: #fff;

    border: 1px solid #eee;

    border-radius: 18px;

    box-shadow: 0 5px 20px rgba(0,0,0,.04);
}

.time-slot-icon {
    font-size: 35px;
    margin-bottom: 10px;
}

.time-slot-card h4 {
    color: #312e81;
    font-weight: 800;
}

