/**
 * Contact Page Styles
 */

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes btnGradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* 1. Background & Section */
.contact-striking-section {
    position: relative;
    padding: 6rem 0;
    background-color: #000;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Ambient Background Elements (Dual Colors) */
.contact-striking-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    /* Blue Glow (Beatbox) */
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.contact-striking-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    /* Red Glow (Rap) */
    background: radial-gradient(circle, rgba(207, 0, 0, 0.15) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.container-contact {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* 2. Header */
.contact-header-striking {
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.contact-header-striking h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
    line-height: 1;
}

/* New Text Colors */
.text-red { color: #cf0000; }
.text-blue { color: #3b82f6; }

.contact-header-striking p {
    font-size: 1.1rem;
    color: #888;
    max-width: 500px;
    margin-top: 1rem;
    /* Gradient border to match theme */
    border-left: 3px solid;
    border-color: #ccc;
    padding-left: 1rem;
}

/* 3. Grid Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

/* 4. Left: The Form (Dark Glass) */
.contact-form-glass {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 16px;
    opacity: 0; /* For animation */
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group-clean {
    margin-bottom: 1.5rem;
}

.form-label-clean {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.form-input-clean {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    border-radius: 6px;
    padding: 1rem;
    color: #fff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-input-clean:focus {
    outline: none;
    border-color: #fff;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

textarea.form-input-clean {
    min-height: 150px;
    resize: vertical;
}

/* Submit Button (Animated Dual Color) */
.btn-strike-submit {
    /* Gradient Red to Blue to Red */
    background: linear-gradient(90deg, #cf0000, #3b82f6, #cf0000);
    background-size: 200% auto;
    animation: btnGradient 3s linear infinite;

    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-strike-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Alert Messages */
.contact-success {
    background: #030;
    color: #8f8;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-error {
    background: #300;
    color: #f88;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

/* 5. Right: Info & Visuals */
.contact-info-clean {
    opacity: 0; /* For animation */
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02); /* Slight bg */
}

.info-card:hover {
    transform: translateX(10px);
}

.info-icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-icon-box svg {
    width: 24px;
    height: 24px;
}

/* Icon Colors */
.card-red .info-icon-box {
    background: rgba(207, 0, 0, 0.1);
    border: 1px solid rgba(207, 0, 0, 0.3);
    color: #cf0000;
}

.card-blue .info-icon-box {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

/* Hover Glows */
.card-red:hover {
    border-color: rgba(207, 0, 0, 0.3);
    box-shadow: 0 0 15px rgba(207, 0, 0, 0.1);
}

.card-blue:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.1);
}

.info-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.info-content p {
    font-size: 0.95rem;
    color: #aaa;
    margin: 0;
}

/* Link Colors */
.card-red a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.card-red a:hover {
    color: #cf0000;
}

.card-blue a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.card-blue a:hover {
    color: #3b82f6;
}

/* Feature Idea Box */
.feature-box-strike {
    margin-top: 3rem;
    padding: 2rem;
    border: 1px dashed #444;
    border-radius: 12px;
    text-align: center;
}

.feature-box-strike h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-box-strike p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.btn-outline-strike {
    background: transparent;
    border: 1px solid #555;
    color: #ccc;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-strike:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255,255,255,0.05);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-header-striking h1 {
        font-size: 3rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Honeypot field (anti-spam) */
.honeypot-field {
    position: absolute;
    left: -9999px;
}

/* Character limit hint */
.char-limit-hint {
    color: #666;
    display: block;
    margin-top: 0.25rem;
}
