/* css for landing page,  gallery, reviews and training */

*{
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
}

body{
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Responsive Navigation Bar */
nav{
    background-color: #fff;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}

nav ul{
    list-style: none;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav il{
    height:50px
}

nav a{
    height:100%;
    padding:0 20px;
    display: flex;
    align-items: center;
    color:black;
}

nav a:hover{
    color: #ec038a;
}

nav li:first-child{
    margin-right: auto;
}

nav li:nth-child(7) a{
    font-weight: bold;
    color: #ec038a;
}
.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: #ffffff43;
    backdrop-filter: blur(10px);
    box-shadow: -10px 0px -10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar li{
    width:100%;
}

.sidebar li a{
    width:100%;
    padding:12px;
    font-weight: 400;
}

.sidebar li a:hover{
    background-color: #f2b2e1;
    color: #fff;
}

.active{
    text-decoration: underline;
    text-decoration-color: #ec038a;
    text-decoration-thickness: 3px;
}

.close-sidebar {
    cursor: pointer;
    color: #000;
    margin-left: auto;  
    padding: 12px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.hamburger{
    display: none;
    padding-right: clamp(12px, 5%, 20px);
}


footer{
    font-size: min(0.8em, 70%);
    background-color: black;
    padding: 2em;
    color: #fff;
}

footer p{
    text-align: center;
    font-size: 0.8rem;
    margin-top: 20px;
    margin-bottom: 20px;
}

footer div{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

footer h2{
    text-align: center;
    margin-bottom: 20px;
}

footer div span a{
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
}
/* Landing Page */

/* Hero Section */
.hero-section{
    background: radial-gradient(circle, #ec038a, #ff7bbd, #ffc2e0,#ffecf7);
    flex-direction: column;  
    min-height: 80vh;      
    position: relative; 
    padding-bottom: 60px;     
}

.hero-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-left{
    width: 45%;
}

.hero-left img{
    width: 80%;
}

.hero-right{
    width: 55%;
    margin-left: 5%;
}


.hero-title-text{
    padding-top: 5px;
    font-size: 5rem;
    font-weight: lighter;
    font-family: "Apple Chancery", "Brush Script MT", "Lucida Handwriting", cursive;
}

.hero-title h2{
    font-size: 3rem;
    font-weight: lighter;
    padding-bottom: 5px;
}

.hero-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    text-align: center; /* keeps text neat */
    flex-wrap: wrap; /* allows wrapping on smaller screens */
}

.hero-bottom > div {
    display: flex;
    flex-direction: column; /* stack h2 and p */
    align-items: center;
    justify-content: center;
    min-width: 150px; /* keeps items balanced */
}

.hero-bottom > div:first-child{
    flex-direction: row; /* keep stars inline */
    gap: 5px;
}

/* Align the "40+ 5-star reviews" text below stars */
.hero-bottom > div:first-child p {
    width: 100%;
    text-align: center;
    margin-top: 5px;
}

.hero-bottom h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.hero-bottom p {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 5px 0 0 0;
}

.hero-bottom span {
    color: gold;
    font-size: 2rem;
    margin: 0 2px;
}

/* Medium screens */
@media (max-width: 800px) {
    .hero-bottom {
        gap: 30px;
        padding: 15px 0;
    }
    .hero-bottom > div {
        min-width: 120px;
    }
}

/* Small screens */
@media (max-width: 480px) {
    .hero-bottom {
        gap: 15px;
        padding: 10px 0;
    }
    .hero-bottom h2 {
        font-size: 1rem; /* fixed the typo */
    }
    .hero-bottom p {
        font-size: 0.9rem;
    }

    .hero-bottom > div:first-child p {
        width: 90%;
        flex-direction: column;
        text-align: center;
        margin-top: 5px;
    }
}

.hero-text {
    font-size: 95%;
    width: 100%;
    font-size: 100%;
}

.hero-right a {
    margin-top: 8px;
    padding: 8px 20px;
    background-color: #ec038a;
    border: 2px solid black;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.hero-right a:hover {
    background-color: #c40272;
}

.hero-right{
    width: 55%;
}


.hero-bottom p {
    font-size: 1rem;
    margin: 0;
}

/* Services Section */
.services-section h2{
    text-align: center;
    margin-bottom: clamp(20px, 5%, 28px);
}

.services-section img{
    border-radius: 8px;
}
.services-section{
    padding: 40px;
    padding-bottom: 28px;
}

.services-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card{
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.service-card img{
    width: 100%;
    height: auto;
}

/* why choose us */
.why-choose-us{
    border-radius: 8px;
    margin: 40px;
    background-color: #f5f5f5;
    padding: 40px;
}

.why-choose-us h2{
    text-align: center;
    margin-bottom: clamp(20px, 5%, 28px);
}

.why-choose-us h3{
    text-align: center;
    font-size: 95%;
    margin-bottom: clamp(20px, 5%, 28px);
}

.why-choose-us p{
    text-align: center;
    font-size: 95%;
    margin-bottom: clamp(20px, 5%, 28px);
}

.why-choose-us-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
}

.why-choose-us-column{
    text-align: center;
}


@media (max-width: 800px) {
    .hideOnMobile{
        display: none;
    }

    .hamburger{
        display: block;
    } 

    .hero-left img{
        width: 100%;
    }

    .hero-title-text{
        padding-top: 5px;
        font-size: 2rem;
        font-weight: lighter;
        font-family: "Apple Chancery", "Brush Script MT", "Lucida Handwriting", cursive;
    }
    
    .hero-title h2{
        font-size: 1rem;
        font-weight: lighter;
        padding-bottom: 5px;
    }

    .hero-text{
        font-size: 90%;
    }

    .hero-section {
        min-height: 60vh;
        padding-bottom: 30px;
    }
    

    .why-choose-us-grid{
        gap: 20px;
    }
}


@media (max-width: 480px){
    .sidebar{
        width:100%
    }

    nav li:first-child{
        margin-left: -4%;
       
    }

    nav img{
        width: 50%;
        height: auto;
    }

    nav .regular-nav a{
        font-size: 12px;
    }

    .hero-section {
        min-height: 50vh;
        padding-bottom: 0px;
    }

    .hero-text{
        font-size: 60%;
    }


    .why-choose-us-grid{
        gap: 20px;
    }

    .why-choose-us{
        padding: 4%;
        margin: 4%;
    }

    .why-choose-us-column h3{
        text-align: center;
    }
   
} 



.meet-the-ceo {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 80px 10%;
    background-color: #ec038a;
    margin: 50px 0;
}

.meet-the-ceo-left {
    flex: 1;
}

.meet-the-ceo h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.meet-the-ceo h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 8px;
    border-radius: 5px;
    background-color: #fff;
}

.meet-the-ceo p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
    margin-top: 20px;
}

.meet-the-ceo-right {
    flex: 1;
    text-align: center;
}

.meet-the-ceo img {
    max-width: 100%;
    height: 450px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.meet-the-ceo img:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .meet-the-ceo {
        flex-direction: column;
        padding: 30px 5%;
    }

    .meet-the-ceo img{
        width: 70%;
        height: 350px;
    }

    .meet-the-ceo h2{
        font-size: 2rem;
    }

    .meet-the-ceo p{
        font-size: 0.95rem;
    }
}

@media (max-width:480px) {
    .meet-the-ceo img{
        width: 60%;
        height: 350px;
    }
}

/* explore sets section */
.display-sets {
    padding: 16px 10%;
    background-color: #fff;
}

.display-sets h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.display-sets h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #ec038a;
    border-radius: 2px;
}

.display-sets-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    margin-top: 30px;
    position: relative;
}

.display-sets-column {
    display: none !important; /* Hidden by default - !important to override conflicts */
    opacity: 0;
    width: 100%;
    max-width: 700px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: opacity 0.5s ease-in-out, transform 0.3s ease;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.display-sets-column.set-active {
    display: flex !important; /* Show when active - !important to override conflicts */
    opacity: 1;
    position: relative;
    left: auto;
    transform: none;
    animation: slide-in 0.5s ease-in-out; 
}

.display-sets-column:hover {
    transform: translateY(-5px);
}

.display-sets-column.set-active:hover {
    transform: translateY(-5px);
}

.set-img {
    flex: 0 0 200px;
    overflow: hidden;
}

.set-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.display-sets-column:hover .set-img img {
    transform: scale(1.05);
}

@keyframes slide-in {
    from {
        transform: translateX(50%);
        opacity: 1;
    }
    to {
        transform: translateX(0);
        opacity: 0;
    }
}

.set-details {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none !important;
}

.set-details h3 {
    font-weight: 700;
    color: #ec038a;
    font-size: 1.1rem;
    margin-bottom: 10px;
    
}

.set-style p {
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 10px;
    
}

.set-description {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Pagination dots */
.sets-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pagination-dot.set-active {
    background-color: #ec038a;
}

.call-to-action {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.call-to-action a {
    padding: 8px 20px;
    background-color: #ec038a;
    border: 2px solid black;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    text-align: center;
}

.call-to-action a:hover {
    background-color: #c40272;
}


/* Responsive Design */
@media (max-width: 768px) {
    .display-sets {
        padding: 40px 5%;
    }
    
    .display-sets-column {
        flex-direction: column;
        max-width: 100%;
    }
    
    .set-img {
        flex: 0 0 200px;
        width: 100%;
    }
}

/* how to book section */
.how-to-book{
    padding: 4%;
    margin: 4%;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.how-to-book h2{
    text-align: center;
    color: #ec038a;
    margin-bottom: clamp(20px, 5%, 28px);
}

.how-to-book h3{
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.how-to-book p{
    font-size: 0.8rem;
    margin-bottom: 2px;
}


.how-to-book-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.how-to-book-column{
    text-align: center;
}

/* After Care */
.after-care{
    padding: 4%;
    margin: 4%;
    border-radius: 8px;
    background-color: #000;
    color: #fff;
    box-shadow: 0 8px 15px rgba(236, 3, 138, 0.6);
}

.after-care h2{
    text-align: center;
    color: #ec038a;
    margin-bottom: clamp(20px, 5%, 28px);
    position: relative; 
}

.after-care h2:after{
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #fff;
    border-radius: 2px;
}

.after-care ul{
    list-style-type: none;
}

.after-care-container{
    padding: 2%;
    border-radius: 5px;
    border: 1px solid #fff;
    border-top: none;
}

.after-care p{
    font-size: 1rem;
    margin-bottom: 5px;

}

@media (max-width: 480px) {
    .after-care{
        padding: 4%;
        margin: 4%;
    }

    .after-care h2{
        font-size: 1.5rem;
    }

    .after-care p{
        font-size: 0.8rem;
        margin-bottom: 2px;
    
    }

    .after-care-container{
        padding: 2%;
    }

    .after-care-container ul{
        font-size: 0.8rem;
    }
}


/* faq section */
.faqs {
    background-color: #f5f5f5;
    padding: 4%;
}

.faqs h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

/* Add underline to FAQ h2 like other sections */
.faqs h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #ec038a;
    border-radius: 2px;
}

.faqs-container {
    max-width: 800px;
    margin: 0 auto;
}

.qna {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
    width: 100%;
}

.question:hover {
    background-color: #f9f9f9;
}

.question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    flex-grow: 1;
    text-align: left;
}

.faq-controls {
    flex-shrink: 0;
    margin-left: 1rem;
    position: relative;
    width: 24px;
    height: 24px;
}

.faq-controls svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

/* Plus icon (first SVG) - visible by default */
.faq-controls svg:first-child {
    opacity: 1;
    transform: rotate(0deg);
}

/* Minus icon (second SVG) - hidden by default */
.faq-controls svg:last-child {
    opacity: 0;
    transform: rotate(180deg);
}

/* When active, hide plus and show minus */
.qna.faq-active .faq-controls svg:first-child {
    opacity: 0;
    transform: rotate(180deg);
}

.qna.faq-active .faq-controls svg:last-child {
    opacity: 1;
    transform: rotate(0deg);
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: #fff;
}

.qna.faq-active .answer {
    max-height: 300px; /* Increased for longer content */
    padding: 0 1.2rem 1.2rem;
    border-top: 1px solid #eee;
}

.answer p {
    margin: 0;
    padding: 1rem 0 0;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .faqs {
        padding: 6% 4%;
    }
    
    .question {
        padding: 1rem;
    }
    
    .question h3 {
        font-size: 1rem;
    }
    
    .qna.active .answer {
        padding: 0 1rem 1rem;
    }
}

/* booking policies */
.booking-policies {
    padding: 4%;
    background-color: #ec038a;
    color: #fff;
    text-align: center;
}

.booking-policies h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.booking-policies p {
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.booking-policies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-policies-block {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s ease;
}

.booking-policies-block:hover {
    transform: translateY(-5px);
}

.booking-policies-block svg {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 50%;
}

.booking-policies-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.booking-policies-block p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .booking-policies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* consultation/contact */
.consultation-contact{
    padding: 4%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.consultation-contact h2{
    text-align: center;
    margin-bottom: clamp(20px, 5%, 28px);
}

.consultation-contact p{
    text-align: center;
    margin-bottom: clamp(20px, 5%, 28px);
}

.consultation-contact div {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.consultation-contact div span a{
    margin: 0 10px;
    font-size: 2rem;
    color: #ec038a;
}

.consultation-contact div span:hover{
    cursor: pointer;
}

@media (max-width: 768px) {
    .consultation-contact{
        padding: 6% 4%;
    }

    .consultation-contact div span{
        font-size: 1.5rem;
    }
}

.locate{
    padding: 4%;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.locate h2{
    text-align: center;
    margin-bottom: clamp(20px, 5%, 28px);
    position: relative;  
    padding-bottom: 10px;
}

.locate h2::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #000;
    border-radius: 2px;
}

.locate iframe{
    width: 100%;
    height: 500px;
}

@media (max-width: 768px) {
    .locate iframe{
        height: 300px;
    }
}


/* Gallery Page*/
#gallery-main{
    background-color: #ffecf7;
    padding: min(20px, 5%);
    padding-bottom: min(28px, 5%);
}
.gallery-title{
    text-align: center;
    margin-bottom: clamp(20px, 5%, 28px);
}

.gallery{
    padding: min(20px, 5%);
    padding-bottom: 28px;
}


.gallery-container > div > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
    grid-auto-rows: min-content;
    grid-auto-flow: dense;
}

.gallery-container .wide{
    grid-column: span 2;
}

.gallery-container .tall{
    grid-row: span 2;
}

.gallery-container .big{
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Reviews Page */
.review-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-modal-content {
    background-color: #fff;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #333;
}

/* Form Elements */
.review-form {
    display: flex;
    flex-direction: column;
    gap: 1rem; 
}

.review-form .form-group {
    margin-bottom: 0.5rem;
}

.review-form label {
    font-size: 0.9rem; 
    margin-bottom: 0.3rem;
}


.review-form input[type="text"],
.review-form textarea,
.review-form select {
    padding: 0.6rem; 
    font-size: 0.95rem; 
}

.review-form input[type="text"]:focus,
.review-form textarea:focus {
    border-color: #ec038a;
    box-shadow: 0 0 0 2px rgba(236, 3, 138, 0.1);
    outline: none;
}

.review-form textarea {
    min-height: 80px; 
}

/* File Input */
.file-input-label {
    padding: 0.6rem 0.8rem; 
    font-size: 0.9rem;
}

/* Submit Button Styling */
.review-form button[type="submit"] {
    background: linear-gradient(135deg, #ec038a, #ff66b3);
    color: white;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(236, 3, 138, 0.2);
}

.review-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(236, 3, 138, 0.3);
}

.review-form button[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* star rating */
.rating {
    direction: rtl;
    unicode-bidi: bidi-override;
    display: inline-flex;
    justify-content: flex-end;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s;
}

.rating input:checked ~ label,
.rating label:hover,
.rating label:hover ~ label {
    color: #ec038a; /* Highlighted star colour */
}


.reviews-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 2rem;
    background: linear-gradient(to right, #ec038a,#C99689  );
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: white;
    color: #333;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card .rating {
    color: #ec038a;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.review-card h3 {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
}

.review-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

.ratingError {
    color: red;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}


@media (max-width: 800px) {
    .reviews-section {
        margin: 2rem auto;
    }
    
}

@media (max-width: 480px) {
    .review-modal-content{
        padding: 0.5rem;
    }
    .review-form{
        padding: 0.5rem;
    }
    .reviews-section {
        margin: 0.5rem auto;
    }
}

/* Training Section */
.training {
    padding: 4%;
    margin: 4%;
    border-radius: 8px;
    background-color: #000;
    color: #fff;
    box-shadow: 0 8px 15px rgba(236, 3, 138, 0.6);
}

.training h2 {
    text-align: center;
    color: #ec038a;
    margin-bottom: clamp(20px, 5%, 28px);
    position: relative;
}

.training h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #fff;
    border-radius: 2px;
}

.training-container {
    padding: 2%;
    border-radius: 5px;
    border: 1px solid #fff;
    border-top: none;
}

.training p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.training ul {
    list-style-type: none;
    padding-left: 0;
}

.training li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.training li:before {
    content: '•';
    color: #ec038a;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

/* Responsive styles */
@media (max-width: 480px) {
    .training {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .training h2 {
        font-size: 1.5rem;
    }

    .training p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .training li {
        font-size: 0.9rem;
    }
}



/* Bookings Page */
/* SweetAlert2 Popup Styling */
.booking-popup {
    background-color: #000 !important;
    color: white !important;
    border: 1px solid #ec038a !important;
    border-radius: 8px !important;
}

.booking-popup h2 {
    color: #ec038a !important;
    margin-bottom: 20px !important;
}

.booking-popup .swal2-close {
    color: white !important;
    font-size: 24px !important;
}

.booking-popup .location-group {
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
}

.booking-popup h4 {
    color: #ec038a;
    margin-bottom: 10px;
}

.booking-popup .location-desc {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 0.9em;
}

.booking-popup .time-slots {
    display: grid;
    gap: 10px;
}

.booking-popup .time-slot-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.booking-popup .time-display {
    font-weight: 500;
    color: white;
}

.booking-popup .book-now-btn {
    background-color: #ec038a;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
}

.booking-popup .book-now-btn:hover {
    background-color: #c40272;
}