/* =========================================
   CONTACT PAGE  —  contact.css
   ========================================= */

:root {
    --ct-navy: #1b3a5c;
    --ct-orange: #f25b2a;
    --ct-orange-d: #d94c1f;
    --ct-border: #c8ddf5;
    --ct-bg: #f5f7fa;
    --ct-white: #ffffff;
    --ct-text: #444444;
    --ct-gray: #777777;
}

/* =========================================
   FORM SECTION
   ========================================= */
.ct-section {
    background: var(--ct-bg);
    padding: 80px 0 60px;
}

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

.ct-eyebrow {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ct-navy);
    margin-bottom: 10px;
}

.ct-heading {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--ct-navy);
    margin: 0 0 40px;
    line-height: 1.2;
}

/* Alerts */
.ct-alert {
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

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

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

/* Form grid */
.ct-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ct-field {
    display: flex;
    flex-direction: column;
}

.ct-field--full {
    grid-column: 1 / -1;
}

.ct-form input,
.ct-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--ct-border);
    border-radius: 4px;
    background: var(--ct-bg);
    font-size: 14px;
    color: var(--ct-navy);
    font-family: inherit;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}

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

.ct-form input:focus,
.ct-form textarea:focus {
    border-color: #7ab8e8;
    box-shadow: 0 0 0 3px rgba(122, 184, 232, 0.15);
}

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

.ct-err {
    display: block;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 6px;
}

/* Submit */
.ct-submit-row {
    text-align: center;
    margin-top: 8px;
}

.ct-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ct-orange);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    font-family: inherit;
}

.ct-submit-btn:hover {
    background: #262262;
    transform: translateY(-2px);
}

/* =========================================
   INFO CARDS SECTION
   ========================================= */
.ct-info-section {
    padding: 60px 0 80px;
    background: var(--ct-white);
}

.ct-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.ct-info-card {
    background: var(--ct-white);
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Orange circle with yellow offset ring */
.ct-info-icon {
    position: relative;
    width: 64px;
    height: 64px;
    background: var(--ct-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 20px;
}

.ct-info-icon:hover {
    background: #262262;
    /* transform: translateY(-2px); */
}

.ct-info-icon::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    width: 64px;
    height: 64px;
    background: #f8cc00;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.35;
}

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

.ct-info-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ct-navy);
    margin: 0 0 8px;
}

.ct-info-text {
    font-size: 20px;
    color: #000;
    margin: 0;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .ct-section {
        padding: 60px 0 40px;
    }

    .ct-heading {
        font-size: 32px;
    }

    .ct-form-row {
        grid-template-columns: 1fr;
    }

    .ct-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ct-info-card {
        padding: 36px 24px;
    }
}

/* =========================================
   HERO BANNER
   ========================================= */
.page-title img {
    width: 100%;
    background-position: center;
    display: block;
    /* height: 350px; */
}

@media (max-width: 767px) {
    .page-title img {
        height: 200px;
        object-fit: cover;
        object-position: center;
    }
}