﻿/* ============================================================
   CONTACT-AWC LAYOUT
   ============================================================ */

.contact-awc-section {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
}

/* Flex row controlling the two cards */
.contact-awc-row {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

/* Default: each col full-width on mobile */
.contact-awc-col {
    width: 100%;
}

/* Side-by-side on tablet and up */
@media (min-width: 768px) {
    .contact-awc-row {
        flex-direction: row;
        align-items: stretch;
    }

    .contact-awc-col-left {
        flex: 0 0 40%;
        max-width: 40%;
    }

    .contact-awc-col-right {
        flex: 0 0 60%;
        max-width: 60%;
    }
}

/* ============================================================
   CONTACT-AWC VISUALS
   ============================================================ */

/* Shared card tweaks */
.contact-awc-card {
    border-radius: var(--awc-radius);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

/* Left card: soft tinted background */
.contact-awc-card-info {
    background: linear-gradient( 145deg, rgba(15, 124, 120, 0.06), rgba(168, 214, 210, 0.08) );
    border: 1px solid rgba(24, 120, 115, 0.18);
}

/* Right card: subtle accent border on top */
.contact-awc-card-form {
    border-top: 4px solid var(--awc-brand);
}

/* Pill label */
.contact-awc-pill {
    background: rgba(24, 120, 115, 0.08);
    color: var(--awc-brand);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
}

/* Icon circle */
.contact-awc-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    color: var(--awc-brand);
    flex-shrink: 0;
}

    .contact-awc-icon i {
        font-size: 1.2rem;
    }

/* Form tweaks */
.contact-awc-card-form .form-label {
    font-weight: 600;
    color: var(--awc-dark);
}

.contact-awc-card-form .form-control,
.contact-awc-card-form .form-select {
    border-radius: var(--awc-radius);
    border: 1px solid #d9e3e3;
    padding: 0.75rem 0.9rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

    .contact-awc-card-form .form-control:focus,
    .contact-awc-card-form .form-select:focus {
        border-color: var(--awc-brand);
        box-shadow: 0 0 0 0.15rem rgba(28, 134, 128, 0.15);
    }

/* Mobile spacing */
@media (max-width: 767.98px) {
    .contact-awc-section {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }

    .contact-awc-card {
        margin-bottom: 0.5rem;
    }
}

/* ============================================================
   CONTACT-AWC HERO
   ============================================================ */

.contact-awc-hero {
    position: relative;
    background-image: url("../../img/shared/contact-hero.jpg"); /* update path/name */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Soft overlay to keep text readable */
.contact-awc-hero-overlay {
    width: 100%;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    background: linear-gradient( 135deg, rgba(8, 35, 25, 0.45), rgba(4, 60, 40, 0.85) );
}

/* Text styling */
.contact-awc-hero h1 {
    color: #ffffff;
    font-weight: 700;
}

.contact-awc-hero .lead {
    color: #e7f4f3;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Slightly tighter on mobile */
@media (max-width: 767.98px) {
    .contact-awc-hero-overlay {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .contact-awc-hero .lead {
        font-size: 0.98rem;
    }
}

/* ============================================================
   CONTACT-AWC INPUT WITH ICONS
   ============================================================ */

.contact-awc-input {
    position: relative;
    display: flex;
    align-items: center;
}

    .contact-awc-input i {
        position: absolute;
        left: 0.9rem;
        color: var(--awc-brand);
        font-size: 1.1rem;
        pointer-events: none;
    }

    /* Shift inputs right to make room for icon */
    .contact-awc-input .form-control,
    .contact-awc-input .form-select {
        padding-left: 2.4rem !important;
    }

/* Textarea with icon */
.contact-awc-input-textarea i {
    top: 0.75rem;
}

.contact-awc-input-textarea .form-control {
    padding-left: 2.6rem !important;
}
