/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-family: 'Playfair Display', serif;
    color: #8B4B8C;
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.logo span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 300;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #8B4B8C;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #8B4B8C;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.book-btn {
    background: linear-gradient(135deg, #8B4B8C, #A569A6);
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 75, 140, 0.3);
}

.book-btn::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px 50px;
    background: linear-gradient(135deg, #f8f4f8 0%, #e8dce8 100%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-right: 2rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.women-only {
    font-size: 1rem;
    color: #8B4B8C;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 2rem;
    text-align: left;
    padding-left: 0;
    line-height: 1.4;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #8B4B8C, #A569A6);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 75, 140, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 75, 140, 0.3);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.services h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.women-only-services {
    text-align: center;
    color: #8B4B8C;
    font-size: 0.95rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        max-width: 400px;
    }
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 2px solid #8B4B8C;
    transform: scale(1.05);
}

.service-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8B4B8C, #A569A6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B4B8C, #A569A6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8B4B8C;
    font-weight: bold;
}

.service-duration {
    background: #f8f4f8;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    color: #8B4B8C;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-book-btn,
.service-coming-soon {
    display: block;
    background: linear-gradient(135deg, #8B4B8C, #A569A6);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: inherit;
    line-height: 1.2;
}

.service-book-btn:hover,
.service-coming-soon:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 75, 140, 0.3);
    color: white;
}

.service-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.service-info-btn {
    background: transparent;
    color: #8B4B8C;
    border: 2px solid #8B4B8C;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.service-info-btn:hover {
    background: #8B4B8C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(139, 75, 140, 0.3);
}

.service-info-modal {
    max-width: 800px;
    width: 95%;
    max-height: 90vh;
    padding: 2rem;
}

.service-detail {
    text-align: left;
}

.service-detail h2 {
    font-family: 'Playfair Display', serif;
    color: #8B4B8C;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.service-detail-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.service-detail-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.service-detail-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-detail-book,
.service-detail-email {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.service-detail-book {
    background: linear-gradient(135deg, #8B4B8C, #A569A6);
    color: white;
}

.service-detail-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 75, 140, 0.3);
    color: white;
}

.service-detail-email {
    background: transparent;
    color: #8B4B8C;
    border: 2px solid #8B4B8C;
}

.service-detail-email:hover {
    background: #8B4B8C;
    color: white;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f4f8 0%, #e8dce8 100%);
}

.benefits h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Desktop layout: 3 items on top row, 2 centered on bottom (bowling pin style) */
@media (min-width: 992px) {
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        max-width: 1200px;
        margin: 0 auto;
        gap: 2rem;
    }
    
    /* First three items - each spans 2 columns for proper width */
    .benefit-item:nth-child(1) {
        grid-column: 1 / 3;
    }
    
    .benefit-item:nth-child(2) {
        grid-column: 3 / 5;
    }
    
    .benefit-item:nth-child(3) {
        grid-column: 5 / 7;
    }
    
    /* Bottom two items centered - each spans 2 columns */
    .benefit-item:nth-child(4) {
        grid-column: 2 / 4;
    }
    
    .benefit-item:nth-child(5) {
        grid-column: 4 / 6;
    }
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
    font-size: 3rem;
    color: #8B4B8C;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.about p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.credentials {
    margin-top: 2rem;
}

.credentials h4 {
    color: #8B4B8C;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.credentials ul {
    list-style: none;
}

.credentials li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.credentials li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8B4B8C;
    font-weight: bold;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Booking Section */
.booking {
    padding: 100px 0;
    background: linear-gradient(135deg, #8B4B8C, #A569A6);
    color: white;
    text-align: center;
}

.booking h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.booking-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.booking-method:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.booking-method i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-method h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.booking-method p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.contact-btn {
    background: white;
    color: #8B4B8C;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.contact-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-info-booking {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contact-info-booking p {
    margin: 0.5rem 0;
    color: white;
}

.contact-info-booking p:first-child {
    font-size: 1.2rem;
    font-weight: 700;
}

.whatsapp-text {
    font-size: 0.85rem !important;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f4f8;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #8B4B8C;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #666;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    color: #8B4B8C;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #8B4B8C;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #8B4B8C;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #8B4B8C;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #A569A6;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.calendly-modal {
    max-width: 900px;
    width: 95%;
    max-height: 95vh;
    padding: 1rem;
}

.calendly-modal .calendly-inline-widget {
    border-radius: 10px;
    overflow: hidden;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.close:hover {
    color: #8B4B8C;
}

.modal h2 {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4B8C;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #8B4B8C, #A569A6);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 75, 140, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }
    
    .hero-content {
        margin-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-options {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .services h2,
    .benefits h2,
    .about h2,
    .booking h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .benefit-item {
        padding: 1.5rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.benefit-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
/* R
eviews Section */
.reviews {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f4f8 0%, #e8dce8 100%);
}

.reviews h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
}

.reviews p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Review form styles are now in modal */

.review-form .form-group {
    margin-bottom: 2rem;
}

.review-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.review-form input,
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
    outline: none;
    border-color: #8B4B8C;
}

.review-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.star {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.star:hover,
.star.active {
    color: #ffd700;
    transform: scale(1.1);
}

.star.hover {
    color: #ffd700;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

.review-form .submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #8B4B8C, #A569A6);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 75, 140, 0.3);
}

.review-form .submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Mobile responsiveness for reviews */
@media (max-width: 768px) {
    .review-form-container {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .star {
        font-size: 1.8rem;
    }
}/*
 Checkbox styling for review form */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    opacity: 0;
    position: absolute;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #8B4B8C;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-group input[type="checkbox"]:checked + .checkbox-label .checkmark {
    background-color: #8B4B8C;
    border-color: #8B4B8C;
}

.checkbox-group input[type="checkbox"]:checked + .checkbox-label .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.checkbox-group input[type="checkbox"]:focus + .checkbox-label .checkmark {
    box-shadow: 0 0 0 2px rgba(139, 75, 140, 0.2);
}

.permission-note {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin: 0;
    line-height: 1.3;
}/* Radio
 button styling for review form */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
}

.radio-option input[type="radio"] {
    width: auto;
    margin: 0;
    opacity: 0;
    position: absolute;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 0;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
}

.radio-label:hover {
    background-color: rgba(139, 75, 140, 0.05);
}

.radio-button {
    width: 20px;
    height: 20px;
    border: 2px solid #8B4B8C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-label .radio-button {
    background-color: #8B4B8C;
    border-color: #8B4B8C;
}

.radio-option input[type="radio"]:checked + .radio-label .radio-button::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
}

.radio-option input[type="radio"]:focus + .radio-label .radio-button {
    box-shadow: 0 0 0 2px rgba(139, 75, 140, 0.2);
}/* Squa
re Booking Modal Styles */
.square-booking-modal {
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.square-booking-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.square-booking-header h2 {
    font-family: 'Playfair Display', serif;
    color: #8B4B8C;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.square-booking-header p {
    color: #666;
    font-size: 1rem;
}

.square-widget-container {
    min-height: 500px;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 1rem;
    position: relative;
}

.square-widget-container::before {
    content: 'Loading booking system...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #8B4B8C;
    font-size: 1.1rem;
    z-index: 1;
}

/* Hide loading text when widget loads */
.square-widget-container iframe {
    position: relative;
    z-index: 2;
}

/* Mobile responsiveness for Square modal */
@media (max-width: 768px) {
    .square-booking-modal {
        width: 95%;
        margin: 1rem;
        max-height: 95vh;
    }
    
    .square-booking-header h2 {
        font-size: 1.5rem;
    }
    
    .square-widget-container {
        padding: 0.5rem;
        min-height: 400px;
    }
}