/* 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;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 40px;
    width: auto;
}

#cle-main-header-logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #e30613;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    text-decoration: none;
    padding: 0.9rem 1.4rem;
    border-radius: 99px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 10px 25px rgba(229, 62, 62, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(229, 62, 62, 0.45);
    background: linear-gradient(135deg, #c53030, #a02e2e);
}

.btn-secondary {
    background: #e30613;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: #c20510;
    transform: translateY(-2px);
}

.btn-cta {
    background: #e30613;
    color: white;
    padding: 16px 32px;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(227, 6, 19, 0.3);
    border-radius: 99px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    border: none;
}

.btn-cta:hover {
    background: #c20510;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(227, 6, 19, 0.4);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 72px);
    padding: calc(72px + 16px) 0 56px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e2e8f0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    color: #1a202c;
}

.hero-title .highlight {
    color: #e53e3e;
}

.highlight {
    color: #e30613;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    margin-bottom: 2rem;
}

.hero-features--single {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    margin-bottom: 2rem;
}

.hero-feature-text {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.4;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Hero button with arrow */
.hero-cta .btn-primary {
    border-radius: 0;
    padding: 1.1rem 2.2rem;
    justify-content: center;
    position: relative;
    padding-right: 3.2rem;
}

.hero-cta .btn-primary .btn-arrow {
    position: absolute;
    right: 8px;
}

.btn-primary.large {
    padding: 1.1rem 1.6rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border-radius: 99px;
}

.btn-label {
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-sublabel {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.25);
}

.btn-primary:hover .btn-arrow {
    background: rgba(255, 255, 255, 0.3);
}

.hero-people-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.people-images {
    display: flex;
    margin-right: 1rem;
}

.people-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.people-avatar:first-child {
    margin-left: 0;
}

.people-text {
    font-size: 0.9rem;
    color: #4a5568;
}

.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 80%;
    max-height: 56vh;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Reviews Widget under hero image */
.trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0.75rem;
    width: 85%;
    margin-top: 1rem;
}

.trust-row .reviews-widget {
    justify-self: start;
    width: 100%;
    height: 120px;
    box-sizing: border-box;
}

.reviews-widget {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    border-radius: 12px;
    padding: 0.6rem 0.8rem;
    box-shadow: 0 12px 32px rgba(16, 24, 40, 0.18), 0 2px 8px rgba(16, 24, 40, 0.08);
}

.reviews-widget.badge {
    height: 56px;
    width: auto;
    justify-self: end;
}

.reviews-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(16,24,40,0.08), inset 0 0 0 1px #eef2f6;
}

.reviews-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reviews-brand {
    font-weight: 700;
    color: #111827;
    font-size: 1rem;
    line-height: 1;
}

.reviews-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reviews-score {
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
}

.reviews-stars {
    color: #f59e0b;
    display: flex;
    gap: 2px;
    font-size: 0.95rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 700;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.faq-image img {
    width: 100%;
    border-radius: 15px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    padding: 1.5rem;
    background: #e30613;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    font-size: 1.1rem;
}

.faq-content {
    padding: 1.5rem;
    display: none;
}

.faq-content.active {
    display: block;
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Outcomes Journey Section */
.outcomes-section {
    background: linear-gradient(180deg, #0c3a52 0%, #0e4660 100%);
    color: #e6f0f6;
    padding: 64px 0 32px;
}

.outcomes-section h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    line-height: 1.25;
    margin-bottom: 40px;
    color: #e6f0f6;
}

.outcomes-journey {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.outcomes-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
    position: relative;
}

.outcome-item {
    text-align: center;
    padding: 0 12px;
}

.outcome-item p {
    color: #d3e2ea;
    line-height: 1.6;
    font-size: 1rem;
}

.outcome-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 12px;
    border-radius: 16px;
    background: #f0f6fa;
    color: #0b3450;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.outcome-icon .check {
    position: absolute;
    right: -6px;
    top: -6px;
    background: #10b981;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 6px 14px rgba(16,185,129,0.45);
}

/* Outcomes grid variant (for different outcomes section) */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.outcomes-cta {
    text-align: center;
    margin-top: 3rem;
}

.outcomes-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.outcomes-subtitle strong {
    color: #333;
    font-weight: 700;
}

/* Test Section */
.test-section {
    padding: 80px 0;
    background: white;
}

.test-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.test-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.test-text p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.test-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.test-features li {
    padding: 0.5rem 0;
    color: #333;
    font-weight: 500;
}

.test-image img {
    width: 100%;
    border-radius: 15px;
}

/* Studio Section */
.studio-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.studio-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 700;
}

.studio-gallery {
    margin-bottom: 3rem;
}

.main-image img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.studio-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.studio-thumbnails img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.studio-thumbnails img:hover {
    transform: scale(1.05);
}

/* Team/Testimonials Section */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 700;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.testimonial-stars {
    font-size: 2rem;
    color: #FFD700;
    text-align: center;
    margin-bottom: 1rem;
}

.testimonial h3 {
    color: #e30613;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.testimonial p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* Wellness Section */
.wellness-section {
    background: white;
    padding: 80px 0;
}

.wellness-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 700;
}

.wellness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.wellness-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.wellness-item:hover {
    transform: translateY(-5px);
}

.wellness-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.wellness-item h3 {
    color: #e30613;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.wellness-item p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-category h3 {
    color: #e30613;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-height: 80px;
}

.service-icon {
    font-size: 2rem;
    min-width: 50px;
}

.service-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Pricing Section */
.pricing-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-item:hover {
    transform: translateY(-5px);
}

.pricing-item.featured {
    border: 3px solid #e30613;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #e30613;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.save-tag {
    position: absolute;
    top: 20px;
    right: -10px;
    background: #FFD700;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 12px 12px 8px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transform: rotate(5deg);
    z-index: 10;
}

.save-tag::before {
    content: "SPARE";
    position: absolute;
    top: -8px;
    left: -5px;
    background: #e30613;
    color: white;
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    transform: rotate(-5deg);
}

.save-amount {
    font-size: 1.2rem;
    font-weight: 800;
    color: #000;
    display: block;
    text-align: center;
}

.pricing-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e30613;
    margin-bottom: 0.5rem;
}

.price-period {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.price-after {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #333;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-info h3,
.opening-hours h3 {
    color: #e30613;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.final-cta {
    text-align: center;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
}

.final-cta h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.final-cta p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e30613;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #e30613;
}

/* Responsive Design */
@media (max-width: 992px) {
    .outcomes-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .outcomes-section h2 {
        font-size: 1.75rem;
    }
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    
    /* Mobile order: h1, image, subtext, cta, trust-badges */
    .hero-title { order: 1; }
    .hero-img { order: 2; }
    .hero-features--single { order: 3; }
    .hero-cta { order: 4; }
    .trust-row { order: 5; }
    
    /* Remove grid areas on mobile since we use flexbox */
    .hero-content { display: contents; }
    .hero-image { display: contents; }
    
    .hero-title {
        font-size: 2rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .faq-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .outcomes-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .outcomes-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .outcomes-subtitle {
        font-size: 1.1rem;
    }
    
    /* Trust row under hero image stacks on mobile */
    .trust-row {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .trust-row .reviews-widget,
    .trust-row .reviews-widget.badge {
        justify-self: center;
    }
    
    /* Center Google reviews content on mobile */
    .reviews-widget {
        justify-content: center;
    }

    .test-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .studio-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 50px 0 40px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .btn-cta {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .studio-thumbnails {
        grid-template-columns: 1fr;
    }
}

/* Animation for smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Hover effects */
.feature:hover,
.service-item:hover {
    transform: translateY(-2px);
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Modal */
.modal[hidden] { display: none !important; }
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.modal-content {
    position: relative;
    background: #fff;
    width: min(720px, 92vw);
    max-height: 85vh;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    padding: 1.5rem;
    overflow: auto;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 2rem;
    line-height: 1;
    color: #333;
    cursor: pointer;
}

.modal-subtitle {
    color: #666;
    margin-bottom: 1rem;
}

.slot-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.day-group {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 0.75rem;
    background: #fafafa;
}

.day-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.day-title {
    font-weight: 700;
    color: #333;
}

.slots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.slot-button {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slot-button:hover { 
    border-color: #e30613; 
    color: #e30613; 
}

.loading {
    text-align: center;
    padding: 1rem;
    color: #666;
}

.error {
    color: #e30613;
    background: #ffe9ec;
    border: 1px solid #ffc2ca;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e30613;
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    min-width: 18px;
    height: 18px;
    margin-top: 2px;
}

.checkbox-label a {
    color: #e30613;
    text-decoration: underline;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.form-buttons button {
    flex: 1;
    min-width: 140px;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

/* Primary button styling */
.form-buttons .btn-primary {
    background-color: #e30613;
    color: white;
    border: 2px solid #e30613;
}

.form-buttons .btn-primary:hover {
    background-color: #c20510;
    border-color: #c20510;
    transform: translateY(-2px);
}

.form-buttons .btn-primary:disabled {
    background-color: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Secondary button styling */
.form-buttons .btn-secondary {
    background-color: white;
    color: #e30613;
    border: 2px solid #e30613;
}

.form-buttons .btn-secondary:hover {
    background-color: #e30613;
    color: white;
    transform: translateY(-2px);
}

.error-message {
    background-color: #ffe9ec;
    border: 2px solid #e30613;
    color: #e30613;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 500;
}

.success-message {
    text-align: center;
    padding: 2rem;
}

.success-message h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.success-message p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .modal-content { padding: 1rem; }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .form-buttons button {
        min-width: unset;
    }
}