```css
/* =========================================
   A-DARU_RUQYAH
   MAIN STYLE
   ========================================= */


/* =========================================
   RESET
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, Helvetica, sans-serif;

    background: #f7f9f8;

    color: #222;

    line-height: 1.6;
}


/* =========================================
   NAVIGATION
   ========================================= */

.navbar {
    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid #e5e5e5;

    position: sticky;

    top: 0;

    z-index: 1000;
}


.nav-container {
    max-width: 1200px;

    margin: auto;

    padding: 15px 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.logo {
    color: #126b45;

    text-decoration: none;

    font-size: 24px;

    font-weight: bold;

    letter-spacing: 1px;
}


.nav-links {
    display: flex;

    align-items: center;

    gap: 25px;
}


.nav-links a {
    text-decoration: none;

    color: #333;

    font-size: 15px;

    font-weight: 600;

    transition: 0.3s;
}


.nav-links a:hover {
    color: #126b45;
}


/* =========================================
   HERO
   ========================================= */

.hero {
    min-height: 650px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 80px 20px;

    color: white;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)
        ),
        url("../images/images.jpg");

    background-size: cover;

    background-position: center;
}


.hero-content {
    max-width: 800px;
}


.hero-small {
    font-size: 16px;

    font-weight: bold;

    letter-spacing: 3px;

    margin-bottom: 10px;
}


.hero h1 {
    font-size: 60px;

    letter-spacing: 3px;

    margin-bottom: 10px;
}


.hero h2 {
    font-size: 30px;

    margin-bottom: 20px;

    font-weight: normal;
}


.hero p {
    max-width: 700px;

    margin: 0 auto 30px;

    font-size: 18px;
}


/* =========================================
   HERO BUTTONS
   ========================================= */

.hero-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}


.primary-button,
.whatsapp-button,
.secondary-button {
    display: inline-block;

    padding: 13px 25px;

    border-radius: 8px;

    text-decoration: none;

    font-weight: bold;

    transition: 0.3s;

    cursor: pointer;
}


.primary-button {
    background: #126b45;

    color: white;
}


.primary-button:hover {
    background: #0d5235;

    transform: translateY(-2px);
}


.whatsapp-button {
    background: #25d366;

    color: white;
}


.whatsapp-button:hover {
    background: #1da851;

    transform: translateY(-2px);
}


/* =========================================
   GENERAL SECTION
   ========================================= */

.section-container {
    max-width: 1100px;

    margin: auto;

    padding: 0 20px;
}


.intro-section,
.services-preview {
    padding: 80px 20px;
}


.intro-section {
    background: white;

    text-align: center;
}


.intro-section h2,
.services-preview h2 {
    font-size: 36px;

    margin-bottom: 15px;

    color: #126b45;
}


.intro-section > .section-container > p {
    max-width: 750px;

    margin: 0 auto 45px;

    color: #666;
}


/* =========================================
   INTRO CARDS
   ========================================= */

.intro-cards {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


.intro-card {
    padding: 30px 25px;

    background: #f7f9f8;

    border-radius: 12px;

    border: 1px solid #e5e5e5;

    transition: 0.3s;
}


.intro-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08);
}


.card-icon {
    font-size: 40px;

    margin-bottom: 15px;
}


.intro-card h3 {
    margin-bottom: 10px;

    color: #126b45;
}


.intro-card p {
    color: #666;
}


/* =========================================
   SERVICES PREVIEW
   ========================================= */

.services-preview {
    background: #f7f9f8;

    text-align: center;
}


.section-description {
    color: #666;

    margin-bottom: 40px;
}


.service-preview-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
}


.service-box {
    background: white;

    padding: 35px;

    border-radius: 12px;

    border: 1px solid #e5e5e5;

    text-align: left;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.06);
}


.service-box h3 {
    font-size: 26px;

    color: #126b45;

    margin-bottom: 20px;
}


.service-box p {
    margin-bottom: 10px;

    color: #555;
}


.secondary-button {
    margin-top: 15px;

    background: #126b45;

    color: white;
}


.secondary-button:hover {
    background: #0d5235;
}


/* =========================================
   WHATSAPP SECTION
   ========================================= */

.whatsapp-section {
    padding: 70px 20px;

    text-align: center;

    background: #126b45;

    color: white;
}


.whatsapp-section h2 {
    font-size: 32px;

    margin-bottom: 10px;
}


.whatsapp-section p {
    margin-bottom: 25px;

    font-size: 17px;
}


/* =========================================
   FOOTER
   ========================================= */

footer {
    background: #1c1c1c;

    color: white;

    padding: 45px 20px;

    text-align: center;
}


.footer-container {
    max-width: 1000px;

    margin: auto;
}


.footer-container h3 {
    color: #25d366;

    font-size: 24px;

    margin-bottom: 8px;
}


.footer-container > p {
    color: #ccc;

    margin-bottom: 10px;
}


.footer-links {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 20px;

    margin: 25px 0;
}


.footer-links a {
    color: white;

    text-decoration: none;

    transition: 0.3s;
}


.footer-links a:hover {
    color: #25d366;
}


.copyright {
    font-size: 13px;

    color: #888 !important;

    margin-top: 20px;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    .nav-container {
        flex-direction: column;

        gap: 15px;
    }


    .intro-cards {
        grid-template-columns: repeat(2, 1fr);
    }


    .hero h1 {
        font-size: 48px;
    }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .nav-links {
        gap: 12px;

        flex-wrap: wrap;

        justify-content: center;
    }


    .nav-links a {
        font-size: 13px;
    }


    .logo {
        font-size: 20px;
    }


    .hero {
        min-height: 570px;

        padding: 60px 20px;
    }


    .hero h1 {
        font-size: 36px;

        letter-spacing: 1px;
    }


    .hero h2 {
        font-size: 23px;
    }


    .hero p {
        font-size: 16px;
    }


    .intro-section,
    .services-preview {
        padding: 55px 15px;
    }


    .intro-section h2,
    .services-preview h2 {
        font-size: 29px;
    }


    .intro-cards {
        grid-template-columns: 1fr;
    }


    .service-preview-grid {
        grid-template-columns: 1fr;
    }


    .service-box {
        padding: 25px;
    }


    .whatsapp-section h2 {
        font-size: 27px;
    }


    .hero-buttons {
        flex-direction: column;

        align-items: center;
    }


    .primary-button,
    .whatsapp-button {
        width: 220px;
    }

}
/* =========================================
   SERVICES PAGE
   ========================================= */

.page-header {
    min-height: 300px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 60px 20px;

    color: white;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)
        ),
        url("../images/images.jpg");

    background-size: cover;

    background-position: center;
}


.page-header h1 {
    font-size: 48px;

    margin-bottom: 8px;
}


.page-header p {
    font-size: 18px;
}


/* =========================================
   SERVICES SECTION
   ========================================= */

.services-page {
    padding: 70px 20px;

    background: #f7f9f8;
}


.main-service {
    background: white;

    padding: 40px;

    margin-bottom: 40px;

    border-radius: 15px;

    border: 1px solid #e5e5e5;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.06);
}


.service-title {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-bottom: 35px;
}


.service-icon {
    font-size: 45px;
}


.service-title h2 {
    color: #126b45;

    font-size: 32px;

    margin-bottom: 5px;
}


.service-title p {
    color: #666;
}


/* =========================================
   PRICE CARDS
   ========================================= */

.price-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


.price-card {
    position: relative;

    padding: 30px 25px;

    text-align: center;

    border: 1px solid #ddd;

    border-radius: 12px;

    background: #ffffff;

    transition: 0.3s;
}


.price-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.10);
}


.price-card h3 {
    color: #126b45;

    font-size: 23px;

    margin-bottom: 15px;
}


.price {
    font-size: 36px;

    font-weight: bold;

    color: #222;

    margin-bottom: 15px;
}


.price span {
    font-size: 16px;

    font-weight: bold;

    color: #126b45;
}


.price-card p {
    color: #666;

    min-height: 55px;

    margin-bottom: 20px;
}


/* =========================================
   POPULAR CARD
   ========================================= */

.price-card.featured {
    border: 2px solid #126b45;

    transform: scale(1.03);
}


.price-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
}


.popular {
    position: absolute;

    top: -14px;

    left: 50%;

    transform: translateX(-50%);

    padding: 5px 15px;

    border-radius: 20px;

    background: #126b45;

    color: white;

    font-size: 12px;

    font-weight: bold;
}


/* =========================================
   TOOBIN
   ========================================= */

.toobin-service {
    margin-bottom: 0;
}


.toobin-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
}


.toobin-card {
    padding: 35px;

    text-align: center;

    border: 1px solid #ddd;

    border-radius: 12px;

    background: #f8faf9;

    transition: 0.3s;
}


.toobin-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08);
}


.toobin-icon {
    font-size: 50px;

    margin-bottom: 15px;
}


.toobin-card h3 {
    color: #126b45;

    font-size: 25px;

    margin-bottom: 10px;
}


.toobin-card p {
    color: #666;

    margin-bottom: 20px;
}


/* =========================================
   SERVICES MOBILE
   ========================================= */

@media (max-width: 900px) {

    .price-grid {
        grid-template-columns: 1fr;
    }


    .price-card.featured {
        transform: none;
    }


    .price-card.featured:hover {
        transform: translateY(-6px);
    }

}


@media (max-width: 600px) {

    .services-page {
        padding: 50px 15px;
    }


    .main-service {
        padding: 25px 18px;
    }


    .page-header {
        min-height: 240px;
    }


    .page-header h1 {
        font-size: 36px;
    }


    .service-title {
        align-items: flex-start;
    }


    .service-title h2 {
        font-size: 26px;
    }


    .service-icon {
        font-size: 35px;
    }


    .toobin-grid {
        grid-template-columns: 1fr;
    }


    .toobin-card {
        padding: 30px 20px;
    }

}
/* =========================================
   REGISTRATION PAGE
   ========================================= */

.registration-section {
    padding: 70px 20px;

    background: #f7f9f8;

    min-height: 600px;
}


.registration-container {
    max-width: 750px;

    margin: auto;
}


.registration-intro {
    text-align: center;

    margin-bottom: 35px;
}


.registration-intro h2 {
    color: #126b45;

    font-size: 34px;

    margin-bottom: 10px;
}


.registration-intro p {
    color: #666;

    font-size: 16px;
}


/* =========================================
   FORM
   ========================================= */

.registration-form {
    background: white;

    padding: 40px;

    border-radius: 15px;

    border: 1px solid #e5e5e5;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.07);
}


.form-group {
    margin-bottom: 22px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #333;

    font-weight: 600;
}


.form-group input,
.form-group select {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid #d5d5d5;

    border-radius: 8px;

    outline: none;

    background: #fff;

    font-size: 15px;

    transition: 0.3s;
}


.form-group input:focus,
.form-group select:focus {
    border-color: #126b45;

    box-shadow:
        0 0 0 3px rgba(18, 107, 69, 0.10);
}


.form-group input::placeholder {
    color: #aaa;
}


/* =========================================
   PRICE BOX
   ========================================= */

.registration-price {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 18px 20px;

    margin: 10px 0 25px;

    background: #f1f8f4;

    border: 1px solid #cde5d8;

    border-radius: 10px;

    font-size: 18px;
}


.registration-price span {
    color: #555;
}


.registration-price strong {
    color: #126b45;

    font-size: 24px;
}


/* =========================================
   REGISTER BUTTON
   ========================================= */

.register-submit {
    width: 100%;

    padding: 15px;

    border: none;

    border-radius: 8px;

    background: #126b45;

    color: white;

    font-size: 17px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}


.register-submit:hover {
    background: #0d5235;

    transform: translateY(-2px);
}


.register-submit:disabled {
    background: #999;

    cursor: not-allowed;

    transform: none;
}


/* =========================================
   SUCCESS MESSAGE
   ========================================= */

.registration-success {
    background: white;

    padding: 45px 30px;

    border-radius: 15px;

    border: 1px solid #d9eadf;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.07);

    text-align: center;
}


.success-icon {
    width: 70px;

    height: 70px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #126b45;

    color: white;

    font-size: 40px;

    font-weight: bold;
}


.registration-success h2 {
    color: #126b45;

    margin-bottom: 10px;
}


.registration-success p {
    color: #666;

    margin-bottom: 8px;
}


.registration-success .whatsapp-button {
    margin-top: 20px;
}


/* =========================================
   REGISTRATION MOBILE
   ========================================= */

@media (max-width: 600px) {

    .registration-section {
        padding: 50px 15px;
    }


    .registration-form {
        padding: 25px 18px;
    }


    .registration-intro h2 {
        font-size: 28px;
    }


    .registration-price {
        padding: 15px;

        font-size: 16px;
    }


    .registration-price strong {
        font-size: 20px;
    }


    .registration-success {
        padding: 35px 20px;
    }


}
```css
/* =========================================
   A-DARU_RUQYAH
   REGISTRATION PAGE CSS
========================================= */


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f8f7;
    color: #1d2b27;
    line-height: 1.6;
}


a {
    text-decoration: none;
}


button,
input,
select {
    font-family: inherit;
}


/* =========================================
   CONTAINER
========================================= */

.container {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e9e7;
    position: sticky;
    top: 0;
    z-index: 1000;
}


.header-container {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


.logo {
    font-size: 22px;
    font-weight: 800;
    color: #176b55;
    letter-spacing: 0.5px;
}


.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}


.main-nav a {
    color: #33413d;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}


.main-nav a:hover {
    color: #176b55;
}


.main-nav a.active {
    color: #176b55;
}


/* =========================================
   PAGE HERO
========================================= */

.page-hero {
    background: linear-gradient(
        135deg,
        #176b55,
        #0f4f40
    );

    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}


.page-hero h1 {
    font-size: 46px;
    margin-bottom: 12px;
    font-weight: 800;
}


.page-hero p {
    font-size: 18px;
    opacity: 0.92;
}


/* =========================================
   REGISTRATION SECTION
========================================= */

.registration-section {
    padding: 70px 0;
}


.registration-wrapper {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}


/* =========================================
   FORM
========================================= */

.registration-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}


.form-header {
    text-align: center;
    margin-bottom: 30px;
}


.form-header h2 {
    font-size: 30px;
    color: #176b55;
    margin-bottom: 8px;
}


.form-header p {
    color: #69756f;
    font-size: 15px;
}


/* =========================================
   FORM GROUP
========================================= */

.form-group {
    margin-bottom: 22px;
}


.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #263b34;
}


.form-group input,
.form-group select {
    width: 100%;
    height: 52px;
    padding: 0 15px;
    border: 1px solid #d7dfdb;
    border-radius: 10px;
    background: #ffffff;
    color: #263b34;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
}


.form-group input::placeholder {
    color: #9aa59f;
}


.form-group input:focus,
.form-group select:focus {
    border-color: #176b55;
    box-shadow: 0 0 0 3px rgba(23, 107, 85, 0.10);
}


/* =========================================
   PRICE BOX
========================================= */

.price-box {
    margin: 25px 0;
    padding: 18px 20px;
    border-radius: 12px;
    background: #eef8f4;
    border: 1px solid #cde8dc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}


.price-box span {
    font-size: 16px;
    font-weight: 600;
    color: #41534c;
}


.price-box strong {
    color: #176b55;
    font-size: 22px;
    font-weight: 800;
}


/* =========================================
   REGISTER BUTTON
========================================= */

.register-button {
    width: 100%;
    min-height: 54px;
    border: none;
    border-radius: 10px;
    background: #176b55;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}


.register-button:hover {
    background: #0f4f40;
    transform: translateY(-1px);
}


.register-button:active {
    transform: translateY(0);
}


/* =========================================
   WHATSAPP INFO
========================================= */

.whatsapp-info {
    margin-top: 20px;
    text-align: center;
    color: #69756f;
    font-size: 14px;
}


/* =========================================
   SUCCESS MESSAGE
========================================= */

.registration-success {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}


.success-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #176b55;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    font-weight: 800;
}


.registration-success h2 {
    color: #176b55;
    font-size: 30px;
    margin-bottom: 15px;
}


.registration-success p {
    color: #66736d;
    margin-bottom: 10px;
}


.registration-success strong {
    color: #176b55;
}


/* =========================================
   WHATSAPP BUTTON
========================================= */

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: 22px;
    padding: 0 25px;
    border-radius: 10px;
    background: #25d366;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s ease;
}


.whatsapp-button:hover {
    transform: translateY(-2px);
    filter: brightness(0.95);
}


/* =========================================
   BACK HOME BUTTON
========================================= */

.back-home-button {
    display: inline-block;
    margin-top: 18px;
    color: #176b55;
    font-size: 15px;
    font-weight: 700;
}


.back-home-button:hover {
    text-decoration: underline;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: #163d33;
    color: #ffffff;
    text-align: center;
    padding: 45px 20px;
}


.site-footer h3 {
    font-size: 23px;
    margin-bottom: 10px;
}


.site-footer p {
    color: #d5e2dd;
    margin-bottom: 8px;
}


.site-footer .copyright {
    margin-top: 20px;
    font-size: 13px;
    color: #b9cbc4;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .header-container {
        flex-direction: column;
        justify-content: center;
        padding: 18px 0;
    }


    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 18px;
    }


    .main-nav a {
        font-size: 14px;
    }


    .page-hero {
        padding: 60px 20px;
    }


    .page-hero h1 {
        font-size: 34px;
    }


    .page-hero p {
        font-size: 16px;
    }


    .registration-section {
        padding: 45px 0;
    }


    .registration-form {
        padding: 28px 20px;
    }


    .form-header h2 {
        font-size: 26px;
    }


    .price-box {
        flex-direction: column;
        text-align: center;
    }


    .registration-success {
        padding: 35px 20px;
    }


    .registration-success h2 {
        font-size: 25px;
    }


    .whatsapp-button {
        width: 100%;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .container {
        width: 92%;
    }


    .logo {
        font-size: 19px;
    }


    .main-nav {
        gap: 9px 13px;
    }


    .main-nav a {
        font-size: 13px;
    }


    .page-hero h1 {
        font-size: 29px;
    }


    .registration-form {
        padding: 24px 16px;
        border-radius: 14px;
    }


    .form-group input,
    .form-group select {
        height: 50px;
    }


    .register-button {
        min-height: 52px;
    }

}
```css
/* =========================================
   A-DARU_RUQYAH
   ADMIN DASHBOARD CSS
========================================= */


/* =========================================
   ADMIN SECTION
========================================= */

.admin-section {
    padding: 60px 20px;
    background: #f5f7fb;
    min-height: 70vh;
}


/* =========================================
   ADMIN HEADER
========================================= */

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.admin-header h2 {
    margin: 0 0 8px;
    font-size: 30px;
    color: #1f2937;
}

.admin-header p {
    margin: 0;
    color: #6b7280;
}


/* =========================================
   REFRESH BUTTON
========================================= */

.refresh-button {
    border: none;
    background: #0f766e;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

.refresh-button:hover {
    background: #115e59;
}


/* =========================================
   STATISTICS
========================================= */

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}


.stat-card {
    background: white;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}


.stat-card span {
    font-size: 28px;
}


.stat-card h3 {
    margin: 12px 0 5px;
    font-size: 28px;
    color: #0f766e;
}


.stat-card p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}


/* =========================================
   ADMIN TOOLS
========================================= */

.admin-tools {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}


.admin-tools input,
.admin-tools select {
    height: 45px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 15px;
    outline: none;
    background: white;
}


.admin-tools input {
    flex: 1;
}


.admin-tools select {
    min-width: 220px;
}


.admin-tools input:focus,
.admin-tools select:focus {
    border-color: #0f766e;
}


/* =========================================
   TABLE WRAPPER
========================================= */

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    background: white;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}


/* =========================================
   TABLE
========================================= */

.registrations-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1100px;
}


.registrations-table thead {
    background: #0f766e;
    color: white;
}


.registrations-table th {
    padding: 15px 12px;
    text-align: left;
    font-size: 14px;
    white-space: nowrap;
}


.registrations-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
    font-size: 14px;
}


.registrations-table tbody tr:hover {
    background: #f9fafb;
}


/* =========================================
   SERVICE BADGE
========================================= */

.service-badge {
    display: inline-block;
    background: #ecfdf5;
    color: #047857;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================
   WHATSAPP BUTTON
========================================= */

.admin-whatsapp {
    display: inline-block;
    background: #16a34a;
    color: white;
    text-decoration: none;
    padding: 7px 11px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 600;
}


.admin-whatsapp:hover {
    background: #15803d;
}


/* =========================================
   DELETE BUTTON
========================================= */

.delete-button {
    border: none;
    background: #dc2626;
    color: white;
    padding: 7px 11px;
    border-radius: 7px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
}


.delete-button:hover {
    background: #b91c1c;
}


/* =========================================
   LOADING
========================================= */

.loading-message {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    color: #0f766e;
    font-weight: 600;
}


/* =========================================
   EMPTY MESSAGE
========================================= */

.empty-message {
    text-align: center;
    background: white;
    padding: 50px 20px;
    border-radius: 14px;
    margin-bottom: 20px;
}


.empty-message h3 {
    margin-bottom: 10px;
    color: #374151;
}


.empty-message p {
    color: #6b7280;
}


/* =========================================
   PAGE HERO
========================================= */

.page-hero {
    background: linear-gradient(
        135deg,
        #0f766e,
        #115e59
    );

    color: white;
    padding: 70px 20px;
    text-align: center;
}


.page-hero h1 {
    margin: 0 0 10px;
    font-size: 42px;
}


.page-hero p {
    margin: 0;
    font-size: 18px;
    opacity: 0.9;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .admin-section {
        padding: 40px 12px;
    }


    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }


    .admin-header h2 {
        font-size: 25px;
    }


    .admin-stats {
        grid-template-columns: 1fr;
    }


    .admin-tools {
        flex-direction: column;
    }


    .admin-tools select {
        width: 100%;
    }


    .admin-tools input {
        width: 100%;
        box-sizing: border-box;
    }


    .page-hero {
        padding: 50px 20px;
    }


    .page-hero h1 {
        font-size: 32px;
    }

}
```
/* ========================================
   ABOUT US
======================================== */

.about-hero,
.contact-hero {

    padding: 90px 20px;

    text-align: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)
        ),
        linear-gradient(
            135deg,
            #0b6b63,
            #084c47
        );

    color: #ffffff;
}


.about-hero h1,
.contact-hero h1 {

    margin: 0 0 15px;

    font-size: 42px;

    font-weight: 800;
}


.about-hero p,
.contact-hero p {

    max-width: 750px;

    margin: 0 auto;

    font-size: 18px;

    line-height: 1.8;

    opacity: 0.95;
}


/* ========================================
   ABOUT SECTION
======================================== */

.about-section {

    padding: 80px 20px;

    background: #ffffff;
}


.about-content {

    display: grid;

    grid-template-columns:
        minmax(0, 2fr)
        minmax(280px, 1fr);

    gap: 50px;

    align-items: center;
}


.section-label {

    display: inline-block;

    margin-bottom: 12px;

    color: #0b6b63;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1px;
}


.about-text h2,
.contact-info h2 {

    margin: 0 0 20px;

    font-size: 34px;

    line-height: 1.25;

    color: #163b38;
}


.about-text p,
.contact-info > p {

    margin-bottom: 18px;

    color: #555555;

    font-size: 16px;

    line-height: 1.8;
}


/* ========================================
   ABOUT CARD
======================================== */

.about-card {

    padding: 40px 30px;

    text-align: center;

    background: #f4fbfa;

    border: 1px solid #dcefed;

    border-radius: 18px;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.08);
}


.about-icon {

    width: 80px;

    height: 80px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #0b6b63;

    color: #ffffff;

    font-size: 36px;
}


.about-card h3 {

    margin-bottom: 12px;

    color: #163b38;

    font-size: 22px;
}


.about-card p {

    margin: 0;

    color: #666666;

    line-height: 1.7;
}


/* ========================================
   MISSION
======================================== */

.mission-section {

    padding: 80px 20px;

    background: #f7faf9;
}


.section-heading {

    margin-bottom: 45px;

    text-align: center;
}


.section-heading h2 {

    margin: 0 0 15px;

    color: #163b38;

    font-size: 34px;
}


.section-heading p {

    max-width: 700px;

    margin: 0 auto;

    color: #666666;

    line-height: 1.7;
}


.mission-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.mission-card {

    padding: 35px 25px;

    text-align: center;

    background: #ffffff;

    border-radius: 16px;

    border: 1px solid #e5eeee;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.mission-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.08);
}


.mission-icon {

    font-size: 38px;

    margin-bottom: 15px;
}


.mission-card h3 {

    margin-bottom: 12px;

    color: #163b38;

    font-size: 21px;
}


.mission-card p {

    margin: 0;

    color: #666666;

    line-height: 1.7;
}


/* ========================================
   ABOUT SERVICES
======================================== */

.about-services {

    padding: 80px 20px;

    background: #ffffff;
}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.service-card {

    padding: 35px 25px;

    text-align: center;

    border-radius: 16px;

    border: 1px solid #e5eeee;

    background: #ffffff;

    box-shadow:
        0 8px 25px
        rgba(0, 0, 0, 0.05);

    transition:
        transform 0.3s ease;
}


.service-card:hover {

    transform:
        translateY(-5px);
}


.service-icon {

    font-size: 38px;

    margin-bottom: 15px;
}


.service-card h3 {

    margin-bottom: 12px;

    color: #163b38;
}


.service-card p {

    margin: 0;

    color: #666666;

    line-height: 1.7;
}


/* ========================================
   ABOUT / CONTACT CTA
======================================== */

.about-cta,
.contact-cta {

    padding: 70px 20px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #0b6b63,
            #084c47
        );

    color: #ffffff;
}


.about-cta h2,
.contact-cta h2 {

    margin: 0 0 15px;

    font-size: 32px;
}


.about-cta p,
.contact-cta p {

    margin: 0 auto 25px;

    max-width: 650px;

    line-height: 1.7;

    opacity: 0.95;
}


.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}


.primary-button,
.secondary-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding:
        12px 24px;

    border-radius: 8px;

    text-decoration: none;

    font-weight: 700;

    cursor: pointer;

    transition:
        all 0.3s ease;
}


.primary-button {

    border: none;

    background: #0b6b63;

    color: #ffffff;
}


.primary-button:hover {

    background: #084c47;

    transform:
        translateY(-2px);
}


.secondary-button {

    border: 2px solid #ffffff;

    background: transparent;

    color: #ffffff;
}


.secondary-button:hover {

    background: #ffffff;

    color: #0b6b63;
}


/* ========================================
   CONTACT SECTION
======================================== */

.contact-section {

    padding: 80px 20px;

    background: #f7faf9;
}


.contact-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 50px;

    align-items: start;
}


/* ========================================
   CONTACT INFO
======================================== */

.contact-info {

    padding: 10px 0;
}


.contact-item {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 25px;

    padding: 20px;

    background: #ffffff;

    border-radius: 12px;

    border: 1px solid #e5eeee;

    box-shadow:
        0 5px 18px
        rgba(0, 0, 0, 0.04);
}


.contact-icon {

    width: 52px;

    height: 52px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e9f6f4;

    font-size: 24px;
}


.contact-item h3 {

    margin: 0 0 5px;

    color: #163b38;

    font-size: 17px;
}


.contact-item a {

    color: #0b6b63;

    text-decoration: none;

    font-weight: 600;
}


.contact-item a:hover {

    text-decoration: underline;
}


.contact-item p {

    margin: 0;

    color: #666666;
}


/* ========================================
   CONTACT FORM
======================================== */

.contact-form-card {

    padding: 35px;

    background: #ffffff;

    border-radius: 18px;

    border: 1px solid #e5eeee;

    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, 0.07);
}


.contact-form-card h2 {

    margin: 0 0 10px;

    color: #163b38;

    font-size: 28px;
}


.contact-form-card > p {

    margin-bottom: 25px;

    color: #666666;

    line-height: 1.6;
}


.form-group {

    margin-bottom: 20px;
}


.form-group label {

    display: block;

    margin-bottom: 8px;

    color: #263d3a;

    font-weight: 700;
}


.form-group input,
.form-group textarea {

    width: 100%;

    box-sizing: border-box;

    padding: 13px 15px;

    border: 1px solid #d8e2e0;

    border-radius: 8px;

    background: #ffffff;

    color: #222222;

    font-family: inherit;

    font-size: 15px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.form-group input:focus,
.form-group textarea:focus {

    border-color: #0b6b63;

    box-shadow:
        0 0 0 3px
        rgba(11, 107, 99, 0.10);
}


.form-group textarea {

    resize: vertical;

    min-height: 130px;
}


.contact-form-card
.primary-button {

    width: 100%;
}


/* ========================================
   CONTACT STATUS
======================================== */

.contact-status {

    margin-top: 15px;

    padding: 12px;

    border-radius: 8px;

    text-align: center;

    font-weight: 600;
}


.contact-status.success {

    background: #e8f7ef;

    color: #176b3a;

    border: 1px solid #bfe5ce;
}


/* ========================================
   ACTIVE NAVIGATION
======================================== */

.main-nav a.active {

    color: #0b6b63;

    font-weight: 800;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 900px) {

    .about-content {

        grid-template-columns: 1fr;

    }


    .mission-grid,
    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .contact-grid {

        grid-template-columns: 1fr;

    }

}


@media (max-width: 650px) {

    .about-hero,
    .contact-hero {

        padding: 65px 20px;

    }


    .about-hero h1,
    .contact-hero h1 {

        font-size: 32px;

    }


    .about-text h2,
    .contact-info h2,
    .section-heading h2 {

        font-size: 28px;

    }


    .mission-grid,
    .services-grid {

        grid-template-columns: 1fr;

    }


    .contact-form-card {

        padding: 25px 20px;

    }


    .contact-item {

        align-items: flex-start;

    }


    .cta-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .primary-button,
    .secondary-button {

        width: 100%;

        box-sizing: border-box;

    }

}
/* ========================================
   ADMIN LOGOUT BUTTON
======================================== */

#adminLogoutButton {

    padding: 10px 18px;

    border: none;

    border-radius: 8px;

    background: #dc2626;

    color: #ffffff;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;

    box-shadow:
        0 4px 10px
        rgba(220, 38, 38, 0.20);

}


#adminLogoutButton:hover {

    background: #b91c1c;

    transform: translateY(-1px);

    box-shadow:
        0 6px 14px
        rgba(220, 38, 38, 0.30);

}


#adminLogoutButton:active {

    transform: translateY(0);

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {

    #adminLogoutButton {

        padding: 9px 14px;

        font-size: 13px;

    }

}
/* ========================================
   CONTACT MESSAGES - ADMIN
======================================== */

.contact-messages-section {
    width: 100%;
    margin-top: 30px;
}


/* TABLE CONTAINER */

.contact-table-container {
    width: 100%;
    overflow-x: auto;

    background: #ffffff;

    border-radius: 12px;

    box-shadow:
        0 4px 15px
        rgba(0, 0, 0, 0.08);

    border: 1px solid #e5e7eb;
}


/* CONTACT TABLE */

.contact-table {
    width: 100%;
    min-width: 1000px;

    border-collapse: collapse;
}


/* HEADER */

.contact-table thead {
    background: #f3f4f6;
}


.contact-table th {
    padding: 14px 16px;

    text-align: left;

    font-size: 14px;

    font-weight: 700;

    color: #1f2937;

    border-bottom: 2px solid #e5e7eb;

    white-space: nowrap;
}


/* BODY */

.contact-table td {
    padding: 14px 16px;

    font-size: 14px;

    color: #374151;

    border-bottom: 1px solid #e5e7eb;

    vertical-align: middle;
}


/* ROW HOVER */

.contact-table tbody tr:hover {
    background: #f9fafb;
}


/* MESSAGE */

.admin-message {
    max-width: 300px;

    line-height: 1.5;

    white-space: normal;

    word-break: break-word;
}


/* WHATSAPP */

.admin-whatsapp {
    display: inline-block;

    padding: 8px 12px;

    background: #25D366;

    color: #ffffff;

    text-decoration: none;

    border-radius: 7px;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s ease;
}


.admin-whatsapp:hover {
    background: #1da851;

    transform: translateY(-1px);
}


/* DELETE */

.contact-table .delete-button {
    padding: 8px 12px;

    border: none;

    border-radius: 7px;

    background: #dc2626;

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;
}


.contact-table .delete-button:hover {
    background: #b91c1c;

    transform: translateY(-1px);
}


/* LOADING */

#contactLoadingMessage {
    padding: 20px;

    text-align: center;

    color: #6b7280;

    font-size: 14px;
}


/* EMPTY */

#contactEmptyMessage {
    padding: 20px;

    text-align: center;

    color: #6b7280;

    background: #f9fafb;

    border-radius: 8px;
}


/* MOBILE */

@media (max-width: 768px) {

    .contact-messages-section {
        margin-top: 20px;
    }

    .contact-table-container {
        border-radius: 8px;
    }

    .contact-table {
        min-width: 900px;
    }

    .contact-table th,
    .contact-table td {
        padding: 10px 12px;
    }

    .admin-message {
        max-width: 220px;
    }

}
/* ========================================
   CONTACT MESSAGES TABLE
======================================== */

.contact-messages-section {
    width: 100%;
    margin-top: 35px;
}

.contact-messages-section h2 {
    margin-bottom: 18px;
    font-size: 22px;
}


/* TABLE BOX */

.contact-table-container {
    width: 100%;
    overflow-x: auto;

    background: #ffffff;

    border: 1px solid #d1d5db;

    border-radius: 10px;
}


/* TABLE */

.contact-table {
    width: 100%;
    min-width: 1000px;

    border-collapse: collapse;

    border: 1px solid #d1d5db;
}


/* COLUMN HEADERS */

.contact-table th {
    padding: 14px;

    background: #f3f4f6;

    color: #111827;

    font-weight: 700;

    text-align: left;

    border: 1px solid #d1d5db;
}


/* ROWS + CELLS */

.contact-table td {
    padding: 14px;

    color: #374151;

    border: 1px solid #d1d5db;

    vertical-align: middle;
}


/* ROW HOVER */

.contact-table tbody tr:hover {
    background: #f9fafb;
}


/* MESSAGE COLUMN */

.contact-table .admin-message {
    max-width: 300px;

    white-space: normal;

    word-break: break-word;

    line-height: 1.5;
}


/* STATUS */

.contact-status {
    padding: 15px;

    text-align: center;

    color: #6b7280;
}
/* ========================================
   MOBILE RESPONSIVE DESIGN
   A-DARU_RUQYAH
======================================== */

@media (max-width: 768px) {

    html {
        font-size: 15px;
    }

    body {
        width: 100%;
        overflow-x: hidden;
    }

    /* CONTAINER */

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        margin: 0 auto;
    }

    /* HEADER */

    header {
        width: 100%;
    }

    nav {
        flex-wrap: wrap;
    }

    /* IMAGES */

    img {
        max-width: 100%;
        height: auto;
    }

    /* BUTTONS */

    button,
    .btn,
    a {
        max-width: 100%;
    }

    /* FORMS */

    input,
    select,
    textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        font-size: 16px;
    }

    /* TABLE */

    .table-container {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    table {
        min-width: 900px;
    }

    /* DASHBOARD */

    .dashboard-container {
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }

    /* STATISTICS */

    .stats-container,
    .statistics,
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* CARDS */

    .card,
    .room-card,
    .service-card {
        width: 100%;
        box-sizing: border-box;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {

    html {
        font-size: 14px;
    }

    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 23px;
    }

    h3 {
        font-size: 20px;
    }

    /* STATISTICS */

    .stats-container,
    .statistics,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* BUTTONS */

    button,
    .btn {
        width: 100%;
        min-height: 44px;
    }

    /* FORM */

    input,
    select,
    textarea {
        min-height: 44px;
    }

}
/* ========================================
   MOBILE FORMS
   A-DARU_RUQYAH
======================================== */

@media (max-width: 768px) {

    /* FORM CONTAINER */

    .form-container,
    .registration-container,
    .contact-container {
        width: 100%;
        max-width: 100%;
        padding: 15px;
        margin: 0 auto;
        box-sizing: border-box;
    }


    /* FORM */

    form {
        width: 100%;
        box-sizing: border-box;
    }


    /* FORM GROUP */

    .form-group {
        width: 100%;
        margin-bottom: 15px;
    }


    /* LABEL */

    .form-group label {
        display: block;
        width: 100%;
        margin-bottom: 7px;
        font-size: 15px;
        font-weight: 600;
    }


    /* INPUTS */

    .form-group input,
    .form-group select,
    .form-group textarea,

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="date"],
    select,
    textarea {

        width: 100%;
        max-width: 100%;
        min-height: 46px;

        padding: 12px;

        font-size: 16px;

        box-sizing: border-box;

        border-radius: 8px;
    }


    /* TEXTAREA */

    textarea {
        min-height: 130px;
        resize: vertical;
    }


    /* TWO COLUMNS → ONE COLUMN */

    .form-row {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0;
    }


    .form-row > * {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }


    /* SUBMIT BUTTON */

    form button[type="submit"],
    .submit-button {

        width: 100%;

        min-height: 48px;

        margin-top: 10px;

        font-size: 16px;

        border-radius: 8px;

        cursor: pointer;
    }


    /* CONTACT MESSAGE */

    .contact-message,
    .form-message {

        width: 100%;

        box-sizing: border-box;

        word-wrap: break-word;

        overflow-wrap: break-word;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {

    .form-container,
    .registration-container,
    .contact-container {

        padding: 12px;
    }


    .form-group label {
        font-size: 14px;
    }


    input,
    select,
    textarea {

        font-size: 16px !important;
    }


    form button[type="submit"],
    .submit-button {

        min-height: 50px;

        font-size: 16px;
    }

}
