/* ============================================
   Contact Page Styles
   ============================================ */

.ct-hero {
    background: linear-gradient(135deg, #9eab03 0%, #535a01 100%);
    color: #fff;
    padding: 60px 0 50px;
}

.ct-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ct-hero__breadcrumb {
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.85;
}

.ct-hero__breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.ct-hero__breadcrumb a:hover {
    text-decoration: underline;
}

.ct-hero h1 {
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #fff;
}

.ct-hero p {
    font-size: 17px;
    opacity: 0.9;
    margin: 0;
    max-width: 800px;
    line-height: 1.6;
}

.ct-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.ct-section {
    /* homepage.css sets a global `section { padding: 88px 0 }`; zero it so the
       sections aren't pushed ~176px apart. */
    margin-bottom: 40px;
    padding: 0;
}

.ct-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #9eab03;
}

.ct-section__intro {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 800px;
}

/* ── Sediu central ── */
.ct-office {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.ct-office__address {
    display: flex;
    gap: 14px;
    background: #f5f8e8;
    border-left: 4px solid #9eab03;
    border-radius: 8px;
    padding: 24px;
    align-items: flex-start;
}

.ct-office__address i {
    font-size: 28px;
    color: #9eab03;
    flex-shrink: 0;
}

.ct-office__address p {
    margin: 0 0 10px;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

.ct-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #9eab03;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.ct-link:hover {
    text-decoration: underline;
}

.ct-office__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ct-info-block {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 24px 28px;
}

.ct-info-block h3 {
    font-size: 16px;
    font-weight: 700;
    color: #9eab03;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 16px;
}

.ct-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

.ct-info-item i {
    color: #9eab03;
    font-size: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}

.ct-info-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.ct-info-item a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.ct-info-item a:hover {
    color: #9eab03;
}

/* ── Program ── */
.ct-program {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 30px;
}

.ct-program li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #333;
}

.ct-program__hours {
    color: #9eab03;
    font-weight: 600;
}

/* ── Departments ── */
.ct-depts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ct-dept {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 28px;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}

.ct-dept:hover {
    box-shadow: 0 4px 16px rgba(155, 173, 52, 0.15);
    border-color: #9eab03;
}

.ct-dept h3 {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f5f8e8;
}

.ct-dept__items {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.ct-dept__items li {
    padding: 6px 0 6px 22px;
    font-size: 13px;
    color: #555;
    position: relative;
    line-height: 1.5;
}

.ct-dept__items li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 6px;
    color: #9eab03;
    font-size: 11px;
}

.ct-dept__contact {
    background: #f5f8e8;
    border-radius: 8px;
    padding: 16px;
    margin-top: auto;
}

.ct-dept__contact strong {
    display: block;
    color: #333;
    font-size: 15px;
    margin-bottom: 8px;
}

.ct-dept__contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    text-decoration: none;
    font-size: 13px;
    margin-top: 4px;
    word-break: break-all;
}

.ct-dept__contact a i {
    color: #9eab03;
    width: 14px;
    flex-shrink: 0;
}

.ct-dept__contact a:hover {
    color: #9eab03;
}

/* ── Investitori ── */
.ct-investors {
    background: #f5f8e8;
    border-radius: 12px;
    padding: 32px 36px;
    border-left: 4px solid #9eab03;
}

.ct-investors h2 {
    border-bottom: none;
    margin-bottom: 12px;
    padding-bottom: 0;
}

.ct-investors > p {
    color: #555;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.ct-investors__details p {
    margin: 8px 0;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ct-investors__details i {
    color: #9eab03;
    width: 18px;
}

.ct-investors__details a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.ct-investors__details a:hover {
    color: #9eab03;
}

/* ── Form ── */
.ct-form {
    max-width: 800px;
}

.ct-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.ct-form__group {
    margin-bottom: 20px;
}

.ct-form__group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.ct-form__group input,
.ct-form__group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    transition: border-color 0.2s;
}

.ct-form__group input:focus,
.ct-form__group textarea:focus {
    border-color: #9eab03;
    outline: none;
}

.ct-form__group textarea {
    resize: vertical;
    min-height: 120px;
}

.ct-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 24px 0;
}

.ct-form__consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    font-weight: 400;
}

.ct-form__consent input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: #9eab03;
}

.ct-form__submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #9eab03;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s;
}

.ct-form__submit:hover {
    background: #8a9c2a;
}

.ct-form__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.ct-form__msg {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.ct-form__msg--ok {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.ct-form__msg--err {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .ct-office {
        grid-template-columns: 1fr;
    }
    .ct-info-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .ct-depts {
        grid-template-columns: 1fr;
    }
    .ct-form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .ct-section h2 {
        font-size: 22px;
    }
    .ct-hero h1 {
        font-size: 28px;
    }
    .ct-program {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .ct-investors {
        padding: 24px 20px;
    }
}
