/* =======================================================
   CONTACT PAGE - FULL CSS
   Structured & aligned with INDEX hero style
======================================================= */


/* =======================================================
   HERO SECTION (MATCHES INDEX STYLE)
======================================================= */
.contact-hero {
    background: url('IMG/contact/meeting.jpg') center/cover no-repeat;
    position: relative;

    padding: 36px 140px;
    text-align: left;
    color: white;
}

/* Overlay for readability */
.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Keep content above overlay */
.contact-hero * {
    position: relative;
    z-index: 2;
}

/* Hero text */
.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-hero p {
    font-size: 22px;
    max-width: 900px;
    line-height: 1.5;
    opacity: 0.95;
}



/* =======================================================
   MAIN CONTACT LAYOUT (2 COLUMNS)
======================================================= */
.contact-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    align-items: start;
}


/* =======================================================
   LEFT COLUMN (CONTACT CARDS)
======================================================= */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* =======================================================
   CONTACT CARD (PERSON BLOCK)
======================================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 220px;
    gap: 20px;
    align-items: center;

    background: #fff;
    padding: 20px;

    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Text inside cards */
.contact-text p {
    font-size: 18px;
    margin: 8px 0;
    line-height: 1.5;
}

/* Contact images */
.contact-wrapper img {
    width: 150px;
    height:150px;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    display: block;
    background: #eee;
}


/* =======================================================
   CONTACT FORM BOX (RIGHT SIDE)
======================================================= */
.contact-form-box {
    background: #1f3447;
    color: white;

    padding: 25px;
    border-radius: 12px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Titles inside form */
.contact-form-box h2,
.contact-form-box h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 28px;
    color: white;
}


/* =======================================================
   FORM STRUCTURE
======================================================= */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Inputs / Select / Textarea */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;

    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 6px;

    font-size: 16px;
    box-sizing: border-box;

    background: rgba(255,255,255,0.08);
    color: white;
}

/* Placeholder styling */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.85);
}

/* Select dropdown */
.contact-form select {
    color: white;
}

/* Dropdown options */
.contact-form option {
    color: black;
}

/* Textarea */
.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Button */
.contact-form .btn {
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}


/* =======================================================
   FORM NOTE (EMAIL LINK)
======================================================= */
.form-note {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.5;
}

.form-note a {
    color: white;
    font-weight: bold;
}


/* =======================================================
   SECTION (GENERAL CONTENT BLOCK)
======================================================= */
.section {
    padding: 50px 80px;
    background-color: white;
    margin-bottom: 25px;
    text-align: left;
}

/* Section headings */
.section h1 {
    color: var(--blue);
    font-size: 32px;
}

.section h2 {
    color: var(white);
    font-size: 28px;
}

.section h3 {
    color: var(--black);
    font-size: 36px;
}


/* =======================================================
   RESPONSIVE DESIGN
======================================================= */
@media (max-width: 992px) {

    /* Stack layout */
    .contact-main {
        grid-template-columns: 1fr;
    }

    /* Stack cards */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    /* Adjust images */
    .contact-wrapper img {
        width: 100%;
        max-width: 320px;
        height: 260px;
    }

}