/* ==========================================================================
   PAGE HERO
   ========================================================================== */
.ct-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    max-height: 900px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.ct-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.35) 45%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

.ct-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px 110px;
    color: #fff;
}

.ct-hero-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
    border-bottom: 3px solid #fff;
    padding-bottom: 6px;
    margin-bottom: 18px;
}

.ct-hero-content h1 {
    font-size: 42px;
    font-weight: 600;
    margin: 0 0 12px;
    max-width: 700px;
}

.ct-hero-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
    margin: 0;
}

/* ==========================================================================
   SHARED SECTION EYEBROW
   ========================================================================== */
.ct-section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #b40707;
    margin-bottom: 14px;
}

/* ==========================================================================
   BACKGROUND DECOR
   ========================================================================== */
.ct-bg-decor {
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    color: rgba(180, 7, 7, 0.12);
    pointer-events: none;
    z-index: 0;
}

.ct-bg-decor svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ct-bg-decor-left {
    left: 0;
}

/* ==========================================================================
   CONTACT CONTENT — INFO + FORM
   ========================================================================== */
.ct-content-section {
    position: relative;
    width: 100%;
    padding: 90px 24px;
    background-color: #ffffff;
    overflow: hidden;
}

.ct-content-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: start;
}

/* ===== Left: Info Column ===== */
.ct-info-col h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 18px;
}

.ct-info-lead {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin: 0 0 32px;
}

.ct-info-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 32px;
}

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

.ct-info-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fdf1f1;
    border-radius: 50%;
    color: #b40707;
}

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

.ct-info-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ct-info-value {
    display: block;
    font-size: 14.5px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
}

.ct-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ct-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #b40707;
    border-radius: 50%;
    color: #fff;
    transition: background-color 0.2s ease;
}

.ct-social a:hover {
    background-color: #8f0505;
}

.ct-social svg {
    width: 16px;
    height: 16px;
}

/* ===== Right: Form Column ===== */
.ct-form-card {
    background-color: #f7f7f7;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.ct-form-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.ct-form-card > p {
    font-size: 14px;
    color: #666;
    margin: 0 0 28px;
}

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

.ct-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.ct-form-group-full {
    margin-bottom: 24px;
}

.ct-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.ct-form-group input,
.ct-form-group textarea {
    padding: 13px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    background-color: #fff;
    resize: vertical;
}

.ct-form-group input:focus,
.ct-form-group textarea:focus {
    outline: none;
    border-color: #b40707;
}

.ct-submit-btn {
    width: 100%;
    background-color: #b40707;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.ct-submit-btn:hover {
    background-color: #8f0505;
}

/* ==========================================================================
   MAP SECTION
   ========================================================================== */
.ct-map-section {
    width: 100%;
    height: 450px;
    line-height: 0;
}

.ct-map-section iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
    .ct-hero {
        min-height: 70vh;
    }

    .ct-hero-content h1 {
        font-size: 30px;
    }

    .ct-content-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ct-bg-decor {
        display: none;
    }

    .ct-form-card {
        padding: 28px;
    }

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

    .ct-info-col-red {
        padding: 28px;
    }
}

@media (max-width: 576px) {
    .ct-hero-content h1 {
        font-size: 24px;
    }

    .ct-content-section {
        padding: 50px 20px;
    }

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

    .ct-form-card {
        padding: 22px;
    }

    .ct-map-section {
        height: 320px;
    }

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

    .ct-heading-inner h2 {
        font-size: 24px;
    }

    .ct-info-col-red {
        padding: 22px;
    }
}

/* ==========================================================================
   GET IN TOUCH HEADING
   ========================================================================== */
.ct-heading-section {
    width: 100%;
    padding: 70px 24px 0;
    background-color: #ffffff;
}

.ct-heading-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.ct-heading-inner h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.ct-heading-inner p {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin: 0;
}

/* ==========================================================================
   RED INFO COLUMN
   ========================================================================== */
.ct-info-col-red {
    background: linear-gradient(155deg, #c40808 0%, #7a0505 100%);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 44px rgba(180, 7, 7, 0.2);
}

.ct-info-col-red .ct-info-icon {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.ct-info-col-red .ct-info-label {
    color: rgba(255, 255, 255, 0.65);
}

.ct-info-col-red .ct-info-value {
    color: #ffffff;
}

.ct-info-col-red .ct-social a {
    background-color: rgba(255, 255, 255, 0.15);
}

.ct-info-col-red .ct-social a:hover {
    background-color: #fff;
    color: #b40707;
}

/* ===== Department Contact Cards ===== */
.ct-dept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.ct-dept-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ct-dept-card h4 {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffd7d7;
    margin: 0 0 6px;
}

.ct-dept-card span {
    font-size: 13px;
    color: #fff;
    line-height: 1.5;
    word-break: break-word;
}
