/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7C9885 0%, #A8C9A4 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #7C9885;
    font-weight: 600;
}

.step-content p {
    color: #62665B;
    line-height: 1.7;
}

/* Schedule Grid */
.schedule-grid {
    display: grid;
    gap: 1rem;
}

.schedule-item {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #7C9885;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.schedule-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.schedule-day {
    font-weight: 600;
    color: #7C9885;
    font-size: 1.1rem;
}

.schedule-time {
    color: #62665B;
    font-weight: 500;
}

.schedule-level {
    color: #C77D5C;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: right;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    position: relative;
    padding: 2.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
    border: 2px solid #7C9885;
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #7C9885;
}

.price {
    font-size: 3rem;
    font-weight: 600;
    color: #7C9885;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.savings {
    color: #C77D5C;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.price-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #E8E6E3;
    color: #62665B;
    display: flex;
    align-items: center;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li::before {
    content: "✓";
    color: #7C9885;
    font-weight: 600;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Registration Grid */
.registration-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.registration-form-wrapper,
.registration-info {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.registration-form-wrapper h3,
.registration-info h3 {
    margin-bottom: 1.5rem;
    color: #7C9885;
    font-size: 1.6rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #62665B;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #D4D2CF;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7C9885;
    box-shadow: 0 0 0 3px rgba(124, 152, 133, 0.1);
}

.form-group.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-group.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.form-group.checkbox-group label {
    font-size: 0.9rem;
    color: #62665B;
    margin-bottom: 0;
}

.login-link {
    text-align: center;
    margin-top: 1.5rem;
    color: #62665B;
}

.login-link a {
    color: #7C9885;
    font-weight: 500;
}

/* Info Blocks */
.registration-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-block .icon-circle {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #F8F6F3;
}

.info-block h4 {
    color: #7C9885;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.info-block p {
    color: #62665B;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Member Dashboard */
.member-dashboard {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.member-sidebar {
    background: #F8F6F3;
    padding: 2rem 1.5rem;
    border-right: 1px solid #E8E6E3;
}

.member-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.member-menu .menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #62665B;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.member-menu .menu-item:hover,
.member-menu .menu-item.active {
    background: #7C9885;
    color: white;
}

.member-menu .menu-item .icon-small {
    width: 24px;
    height: 24px;
}

.member-content {
    padding: 2rem;
}

.member-section {
    display: none;
}

.member-section.active {
    display: block;
}

.member-section h3 {
    color: #7C9885;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.member-section > p {
    color: #62665B;
    margin-bottom: 2rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state .icon-circle {
    margin: 0 auto 1.5rem;
}

.empty-state p {
    color: #62665B;
    margin-bottom: 1.5rem;
}

/* Subscription Card */
.subscription-card {
    background: #F8F6F3;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.subscription-info h4 {
    color: #7C9885;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.subscription-info p {
    color: #62665B;
    margin-bottom: 0.25rem;
}

.classes-remaining {
    font-weight: 600;
    color: #7C9885;
    font-size: 1.1rem;
}

.validity-date {
    font-weight: 500;
    color: #62665B;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 400px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #62665B;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.close-modal:hover {
    color: #C77D5C;
}

.modal-content h3 {
    color: #7C9885;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.login-form {
    margin-top: 1.5rem;
}

/* Contact Form on Homepage */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    color: #7C9885;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contact-info .section-subtitle {
    color: #62665B;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item .icon-circle {
    width: 50px;
    height: 50px;
    background: #F8F6F3;
}

.contact-item h4 {
    color: #7C9885;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #62665B;
}

.social-media {
    padding-top: 2rem;
    border-top: 1px solid #E8E6E3;
}

.social-media h4 {
    color: #7C9885;
    margin-bottom: 1rem;
}

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

.social-link {
    padding: 0.75rem 1.5rem;
    background: #7C9885;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #6B8775;
}

.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h3 {
    color: #7C9885;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .member-dashboard {
        grid-template-columns: 1fr;
    }

    .member-sidebar {
        border-right: none;
        border-bottom: 1px solid #E8E6E3;
    }

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

    .schedule-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
    }

    .schedule-level {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .step-item {
        padding: 1.25rem;
    }

    .registration-form-wrapper,
    .registration-info {
        padding: 1.5rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .subscription-card {
        flex-direction: column;
        text-align: center;
    }

    .subscription-actions {
        width: 100%;
    }

    .subscription-actions button {
        width: 100%;
    }
}