/* =========================================
   CONTACT PAGE  —  contact.css
   Matches screenshot exactly
   ========================================= */

:root {
    --ct-cyan:    #29C3D4;
    --ct-yellow:  #F0A500;
    --ct-yellow-d:#D08C00;
    --ct-dark:    #1a1a1a;
    --ct-text:    #555;
    --ct-border:  #d8dde6;
    --ct-bg:      #f7f7f7;
    --ct-white:   #ffffff;
    --ct-shadow:  0 2px 12px rgba(0,0,0,.06);
}

/* =========================================
   1. HERO BANNER
   ========================================= */
.ct-hero {
    position: relative;
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ct-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.52);
}

.ct-hero-content {
    position: relative;
    z-index: 2;
}

.ct-hero-content h1 {
    color: #fff;
    font-size: 38px;
    font-weight: 900;
    margin: 0 0 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,.45);
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
}

/* Short yellow underline — matches screenshot */
.ct-hero-line {
    width: 54px;
    height: 4px;
    background: var(--ct-yellow);
    border-radius: 2px;
    margin: 0 auto;
}

/* =========================================
   2. SECTION WRAPPER
   ========================================= */
.ct-section {
    background: var(--ct-white);
    padding: 55px 0 50px;
}

.ct-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* Centered heading */
.ct-heading {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    color: var(--ct-dark);
    margin: 0 0 14px;
    font-family: 'Georgia', serif;
}

/* Italic centered subtitle */
.ct-subtext {
    text-align: center;
    font-size: 13px;
    color: var(--ct-text);
    line-height: 1.75;
    margin: 0 0 40px;
    font-style: italic;
}

/* =========================================
   3. TWO-COLUMN GRID
   ========================================= */
.ct-grid {
    display: grid;
    grid-template-columns: 1fr 0.72fr;   /* form wider, info narrower */
    gap: 28px;
    align-items: start;
}

/* ── LEFT: Form ── */
.ct-form-col {
    /* no background — sits on white page */
}

/* Alert messages */
.ct-alert {
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.ct-alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.ct-alert-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Form fields — full bordered box style, matches screenshot */
.ct-field {
    margin-bottom: 16px;
}

.ct-form input,
.ct-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--ct-border);
    border-radius: 3px;
    background: var(--ct-white);
    font-size: 14px;
    color: var(--ct-dark);
    font-family: inherit;
    box-sizing: border-box;
    outline: none;
    transition: border-color .25s;
}

.ct-form input::placeholder,
.ct-form textarea::placeholder {
    color: #aaa;
}

.ct-form input:focus,
.ct-form textarea:focus {
    border-color: var(--ct-cyan);
}

.ct-form textarea {
    resize: vertical;
    min-height: 140px;
}

.ct-err {
    display: block;
    color: red;
    font-size: 11px;
    margin-top: 4px;
}

/* Submit button row — centered, yellow button */
.ct-submit-row {
    text-align: center;
    margin-top: 10px;
}

.ct-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ct-yellow);
    color: var(--ct-white);
    border: none;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: background .25s, transform .2s;
    font-family: inherit;
}

.ct-submit-btn:hover {
    background: var(--ct-yellow-d);
    transform: translateY(-1px);
}

.ct-arrow {
    font-size: 12px;
    line-height: 1;
}

/* ── RIGHT: Info Box ── */
.ct-info-col {
    /* nothing — let the box do the work */
}

.ct-info-box {
    background: #f0f4f7;
    border-radius: 4px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    height: 100%;
    box-sizing: border-box;
}

.ct-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

/* Circular icon — teal outline style */
.ct-info-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border: 2px solid var(--ct-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ct-cyan);
}

.ct-info-icon svg {
    width: 18px;
    height: 18px;
}

.ct-info-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ct-info-text strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--ct-dark);
}

.ct-info-text a {
    font-size: 14px;
    color: var(--ct-cyan);
    text-decoration: none;
    font-weight: 500;
    transition: color .2s;
}

.ct-info-text a:hover {
    color: #1FA8B8;
}

/* =========================================
   4. GOOGLE MAP
   ========================================= */
.ct-map {
    width: 100%;
    line-height: 0;
}

.ct-map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

/* =========================================
   5. BOTTOM TEAL CTA BAR
   ========================================= */
.ct-cta-bar {
    background: var(--ct-cyan);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.ct-cta-text {
    color: #fff;
    font-size: 17px;
    font-style: italic;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,.15);
}

.ct-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ct-yellow);
    color: var(--ct-white);
    padding: 11px 24px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    white-space: nowrap;
    transition: background .25s;
    flex-shrink: 0;
}

.ct-cta-btn:hover {
    background: var(--ct-yellow-d);
    color: var(--ct-white);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 820px) {
    .ct-grid {
        grid-template-columns: 1fr;
    }

    .ct-info-box {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        height: auto;
    }

    .ct-info-item {
        flex: 1 1 200px;
    }
}

@media (max-width: 560px) {
    .ct-hero           { height: 150px; }
    .ct-hero-content h1 { font-size: 28px; }
    .ct-section        { padding: 36px 0 40px; }
    .ct-heading        { font-size: 20px; }

    .ct-cta-bar {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .ct-cta-text { font-size: 15px; }

    .ct-map iframe { height: 300px; }
}