/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Legal Content Styles */
.legal-content {
    padding: 4rem 0;
    background: #f8f9fa;
    min-height: 70vh;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.legal-text h2 {
    color: #6a1b9a;
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.legal-text h3 {
    color: #333;
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem 0;
    font-weight: 600;
}

.legal-text p {
    margin-bottom: 1rem;
    color: #555;
}

.legal-text ul {
    margin: 1rem 0 1rem 2rem;
    color: #555;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.legal-text a {
    color: #6a1b9a;
    text-decoration: none;
    font-weight: 500;
}

.legal-text a:hover {
    text-decoration: underline;
}

.legal-text strong {
    color: #333;
    font-weight: 600;
}

/* Responsive Legal Content */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 0;
    }

    .legal-text {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .legal-text h2 {
        font-size: 1.5rem;
    }

    .legal-text h3 {
        font-size: 1.2rem;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: url('assets/header-background.png') repeat-x;
    background-size: auto 100%;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo img {
    height: 60px;
    width: auto;
}

.nav-logo h2 {
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    min-width: 70px;
    line-height: 1.1;
    padding: 0.2rem 0.3rem;
    white-space: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2d1b69, #4a148c, #ab47bc);
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding: 150px 60px 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

/* Desktop: Remove max-width constraint */
@media (min-width: 769px) {
    .hero-content {
        max-width: none;
    }
}

/* Mobile: Add max-width back for better readability */
@media (max-width: 768px) {
    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    animation: slideInLeft 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #ffd700;
    color: #2d1b69;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: #6a1b9a;
    color: white;
    border: 2px solid #6a1b9a;
}

.btn-secondary:hover {
    background: #4a148c;
    border-color: #4a148c;
    color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
}

.dance-animation {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.dance-animation img {
    max-width: 300px;
    height: auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2d1b69;
    margin-bottom: 3rem;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d1b69, #4a148c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    color: #2d1b69;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Quick Info Section */
.quick-info {
    padding: 80px 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, #2d1b69, #4a148c);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(106, 27, 154, 0.3);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.info-card p {
    margin-bottom: 0.5rem;
}

.info-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.info-link:hover {
    color: white;
    transform: translateX(5px);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2d1b69, #4a148c);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    color: #333;
    transition: background 0.3s ease;
    border-bottom: 2px solid #e0e0e0;
}

.faq-question:hover {
    background: #e8e9ea;
}

.faq-question:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    color: #333;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Contact link styles */
.contact-details a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #6a1b9a;
    text-decoration: underline;
}

/* Booking page styles */
.booking-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Form validation styles */
.form-errors {
    display: none;
    margin-bottom: 20px;
}

.error-alert {
    background: #fee;
    border: 1px solid #fcc;
    color: #c33;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.error-alert i {
    color: #c33;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-group.error label {
    color: #dc3545;
}

.error-message {
    display: none;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    align-items: center;
    gap: 5px;
}

.error-message.show {
    display: flex;
}

.error-message i {
    color: #dc3545;
    font-size: 0.8rem;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Reduce width for steps 2 and 3 (customer details and payment) */
.booking-container.step-2-active,
.booking-container.step-3-active {
    max-width: 800px;
}

.booking-step {
    display: none;
    padding: 40px;
}

.booking-step.active {
    display: block;
}

.step-header {
    text-align: center;
    margin-bottom: 40px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #6a1b9a;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.step-header h2 {
    color: #2d1b69;
    margin-bottom: 10px;
}

.step-header p {
    color: #666;
    font-size: 1.1rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: #6a1b9a;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(106, 27, 154, 0.15);
}

.service-card.selected {
    border-color: #6a1b9a;
    background: linear-gradient(135deg, #6a1b9a 0%, #4a148c 100%) !important;
    color: white;
}

.service-card.featured {
    border-color: #ffd700;
    background: linear-gradient(135deg, #fff9c4 0%, #fff59d 100%);
}

.service-card.featured .featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ffd700;
    color: #2d1b69;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.service-icon {
    font-size: 2.5rem;
    color: #6a1b9a;
    margin-bottom: 15px;
}

.service-card.selected .service-icon {
    color: white;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #2d1b69;
}

.service-card.selected h3 {
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-card.selected p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #6a1b9a;
    margin: 10px 0;
}

.service-card.selected .service-price {
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    margin-right: 10px;
}

.sale-price {
    color: #e91e63;
    font-size: 1.8rem;
}

.service-details {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
}

.service-card.selected .service-details {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-card.selected .service-details p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Make card handling fee text white when service card is selected */
.service-card.selected .card-handling-fee {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-details p {
    margin: 5px 0;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    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: #6a1b9a;
}

.selected-service-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.selected-service-summary h3 {
    color: #2d1b69;
    margin-bottom: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.summary-item .price {
    font-weight: bold;
    color: #6a1b9a;
    font-size: 1.2rem;
}

.summary-details {
    margin-top: 10px;
    color: #666;
}

.summary-details p {
    margin: 5px 0;
}

.step-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
    gap: 20px;
}

.step-actions:has(.btn-secondary) {
    justify-content: space-between;
}

.payment-summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.payment-summary h3 {
    color: #2d1b69;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.total-amount {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #6a1b9a;
    font-size: 1.3rem;
    color: #2d1b69;
}

.payment-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
}

.payment-security {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.payment-security p {
    margin: 5px 0;
}

.payment-security i {
    color: #6a1b9a;
    margin-right: 8px;
}

/* Responsive design for booking page */
@media (max-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .booking-step {
        padding: 20px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Payment summary mobile fixes */
    .payment-summary {
        padding: 20px 15px;
    }

    .summary-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 12px 0;
    }

    .summary-row span:first-child {
        font-weight: 600;
        color: #2d1b69;
    }

    .summary-row span:last-child {
        font-weight: 500;
        color: #666;
        word-break: break-word;
    }

    .total-amount {
        font-size: 1.2rem;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 2px solid #e91e63;
    }
}

@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .step-actions {
        flex-direction: column;
    }

    .payment-actions {
        flex-direction: column;
    }

    /* Additional mobile improvements for payment summary */
    .payment-summary {
        padding: 15px 10px;
    }

    .payment-summary h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .summary-row {
        padding: 10px 0;
    }

    .summary-row span:first-child {
        font-size: 0.9rem;
    }

    .summary-row span:last-child {
        font-size: 0.9rem;
    }

    .total-amount {
        font-size: 1.1rem;
        margin-top: 12px;
        padding-top: 12px;
    }
}

/* Footer */
.footer {
    background: #2c2c2c;
    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,
.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(-20px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.85rem;
        min-width: 60px;
        height: 2.2rem;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        gap: 0.6rem;
    }

    .nav-link {
        font-size: 0.8rem;
        min-width: 55px;
        height: 2rem;
        padding: 0.1rem 0.2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-item {
        text-align: center;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .contact-details {
        text-align: center;
        width: 100%;
    }

    .contact-details h3 {
        text-align: center;
    }

    .contact-details p {
        text-align: center;
    }

    .contact-icon {
        margin-bottom: 1rem;
        align-self: center;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #2d1b69, #4a148c);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        margin: 1rem 0;
        font-size: 1.1rem;
    }

    .nav-logo img {
        height: 50px;
    }

    .nav-logo h2 {
        font-size: 1.5rem;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .dance-animation {
        font-size: 5rem;
        margin-top: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2d1b69, #4a148c);
    color: white;
    padding: 120px 0 40px;
    text-align: center;
    display: flex;
    align-items: center;
    min-height: 50vh;
}

.page-header .container {
    width: 100%;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Classes Section */
.classes-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.class-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.class-header {
    background: linear-gradient(135deg, #2d1b69, #4a148c);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.class-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.class-level {
    background: #ffd700;
    color: #2d1b69;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    font-size: 0.9rem;
}

.class-details {
    padding: 2rem;
}

.class-info {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #666;
}

.info-item i {
    color: #2d1b69;
    width: 20px;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.class-description {
    margin-bottom: 2rem;
}

.class-description p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.class-description ul {
    list-style: none;
    padding: 0;
}

.class-description li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.class-description li::before {
    content: '✓';
    color: #2d1b69;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Expect Section */
.expect-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.expect-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ddd" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23ddd" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23ddd" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23ddd" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23ddd" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.expect-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 27, 105, 0.1);
    position: relative;
    overflow: hidden;
}

.expect-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2d1b69, #4a148c, #6a1b9a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.expect-card:hover::before {
    transform: scaleX(1);
}

.expect-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.expect-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #2d1b69, #4a148c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 8px 25px rgba(45, 27, 105, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.expect-card:hover .expect-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(45, 27, 105, 0.4);
}

.expect-card h3 {
    color: #2d1b69;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.expect-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid #ffd700;
    transform: scale(1.05);
}

.featured-badge {
    background: #ffd700;
    color: #2d1b69;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-card h3 {
    color: #2d1b69;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}


.currency {
    font-size: 1.5rem;
    color: #2d1b69;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2d1b69;
}

.period {
    font-size: 1rem;
    color: #666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
    border-bottom: none;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .feature-card,
    .info-card {
        padding: 1.5rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .classes-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }
}

/* Private Lessons Specific Styles */
.private-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.private-hero h2 {
    font-size: 2.5rem;
    color: #2d1b69;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.private-hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2d1b69;
    font-weight: 600;
}

.hero-feature i {
    font-size: 1.2rem;
}

/* Lesson Types */
.lesson-types {
    padding: 80px 0;
    background: white;
}

.lesson-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.lesson-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.lesson-card:hover {
    transform: translateY(-10px);
    border-color: #2d1b69;
    box-shadow: 0 15px 30px rgba(106, 27, 154, 0.1);
}

.lesson-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d1b69, #4a148c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.lesson-card h3 {
    color: #2d1b69;
    margin-bottom: 1rem;
    font-weight: 600;
}

.lesson-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.lesson-card ul {
    list-style: none;
    text-align: left;
}

.lesson-card li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.lesson-card li::before {
    content: '✓';
    color: #2d1b69;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2d1b69, #4a148c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.benefit-card h3 {
    color: #2d1b69;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Timeline */
.expect-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(to bottom, #2d1b69, #4a148c);
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2d1b69, #4a148c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: #2d1b69;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Responsive adjustments for private lessons */
@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .lesson-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline-item:not(:last-child)::after {
        display: none;
    }

    .timeline-number {
        margin: 0 auto 1rem;
    }
}

/* Wedding Dance Specific Styles */
.wedding-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.wedding-hero h2 {
    font-size: 2.5rem;
    color: #2d1b69;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.wedding-hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d1b69;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #2d1b69;
    box-shadow: 0 15px 30px rgba(106, 27, 154, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d1b69, #4a148c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    color: #2d1b69;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    color: #2d1b69;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Dance Styles */
.dance-styles {
    padding: 80px 0;
    background: #f8f9fa;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.style-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.style-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d1b69, #4a148c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.style-card h3 {
    color: #2d1b69;
    margin-bottom: 1rem;
    font-weight: 600;
}

.style-card p {
    color: #666;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: white;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(to bottom, #2d1b69, #4a148c);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2d1b69, #4a148c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2d1b69;
}

.step-content h3 {
    color: #2d1b69;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: #666;
    line-height: 1.6;
    font-style: italic;
    position: relative;
}


.testimonial-author {
    text-align: right;
}

.testimonial-author strong {
    color: #2d1b69;
    display: block;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive adjustments for wedding dance */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .services-grid,
    .styles-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .step-number {
        margin: 0 auto 1rem;
    }
}

/* January Course Specific Styles */
.course-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.course-hero h2 {
    font-size: 2.5rem;
    color: #2d1b69;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.course-hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.course-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* Desktop: Two column layout */
@media (min-width: 769px) {
    .course-highlights {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        max-width: 600px;
    }
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2d1b69;
    font-weight: 600;
}

.highlight i {
    font-size: 1.2rem;
}

/* Course Details */
.course-details {
    padding: 80px 0;
    background: white;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.detail-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.detail-card:hover {
    transform: translateY(-10px);
    border-color: #2d1b69;
    box-shadow: 0 15px 30px rgba(106, 27, 154, 0.1);
}

.detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d1b69, #4a148c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.detail-card h3 {
    color: #2d1b69;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.time-slot {
    background: #ffd700;
    color: #2d1b69;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.detail-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.detail-card ul {
    list-style: none;
    text-align: left;
}

.detail-card li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.detail-card li::before {
    content: '✓';
    color: #2d1b69;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #e3f2fd;
    border-radius: 10px;
    color: #1976d2;
}

.pricing-note i {
    margin-right: 0.5rem;
}

/* Schedule Section */
.schedule-section {
    padding: 40px 0 80px 0;
    background: #f8f9fa;
}

.schedule-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.schedule-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(to bottom, #2d1b69, #4a148c);
}

.schedule-date {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2d1b69, #4a148c);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.date-number {
    font-size: 1.2rem;
    line-height: 1;
}

.date-month {
    font-size: 0.8rem;
    line-height: 1;
}

.schedule-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.schedule-content h3 {
    color: #2d1b69;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.schedule-content p {
    color: #666;
    line-height: 1.6;
}

/* Learn Section */
.learn-section {
    padding: 80px 0;
    background: white;
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.learn-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.learn-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.learn-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2d1b69, #4a148c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.learn-card h3 {
    color: #2d1b69;
    margin-bottom: 1rem;
    font-weight: 600;
}

.learn-card ul {
    list-style: none;
    text-align: left;
}

.learn-card li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.learn-card li::before {
    content: '✓';
    color: #2d1b69;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive adjustments for January course */
@media (max-width: 768px) {
    .details-grid {
        grid-template-columns: 1fr;
    }

    .schedule-item {
        flex-direction: column;
        text-align: center;
    }

    .schedule-item:not(:last-child)::after {
        display: none;
    }

    .schedule-date {
        margin: 0 auto 1rem;
    }

    .learn-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery Specific Styles */
.gallery-filter {
    padding: 40px 0;
    background: #f8f9fa;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #2d1b69;
    background: transparent;
    color: #2d1b69;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: #2d1b69;
    color: white;
    transform: translateY(-2px);
}

.gallery-section {
    padding: 80px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-placeholder {
    height: 250px;
    background: linear-gradient(135deg, #2d1b69, #4a148c);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
}

.gallery-placeholder p {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: bicubic;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-overlay i {
    font-size: 3rem;
    color: white;
    margin-left: 5px;
}

.gallery-item:hover .play-overlay {
    background: rgba(233, 30, 99, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-counter {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    z-index: 1001;
}

.video-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.video-nav.video-prev {
    left: 30px;
}

.video-nav.video-next {
    right: 30px;
}

@media (max-width: 768px) {
    .video-nav {
        font-size: 1.5rem;
        padding: 10px 15px;
    }

    .video-nav.video-prev {
        left: 15px;
    }

    .video-nav.video-next {
        right: 15px;
    }

    .video-counter {
        top: 15px;
        left: 15px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-overlay p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.gallery-btn {
    background: #ffd700;
    color: #2d1b69;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background: #ffed4e;
    transform: scale(1.1);
}

.video-item .gallery-placeholder {
    background: linear-gradient(135deg, #e91e63, #f06292);
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #2d1b69, #4a148c);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    position: relative;
}

.video-placeholder p {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    color: #2d1b69;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video-info p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* 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.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    animation: slideIn 0.3s ease;
}

.video-modal-content {
    max-width: 900px;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

#modalImage {
    width: 100%;
    height: auto;
    display: block;
}

#videoContainer {
    width: 100%;
    height: 400px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.modal-info {
    padding: 1.5rem;
}

.modal-info h3 {
    color: #2d1b69;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.modal-info p {
    color: #666;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .close {
        top: 10px;
        right: 15px;
        font-size: 25px;
        width: 40px;
        height: 40px;
    }
}

/* Announcements Specific Styles */
.featured-announcement {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d1b69, #4a148c);
}

.featured-announcement .section-title {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.featured-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

#latest-news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

#latest-news-container .featured-card {
    margin: 0;
    max-width: none;
}

.featured-badge {
    background: #ffd700;
    color: #2d1b69;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.featured-card h2 {
    color: #2d1b69;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.featured-date {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.featured-date i {
    margin-right: 0.5rem;
    color: #2d1b69;
}

.featured-content {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.featured-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.featured-actions .read-more {
    color: #6a1b9a;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.featured-actions .read-more:hover {
    color: #4a148c;
    transform: translateX(5px);
}

.featured-actions .read-more i {
    transition: transform 0.3s ease;
}

.featured-actions .read-more:hover i {
    transform: translateX(3px);
}

.featured-meta {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.featured-meta span {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-date {
    background: linear-gradient(135deg, #2d1b69, #4a148c);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
    height: fit-content;
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.3rem;
}

.news-content {
    flex: 1;
}

.news-category {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.news-content h3 {
    color: #2d1b69;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.news-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.news-meta span {
    color: #999;
    font-size: 0.9rem;
}

.news-meta i {
    margin-right: 0.3rem;
    color: #2d1b69;
}

.read-more {
    color: #2d1b69;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #4a148c;
    transform: translateX(5px);
}

.read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Events Section */
.events-section {
    padding: 80px 0;
    background: white;
}

.events-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.event-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(to bottom, #2d1b69, #4a148c);
}

.event-date {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2d1b69, #4a148c);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.event-day {
    font-size: 1.2rem;
    line-height: 1;
}

.event-month {
    font-size: 0.8rem;
    line-height: 1;
}

.event-content {
    flex: 1;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2d1b69;
}

.event-content h3 {
    color: #2d1b69;
    margin-bottom: 1rem;
    font-weight: 600;
}

.event-content p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.event-content p i {
    margin-right: 0.5rem;
    color: #2d1b69;
    width: 15px;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d1b69, #4a148c);
}

.newsletter-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.newsletter-card h2 {
    color: #2d1b69;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form {
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2d1b69;
    box-shadow: 0 0 0 3px rgba(106, 27, 154, 0.1);
}

.newsletter-note {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive adjustments for announcements */
@media (max-width: 768px) {
    .featured-card {
        padding: 2rem;
    }

    .featured-card h2 {
        font-size: 1.5rem;
    }

    .featured-actions {
        flex-direction: column;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    #latest-news-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-card {
        flex-direction: column;
        text-align: center;
    }

    .news-date {
        align-self: center;
        min-width: 100px;
    }

    .news-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .event-item {
        flex-direction: column;
        text-align: center;
    }

    .event-item:not(:last-child)::after {
        display: none;
    }

    .event-date {
        margin: 0 auto 1rem;
    }

    .form-group {
        flex-direction: column;
    }

    .newsletter-card {
        padding: 2rem;
    }
}

/* Dance Fitness Specific Styles */
.fitness-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
}

.fitness-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.fitness-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.fitness-hero .hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.fitness-hero .stat {
    text-align: center;
}

.fitness-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fitness-hero .stat-label {
    color: #2d1b69;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Class Details Section */
.class-details-section {
    padding: 80px 0;
    background: white;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.detail-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.detail-card:hover {
    transform: translateY(-10px);
    border-color: #e91e63;
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.1);
}

.detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.detail-card h3 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-weight: 600;
}

.detail-card p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    color: #e91e63;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-content p {
    color: #666;
    line-height: 1.6;
}

/* Structure Section */
.structure-section {
    padding: 80px 0;
    background: white;
}

.structure-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.structure-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.structure-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 50px;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(to bottom, #e91e63, #f06292);
}

.structure-time {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    text-align: center;
    line-height: 1.1;
}

.structure-content {
    flex: 1;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #e91e63;
}

.structure-content h3 {
    color: #e91e63;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.structure-content p {
    color: #666;
    line-height: 1.6;
}

/* Bring Section */
.bring-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.bring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.bring-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.bring-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.bring-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.bring-card h3 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-weight: 600;
}

.bring-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive adjustments for dance fitness */
@media (max-width: 768px) {
    .fitness-hero .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .expect-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .expect-card {
        padding: 2rem 1.5rem;
    }

    .expect-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-number {
        align-self: center;
    }

    .structure-item {
        flex-direction: column;
        text-align: center;
    }

    .structure-item:not(:last-child)::after {
        display: none;
    }

    .structure-time {
        margin: 0 auto 1rem;
    }

    .bring-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Specific Styles */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    color: #2d1b69;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-form-container p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2d1b69;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d1b69;
    box-shadow: 0 0 0 3px rgba(106, 27, 154, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-info-container h2 {
    color: #2d1b69;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2d1b69, #4a148c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #2d1b69;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: #666;
    margin-bottom: 0.3rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    color: #2d1b69;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #2d1b69;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.map-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.map-info {
    padding: 2rem;
    text-align: center;
    background: #f8f9fa;
}

.map-info h3 {
    color: #2d1b69;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.8rem;
}

.map-info p {
    margin-bottom: 0.5rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        align-self: center;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .map-info {
        padding: 1.5rem;
    }

    .map-info h3 {
        font-size: 1.5rem;
    }
}

/* Mobile continue button for booking page */
.mobile-continue-btn {
    display: none;
    width: 100%;
    padding: 12px 20px;
    background: #e91e63;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.mobile-continue-btn:hover {
    background: #c2185b;
    transform: translateY(-2px);
}

/* Show mobile continue button only on mobile devices */
@media (max-width: 768px) {
    .mobile-continue-btn {
        display: block;
    }
}
