/* ----------------------------------------------------
   CONTACT PAGE STYLES
   Palette: Pale Lavender (#E6D4E6) & Mauve (#A678A6)
---------------------------------------------------- */
:root {
    --accent: #E6D4E6;
    --accent-hover: #A678A6;
    --bg-color: #0a0f1c;
    --card-bg: #111827;
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --transition: all 0.3s ease;
}



.active-link {
    color: var(--accent) !important;
    border-bottom: 1px solid var(--accent);
}



/* Contact Hero Section */
.contact-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    background: linear-gradient(135deg, var(--bg-color) 0%, #151d2f 100%);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Main Contact Section */
.contact-main {
    padding: 6rem 0;
}

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

/* Form Styling */
.form-wrapper h2,
.info-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background-color: var(--card-bg);
    border: 1px solid rgba(230, 212, 230, 0.1);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(230, 212, 230, 0.1);
}

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

.submit-btn {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--bg-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 212, 230, 0.3);
}

.submit-btn i {
    font-size: 0.9rem;
}

/* Contact Information */
.info-wrapper {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(230, 212, 230, 0.1);
}

.info-description {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(230, 212, 230, 0.1) 0%, rgba(166, 120, 166, 0.1) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box i {
    font-size: 1.3rem;
    color: var(--accent);
}

.contact-details h4 {
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.contact-details p,
.contact-details a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--accent);
}

/* Social Links */
.social-links {
    border-top: 1px solid rgba(230, 212, 230, 0.1);
    padding-top: 2rem;
}

.social-links h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(230, 212, 230, 0.05);
    border: 1px solid rgba(230, 212, 230, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--accent);
    color: var(--bg-color);
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* Footer */
/* Footer */
footer {
    text-align: center;
    padding: 6rem 0 2rem;
}

footer p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.copyright {
    font-size: 0.8rem;
    font-family: monospace;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .info-wrapper {
        order: -1;
    }

    .social-icons {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .info-wrapper {
        padding: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}
