﻿/* ==========================================================
   CONTACT PAGE (MINIMALIST / BRUTALIST UI)
   ========================================================== */
.sharp-contact-section {
    padding: 100px 0 120px 0;
    background-color: #ffffff; /* Pure white background */
    font-family: 'Helvetica Neue', Arial, sans-serif; /* Clean, standard sans-serif */
}

.sharp-contact-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Right side slightly wider */
    gap: 80px;
    align-items: flex-start;
}

/* --- Left Column: Typography & Links --- */
.sharp-heading {
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 800;
    color: #000000;
    line-height: 1.05;
    margin-bottom: 35px;
    letter-spacing: -1.5px;
}

.sharp-desc {
    margin-bottom: 40px;
}

    .sharp-desc p {
        font-size: 1.05rem;
        color: #111111;
        line-height: 1.6;
        margin-bottom: 20px;
    }

.sharp-contact-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .sharp-contact-links a {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        color: #000000;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
    }

        .sharp-contact-links a span {
            text-decoration: underline;
            text-underline-offset: 4px; /* Matches the image's clean underline */
        }

        .sharp-contact-links a i {
            font-size: 1.3rem;
            color: #000000;
            width: 24px;
            text-align: center;
        }

        .sharp-contact-links a:hover span {
            color: #555555;
        }

/* --- Right Column: The Form --- */
.sharp-form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Tight gap between inputs like the image */
}

.sharp-form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Input Styles - 100% Sharp */
.sharp-form input,
.sharp-form select,
.sharp-form textarea {
    width: 100%;
    padding: 16px 18px;
    background-color: #ffffff;
    border: 1px solid #888888; /* Sharp gray border */
    border-radius: 0; /* Absolutely no rounded corners */
    font-size: 0.95rem;
    color: #000000;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s ease;
    appearance: none; /* Removes default OS styling */
}

    .sharp-form input::placeholder,
    .sharp-form textarea::placeholder {
        color: #111111; /* Dark placeholders like the image */
    }

    .sharp-form input:focus,
    .sharp-form select:focus,
    .sharp-form textarea:focus {
        border-color: #000000;
        border-width: 1px; /* Keeps it sharp, no glowing shadow */
    }

.sharp-form textarea {
    min-height: 200px;
    resize: vertical;
}

/* Select Dropdown Arrow */
.sharp-select-wrapper {
    position: relative;
}

.sharp-select-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #000000;
    pointer-events: none;
    font-size: 1.2rem;
}

/* Huge Solid Black Submit Button */
.sharp-submit-btn {
    margin-top: 15px;
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 22px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
    transition: background-color 0.2s ease;
}

    .sharp-submit-btn:hover {
        background-color: #333333;
    }

/* ==========================================================
   PERFECT RESPONSIVE DESIGN (MOBILE READY)
   ========================================================== */
@media (max-width: 992px) {
    .sharp-contact-container {
        grid-template-columns: 1fr; /* Stacks layout vertically */
        gap: 50px;
    }

    .sharp-heading {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .sharp-contact-section {
        padding: 50px 0 80px 0; /* Less padding on small screens */
    }

    .sharp-heading {
        font-size: 3rem; /* Scales text down for phones */
    }

    .sharp-form-row.two-col {
        grid-template-columns: 1fr; /* First and Last name stack on top of each other */
        gap: 15px;
    }

    .sharp-desc p {
        font-size: 1rem;
    }
}
/* ==========================================================
   FORM LABELS + REQUIRED ICON
   ========================================================== */

.sharp-field {
    display: flex;
    flex-direction: column;
    width: 100%;
}

    .sharp-field label {
        font-size: 0.85rem;
        font-weight: 600;
        color: #000;
        margin-bottom: 6px;
        letter-spacing: 0.3px;
    }

.required {
    color: #d32f2f;
    font-weight: 700;
    margin-left: 2px;
}