/* HERO */
.contact-hero {
    background: #020617;
    text-align: center;
    padding: 3rem 0 1.2rem;
}

.contact-hero .section-title {
    color: #fff;
}

.contact-hero .section-subtitle {
    color: #cbd5f5;
    max-width: 520px;
    margin: 0.5rem auto 0;
}

/* TWO COLUMNS */
.two-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 2rem;
}

/* FORM BOX */
.contact-form-box {
    background: #0f172a;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.35);
    color: #e5e7eb;
}

.contact-form-box h2 {
    margin-bottom: 1rem;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: none;
    margin-bottom: 1rem;
    background: #1e293b;
    color: #fff;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    outline: 2px solid #38bdf8;
}

/* SEND BUTTON */
.send-btn {
    background: #f97316;
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
    transition: 0.3s;
}

.send-btn:hover {
    background: #ea580c;
}

/* INFO BOX */
.contact-info-box {
    background: #111827;
    padding: 2rem;
    border-radius: 14px;
    color: #e2e8f0;
    box-shadow: 0 10px 26px rgba(0,0,0,0.4);
}

.contact-logo {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-logo img {
    width: 110px;
    border-radius: 12px;
}

/* CONTACT LINKS */
.contact-link {
    color: #38bdf8;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.contact-link:hover {
    color: #f97316;
}

/* SOCIAL ICONS */
.social-icons a {
    display: inline-block;
    margin: 8px 5px 0;
    padding: 8px 14px;
    background: #1e293b;
    color: #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.25s;
}

.social-icons a:hover {
    background: #f97316;
    color: white;
}
