/* ============================================
   ABOUT PAGE
   ============================================ */
.about-page {
    background: var(--color-bg);
    background-size: cover;
    background-position: center;
}

.blog-intro {
    max-width: 800px;
    margin: 40px auto 60px;
    padding: 0 20px;
    text-align: center;
}

.blog-intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.blog-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.about-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: left;
}

.about-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.about-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    -webkit-text-fill-color: var(--color-text);
    background: none;
    color: var(--color-text);
}

.about-content ul {
    margin: 0 0 24px 1.1rem;
    padding-left: 1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.about-content li {
    margin-bottom: 10px;
}

.back-nav {
    margin-top: 50px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.contact-form label {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin: 0;
    padding: 12px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-primary);
    outline: none;
}

.contact-form button {
    margin: 20px 0 0;
    width: 100%;
    padding: 14px;
    font-weight: bold;
    -webkit-text-fill-color: white;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.contact-modal {
    background: var(--color-surface-deep);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .contact-modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 5px;
    margin: 0;
    line-height: 1;
}

.modal-close:hover {
    color: var(--color-primary);
    box-shadow: none;
    background: none;
}
