﻿/* ===========================
   CONTACT PAGE STYLES
   =========================== */

/* CONTACT HERO SECTION */
.contact-hero {
    position: relative;
    height: 45vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 42, 42, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 42, 42, 0.08) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

.contact-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(255, 42, 42, 0.2);
}

.contact-hero-content p {
    font-size: 1.1rem;
    color: #aaaaaa;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

/* CONTACT INFO SECTION */
.contact-info {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, rgba(255, 42, 42, 0.02) 100%);
    border-bottom: 1px solid rgba(255, 42, 42, 0.1);
}

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

.contact-column {
    animation: slideUp 0.8s ease-out;
}

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

.contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

/* COMPANY INFO */
.company-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 42, 42, 0.03);
    border: 1px solid rgba(255, 42, 42, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 42, 42, 0.08);
    border-color: #ff2a2a;
    box-shadow: 0 0 20px rgba(255, 42, 42, 0.2);
}

.info-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff2a2a;
    font-weight: 600;
}

.info-value {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.5;
}

.info-value.link {
    color: #ff2a2a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-value.link:hover {
    color: #ff4444;
    text-decoration: underline;
}

/* CONTACT CARDS */
.contact-card {
    padding: 2rem;
    background: rgba(255, 42, 42, 0.03);
    border: 1px solid rgba(255, 42, 42, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.contact-card:hover {
    background: rgba(255, 42, 42, 0.08);
    border-color: #ff2a2a;
    box-shadow: 0 0 30px rgba(255, 42, 42, 0.2);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #aaaaaa;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-email {
    display: inline-block;
    color: #ff2a2a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: #ff4444;
    text-decoration: underline;
}

/* DISCORD CARD */
.discord-card {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(255, 42, 42, 0.1));
    border: 2px solid rgba(255, 42, 42, 0.2);
    box-shadow: 0 0 20px rgba(255, 42, 42, 0.1);
}

.discord-card:hover {
    box-shadow: 0 0 40px rgba(255, 42, 42, 0.3);
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), rgba(255, 42, 42, 0.15));
}

.btn-discord {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/* CONTACT FORM SECTION */
.contact-form-section {
    padding: 5rem 0;
    background: #0a0a0a;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-content h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.form-content > p {
    text-align: center;
    color: #aaaaaa;
    margin-bottom: 2.5rem;
}

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

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

.form-group label {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: rgba(255, 42, 42, 0.03);
    border: 1px solid rgba(255, 42, 42, 0.1);
    border-radius: 6px;
    color: #ffffff;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 42, 42, 0.08);
    border-color: #ff2a2a;
    box-shadow: 0 0 20px rgba(255, 42, 42, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: #888888;
    margin-top: 1.5rem;
}

.form-note a {
    color: #ff2a2a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.form-note a:hover {
    text-decoration: underline;
    color: #ff4444;
}

/* MAP SECTION */
.contact-map {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, rgba(255, 42, 42, 0.02) 100%);
    border-top: 1px solid rgba(255, 42, 42, 0.1);
}

.contact-map h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.map-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 42, 42, 0.1);
    transition: all 0.3s ease;
}

.map-container:hover {
    border-color: #ff2a2a;
    box-shadow: 0 0 40px rgba(255, 42, 42, 0.2);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 40vh;
        margin-top: 100px;
    }

    .contact-hero-content h1 {
        font-size: 2.2rem;
    }

    .contact-hero-content p {
        font-size: 0.95rem;
    }

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

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

    .form-wrapper {
        max-width: 100%;
    }

    .contact-map h2 {
        font-size: 1.5rem;
    }

    .map-container iframe {
        height: 400px !important;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 35vh;
    }

    .contact-hero-content h1 {
        font-size: 1.8rem;
    }

    .contact-hero-content p {
        font-size: 0.9rem;
    }

    .info-item {
        padding: 1rem;
    }

    .contact-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .contact-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .contact-card h3 {
        font-size: 1.1rem;
    }

    .contact-card p {
        font-size: 0.9rem;
    }

    .form-content h2 {
        font-size: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.85rem;
    }

    .map-container iframe {
        height: 300px !important;
    }
}
