/* About Modal Styles */
.about-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    display: none;
    backdrop-filter: blur(10px);
}

.about-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-modal-content {
    background: linear-gradient(135deg, var(--panel), #0a142f);
    border-radius: 20px;
    width: 95%;
    max-width: 800px;
    height: 90vh;
    max-height: 800px;
    border: 1px solid rgba(255,200,120,0.1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.about-modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.about-modal-title {
    font-size: 1.8rem;
    color: var(--gold-1);
    font-weight: 700;
}

.about-modal-close {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.about-modal-close:hover {
    color: var(--gold-1);
    background: rgba(255,255,255,0.1);
}

.about-modal-body {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* About Intro */
.about-intro {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.about-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg);
    box-shadow: 0 8px 25px rgba(255, 184, 77, 0.3);
}

.about-main-title {
    font-size: 2.5rem;
    color: var(--gold-1);
    margin-bottom: 10px;
    font-weight: 800;
}

.about-subtitle {
    color: var(--muted);
    font-size: 1.1rem;
}

/* About Sections */
.about-section-title {
    color: var(--gold-1);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-1);
    background: rgba(255,255,255,0.05);
}

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

.feature-title {
    color: var(--gold-1);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-desc {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.stat-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-3px);
}

.stat-number {
    color: var(--gold-1);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--muted);
    font-size: 0.9rem;
}

/* Team Section */
.team-desc {
    color: var(--muted);
    line-height: 1.8;
    text-align: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 25px;
}

/* Contact Modal Styles */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    display: none;
    backdrop-filter: blur(10px);
}

.contact-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-modal-content {
    background: linear-gradient(135deg, var(--panel), #0a142f);
    border-radius: 20px;
    width: 95%;
    max-width: 700px;
    height: 90vh;
    max-height: 800px;
    border: 1px solid rgba(255,200,120,0.1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.contact-modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.contact-modal-title {
    font-size: 1.8rem;
    color: var(--gold-1);
    font-weight: 700;
}

.contact-modal-close {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-modal-close:hover {
    color: var(--gold-1);
    background: rgba(255,255,255,0.1);
}

.contact-modal-body {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Contact Sections */
.contact-section-title {
    color: var(--gold-1);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--gold-1);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.contact-name {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-value {
    color: var(--gold-1);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 25px;
}

.message-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: vertical;
    font-family: inherit;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--gold-1);
    box-shadow: 0 0 0 3px rgba(255, 216, 107, 0.1);
}

.submit-btn {
    margin-top: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Contact Hours */
.contact-hours {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 25px;
}

.hours-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hours-item:last-child {
    border-bottom: none;
}

.days {
    color: var(--muted);
}

.time {
    color: var(--gold-1);
    font-weight: 600;
}

.timezone {
    color: var(--muted);
    font-size: 0.8rem;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-modal-content,
    .contact-modal-content {
        width: 98%;
        height: 95vh;
    }

    .about-modal-body,
    .contact-modal-body {
        padding: 20px;
        gap: 25px;
    }

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

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

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

    .about-main-title {
        font-size: 2rem;
    }

    .about-logo {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-modal-header,
    .contact-modal-header {
        padding: 20px;
    }

    .about-modal-title,
    .contact-modal-title {
        font-size: 1.5rem;
    }

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

    .about-intro {
        flex-direction: column;
        text-align: center;
    }

    .contact-form,
    .contact-hours {
        padding: 20px;
    }

    .hours-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}