/* ── Page background ── */
.ct-page-bg { background: #fff; }

/* ── Contacts page – new design ── */

/* Hero */
.ct-hero {
    position: relative;
    width: 100%;
    height: 335px;
    background: #fff;
    overflow: hidden;
}
.ct-hero-inner {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.ct-hero-nav {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}
.ct-hero-logo {
    font-size: 13px;
    font-weight: 600;
    color: #07133c;
    letter-spacing: 0.5px;
}
.ct-hero-breadcrumb {
    font-size: 11px;
    color: #07133c;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}
.ct-hero-breadcrumb li { display: inline-flex; align-items: center; gap: 6px; }
.ct-hero-breadcrumb a { color: inherit; text-decoration: none; opacity: 0.6; }
.ct-hero-breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.ct-hero-breadcrumb .sep { opacity: 0.4; }
.ct-hero-content {
    width: 300px;
    z-index: 2;
    flex-shrink: 0;
}
.ct-hero-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 32px;
    font-weight: 700;
    color: #07133c;
    line-height: 1.15;
    margin-bottom: 14px;
}
.ct-hero-subtitle {
    font-size: 13px;
    color: #3a4a6b;
    line-height: 1.5;
    margin-bottom: 24px;
}
.ct-hero-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #005eec;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}
.ct-hero-btn:hover { opacity: 0.9; }
.ct-hero-img {
    width: 420px;
    height: 310px;
    flex-shrink: 0;
}
.ct-hero-img img { width: 100%; height: 100%; object-fit: contain; }

/* Contact cards row */
.ct-contacts {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 40px 30px;
}
.ct-cards {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}
.ct-card {
    flex: 1;
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}
.ct-card:hover {
    border-color: #e0e8f5;
    box-shadow: 0 4px 20px rgba(66, 136, 244, 0.08);
}
.ct-card-icon {
    width: 43px;
    height: 43px;
    flex-shrink: 0;
}
.ct-card-icon svg { width: 100%; height: 100%; }
.ct-card-label {
    font-size: 13px;
    font-weight: 600;
    color: #0a1a44;
    margin-bottom: 8px;
}
.ct-card-value {
    font-size: 12px;
    color: #4a5578;
    line-height: 1.6;
}
.ct-card-value a { color: #4288f4; text-decoration: none; }
.ct-card-value a:hover { text-decoration: underline; }

/* Departments card */
.ct-departments {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 50px;
    padding: 0 40px;
}
.ct-dept-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #EEF2F7;
    box-shadow: 0 3px 14px rgba(20, 36, 90, .05);
    padding: 24px 28px;
    transition: all 0.25s ease;
}
.ct-dept-card:hover {
    border-color: #d0daf0;
    box-shadow: 0 6px 24px rgba(20, 36, 90, 0.1);
}
.ct-dept-card-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    font-weight: 700;
    color: #0a1a44;
    margin-bottom: 16px;
}
.ct-dept-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px 24px;
}
.ct-dept-item-label {
    font-size: 12px;
    font-weight: 600;
    color: #0a1a44;
    margin-bottom: 2px;
}
.ct-dept-item-value {
    font-size: 13px;
    color: #4a5578;
    line-height: 1.5;
}
.ct-dept-item-value a { color: #0a6dad; text-decoration: none; }
.ct-dept-item-value a:hover { color: #e51a4b; }
.ct-dept-item-value a[href^="tel:"] { font-weight: 600; color: #0a1a44; }
.ct-dept-item-value a[href^="mailto:"] { color: #0a6dad; }

/* Map + Directions */
.ct-directions {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 40px;
}
.ct-directions-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    font-weight: 700;
    color: #0a1a44;
    margin-bottom: 24px;
}
.ct-directions-layout {
    display: flex;
    gap: 30px;
}
.ct-directions-map {
    flex: 3;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f4f8;
}
.ct-directions-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.ct-directions-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ct-direction-item {
    display: flex;
    gap: 14px;
}
.ct-direction-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}
.ct-direction-icon svg { width: 100%; height: 100%; }
.ct-direction-label {
    font-size: 13px;
    font-weight: 600;
    color: #0a1a44;
    margin-bottom: 4px;
}
.ct-direction-text {
    font-size: 11.5px;
    color: #4a5578;
    line-height: 1.5;
}
.ct-direction-text strong { color: #0a1a44; }
.ct-direction-link {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 24px;
    background: #005eec;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    align-self: flex-start;
}
.ct-direction-link:hover { opacity: 0.9; }

/* Route accordion */
.ct-route-list {
    display: grid;
    gap: 12px;
}
.ct-route-card {
    border: 1px solid #e2eff5;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .15s;
}
.ct-route-card:hover { border-color: #cadfeb; }
.ct-route-btn {
    background: #f3f7f9;
    padding: 1rem 1.25rem;
    font-size: .875rem;
    font-weight: 600;
    color: #0c2556;
    border: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background .15s;
}
.ct-route-btn:hover { background: #e8f0f5; }
.ct-route-btn .ic { transition: transform .2s; width: 16px; height: 16px; color: #4d6b82; }
.ct-route-btn.-active .ic { transform: rotate(180deg); }
.ct-route-content {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease, padding .25s ease;
}
.ct-route-content.-open { padding: 1rem 1.25rem 1.25rem; max-height: 400px; }
.ct-route-content ul { padding-left: 1.25rem; list-style: none; counter-reset: route; }
.ct-route-content li {
    counter-increment: route;
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: .5rem;
    font-size: .875rem;
    color: #4d6b82;
    line-height: 1.6;
}
.ct-route-content li:before {
    content: counter(route);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.25rem;
    height: 1.25rem;
    background: #005eec;
    color: #fff;
    border-radius: 50%;
    font-size: .6875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form */
.ct-form-section {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 40px 60px;
    background: #f6f9fd;
    border-radius: 16px;
}
.ct-form-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    font-weight: 700;
    color: #0a1a44;
    margin-bottom: 8px;
}
.ct-form-subtitle {
    font-size: 13px;
    color: #4a5578;
    margin-bottom: 24px;
}
.ct-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 720px;
}
.ct-form .full { grid-column: 1 / -1; }
.ct-form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0a1a44;
}
.ct-form input,
.ct-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e8eef0;
    border-radius: 4px;
    font-size: 13px;
    color: #333;
    background: #fff;
    font-family: inherit;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}
.ct-form input:focus,
.ct-form textarea:focus {
    border-color: #4288f4;
    box-shadow: 0 0 0 3px rgba(66, 136, 244, 0.1);
}
.ct-form input::placeholder,
.ct-form textarea::placeholder { color: #bcbcbc; }
.ct-form textarea { resize: vertical; min-height: 80px; }
.ct-form .checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #4a5578;
    line-height: 1.5;
}
.ct-form .checkbox-row input[type="checkbox"] { margin-top: 3px; width: auto; accent-color: #005eec; }
.ct-form .checkbox-row a { color: #4288f4; text-decoration: none; }
.ct-form .checkbox-row a:hover { text-decoration: underline; }
.ct-form-submit {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(180deg, #1d79e4 0%, #0162eb 40%, #0061ec 70%, #1a73e2 100%);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
}
.ct-form-submit:hover { opacity: 0.9; }
.ct-form-status { font-size: 13px; }

/* Intro */
.ct-intro {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 24px;
}
.ct-intro p {
    font-size: 14px;
    color: #4a5578;
    line-height: 1.7;
}
.ct-intro strong { color: #0a1a44; }

/* Responsive */
@media (max-width: 900px) {
    .ct-hero { height: auto; min-height: 200px; }
    .ct-hero-img { display: none; }
    .ct-hero-content { position: relative; top: auto; left: auto; padding: 60px 0 30px; width: 100%; }
    .ct-hero-nav { left: 20px; right: 20px; }
    .ct-cards { flex-wrap: wrap; }
    .ct-card { flex: 1 1 calc(50% - 8px); min-width: 200px; }
    .ct-directions-layout { flex-direction: column; }
    .ct-directions-map { height: 300px; }
    .ct-form { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .ct-card { flex: 1 1 100%; }
    .ct-dept-list { grid-template-columns: 1fr; }
}

/* Documents */
.ct-docs {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 50px;
}
.ct-docs-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 32px;
    color: #122B59;
    margin-bottom: 24px;
}
.ct-docs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.ct-doc-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #EEF2F7;
    box-shadow: 0 3px 14px rgba(20, 36, 90, .05);
    padding: 14px;
    display: flex;
    align-items: flex-start;
    transition: all 0.25s ease;
}
.ct-doc-card:hover {
    border-color: #d0daf0;
    box-shadow: 0 6px 24px rgba(20, 36, 90, 0.1);
    transform: translateY(-2px);
}
.ct-doc-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #F4F8FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 12px;
}
.ct-doc-card-body {
    display: flex;
    flex-direction: column;
}
.ct-doc-card-title {
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    color: #1A2753;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ct-doc-card-size {
    font-size: 12px;
    color: #8B93A7;
    margin-bottom: 12px;
}
.ct-doc-card-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0057FF;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}
.ct-doc-card-download:hover { text-decoration: underline; }
@media (max-width: 900px) {
    .ct-docs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .ct-docs-grid { grid-template-columns: 1fr; }
}