/* ============================================================
   Oahu Prep — shared/contact.css
   Contact section + form inputs + confetti divider
   Loaded globally in layout.html — do not duplicate in page CSS
   ============================================================ */


/* — Contact Section Layout — */

.contact-section {
    background: var(--gray-bg);
}

#contact {
    background: var(--white);
}

.contact-card {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.contact-info-col {
    background: linear-gradient(160deg, #ff9430 40%, #2db8d2 100%);
}

.contact-text {
    color: rgba(255,255,255,0.95);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-detail {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}

.contact-divider {
    border-color: rgba(255,255,255,0.2);
}

.contact-footnote {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    font-style: italic;
    margin-bottom: 0;
}

.text-white-75 {
    color: rgba(255,255,255,0.85);
}

.free-intro-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.35rem 1rem;
    border-radius: 50rem;
    letter-spacing: 0.02em;
}

.contact-form-col {
    background-color: var(--white);
    background-image: url('../images/bg-bubbles.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


/* — Contact Form Inputs — */

.contact-form-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.contact-form-heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--blue));
    border-radius: 2px;
    margin: 0.5rem auto 0;
}

.contact-form-subtext {
    color: var(--gray-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-input {
    background: var(--gray-bg) !important;
    border: 1.5px solid var(--gray-border) !important;
    border-radius: var(--radius) !important;
    color: var(--dark) !important;
    font-size: 0.95rem !important;
    padding: 0.8rem 1rem !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
}

.contact-input::placeholder {
    color: var(--gray-muted);
    font-weight: 400;
}

.contact-input:focus {
    background: var(--white) !important;
    border-color: var(--blue) !important;
    box-shadow: 0 0 0 3px rgba(15, 173, 202, 0.1) !important;
    outline: none;
}

textarea.contact-input {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    font-size: 1rem !important;
    padding: 0.75rem 2.5rem !important;
    letter-spacing: 0.01em;
}

.contact-privacy {
    text-align: center;
    font-size: 0.78rem;
    color: var(--gray-muted);
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.contact-privacy a {
    color: var(--blue-dark);
    text-decoration: underline;
    text-decoration-color: var(--gray-border);
    text-underline-offset: 2px;
    transition: text-decoration-color 0.15s ease;
}

.contact-privacy a:hover {
    text-decoration-color: var(--blue-dark);
}


/* — Confetti Divider — */

.confetti-divider {
    line-height: 0;
    overflow: hidden;
    max-height: 120px;
}

.confetti-divider img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.5;
}