/* Contact Page Styling */

:root {
    --brand-red: #F43722;
    --brand-red-hover: #D62F1D;
    --bg-dark: #0A1128;
    --bg-darker: #0D1840;
    --text-white: #ffffff;
    --text-dark: #232323;
    --text-muted: #6B7280;
}

body {
    background: var(--bg-dark) url("../assets/images/White-Background.webp") center fixed;
    background-size: cover;
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
}

.wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.contact-us-header {
    text-align: center;
    padding-top: 140px;
    padding-bottom: 60px;
}

.contact-us-header h6 {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-us-header h1 {
    font-size: var(--text-dark);
    font-weight: 700;
    line-height: 1.1;
}

/* Contact Grid */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 100px;
}

.contact-card {
    margin-bottom: 2rem;
}

.contact-card .card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-card .card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-red);
}

.contact-card h6 {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Form Styling */
.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    color: var(--bg-dark);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-form p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-red);
}

.d-flex.justify-content-between {
    display: flex;
    gap: 1.5rem;
}

.d-flex.justify-content-between>div {
    flex: 1;
}

/* Button */
.p-btn {
    background: var(--brand-red);
    color: #ffffff;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.p-btn:hover {
    background: var(--brand-red-hover);
    transform: translateY(-2px);
}

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

    .contact-us-header {
        padding-top: 100px;
    }
}

@media (max-width: 600px) {
    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 0;
    }

    .contact-form {
        padding: 2rem;
    }
}