/* =============================================
   КОЧКОР-АТИНСКИЙ РЕГИОНАЛЬНЫЙ КОЛЛЕДЖ
   Medical Professional Design
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary:       #4BAFD6;   /* кнопки / акцент */
    --primary-mid:   #3a9ec5;
    --primary-light: #6cc4e3;
    --accent:        #C9A227;   /* hover / золотой акцент */
    --accent-dark:   #a8841e;
    --red:           #c0392b;
    --gold:          #C9A227;
    --navy:          #1A3A5C;   /* navbar / footer / заголовки */
    --bg-light:      #d4ebf5;
    --bg-section:    #E8F4FB;
    --text:          #333333;
    --text-dark:     #1A3A5C;
    --text-muted:    #64748b;
    --border:        #cce3ef;
    --white:         #ffffff;
    --shadow-sm:     0 1px 4px rgba(26,58,92,.07);
    --shadow:        0 4px 20px rgba(26,58,92,.10);
    --shadow-md:     0 8px 32px rgba(26,58,92,.15);
    --shadow-lg:     0 16px 48px rgba(26,58,92,.18);
    --radius:        10px;
    --radius-lg:     16px;
    --transition:    all .28s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }

/* ── SPA globals ── */
html { scroll-behavior: smooth; }

/* Offset each section top by the sticky nav height so it doesn't hide under it */
section[id] { scroll-margin-top: 72px; }

/* Uniform section vertical padding */
.spa-section { padding: 80px 0; }
@media (max-width: 768px) { .spa-section { padding: 52px 0; } }

/* ── Reveal animation (progressive enhancement — hidden only after JS activates) ── */
.js-ready [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease;
}
.js-ready [data-reveal].revealed {
    opacity: 1;
    transform: none;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }

img { max-width: 100%; display: block; }

/* ── Bootstrap overrides ── */
.btn-primary    { background: var(--primary) !important; border-color: var(--primary) !important; font-weight: 600; color:#fff !important; }
.btn-primary:hover { background: var(--accent) !important; border-color: var(--accent) !important; color:#fff !important; }
.btn-outline-primary { color: var(--primary) !important; border-color: var(--primary) !important; font-weight: 600; }
.btn-outline-primary:hover { background: var(--primary) !important; color: #fff !important; }
.text-primary   { color: var(--primary) !important; }
.bg-primary     { background: var(--primary) !important; }

/* ── Top Bar (unused but kept) ── */
.top-bar {
    background: var(--navy);
    color: rgba(255,255,255,.85);
    font-size: 12.5px;
    letter-spacing: .02em;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

/* ── Contact Strip (below nav) ── */
.contact-strip {
    background: var(--bg-section);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    font-size: 13px;
}
.contact-strip-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--navy);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}
.contact-strip-item:hover { color: var(--primary); }
.contact-strip-item i { color: var(--primary); font-size: 12px; }
.contact-strip-sep { color: var(--border); }
.top-bar a { color: rgba(255,255,255,.80); }
.top-bar a:hover { color: #fff; }
.top-bar-item { display:inline-flex; align-items:center; gap:6px; white-space:nowrap; }
.top-bar-item i { opacity:.65; font-size:11px; }
.top-bar-sep { opacity:.3; }
.top-bar .sep { opacity: .35; margin: 0 8px; }

/* ── Language switcher ── */
.lang-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,.35);
    color: rgba(255,255,255,.75);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    padding: 2px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}
.lang-btn:hover { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.6); }
.lang-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ── Header ── */
.site-header {
    background: #fff;
    border-bottom: 3px solid var(--navy);
    box-shadow: 0 2px 12px rgba(26,58,92,.08);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 16px;
}
.header-contact {
    display: flex;
    align-items: center;
    flex: 1;
}
.hdr-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
}
.hdr-contact-item:hover { color: var(--primary); }
.hdr-contact-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--bg-section);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
}
.hdr-contact-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-muted);
    line-height: 1;
    margin-bottom: 2px;
}
.hdr-contact-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.logo-emblem {
    width: 68px; height: 68px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 28px;
    box-shadow: 0 4px 16px rgba(10,45,110,.30);
    flex-shrink: 0;
    position: relative;
}
.logo-emblem::after {
    content: '';
    position: absolute; inset: 3px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.25);
}
.logo-img-wrap {
    width: 80px; height: 80px;
    flex-shrink: 0;
}
.logo-img {
    width: 100%; height: 100%;
    object-fit: contain;
}

/* Alias for base.html which uses logo-circle */
.logo-circle {
    width: 68px; height: 68px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 28px;
    box-shadow: 0 4px 16px rgba(10,45,110,.30);
    flex-shrink: 0;
}
.logo-text-block .college-name {
    font-size: 19px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
    letter-spacing: -.01em;
}
.logo-text-block .college-sub {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: .03em;
    text-transform: uppercase;
}
.header-title h1 {
    font-size: 19px; font-weight: 800; color: var(--navy); line-height: 1.15; margin: 0;
}
.header-title h2 {
    font-size: 13px; font-weight: 500; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: .05em; margin: 0;
}

/* ── Navigation ── */
.main-nav {
    background: var(--navy);
    box-shadow: 0 3px 12px rgba(26,58,92,.30);
    z-index: 1030;
}
.main-nav .nav-link {
    color: rgba(255,255,255,.82) !important;
    font-size: 13.5px;
    font-weight: 600;
    padding: 14px 13px !important;
    letter-spacing: .01em;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    border-radius: 0;
}
.main-nav .nav-link:hover {
    color: #fff !important;
    border-bottom-color: rgba(255,255,255,.5);
}
.main-nav .nav-link.active {
    color: #fff !important;
    border-bottom-color: var(--accent);
    background: rgba(255,255,255,.10);
}

/* ── Page Header ── */
.page-header {
    background: linear-gradient(100deg, var(--primary) 0%, var(--primary-mid) 100%);
    padding: 32px 0 28px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; right: -60px; top: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.page-header h1 {
    font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px;
}
.page-header .breadcrumb-item a { color: rgba(255,255,255,.70); }
.page-header .breadcrumb-item.active { color: rgba(255,255,255,.92); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.40); }

/* ── Section helpers ── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--accent);
    margin-bottom: 10px;
}
.section-label::before {
    content: '';
    width: 18px; height: 2px;
    background: var(--accent);
    border-radius: 2px;
}
.section-title {
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 14px;
}
.section-lead { font-size: 15.5px; color: var(--text-muted); max-width: 520px; }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 580px;
    background: linear-gradient(120deg, #0f2340 0%, var(--navy) 50%, #1e4d7a 100%);
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(75,175,214,.10) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.05) 0%, transparent 45%);
}
.hero-cross {
    position: absolute; right: 8%; top: 50%;
    transform: translateY(-50%);
    font-size: 280px; color: rgba(255,255,255,.04);
    line-height: 1;
}
.hero-content { position: relative; z-index: 2; padding: 64px 0; }
.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,168,120,.20);
    border: 1px solid rgba(0,168,120,.40);
    color: #4dd4b0;
    font-size: 11px; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 14px; border-radius: 50px;
    margin-bottom: 20px;
}
.hero-tag::before { content:''; width:6px; height:6px; border-radius:50%; background:#4dd4b0; }
.hero-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -.03em;
    margin-bottom: 18px;
}
.hero-title span { color: var(--gold); }
.hero-desc {
    font-size: 16px; color: rgba(255,255,255,.78);
    max-width: 500px; line-height: 1.7; margin-bottom: 32px;
}
.btn-hero {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px; border-radius: 8px;
    font-size: 14px; font-weight: 700;
    transition: var(--transition); border: 2px solid transparent;
}
.btn-hero-fill  { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 6px 20px rgba(201,162,39,.35); }
.btn-hero-fill:hover  { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; transform: translateY(-2px); }
.btn-hero-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-hero-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

/* Hero stats strip */
.hero-stats {
    display: flex; gap: 32px; margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-num  { font-size: 26px; font-weight: 900; color: #fff; line-height: 1; }
.hero-stat-lbl  { font-size: 11px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; margin-top: 3px; }

/* ── About strip (index) ── */
.about-strip { background: var(--bg-section); }
.feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.feature-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14.5px; color: var(--text);
}
.feature-list li .fi {
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(0,168,120,.12); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; flex-shrink: 0; margin-top: 1px;
}
.about-visual {
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    min-height: 320px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.about-visual::before {
    content: '+';
    position: absolute; right: -20px; bottom: -30px;
    font-size: 200px; font-weight: 900;
    color: rgba(255,255,255,.05); line-height: 1;
}

/* ── Specialties ── */
.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 20px; }
.spec-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex; flex-direction: column; align-items: center;
    cursor: default;
}
.spec-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: rgba(10,45,110,.15); }
.spec-icon {
    width: 64px; height: 64px; border-radius: 16px;
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    color: #fff; font-size: 24px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px; box-shadow: 0 6px 18px rgba(10,45,110,.25);
}
.spec-code {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: .06em;
    color: var(--accent); background: rgba(0,168,120,.10);
    padding: 2px 10px; border-radius: 50px; margin-bottom: 10px;
}
.spec-name { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.spec-meta { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; flex: 1; }
.spec-link {
    margin-top: 16px;
    display: inline-block;
    font-size: 13px; font-weight: 600;
    color: var(--primary);
    border-bottom: 1.5px solid rgba(10,45,110,.25);
    padding-bottom: 1px;
}
.spec-link:hover { color: var(--accent); border-color: var(--accent); }

/* Spec detail (specialties page) */
.spec-detail-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.spec-detail-card:hover { box-shadow: var(--shadow-md); }
.spec-detail-head {
    background: linear-gradient(110deg, var(--navy) 0%, #1e5a82 100%);
    padding: 22px 24px;
    display: flex; align-items: center; gap: 16px;
}
.spec-detail-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: rgba(255,255,255,.18);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 22px; flex-shrink: 0;
}
.spec-detail-body { padding: 22px 24px; }
.spec-info-row { display: flex; flex-direction: column; gap: 14px; }
.spec-info-item {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 12px 14px;
    background: var(--bg-section);
    border-radius: 8px;
    border-left: 3px solid var(--primary-light);
}
.spec-info-item .si-icon { color: var(--primary); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.spec-info-item .si-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 2px; }
.spec-info-item .si-val { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.4; }

/* ── News cards ── */
.news-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex; flex-direction: column;
    height: 100%;
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.news-thumb { height: 195px; overflow: hidden; position: relative; }
.news-thumb img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.news-card:hover .news-thumb img { transform: scale(1.06); }
.news-thumb-placeholder {
    height: 195px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex; align-items:center; justify-content:center;
}
.news-cat-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--accent); color: #fff;
    font-size: 10.5px; font-weight: 700; letter-spacing: .05em;
    text-transform: uppercase; padding: 3px 10px; border-radius: 50px;
}
.news-body   { padding: 18px 20px; display:flex; flex-direction:column; flex:1; }
.news-date   { font-size: 11.5px; color: var(--text-muted); margin-bottom: 8px; display:flex; align-items:center; gap:5px; }
.news-title  { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.38; margin-bottom: 10px; }
.news-excerpt{ font-size: 13.5px; color: var(--text-muted); flex:1; margin-bottom: 16px; }
.news-more   {
    font-size: 13px; font-weight: 700; color: var(--primary);
    display: inline-flex; align-items: center; gap: 5px;
    border-bottom: 1.5px solid rgba(10,45,110,.25); padding-bottom: 1px;
    align-self: flex-start;
}
.news-more:hover { color: var(--accent); border-color: var(--accent); }

/* News article */
.article-wrap    { max-width: 780px; }
.article-title   { font-size: clamp(1.4rem,3vw,1.9rem); font-weight: 800; line-height: 1.25; color: var(--text); }
.article-meta    { display:flex; align-items:center; gap:16px; padding: 14px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); color: var(--text-muted); font-size:13px; flex-wrap:wrap; }
.article-img     { border-radius: var(--radius-lg); overflow:hidden; margin: 24px 0; box-shadow: var(--shadow); }
.article-img img { width:100%; max-height:480px; object-fit:cover; }
.article-body    { font-size:16px; line-height:1.85; color:#374151; }
.article-body p  { margin-bottom:1.2rem; }

/* ── Gallery ── */
.gallery-filter .btn { border-radius: 6px; font-size:13px; padding: 6px 16px; }
.g-item {
    border-radius: 10px; overflow:hidden;
    position:relative; cursor:pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.g-item img { width:100%; height:100%; object-fit:cover; transition: transform .45s ease; }
.g-item:hover { box-shadow: var(--shadow-md); }
.g-item:hover img { transform:scale(1.07); }
.g-overlay {
    position:absolute; inset:0;
    background: linear-gradient(0deg, rgba(10,45,110,.75) 0%, transparent 60%);
    opacity:0; transition: var(--transition);
    display:flex; flex-direction:column;
    justify-content:flex-end; align-items:center; padding:14px;
    color:#fff;
}
.g-item:hover .g-overlay { opacity:1; }
.g-overlay-icon { font-size:22px; margin-bottom:6px; }
.g-overlay-title{ font-size:12.5px; font-weight:600; text-align:center; }

/* ── Admissions ── */
.adm-card {
    background:#fff; border:1px solid var(--border);
    border-radius:var(--radius-lg); overflow:hidden;
    box-shadow:var(--shadow-sm); height:100%;
}
.adm-card-head {
    background: linear-gradient(110deg, var(--navy), #1e5a82);
    padding:16px 20px; display:flex; align-items:center; gap:12px; color:#fff;
}
.adm-card-head h5 { margin:0; font-size:15px; font-weight:700; }
.adm-card-head .adm-icon { font-size:20px; opacity:.9; }
.adm-card-body { padding:20px; }
.adm-card-body ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px; }
.adm-card-body ul li { font-size:14px; display:flex; gap:8px; align-items:flex-start; }
.adm-card-body ul li::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--accent); flex-shrink:0; margin-top:6px; }
.timeline-row { display:flex; flex-direction:column; gap:16px; }
.tl-item { display:flex; gap:14px; align-items:flex-start; }
.tl-dot {
    width:34px; height:34px; border-radius:50%; flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
    font-size:13px; color:#fff; font-weight:700;
}
.tl-text strong { font-size:14px; color:var(--text); }
.tl-text p { margin:2px 0 0; font-size:13px; color:var(--text-muted); }

/* ── Admissions extras ── */
.adm-cost-row { display:flex; flex-direction:column; gap:12px; }
.adm-cost-item {
    display:flex; gap:12px; align-items:center;
    padding:12px 14px;
    background:var(--bg-section);
    border-radius:8px;
    border-left:3px solid var(--primary-light);
}
.adm-cost-icon {
    width:36px; height:36px; border-radius:8px;
    background:rgba(10,45,110,.1); color:var(--primary);
    display:flex; align-items:center; justify-content:center;
    font-size:15px; flex-shrink:0;
}
.adm-cost-label { font-size:11px; color:var(--text-muted); text-transform:uppercase; letter-spacing:.05em; margin-bottom:2px; }
.adm-cost-val   { font-size:14px; font-weight:600; color:var(--text); }
.adm-note {
    background:rgba(10,45,110,.06);
    border:1px solid rgba(10,45,110,.12);
    border-radius:8px; padding:10px 14px;
    font-size:13.5px; color:var(--primary); font-weight:500;
}
.adm-contact-item {
    display:flex; gap:12px; align-items:flex-start;
    padding:14px; background:var(--bg-section);
    border-radius:8px; height:100%;
}
.adm-contact-icon {
    width:38px; height:38px; border-radius:8px;
    background:rgba(10,45,110,.1); color:var(--primary);
    display:flex; align-items:center; justify-content:center;
    font-size:15px; flex-shrink:0;
}

/* ── Contacts ── */
.contact-box {
    background:#fff; border:1px solid var(--border);
    border-radius:var(--radius-lg); padding:28px;
    box-shadow:var(--shadow-sm);
}
.ci-item { display:flex; gap:14px; align-items:flex-start; padding: 14px 0; border-bottom:1px solid var(--border); }
.ci-item:last-child { border-bottom:none; }
.ci-icon {
    width:40px; height:40px; border-radius:10px;
    background:rgba(10,45,110,.07); color:var(--primary);
    display:flex; align-items:center; justify-content:center;
    font-size:15px; flex-shrink:0;
}
.ci-label { font-size:11px; text-transform:uppercase; letter-spacing:.06em; color:var(--text-muted); margin-bottom:2px; }
.ci-value { font-size:15px; font-weight:600; color:var(--text); }
.map-wrap { border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); min-height:380px; background:var(--bg-section); display:flex; align-items:center; justify-content:center; }
.map-wrap iframe { width:100%; height:380px; border:0; display:block; }

/* ── About / Contacts shared cards ── */
.about-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.about-card:hover { box-shadow: var(--shadow); }
.about-card-head {
    background: linear-gradient(110deg, var(--navy) 0%, #1e5a82 100%);
    padding: 16px 22px;
    display: flex; align-items: center; gap: 12px; color: #fff;
}
.about-card-head h5 { margin: 0; font-size: 15px; font-weight: 700; }
.about-card-body { padding: 22px; }
.about-text { font-size: 14.5px; color: #4a5568; line-height: 1.75; }
.about-text p { margin-bottom: 0.9rem; }
.about-text p:last-child { margin-bottom: 0; }
.about-stat-box {
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    height: 100%;
}
.about-stat-icon {
    width: 38px; height: 38px; border-radius: 8px;
    background: rgba(10,45,110,.1); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; margin: 0 auto 8px;
}
.about-stat-num { font-size: 22px; font-weight: 800; color: var(--navy); line-height: 1; }
.about-stat-lbl { font-size: 11px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: .05em; }

/* Contacts items */
.ct-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px 22px;
    border-bottom: 1px solid var(--border);
}
.ct-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(10,45,110,.08); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; flex-shrink: 0; margin-top: 2px;
}
.ct-label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 3px; }
.ct-value { font-size: 15px; font-weight: 600; color: var(--text); }
.ct-value a { color: var(--primary); }
.ct-value a:hover { color: var(--accent); }

/* ── About page ── */
.doc-item {
    background:#fff; border:1px solid var(--border);
    border-radius:10px; padding:16px 18px;
    display:flex; align-items:center; gap:14px;
    box-shadow:var(--shadow-sm); transition:var(--transition);
}
.doc-item:hover { box-shadow:var(--shadow); }
.doc-item-icon { font-size:26px; flex-shrink:0; }
.stat-box {
    background:#fff; border:1px solid var(--border);
    border-radius:var(--radius); padding:20px;
    text-align:center; box-shadow:var(--shadow-sm);
}
.stat-box-num { font-size:28px; font-weight:900; color:var(--navy); line-height:1; }
.stat-box-lbl { font-size:12px; color:var(--text-muted); margin-top:4px; text-transform:uppercase; letter-spacing:.05em; }
.info-badge {
    display:inline-flex; align-items:center; gap:7px;
    background:var(--bg-section); border:1px solid var(--border);
    color:var(--primary); font-size:13px; font-weight:600;
    padding:6px 14px; border-radius:8px;
}

/* ── Forms ── */
.form-wrap {
    background:#fff; border:1px solid var(--border);
    border-radius:var(--radius-lg); padding:32px;
    box-shadow:var(--shadow);
}
.form-control, .form-select {
    border:1.5px solid var(--border); border-radius:8px;
    font-size:14.5px; padding: 10px 14px;
    transition:var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color:var(--primary-light);
    box-shadow:0 0 0 3px rgba(26,95,212,.12);
}
.form-label { font-size:13.5px; font-weight:600; color:var(--text); margin-bottom:6px; }

/* ── CTA band ── */
.cta-band {
    background: linear-gradient(110deg, var(--navy) 0%, #1e5a82 100%);
    padding:52px 0;
    position:relative; overflow:hidden;
}
.cta-band::before {
    content:'+';
    position:absolute; right:40px; top:-20px;
    font-size:220px; font-weight:900;
    color:rgba(255,255,255,.04); line-height:1;
}

/* ── Footer ── */
.site-footer {
    background: var(--navy);
    border-top:3px solid var(--accent);
}
.footer-brand-name { font-size:17px; font-weight:800; color:#fff; }
.footer-brand-sub  { font-size:11px; color:rgba(255,255,255,.45); text-transform:uppercase; letter-spacing:.08em; }
.footer-desc { font-size:13.5px; color:rgba(255,255,255,.50); line-height:1.7; margin-top:12px; }
.footer-heading { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:rgba(255,255,255,.40); margin-bottom:14px; }
.footer-nav { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:9px; }
.footer-nav a { font-size:13.5px; color:rgba(255,255,255,.60); display:flex; align-items:center; gap:6px; }
.footer-nav a:hover { color:#fff; padding-left:4px; }
.footer-contact-list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.footer-contact-list li { display:flex; gap:8px; font-size:13.5px; color:rgba(255,255,255,.60); align-items:flex-start; }
.footer-contact-list li i { color:var(--accent); font-size:13px; margin-top:2px; flex-shrink:0; }
.footer-divider { border-color:rgba(255,255,255,.07); }
.footer-copy { font-size:12.5px; color:rgba(255,255,255,.35); }
.footer-logo-circle {
    width:48px; height:48px; border-radius:50%;
    background:linear-gradient(145deg,var(--primary),var(--primary-light));
    display:flex; align-items:center; justify-content:center;
    color:#fff; font-size:20px; flex-shrink:0;
}

/* ── Misc utilities ── */
.btn { border-radius:8px; }
.rounded-xl { border-radius:var(--radius-lg) !important; }
.shadow-card { box-shadow:var(--shadow); }
.bg-section { background: var(--bg-section); }
.divider { height:1px; background:var(--border); margin:0; }

/* ── Back to top ── */
#back-to-top {
    position:fixed; bottom:24px; right:24px;
    width:42px; height:42px; border-radius:10px;
    background:var(--primary); color:#fff; border:none;
    display:none; align-items:center; justify-content:center;
    font-size:14px; cursor:pointer;
    box-shadow:0 4px 16px rgba(10,45,110,.30);
    z-index:998; transition:var(--transition);
}
#back-to-top:hover { background:var(--accent); transform:translateY(-2px); }

/* ── Responsive ── */
@media (max-width:991px) {
    .main-nav .nav-link { border-bottom:none !important; padding:10px 14px !important; }
    .hero-cross { display:none; }
    .hero-stats { gap:20px; }
}
@media (max-width:767px) {
    .hero { min-height:auto; }
    .hero-content { padding:48px 0; }
    .hero-title { font-size:1.85rem; }
    .hero-stats { gap:16px; }
    .hero-stat-num { font-size:20px; }
    .site-header .header-title h1 { font-size:15px; }
    .site-header .header-title h2 { font-size:11px; }
    .logo-circle { width:52px; height:52px; font-size:20px; }
}
@media (max-width:575px) {
    .btn-hero { display:block; width:100%; text-align:center; justify-content:center; }
    .btn-hero + .btn-hero { margin-top:10px; }
    .hero-stats { flex-wrap:wrap; }
    .top-bar-item { font-size:11.5px; }
    .about-visual { min-height:220px; }
    .map-wrap, .map-wrap iframe { min-height:260px; height:260px; }
    .spec-grid { grid-template-columns: 1fr; }
    .g-overlay-title { font-size:11.5px; }
    .news-thumb, .news-thumb-placeholder { height:170px; }
    .section-lead { max-width:100%; }
    .adm-card-head, .about-card-head, .spec-detail-head { padding:14px 16px; }
    .about-card-body, .adm-card-body { padding:16px; }
}
@media (max-width:400px) {
    .lang-switcher { gap:4px !important; }
    .lang-btn { padding:2px 6px; font-size:10px; }
}
