/* Contact Page Specific Styles */

.contact-container {
    position: relative;
    min-height: 100vh;
    padding: 120px 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--electric-blue), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
}

.contact-header p {
    font-size: 1.3rem;
    color: var(--text-gray);
    font-weight: 300;
}

/* Two Column Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

/* Contact Info Card */
.contact-info-card {
    background: linear-gradient(135deg, rgba(10, 25, 41, 0.8), rgba(5, 12, 20, 0.9));
    border: 1px solid rgba(33, 150, 243, 0.3);
    border-radius: 20px;
    padding: 3rem;
}

.contact-info-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--electric-blue);
    margin-bottom: 2rem;
    font-weight: 700;
}

.info-section {
    margin-bottom: 2.5rem;
}

.info-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-section p, .info-section address {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: normal;
}

/* Form Card */
.form-card {
    background: linear-gradient(135deg, rgba(10, 25, 41, 0.8), rgba(5, 12, 20, 0.9));
    border: 1px solid rgba(33, 150, 243, 0.3);
    border-radius: 20px;
    padding: 3rem;
}

.form-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--electric-blue);
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(33, 150, 243, 0.05);
    border: 1px solid rgba(33, 150, 243, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-blue);
    background: rgba(33, 150, 243, 0.1);
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.2);
}

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

/* Excel Paste Section */
.excel-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(33, 150, 243, 0.2);
}

.excel-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.excel-section p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.excel-paste-area {
    width: 100%;
    min-height: 200px;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border: 2px dashed rgba(33, 150, 243, 0.4);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.excel-paste-area:focus {
    outline: none;
    border-color: var(--electric-blue);
    border-style: solid;
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.3);
}

.excel-paste-area::placeholder {
    color: rgba(144, 202, 249, 0.5);
}

.parsed-data {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(33, 150, 243, 0.05);
    border: 1px solid rgba(33, 150, 243, 0.2);
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.parsed-data.active {
    display: block;
}

.parsed-data h4 {
    color: var(--electric-blue);
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(33, 150, 243, 0.2);
    color: var(--text-light);
}

.data-table th {
    background: rgba(33, 150, 243, 0.2);
    color: var(--electric-blue);
    font-weight: 700;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    color: white;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
    font-family: 'Rajdhani', sans-serif;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.3), rgba(0, 212, 255, 0.3));
    margin-left: 1rem;
}

.button-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Success Message */
.success-message {
    display: none;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(46, 125, 50, 0.2));
    border: 1px solid rgba(76, 175, 80, 0.5);
    border-radius: 10px;
    color: #81C784;
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.success-message.active {
    display: block;
    animation: slideIn 0.5s ease;
}

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

/* Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
