/*==================================================
        EVENTSPHERE - COMMON STYLESHEET
===================================================*/

/*==========================
        GOOGLE FONT
===========================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==========================
          RESET
===========================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.4s, color 0.4s;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: 'Poppins', sans-serif;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

section {
    padding: 80px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 40px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: auto;
}

/*==========================
        BUTTONS
===========================*/

.btn {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    transition: 0.3s;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #084fc7;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    margin-left: 15px;
}

.btn-outline:hover {
    background: #fff;
    color: #0d6efd;
}

/*==========================
          HEADER
===========================*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    z-index: 999;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text h2 {
    color: #0d6efd;
    font-size: 28px;
}

.logo-text span {
    color: #777;
    font-size: 13px;
}

.navbar {
    display: flex;
    gap: 28px;
}

.navbar a {
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: #0d6efd;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

#themeBtn,
.menu-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: #0d6efd;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

#themeBtn:hover,
.menu-btn:hover {
    transform: rotate(15deg);
}

.menu-btn {
    display: none;
}

/*==========================
        HERO SLIDER
===========================*/

.hero {
    margin-top: 95px;
    padding: 0;
}

.slider {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide.active {
    display: block;
    animation: fade 1s;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 80%;
}

.slide-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    font-size: 24px;
    transition: 0.3s;
    z-index: 20;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover,
.next:hover {
    background: #0d6efd;
    color: #fff;
}

/*==========================
        SLIDER DOTS
===========================*/

.dots {
    position: absolute;
    bottom: 25px;
    width: 100%;
    text-align: center;
    z-index: 50;
}

.dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 6px;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #0d6efd;
}

/*==========================
        ANIMATION
===========================*/

@keyframes fade {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 1;
    }
}

@keyframes popup {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/*==================================================
        WELCOME SECTION
==================================================*/

.welcome {
    background: #f8f9fa;
    text-align: center;
}

.welcome h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.welcome h2 span {
    color: #0d6efd;
}

.welcome p {
    max-width: 900px;
    margin: auto;
    color: #666;
    font-size: 18px;
    line-height: 1.9;
}

/*==================================================
        WHY CHOOSE US
==================================================*/

.why-us {
    background: #fff;
}

.why-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.why-box {
    background: #fff;
    text-align: center;
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid transparent;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
}

.why-box:hover {
    transform: translateY(-10px);
    border-color: #0d6efd;
}

.why-box i {
    font-size: 45px;
    color: #0d6efd;
    margin-bottom: 20px;
}

.why-box h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.why-box p {
    color: #666;
}

/*==================================================
        SERVICES
==================================================*/

.services {
    background: #f8f9fa;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid transparent;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #0d6efd;
}

.service-card img {
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    margin: 20px;
    color: #0d6efd;
}

.service-card p {
    margin: 0 20px 20px;
    color: #666;
}

.service-btn {
    display: inline-block;
    margin: 0 20px 25px;
    padding: 12px 24px;
    background: #0d6efd;
    color: #fff;
    border-radius: 6px;
    transition: 0.3s;
}

.service-btn:hover {
    background: #084fc7;
}

/*==================================================
        GALLERY PREVIEW
==================================================*/

.gallery-preview {
    background: #fff;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-container img {
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.35s;
}

.gallery-container img:hover {
    transform: scale(1.05);
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

/*==================================================
        COUNTER
==================================================*/

.counter {
    background: #000;
    color: #fff;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.counter-box h2 {
    font-size: 50px;
    margin-bottom: 10px;
}

.counter-box p {
    font-size: 18px;
}

/* ==================================================
   REVIEWS SECTION
================================================== */

.reviews-section {
    width: 100%;
    padding: 80px 20px;
    background: var(--section-bg, #f8f9fc);
}


/* ==================================================
   REVIEWS SECTION TITLE
================================================== */

.reviews-section .section-title {
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: center;
}

.reviews-section .section-title h2 {
    margin: 0 0 12px;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--heading-color, #222);
}

.reviews-section .section-title p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color, #666);
}


/* ==================================================
   RATING SUMMARY
================================================== */

.reviews-summary {
    max-width: 850px;
    margin: 0 auto 45px;

    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
}

.review-summary-box {
    flex: 1;
    max-width: 360px;

    display: flex;
    align-items: center;
    gap: 18px;

    padding: 22px 28px;

    background: var(--card-bg, #ffffff);

    border: 1px solid var(--border-color, #e5e7eb);

    border-radius: 14px;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.review-summary-box:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.10);
}


/* ==================================================
   SUMMARY ICON
================================================== */

.review-summary-icon {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 193, 7, 0.12);

    font-size: 22px;

    color: #f5b301;
}

.review-summary-box h3 {
    margin: 0 0 4px;

    font-size: 28px;
    font-weight: 700;

    color: var(--heading-color, #222);
}

.review-summary-box p {
    margin: 0;

    font-size: 14px;

    color: var(--text-color, #777);
}


/* ==================================================
   REVIEWS GRID
================================================== */

.reviews-grid {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 24px;
}


/* ==================================================
   REVIEW CARD
================================================== */

.review-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 270px;

    padding: 26px 24px;

    background: var(--card-bg, #ffffff);

    border: 1px solid var(--border-color, #e5e7eb);

    border-radius: 16px;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.10);

    border-color: rgba(245, 179, 1, 0.35);
}


/* ==================================================
   REVIEW HEADER
================================================== */

.review-header {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 18px;
}


/* ==================================================
   USER ICON
================================================== */

.review-user-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(245, 179, 1, 0.12);

    color: #f5b301;

    font-size: 19px;
}


/* ==================================================
   USER INFORMATION
================================================== */

.review-user-info {
    min-width: 0;
}

.review-user-info h3 {
    margin: 0 0 4px;

    font-size: 16px;
    font-weight: 700;

    color: var(--heading-color, #222);

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-user-info span {
    display: block;

    font-size: 13px;

    color: var(--text-color, #777);
}


/* ==================================================
   REVIEW STARS
================================================== */

.review-stars {
    display: flex;
    align-items: center;

    gap: 4px;

    margin-bottom: 16px;
}

.review-stars i {
    font-size: 15px;
}

.review-stars .fa-solid {
    color: #f5b301;
}

.review-stars .fa-regular {
    color: #cfd3d8;
}


/* ==================================================
   REVIEW TEXT
================================================== */

.review-text {
    flex: 1;

    margin: 0 0 20px;

    font-size: 14px;

    line-height: 1.7;

    color: var(--text-color, #555);

    display: -webkit-box;

    line-clamp: 5;
    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* ==================================================
   REVIEW DATE
================================================== */

.review-date {
    display: flex;
    align-items: center;

    gap: 7px;

    padding-top: 14px;

    border-top: 1px solid var(--border-color, #eeeeee);

    font-size: 12px;

    color: var(--text-color, #888);
}

.review-date i {
    font-size: 13px;
}


/* ==================================================
   EMPTY STATE
================================================== */

.reviews-empty {
    max-width: 600px;

    margin: 0 auto;

    padding: 55px 25px;

    text-align: center;

    background: var(--card-bg, #ffffff);

    border: 1px solid var(--border-color, #e5e7eb);

    border-radius: 16px;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.05);
}

.reviews-empty > i {
    display: block;

    margin-bottom: 15px;

    font-size: 42px;

    color: #f5b301;
}

.reviews-empty h3 {
    margin: 0 0 8px;

    font-size: 22px;

    color: var(--heading-color, #222);
}

.reviews-empty p {
    margin: 0;

    font-size: 14px;

    line-height: 1.6;

    color: var(--text-color, #777);
}

/* ==================================================
   DARK MODE
================================================== */

body.dark .reviews-section {
    background: var(--dark-section-bg, #111827);
}

body.dark .review-summary-box,
body.dark .review-card,
body.dark .reviews-empty {
    background: var(--dark-card-bg, #1f2937);

    border-color: var(--dark-border-color, #374151);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.25);
}

body.dark .reviews-section .section-title h2,
body.dark .review-summary-box h3,
body.dark .review-user-info h3,
body.dark .reviews-empty h3 {
    color: #f3f4f6;
}

body.dark .reviews-section .section-title p,
body.dark .review-summary-box p,
body.dark .review-user-info span,
body.dark .review-text,
body.dark .review-date,
body.dark .reviews-empty p {
    color: #cbd5e1;
}

body.dark .review-date {
    border-top-color: #374151;
}

body.dark .review-stars .fa-regular {
    color: #4b5563;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1100px) {

    .reviews-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        max-width: 850px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 700px) {

    .reviews-section {
        padding: 60px 15px;
    }


    .reviews-section .section-title {
        margin-bottom: 35px;
    }


    .reviews-section .section-title h2 {
        font-size: 28px;
    }


    .reviews-section .section-title p {
        font-size: 14px;
    }


    /* ------------------------------
       SUMMARY
    ------------------------------ */

    .reviews-summary {
        flex-direction: column;

        align-items: center;

        gap: 15px;

        margin-bottom: 35px;
    }


    .review-summary-box {
        width: 100%;

        max-width: 420px;

        padding: 20px;
    }


    /* ------------------------------
       REVIEWS
    ------------------------------ */

    .reviews-grid {
        grid-template-columns: 1fr;

        max-width: 500px;

        gap: 18px;
    }


    .review-card {
        min-height: auto;

        padding: 22px 20px;
    }


    .review-user-info h3 {
        font-size: 15px;
    }


    .review-text {
        line-clamp: 6;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 400px) {

    .reviews-section {
        padding: 50px 12px;
    }


    .reviews-section .section-title h2 {
        font-size: 25px;
    }


    .review-summary-box {
        padding: 18px;
    }


    .review-summary-icon {
        width: 48px;
        height: 48px;

        font-size: 19px;
    }


    .review-summary-box h3 {
        font-size: 24px;
    }


    .review-card {
        padding: 20px 18px;
    }

}

/*==================================================
        CALL TO ACTION
==================================================*/

.cta {
    background:
        linear-gradient(
            rgba(13, 109, 253, 0),
            rgba(13, 109, 253, 0.393)
        ),
        url("../images/cta.jpg") center/cover;
    text-align: center;
    color: #fff;
}

.cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 35px;
    font-size: 18px;
}

/*==================================================
        FOOTER
==================================================*/

.footer {
    background: #111827;
    color: #ddd;
    padding: 70px 8% 25px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.footer-box h2,
.footer-box h3 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-box p {
    margin-bottom: 12px;
    line-height: 1.8;
}

.footer-box a {
    display: block;
    color: #ccc;
    margin-bottom: 12px;
    transition: 0.3s;
}

.footer-box a:hover {
    color: #0d6efd;
    padding-left: 9px;
}

.footer-box i {
    color: #0d6efd;
    margin-right: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 30%;
    background: rgba(51, 50, 155, 0.3);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #fff;
    color: #2247ff;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 15px;
}

/*==================================================
        WHATSAPP BUTTON
==================================================*/

.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    z-index: 999;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
}

.whatsapp:hover {
    transform: scale(1.1);
}

/*==================================================
        BACK TO TOP
==================================================*/

#topBtn {
    position: fixed;
    right: 39px;
    bottom: 95px;
    color: #0d6efd;
    font-size: 35px;
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: 0.3s;
}

#topBtn:hover {
    transform: translateY(-5px);
}

/*==================================================
        DARK MODE
==================================================*/

body.dark {
    background: #121212;
    color: #f5f5f5;
}

body.dark .header {
    background: #1b1b1b;
}

body.dark .logo-text h2 {
    color: #4da3ff;
}

body.dark .logo-text span {
    color: #ccc;
}

body.dark .navbar a {
    color: #fff;
}

body.dark .navbar a:hover,
body.dark .navbar a.active {
    color: #4da3ff;
}

body.dark .welcome,
body.dark .services,
body.dark .testimonials,
body.dark .gallery-preview,
body.dark .why-us,
body.dark .team,
body.dark .services-page,
body.dark .gallery-page,
body.dark .booking-section,
body.dark .contact-section {
    background: #1b1b1b;
}

body.dark .service-card,
body.dark .why-box,
body.dark .testimonial-card,
body.dark .team-card,
body.dark .mission-box,
body.dark .details-card,
body.dark .dashboard-card {
    background: #2b2b2b;
    color: #fff;
}

body.dark p {
    color: #d9d9d9;
}

body.dark h2,
body.dark h3 {
    color: #fff;
}

body.dark .footer {
    background: #0a0a0a;
}

body.dark .counter {
    background: #0d6efd;
}

body.dark .btn {
    background: #0d6efd;
}

body.dark .btn:hover {
    background: #217aff;
}

body.dark .page-banner {
    background: #111;
}

body.dark .about-company {
    background: #121212;
}

body.dark .mission-vision {
    background: #1a1a1a;
}

body.dark .mission-box p,
body.dark .team-card p,
body.dark .about-text p {
    color: #ddd;
}

/*==================================================
        ABOUT PAGE
==================================================*/

.page-banner {
    position: relative;
    margin-top: 95px;
    height: 420px;
    overflow: hidden;
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
}

.banner-content h1 {
    font-size: 55px;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 20px;
    max-width: 700px;
    margin: auto;
    color: #fff;
}

/*==========================
      ABOUT COMPANY
===========================*/

.about-company {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-text h2 {
    font-size: 40px;
    color: #0d6efd;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 18px;
    color: #666;
    line-height: 1.8;
}

.about-text .btn {
    margin-top: 15px;
}

/*==========================
      MISSION & VISION
===========================*/

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    background: #f8f9fa;
}

.mission-box {
    background: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.mission-box:hover {
    transform: translateY(-10px);
}

.mission-box i {
    font-size: 55px;
    color: #0d6efd;
    margin-bottom: 20px;
}

.mission-box h2 {
    margin-bottom: 20px;
}

.mission-box p {
    color: #666;
    line-height: 1.8;
}

/*==========================
        TEAM
===========================*/

.team {
    background: #fff;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: #fff;
    text-align: center;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 170px;
    height: 170px;
    margin: 0 auto 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #0d6efd;
}

.team-card h3 {
    margin-bottom: 8px;
}

.team-card span {
    display: block;
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-card p {
    color: #666;
}

/*==================================================
        SERVICES PAGE
==================================================*/

.services-page {
    background: #fff;
}

.services-page .service-card {
    position: relative;
}

.services-page h4 {
    color: #0d6efd;
    margin: 0 20px 20px;
    font-size: 22px;
    font-weight: 700;
}

body.dark .services-page h4 {
    color: #4da3ff;
}

/*==================================================
        GALLERY PAGE
==================================================*/

.gallery-page {
    background: #fff;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 28px;
    border: none;
    background: #f1f1f1;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #0d6efd;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/*==========================
        LIGHTBOX
===========================*/

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    border-radius: 10px;
}

#closeLightbox {
    position: absolute;
    top: 25px;
    right: 40px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
}

body.dark .filter-btn {
    background: #333;
    color: #fff;
}

body.dark .filter-btn.active {
    background: #0d6efd;
}

/*==================================================
        BOOKING PAGE
==================================================*/

.booking-section {
    background: #fff;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
    background: #fff;
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 8px rgba(13, 110, 253, 0.25);
}

textarea {
    resize: vertical;
}

body.dark .form-group label {
    color: #fff;
}

body.dark .form-group input,
body.dark .form-group select,
body.dark .form-group textarea {
    background: #2b2b2b;
    color: #fff;
    border: 1px solid #555;
}

body.dark .form-group input::placeholder,
body.dark .form-group textarea::placeholder {
    color: #bbb;
}

/*==================================================
        CONTACT PAGE
==================================================*/

.contact-section {
    background: #fff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: 0.3s;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact-box i {
    font-size: 28px;
    color: #0d6efd;
    margin-top: 5px;
}

.contact-box h3 {
    margin-bottom: 8px;
}

.contact-form {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form button {
    width: 100%;
}

.map-section {
    padding: 40px 8%;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

body.dark .contact-box,
body.dark .contact-form {
    background: #2b2b2b;
}

body.dark .contact-box p,
body.dark .contact-box h3 {
    color: #fff;
}

/*==================================================
        AUTH MODALS
==================================================*/

.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
}

.modal-content {
    background: #fff;
    width: 100%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    animation: popup 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.modal-content h2 {
    text-align: center;
    color: #0d6efd;
    margin-bottom: 25px;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.close:hover {
    color: #dc3545;
}

.modal .form-group {
    margin-bottom: 18px;
}

.modal .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.modal .form-group input,
.modal .form-group select,
.modal .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}

.modal .form-group input:focus,
.modal .form-group select:focus,
.modal .form-group textarea:focus {
    border-color: #0d6efd;
}

.password-box {
    position: relative;
}

.password-box input {
    padding-right: 50px !important;
}

.password-box button {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    border: none;
    background: none;
    cursor: pointer;
    font-size: 18px;
    color: #666;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    font-size: 14px;
    gap: 10px;
}

.login-options a {
    color: #0d6efd;
}

.login-options a:hover {
    text-decoration: underline;
}

.switch-form {
    text-align: center;
    margin-top: 20px;
}

.switch-form a {
    color: #0d6efd;
    font-weight: 600;
}

.switch-form a:hover {
    text-decoration: underline;
}

.modal .btn {
    width: 100%;
}

.modal-text {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

body.dark .modal-content {
    background: #2b2b2b;
    color: #fff;
}

body.dark .modal-content input,
body.dark .modal-content select,
body.dark .modal-content textarea {
    background: #3a3a3a;
    color: #fff;
    border-color: #555;
}

body.dark .password-box button {
    color: #fff;
}

body.dark .close {
    color: #fff;
}

body.dark .login-options a,
body.dark .switch-form a {
    color: #4da3ff;
}

body.dark .modal-text {
    color: #ddd;
}

/*==================================================
        DASHBOARD
==================================================*/

.dashboard-section {
    padding: 80px 20px;
    min-height: 60vh;
}

.dashboard-card {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.dashboard-card h2 {
    color: #0d6efd;
    margin-bottom: 15px;
}

.dashboard-buttons {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.danger-btn {
    background: #dc3545;
}

.danger-btn:hover {
    background: #bb2d3b;
}

/*==================================================
        MY BOOKINGS
==================================================*/

.booking-table-container {
    overflow-x: auto;
    margin-top: 40px;
}

.booking-table {
    width: 100%;
    min-width: 750px;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.booking-table th {
    background: #0d6efd;
    color: #fff;
    padding: 15px;
}

.booking-table td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.booking-table tr:hover {
    background: #f7f7f7;
}

.table-btn {
    border: none;
    cursor: pointer;
    padding: 10px 12px;
    margin: 0 5px;
    border-radius: 5px;
}

.view-btn {
    background: #198754;
    color: #fff;
}

.cancel-btn {
    background: #dc3545;
    color: #fff;
}

.status {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
}

.status.pending {
    background: #ffc107;
    color: #000;
}

.status.confirmed {
    background: #198754;
}

.status.completed {
    background: #0d6efd;
}

.status.cancelled {
    background: #dc3545;
}

.empty-state {
    text-align: center;
    padding: 60px;
}

.empty-state i {
    font-size: 70px;
    color: #999;
    margin-bottom: 20px;
}

.empty-state h3 {
    margin-bottom: 10px;
}

body.dark .booking-table {
    background: #2b2b2b;
    color: #fff;
}

body.dark .booking-table td {
    border-color: #444;
}

body.dark .booking-table tr:hover {
    background: #333;
}

/*==================================================
        BOOKING DETAILS
==================================================*/

.details-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    max-width: 900px;
    margin: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    gap: 20px;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span {
    font-weight: 600;
    color: #555;
}

.detail-row strong {
    color: #222;
    text-align: right;
}

body.dark .detail-row {
    border-color: #444;
}

body.dark .detail-row span {
    color: #ccc;
}

body.dark .detail-row strong {
    color: #fff;
}

/*==================================================
        BOOKING CONFIRMATION SLIP
==================================================*/

.booking-slip {
    background: #fff;
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.slip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.slip-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.company-right {
    text-align: right;
}

.company-right h1 {
    color: #0d6efd;
    margin-bottom: 5px;
}

.company-right h3 {
    margin-bottom: 8px;
}

.slip-divider {
    border: none;
    border-top: 2px dashed #ccc;
    margin: 30px 0;
}

.slip-section {
    margin-bottom: 20px;
}

.slip-section h2 {
    color: #0d6efd;
    margin-bottom: 20px;
}

.slip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.slip-item {
    background: #f8f9fa;
    padding: 18px;
    border-radius: 10px;
}

.slip-item label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.slip-item p {
    font-weight: bold;
    font-size: 16px;
}

.slip-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    line-height: 1.8;
}

.timeline {
    margin-top: 20px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.timeline-item.completed .timeline-icon {
    background: #198754;
}

.timeline-content h4 {
    margin-bottom: 5px;
}

.booking-notes {
    padding-left: 25px;
    line-height: 2;
}

.thank-you {
    text-align: center;
    padding: 30px 10px;
}

.thank-you h2 {
    color: #198754;
    margin-bottom: 10px;
}

.slip-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/*==================================================
        RESPONSIVE - TABLETS
==================================================*/

@media (max-width: 992px) {

    .menu-btn {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 95px;
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        text-align: center;
        padding: 25px 0;
        transition: 0.4s;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
    }

    body.dark .navbar {
        background: #1d1d1d;
    }

    .navbar.active {
        left: 0;
    }

    .slide-content h1 {
        font-size: 42px;
    }

    .slide-content p {
        font-size: 18px;
    }

    .about-company {
        grid-template-columns: 1fr;
    }

    .about-text {
        text-align: center;
    }

    .banner-content h1 {
        font-size: 42px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

/*==================================================
        RESPONSIVE - MOBILE
==================================================*/

@media (max-width: 768px) {

    section {
        padding: 60px 6%;
    }

    .header {
        padding: 12px 6%;
    }

    .logo img {
        width: 55px;
        height: 55px;
    }

    .logo-text h2 {
        font-size: 24px;
    }

    .logo-text span {
        font-size: 11px;
    }

    .hero {
        margin-top: 79px;
    }

    .slider {
        height: 75vh;
        min-height: 500px;
    }

    .slide-content {
        width: 90%;
    }

    .slide-content h1 {
        font-size: 32px;
    }

    .slide-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-outline {
        margin-left: 0;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .welcome h2 {
        font-size: 32px;
    }

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

    .prev,
    .next {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .page-banner {
        margin-top: 79px;
        height: 320px;
    }

    .banner-content h1 {
        font-size: 34px;
    }

    .banner-content p {
        font-size: 17px;
    }

    .about-text h2 {
        font-size: 30px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }

    .map-section {
        padding: 30px 6%;
    }

    .map-section iframe {
        height: 320px;
    }

    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .detail-row strong {
        text-align: left;
    }

    .booking-slip {
        padding: 25px;
        margin: 25px auto;
    }

    .slip-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .company-right {
        text-align: center;
    }

    .slip-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-icon {
        margin: auto;
    }

    #topBtn {
        right: 20px;
        bottom: 90px;
        font-size: 30px;
    }

    .whatsapp {
        right: 18px;
        bottom: 18px;
        width: 55px;
        height: 55px;
        font-size: 30px;
    }
}

/*==================================================
        RESPONSIVE - SMALL MOBILE
==================================================*/

@media (max-width: 480px) {

    .header {
        padding: 10px 4%;
    }

    .logo {
        gap: 8px;
    }

    .logo img {
        width: 48px;
        height: 48px;
    }

    .logo-text h2 {
        font-size: 21px;
    }

    .logo-text span {
        font-size: 9px;
    }

    #themeBtn,
    .menu-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .header-buttons {
        gap: 6px;
    }

    .slider {
        height: 70vh;
        min-height: 450px;
    }

    .slide-content {
        width: 92%;
    }

    .slide-content h1 {
        font-size: 27px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .section-title h2 {
        font-size: 27px;
    }

    .welcome h2 {
        font-size: 28px;
    }

    .counter {
        gap: 20px;
    }

    .counter-box h2 {
        font-size: 38px;
    }

    .page-banner {
        height: 260px;
    }

    .banner-content h1 {
        font-size: 28px;
    }

    .banner-content p {
        font-size: 14px;
    }

    .team-card img {
        width: 140px;
        height: 140px;
    }

    .modal {
        padding: 12px;
    }

    .modal-content {
        padding: 25px 20px;
    }

    .login-options {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-section {
        padding: 60px 15px;
    }

    .dashboard-card {
        padding: 25px 20px;
    }

    .dashboard-buttons {
        flex-direction: column;
    }

    .dashboard-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .booking-slip {
        padding: 20px 15px;
        border-radius: 8px;
    }

    .slip-item {
        padding: 14px;
    }

    .slip-actions {
        flex-direction: column;
    }

    .slip-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/*==================================================
        PRINT MODE
==================================================*/

@media print {

    header,
    footer,
    .header,
    .footer,
    .page-banner,
    .slip-actions,
    .whatsapp,
    #topBtn {
        display: none !important;
    }

    body {
        background: #fff !important;
        color: #000 !important;
    }

    .booking-slip {
        margin: 0;
        padding: 0;
        box-shadow: none;
        width: 100%;
        max-width: none;
        border-radius: 0;
    }

    .slip-item,
    .slip-box {
        background: #f8f9fa !important;
        color: #000 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .booking-slip h1,
    .booking-slip h2 {
        color: #0d6efd !important;
    }
}

/* ==================================================
   EVENTSPHERE - RATING PAGE
================================================== */

/* Rating Page Section */

.rating-section {
    padding: 60px 20px;
    background: #f8fafc;
    min-height: 500px;
}

.rating-container {
    max-width: 750px;
    margin: 0 auto;
}


/* Rating Card */

.rating-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}


/* Rating Header */

.rating-card-header {
    text-align: center;
    margin-bottom: 30px;
}

.rating-card-header h2 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 28px;
}

.rating-card-header p {
    margin: 0;
    color: #6b7280;
    font-size: 15px;
}


/* Booking Information */

.rating-booking-info {
    background: #f3f4f6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.rating-booking-info h3 {
    margin: 0 0 15px;
    color: #111827;
    font-size: 19px;
}

.rating-booking-info p {
    margin: 8px 0;
    color: #4b5563;
}

.rating-booking-info strong {
    color: #111827;
}


/* Rating Form */

.rating-form-group {
    margin-bottom: 25px;
}

.rating-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #111827;
}


/* Star Rating */

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 8px;
    margin: 15px 0 5px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 42px;
    color: #d1d5db;
    cursor: pointer;
    transition: color 0.2s ease,
                transform 0.2s ease;
    margin: 0;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #f59e0b;
}

.star-rating label:hover {
    transform: scale(1.1);
}


/* Rating Hint */

.rating-hint {
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    margin-top: 8px;
}


/* Review Textarea */

.rating-review {
    width: 100%;
    min-height: 150px;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    resize: vertical;
    font-family: inherit;
    font-size: 15px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease,
                box-shadow 0.2s ease;
}

.rating-review:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.10);
}


/* Submit Button */

.rating-submit-container {
    text-align: center;
    margin-top: 30px;
}

.rating-submit-btn {
    display: inline-block;
    border: none;
    cursor: pointer;
    padding: 13px 30px;
    border-radius: 7px;
    background: #2563eb;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s ease,
                transform 0.2s ease;
}

.rating-submit-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}


/* Cancel Button */

.rating-cancel-btn {
    display: inline-block;
    margin-left: 10px;
    padding: 12px 25px;
    border-radius: 7px;
    background: #e5e7eb;
    color: #374151;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.rating-cancel-btn:hover {
    background: #d1d5db;
}


/* ==================================================
   MY RATINGS PAGE
================================================== */

.ratings-section {
    padding: 60px 20px;
    background: #f8fafc;
    min-height: 500px;
}

.ratings-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ratings-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.rating-history-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}

.rating-history-card h3 {
    margin: 0 0 10px;
    color: #111827;
}

.rating-history-card p {
    color: #6b7280;
    line-height: 1.6;
}

.rating-history-stars {
    color: #f59e0b;
    font-size: 20px;
    margin: 10px 0;
}


/* Rating Status */

.rating-status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.rating-status.pending {
    background: #fef3c7;
    color: #92400e;
}

.rating-status.approved {
    background: #dcfce7;
    color: #166534;
}

.rating-status.rejected {
    background: #fee2e2;
    color: #991b1b;
}


/* ==================================================
   PUBLIC REVIEWS PAGE
================================================== */

.reviews-section {
    padding: 60px 20px;
    background: #f8fafc;
}

.reviews-container {
    max-width: 1100px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.review-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}

.review-card h3 {
    margin: 0 0 8px;
    color: #111827;
}

.review-stars {
    color: #f59e0b;
    font-size: 20px;
    margin: 10px 0;
}

.review-card p {
    color: #4b5563;
    line-height: 1.7;
}

.review-event {
    color: #6b7280;
    font-size: 13px;
    margin-top: 15px;
}


/* ==================================================
   RATING RESPONSIVE DESIGN
================================================== */

@media (max-width: 768px) {

    .rating-section,
    .ratings-section,
    .reviews-section {
        padding: 40px 15px;
    }

    .rating-card {
        padding: 25px 20px;
    }

    .rating-card-header h2 {
        font-size: 24px;
    }

    .star-rating label {
        font-size: 36px;
    }

    .rating-submit-btn,
    .rating-cancel-btn {
        display: block;
        width: 100%;
        box-sizing: border-box;
        margin: 10px 0;
        text-align: center;
    }

}


/* ==================================================
   DARK MODE - RATING
================================================== */

body.dark .rating-section,
body.dark .ratings-section,
body.dark .reviews-section {
    background: #111827;
}

body.dark .rating-card,
body.dark .rating-history-card,
body.dark .review-card {
    background: #1f2937;
}

body.dark .rating-card-header h2,
body.dark .rating-card-header p,
body.dark .rating-booking-info h3,
body.dark .rating-booking-info strong,
body.dark .rating-form-group label,
body.dark .rating-history-card h3,
body.dark .review-card h3 {
    color: #f9fafb;
}

body.dark .rating-card-header p,
body.dark .rating-booking-info p,
body.dark .rating-hint,
body.dark .rating-history-card p,
body.dark .review-card p {
    color: #d1d5db;
}

body.dark .rating-booking-info {
    background: #374151;
}

body.dark .rating-review {
    background: #111827;
    color: #f9fafb;
    border-color: #4b5563;
}

body.dark .rating-review:focus {
    border-color: #60a5fa;
}

body.dark .rating-cancel-btn {
    background: #374151;
    color: #f9fafb;
}

body.dark .rating-cancel-btn:hover {
    background: #4b5563;
}

/* ==================================================
   RATING FORM - REVIEW TEXTAREA
================================================== */

.rating-form textarea#review {
    width: 100%;
    min-height: 150px;
    padding: 14px 16px;

    border: 1px solid #d1d5db;
    border-radius: 8px;

    background: #ffffff;
    color: #111827;

    font-family: inherit;
    font-size: 15px;
    line-height: 1.6;

    resize: vertical;

    box-sizing: border-box;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


/* Focus */

.rating-form textarea#review:focus {
    border-color: #2563eb;

    box-shadow:
        0 0 0 3px rgba(37, 99, 235, 0.12);
}


/* Placeholder */

.rating-form textarea#review::placeholder {
    color: #9ca3af;
    opacity: 1;
}


/* Character limit / disabled protection */

.rating-form textarea#review:disabled {
    background: #f3f4f6;
    cursor: not-allowed;
}


/* Dark mode */

body.dark .rating-form textarea#review {
    background: #1f2937;
    color: #f9fafb;
    border-color: #4b5563;
}


body.dark .rating-form textarea#review::placeholder {
    color: #9ca3af;
}


body.dark .rating-form textarea#review:focus {
    border-color: #60a5fa;

    box-shadow:
        0 0 0 3px rgba(96, 165, 250, 0.15);
}

/* ==================================================
   SERVICE ERROR POPUP
================================================== */

.service-error-popup {

    position: fixed;

    top: 90px;

    right: 25px;

    width: 380px;

    max-width: calc(100% - 40px);

    background: #ffffff;

    border-left: 5px solid #dc3545;

    border-radius: 10px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.18);

    z-index: 99999;

    animation:
        servicePopupSlideIn 0.35s ease;

}


.service-error-popup-content {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding: 18px;

}


.service-error-icon {

    color: #dc3545;

    font-size: 25px;

    line-height: 1;

}


.service-error-message {

    flex: 1;

}


.service-error-message strong {

    display: block;

    color: #222;

    font-size: 16px;

    margin-bottom: 5px;

}


.service-error-message p {

    margin: 0;

    color: #555;

    font-size: 14px;

    line-height: 1.5;

}


.service-error-close {

    border: none;

    background: transparent;

    color: #777;

    font-size: 24px;

    cursor: pointer;

    line-height: 1;

    padding: 0;

}


.service-error-close:hover {

    color: #dc3545;

}


/* ==================================================
   POPUP ANIMATION
================================================== */

@keyframes servicePopupSlideIn {

    from {

        opacity: 0;

        transform:
            translateX(40px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .service-error-popup {

        top: 75px;

        right: 15px;

        width: auto;

        left: 15px;

        max-width: none;

    }

}
