/* ============================================
   AIRPORT WEBSITE CSS
   ============================================ */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
}

.btn-primary:hover {
    background: #ff8555;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2a5298;
    border-color: #2a5298;
}

.btn-secondary:hover {
    background: #2a5298;
    color: #fff;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-emergency {
    background: #dc2626;
    border-color: #dc2626;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1e3c72;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* === SECTIONS === */
.section {
    padding: 80px 0;
}

.section-gray {
    background: #f8f9fa;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* === COOKIE NOTICE === */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e3c72;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #ffd700;
    text-decoration: underline;
}

.btn-accept {
    background: #ff6b35;
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 600;
}

.btn-close-cookie {
    background: transparent;
    color: #fff;
    font-size: 1.5rem;
    padding: 5px 10px;
}

/* === HEADER === */
/* === UNIFIED HEADER BAR === */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.header-bar {
    padding: 0;
}

.header-bar-inner {
    display: flex;
    align-items: center;
    gap: 0;
    height: 62px;
}

/* === LOGO === */
.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

/* Keep old .logo-icon for footer etc */
.logo-icon { font-size: 2rem; }

/* === NAVIGATION (inside bar) === */
.main-nav {
    flex: 1;
    overflow: visible;
    background: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
}

.nav-list li a {
    color: rgba(255,255,255,0.88);
    padding: 20px 9px;
    display: block;
    font-weight: 600;
    font-size: 0.82rem;
    white-space: nowrap;
    border-radius: 4px;
    transition: all 0.2s;
}

.nav-list li a:hover,
.nav-list li a.active {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.nav-contact {
    background: #ff6b35 !important;
    color: #fff !important;
    border-radius: 5px;
    margin-left: 4px;
}

.nav-contact:hover {
    background: #e85d28 !important;
}

/* === HEADER TOOLS === */
.header-tools {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: 20px;
}

/* Language switcher — compact dropdown */
.lang-switcher {
    display: flex;
    align-items: center;
}

.lang-select {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    padding: 5px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    letter-spacing: 0.03em;
    min-width: 54px;
    text-align: center;
}

.lang-select option {
    background: #1e3c72;
    color: #fff;
    font-weight: 700;
}

.lang-select:hover,
.lang-select:focus {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.6);
}

/* Accessibility — icon only */
.accessibility-btn {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 5px;
    padding: 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}

.accessibility-btn:hover {
    background: rgba(255,255,255,0.25);
}

/* Search */
.search-btn {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}

.search-btn:hover {
    background: rgba(255,255,255,0.25);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 34px;
    height: 34px;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.12);
    padding: 6px;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* === SEARCH PANEL === */
.search-panel {
    background: #f8f9fa;
    padding: 16px 0;
    display: none;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.search-panel.active {
    display: block;
}

.search-input {
    width: 100%;
    padding: 12px 18px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
}

.search-close {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
}

/* === DROPDOWN === */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.8rem;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid #f0f2f5;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    padding: 7px 16px;
    color: #333;
    font-weight: 500;
    font-size: 0.88rem;
}

.dropdown-menu li a:hover {
    background: #f8f9fa;
    color: #2a5298;
}

.dropdown-menu li a.active {
    color: #2a5298;
    background: #edf2ff;
    font-weight: 600;
}

/* === ACCESSIBILITY PANEL === */
.accessibility-panel {
    position: fixed;
    top: 50%;
    right: -400px;
    transform: translateY(-50%);
    background: #fff;
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    padding: 30px;
    border-radius: 10px 0 0 10px;
    z-index: 10000;
    transition: right 0.3s;
    width: 350px;
    max-height: 80vh;
    overflow-y: auto;
}

.accessibility-panel.active {
    right: 0;
}

.accessibility-controls h3 {
    margin-bottom: 20px;
    color: #1e3c72;
}

.control-group {
    margin-bottom: 20px;
}

.control-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.btn-group {
    display: flex;
    gap: 10px;
}

.btn-group button {
    flex: 1;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-group button:hover {
    border-color: #2a5298;
    color: #2a5298;
}

.btn-group button.active {
    background: #2a5298;
    color: #fff;
    border-color: #2a5298;
}

.btn-reset,
.btn-close {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 5px;
    font-weight: 600;
}

.btn-reset {
    background: #6c757d;
    color: #fff;
}

.btn-close {
    background: #ff6b35;
    color: #fff;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;           /* Добавьте */
    align-items: center;     /* Добавьте */
    justify-content: center; /* Добавьте */
}

.hero-slide.active {
    display: flex;  /* Измените с display: block на flex */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
    width: 100%;  /* Добавьте */
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === HERO STATS === */
.hero-stats {
    position: relative;
    z-index: 3;
    background: rgba(255,255,255,0.95);
    padding: 40px 0;
    margin-top: 0px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2a5298;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

/* === SERVICE CARDS === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #2a5298;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-link {
    color: #2a5298;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.service-link:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

/* === NEWS CARDS === */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #dde3ef;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: none;
}

.news-card:hover {
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transform: none;
}

.news-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.news-date {
    color: #666;
}

.news-category {
    background: #e3f2fd;
    color: #2a5298;
    padding: 2px 10px;
    border-radius: 3px;
    font-weight: 600;
}

.news-card h3 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.news-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
}

.read-more {
    color: #2a5298;
    font-weight: 600;
    transition: all 0.3s;
}

.read-more:hover {
    color: #ff6b35;
}

/* Это только часть 1 CSS. Продолжение следует... */

/* === ABOUT PREVIEW === */
.about-preview {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text .lead {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 20px;
}

.feature-list {
    margin: 30px 0;
}

.feature-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #333;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
    background: #1a1a1a;
    color: #ccc;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-desc {
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #ff6b35;
    transform: translateY(-3px);
}

.footer-col h4 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links li,
.footer-contacts li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #ff6b35;
    padding-left: 5px;
}

.footer-contacts li {
    color: #ccc;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #888;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #ff6b35;
}

/* === SCROLL TO TOP === */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #ff6b35;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: #ff8555;
    transform: translateY(-5px);
}

/* === PAGE HEADER === */
.page-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 60px 0 40px;
    text-align: center;
}

.breadcrumbs {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.breadcrumbs a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #fff;
}

.separator {
    margin: 0 10px;
    color: rgba(255,255,255,0.5);
}

.current {
    color: #fff;
}

.page-header h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* === CONTENT LAYOUT === */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.content-main {
    min-width: 0;
}

/* === SIDEBAR === */
.sidebar-widget {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #1e3c72;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 0;
    border-bottom: 1px solid #eef0f3;
}

.sidebar-menu li:last-child {
    border-bottom: none;
}

.sidebar-menu a {
    color: #333;
    display: block;
    padding: 6px 0 6px 15px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    font-size: 0.9rem;
    line-height: 1.4;
}

.sidebar-menu a:hover {
    color: #2a5298;
    border-left-color: #ff6b35;
}

.widget-cta {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
}

.widget-cta h3 {
    color: #fff;
}

.widget-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

/* === COMPLIANCE SIDEBAR NAVIGATION === */
.compliance-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.compliance-main {
    min-width: 0;
}

.compliance-sidebar-sticky {
    position: sticky;
    top: 130px;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
}

.sidebar-menu a.active {
    color: #2a5298;
    border-left-color: #ff6b35;
    font-weight: 600;
    background: #f0f4ff;
}

.compliance-doc-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.compliance-doc-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 18px 20px;
    transition: box-shadow 0.2s;
}

.compliance-doc-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.compliance-doc-icon {
    font-size: 2rem;
    color: #2a5298;
}

.compliance-doc-info h4 {
    font-size: 1rem;
    color: #1e3c72;
    margin-bottom: 4px;
}

.compliance-doc-meta {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    gap: 16px;
}

.compliance-survey-block {
    background: #f0f4ff;
    border-left: 4px solid #2a5298;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

.compliance-survey-block h3 {
    color: #1e3c72;
    margin-bottom: 10px;
}

.online-form-block {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 12px;
    padding: 36px;
    color: #fff;
    text-align: center;
    margin-top: 40px;
}

.online-form-block h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.online-form-block p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
}

.standard-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px;
    border-top: 4px solid #2a5298;
    transition: transform 0.2s, box-shadow 0.2s;
}

.standard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.standard-badge {
    display: inline-block;
    background: #e8f0fe;
    color: #2a5298;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.standard-card h3 {
    color: #1e3c72;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.conflict-scenario {
    background: #fff8f0;
    border-left: 4px solid #ff6b35;
    border-radius: 8px;
    padding: 18px 20px;
    margin-bottom: 14px;
}

.conflict-scenario h4 {
    color: #cc4400;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.channel-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.channel-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.channel-item-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
}

.channel-item h3 {
    color: #1e3c72;
    font-size: 1rem;
    margin-bottom: 8px;
}

.channel-item .channel-value {
    font-weight: 700;
    color: #2a5298;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.channel-item .channel-note {
    font-size: 0.82rem;
    color: #888;
}

.anon-guarantee {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: 10px;
    padding: 20px 24px;
    margin-top: 32px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.anon-guarantee-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

/* === UNIVERSAL TABS (channels page) === */
.u-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e0e7ef;
    margin-bottom: 32px;
}

.u-tab {
    padding: 12px 28px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.25s;
}

.u-tab:hover {
    color: #2a5298;
}

.u-tab.active {
    color: #1e3c72;
    border-bottom-color: #ff6b35;
}

.u-tab-content {
    display: none;
}

.u-tab-content.active {
    display: block;
}

/* survey form elements */
.survey-scale {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.survey-scale label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #555;
}

.survey-scale input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #2a5298;
    cursor: pointer;
}

.survey-radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.survey-radio-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #333;
}

/* === COMPANY INTRO === */
.company-intro {
    margin-bottom: 50px;
}

.intro-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.company-values {
    margin-top: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.value-card h3 {
    color: #1e3c72;
    margin-bottom: 10px;
}

.value-card p {
    color: #666;
}

/* === LEADERSHIP === */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.leader-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.leader-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.leader-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #e5e7eb;
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info {
    padding: 25px;
}

.leader-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.leader-position {
    color: #2a5298;
    font-weight: 600;
    margin-bottom: 15px;
}

.leader-bio {
    color: #666;
    line-height: 1.8;
}

/* === TIMELINE === */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #2a5298;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 100px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-year::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ff6b35;
    border-radius: 50%;
    top: 50%;              /* Изменили! */
    left: 50%;
    transform: translate(-50%, -50%);  /* Изменили! */
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px #2a5298;
}

.timeline-content {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 0 30px;
}

.timeline-content h3 {
    color: #1e3c72;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    line-height: 1.8;
}

/* === VACANCIES === */
.vacancies-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 25px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.filter-btn:hover {
    border-color: #2a5298;
    color: #2a5298;
}

.filter-btn.active {
    background: #2a5298;
    color: #fff;
    border-color: #2a5298;
}

.vacancies-list {
    display: grid;
    gap: 25px;
}

.vacancy-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #2a5298;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.vacancy-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: translateX(5px);
}

.vacancy-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.vacancy-header h3 {
    flex: 1;
    margin: 0;
}

.vacancy-badge {
    background: #e3f2fd;
    color: #2a5298;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-admin {
    background: #fff3e0;
    color: #f57c00;
}

.badge-production {
    background: #e8f5e9;
    color: #2e7d32;
}

.vacancy-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.vacancy-detail {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.95rem;
    color: #666;
}

.detail-icon {
    font-size: 1rem;
}

.vacancy-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* === STRATEGY === */
.strategy-content {
    max-width: 900px;
    margin: 0 auto;
}

.strategy-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.goal-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.goal-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.goal-card h3 {
    color: #1e3c72;
    margin-bottom: 10px;
}

.goal-card p {
    color: #666;
}

.strategy-document {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.strategy-document h3 {
    margin-bottom: 15px;
}

.strategy-document p {
    margin-bottom: 25px;
    color: #666;
}

/* === CERTIFICATES === */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.certificate-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-align: center;
}

.certificate-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.certificate-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 3px solid #2a5298;
}

.certificate-card h4 {
    padding: 20px 15px 10px;
    color: #1e3c72;
}

.certificate-card p {
    padding: 0 15px 10px;
    color: #666;
}

.cert-download {
    display: inline-block;
    margin: 10px 0 20px;
    color: #2a5298;
    font-weight: 600;
    transition: color 0.3s;
}

.cert-download:hover {
    color: #ff6b35;
}

/* Продолжение следует... */

/* === SERVICES DETAILED === */
.services-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.services-detailed-grid {
    display: grid;
    gap: 60px;
}

.service-detailed-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-detailed-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-detailed-icon {
    font-size: 4rem;
}

.service-detailed-header h2 {
    color: #fff;
    margin: 0;
}

.service-detailed-content {
    padding: 40px;
}

.service-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: auto;
}

.service-description h3 {
    color: #1e3c72;
    margin: 30px 0 15px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 10px 0;
    color: #333;
    font-size: 1.05rem;
    line-height: 1.8;
}

.aircraft-types {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.aircraft-badge {
    background: #e3f2fd;
    color: #2a5298;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-advantages {
    margin: 30px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.advantage-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.advantage-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.service-certificates {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.service-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hangar-specs {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #333;
}

.spec-value {
    color: #2a5298;
    font-weight: 600;
}

.pricing-info {
    background: #fff3cd;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    margin: 20px 0;
}

.aog-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.aog-feature-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #dc2626;
}

.aog-feature-card h3 {
    color: #1e3c72;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.aog-contact {
    background: #dc2626;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.aog-contact h3 {
    color: #fff;
    margin-bottom: 20px;
}

.emergency-contacts {
    display: grid;
    gap: 20px;
}

.emergency-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.emergency-icon {
    font-size: 2rem;
}

.emergency-item strong {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 5px;
}

.emergency-item p {
    margin: 0;
    opacity: 0.9;
}

.vip-benefits {
    margin: 30px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.benefit-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.benefit-item span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.additional-service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #2a5298;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.additional-service-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.additional-service-card h3 {
    margin-bottom: 10px;
}

/* === CONTACTS PAGE === */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.contact-info-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    color: #1e3c72;
    margin-bottom: 20px;
}

.contact-info-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-info-card strong {
    color: #333;
    display: block;
    margin-top: 15px;
}

/* === MAP === */
.map-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.map-container {
    position: relative;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.map-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

.directions h3 {
    color: #1e3c72;
    margin-bottom: 20px;
}

.directions ul {
    list-style: none;
}

.directions li {
    padding: 12px 0;
    color: #333;
    line-height: 1.8;
}

/* === CONTACT FORMS === */
.form-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.form-tab {
    padding: 12px 30px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.form-tab:hover {
    border-color: #2a5298;
    color: #2a5298;
}

.form-tab.active {
    background: #2a5298;
    color: #fff;
    border-color: #2a5298;
}

.contact-form-container {
    display: none;
}

.contact-form-container.active {
    display: block;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.required {
    color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a5298;
}

.form-hint {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.checkbox-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 3px;
    width: auto;
}

.checkbox-label a {
    color: #2a5298;
    text-decoration: underline;
}

.form-captcha {
    margin: 25px 0;
}

.captcha-placeholder {
    background: #f8f9fa;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.form-info-box {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #2a5298;
    margin-bottom: 25px;
}

.form-info-box p {
    margin: 0;
    color: #333;
}

/* === TRACK APPLICATION === */
.track-application {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
}

.track-application h2 {
    margin-bottom: 15px;
}

.track-application p {
    color: #666;
    margin-bottom: 30px;
}

.track-form {
    max-width: 500px;
    margin: 0 auto;
}

.track-input-group {
    display: flex;
    gap: 10px;
}

.track-input-group input {
    flex: 1;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.track-result {
    margin-top: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* === DEPARTMENTS === */
.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.department-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.department-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.department-card h3 {
    margin-bottom: 15px;
    color: #1e3c72;
}

.department-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* === REQUISITES === */
.requisites-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.requisites-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.requisite-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.requisite-item:last-child {
    border-bottom: none;
}

.requisite-label {
    font-weight: 600;
    color: #333;
}

.requisite-value {
    color: #666;
}

.requisites-download {
    text-align: center;
}

/* === NEWS PAGE === */
.section-tabs {
    background: #f8f9fa;
    padding: 0;
    border-bottom: 2px solid #ddd;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0;
}

.tab-link {
    padding: 20px 40px;
    color: #666;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-link:hover {
    color: #2a5298;
    background: rgba(42, 82, 152, 0.05);
}

.tab-link.active {
    color: #2a5298;
    border-bottom-color: #ff6b35;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.news-filter {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.filter-group select {
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
}

.filter-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tag {
    padding: 8px 20px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.filter-tag:hover {
    border-color: #2a5298;
    color: #2a5298;
}

.filter-tag.active {
    background: #2a5298;
    color: #fff;
    border-color: #2a5298;
}

.featured-news {
    margin-bottom: 60px;
}

.featured-news-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featured-news-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.featured-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ff6b35;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
}

.featured-news-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-news-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* === PAGINATION === */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination-btn {
    padding: 10px 20px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.pagination-btn:hover:not(:disabled) {
    border-color: #2a5298;
    color: #2a5298;
}

.pagination-btn.active {
    background: #2a5298;
    color: #fff;
    border-color: #2a5298;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* === GALLERY === */
.gallery-albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-album-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.gallery-album-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.album-cover {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-album-card:hover .album-cover img {
    transform: scale(1.1);
}

.gallery-album-card .album-overlay {  /* Добавили .gallery-album-card */
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 15px;
}

.album-count {
    color: #fff;
    font-weight: 600;
}

.album-info {
    padding: 20px;
}

.album-info h3 {
    color: #1e3c72;
    margin-bottom: 10px;
}

.album-date {
    color: #666;
    font-size: 0.9rem;
}

/* === PRESS CONTACTS === */
.press-contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.press-contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.press-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: #e5e7eb;
}

.press-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.press-info h3 {
    margin-bottom: 5px;
}

.press-position {
    color: #2a5298;
    font-weight: 600;
    margin-bottom: 20px;
}

.press-contacts p {
    margin-bottom: 10px;
    color: #666;
}

.press-info-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.press-info-box h3 {
    margin-bottom: 20px;
}

.press-list {
    margin: 20px 0;
}

.press-list li {
    padding: 10px 0;
    color: #333;
    line-height: 1.8;
}

.press-note {
    margin-top: 20px;
    padding: 15px;
    background: #fff3cd;
    border-radius: 5px;
    border-left: 4px solid #ffc107;
}

.press-materials {
    margin-top: 50px;
}

.press-materials h3 {
    margin-bottom: 30px;
}

.press-materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.press-material-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #ddd;
    transition: all 0.3s;
}

.press-material-item:hover {
    border-color: #2a5298;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.material-icon {
    font-size: 2.5rem;
}

.press-material-item h4 {
    margin-bottom: 5px;
    color: #1e3c72;
}

.press-material-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* === NEWSLETTER === */
.newsletter-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 60px 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-text h2 {
    color: #fff;
    margin-bottom: 10px;
}

.newsletter-text p {
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    min-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

/* === MODAL === */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    background: #f8f9fa;
    color: #333;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .logo-text {
        font-size: 0.82rem;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: -1;
    }
    
    .featured-news-card {
        grid-template-columns: 1fr;
    }
    
    .press-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .section { padding: 60px 0; }
    
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    
    .mobile-menu-btn {
        display: flex;
    }

    .lang-switcher,
    .accessibility-btn,
    .search-btn {
        display: none;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 62px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        z-index: 999;
        box-shadow: 0 6px 18px rgba(0,0,0,0.3);
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list li a {
        padding: 14px 20px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 0.9rem;
        white-space: normal;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        min-width: 100%;
        border-radius: 0;
    }

    .dropdown-menu li a {
        color: rgba(255,255,255,0.8);
        padding: 10px 32px;
    }

    .dropdown-menu li a:hover {
        background: rgba(255,255,255,0.1);
        color: #fff;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
    }
    
    .timeline-content {
        margin: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .requisite-item {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .newsletter-form {
        min-width: 100%;
        flex-direction: column;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .track-application {
        padding: 30px 20px;
    }
    
    .track-input-group {
        flex-direction: column;
    }
}

/* === ACCESSIBILITY (Font Sizes) === */
body.font-large {
    font-size: 18px;
}

body.font-small {
    font-size: 14px;
}

/* === ACCESSIBILITY (Color Schemes) === */
body.scheme-bw {
    filter: grayscale(100%);
}

body.scheme-wb {
    filter: grayscale(100%) invert(1);
}

/* Исключаем панель accessibility из фильтров */
body.scheme-bw .accessibility-panel,
body.scheme-wb .accessibility-panel {
    filter: none;
    background: #fff !important;
    border: 3px solid #2a5298;
}

body.scheme-bw .accessibility-panel *,
body.scheme-wb .accessibility-panel * {
    filter: none;
}

body.images-hidden img {
    opacity: 0.1;
}

/* === TENDERS PAGE STYLES === */

/* Notice Section */
.section-notice {
    background: #f8f9fa;
    padding: 30px 0;
}

.notice-box {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #2a5298;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.notice-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.notice-content h3 {
    color: #1e3c72;
    margin-bottom: 10px;
}

.notice-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Tenders Filter */
.tenders-filter {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.filter-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.filter-group select {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.filter-group select:focus {
    outline: none;
    border-color: #2a5298;
}

.filter-group .btn {
    width: 100%;
}

/* Tenders Section */
.tenders-section {
    margin-bottom: 50px;
}

.tenders-list {
    display: grid;
    gap: 25px;
    margin-top: 20px;
}

/* Tender Card */
.tender-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tender-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.tender-header {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.tender-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-closed {
    background: #fff3cd;
    color: #856404;
}

.status-completed {
    background: #d1ecf1;
    color: #0c5460;
}

.tender-type {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    background: #e9ecef;
    color: #495057;
}

.tender-type.type-international {
    background: #cce5ff;
    color: #004085;
}

.tender-content {
    padding: 25px;
}

.tender-number {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 10px;
}

.tender-card h3 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.4;
}

.tender-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tender-meta {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.tender-meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meta-label {
    color: #666;
    font-size: 14px;
}

.meta-value {
    font-weight: 600;
    color: #333;
}

.meta-value.deadline {
    color: #d63384;
}

.tender-footer {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tender-footer .btn {
    flex: 1;
    min-width: 150px;
}

/* Procurement Info */
.procurement-info {
    margin-top: 50px;
    margin-bottom: 50px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.info-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.info-card h3 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 18px;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
    line-height: 1.5;
}

.info-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2a5298;
    font-weight: bold;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin: 5px 0;
}

.contact-person {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

/* Templates Section */
.templates-section {
    margin-top: 50px;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.template-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.template-item:hover {
    border-color: #2a5298;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.template-icon {
    font-size: 32px;
}

.template-info h4 {
    color: #1e3c72;
    margin-bottom: 5px;
    font-size: 16px;
}

.template-info p {
    color: #6c757d;
    font-size: 13px;
    margin: 0;
}

/* Responsive Design for Tenders */
@media (max-width: 768px) {
    .filter-row {
        flex-direction: column;
    }

    .filter-group {
        width: 100%;
    }

    .tender-header {
        flex-direction: column;
        gap: 10px;
    }

    .tender-footer {
        flex-direction: column;
    }

    .tender-footer .btn {
        width: 100%;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .templates-grid {
        grid-template-columns: 1fr;
    }
}

/* === VACANCY DETAIL PAGE === */

/* Layout */
.vacancy-detail-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-top: 30px;
}

.vacancy-main-content {
    min-width: 0;
}

/* Vacancy Info Box */
.vacancy-info-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.vacancy-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.meta-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.meta-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.meta-item strong {
    display: block;
    color: #1e3c72;
    font-size: 14px;
    margin-bottom: 5px;
}

.meta-item p {
    margin: 0;
    color: #495057;
    font-size: 15px;
}

/* Vacancy Sections */
.vacancy-section {
    margin-bottom: 40px;
}

.vacancy-section h2 {
    color: #1e3c72;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.vacancy-section p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Lists */
.requirements-list,
.responsibilities-list {
    list-style: none;
    padding: 0;
}

.requirements-list li,
.responsibilities-list li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    color: #495057;
    line-height: 1.6;
}

.requirements-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 18px;
}

.responsibilities-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2a5298;
    font-weight: bold;
    font-size: 20px;
}

/* Conditions Grid */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.condition-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s;
}

.condition-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.condition-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.condition-card h4 {
    color: #1e3c72;
    font-size: 16px;
    margin-bottom: 8px;
}

.condition-card p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

/* Application Form */
.vacancy-application-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-top: 50px;
}

.form-intro {
    color: #6c757d;
    margin-bottom: 30px;
}

.vacancy-application-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.vacancy-application-form .form-group {
    margin-bottom: 25px;
}

.vacancy-application-form label {
    display: block;
    color: #1e3c72;
    font-weight: 500;
    margin-bottom: 8px;
}

.required {
    color: #dc3545;
}

.vacancy-application-form input[type="text"],
.vacancy-application-form input[type="email"],
.vacancy-application-form input[type="tel"],
.vacancy-application-form input[type="date"],
.vacancy-application-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.vacancy-application-form input:focus,
.vacancy-application-form textarea:focus {
    outline: none;
    border-color: #2a5298;
    box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
}

.vacancy-application-form textarea {
    resize: vertical;
    font-family: inherit;
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #fff;
    border: 2px dashed #ced4da;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.file-upload-label:hover {
    border-color: #2a5298;
    background: #f8f9fa;
}

.file-icon {
    font-size: 24px;
}

.file-text {
    color: #6c757d;
    font-size: 14px;
}

.file-name {
    display: block;
    margin-top: 8px;
    color: #28a745;
    font-size: 14px;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    color: #495057;
    font-size: 14px;
}

.form-hint {
    display: block;
    color: #6c757d;
    font-size: 13px;
    margin-top: 5px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
}

/* Vacancy Sidebar */
.vacancy-sidebar {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.vacancy-sidebar .sidebar-widget {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.vacancy-sidebar .sidebar-widget h3 {
    color: #1e3c72;
    font-size: 18px;
    margin-bottom: 15px;
}

.hr-contacts p {
    margin-bottom: 10px;
    color: #495057;
    font-size: 14px;
}

.vacancy-sidebar .widget-cta {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: #fff;
}

.vacancy-sidebar .widget-cta h3 {
    color: #fff;
}

.vacancy-sidebar .widget-cta p {
    color: rgba(255,255,255,0.9);
}

.vacancy-sidebar a {
    color: #2a5298;
    text-decoration: none;
}

.vacancy-sidebar a:hover {
    text-decoration: underline;
}

/* Responsive Design for Vacancy Page */
@media (max-width: 992px) {
    .vacancy-detail-layout {
        grid-template-columns: 1fr;
    }

    .vacancy-sidebar {
        position: static;
    }

    .vacancy-meta {
        grid-template-columns: 1fr;
    }

    .conditions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vacancy-application-section {
        padding: 25px 20px;
    }

    .vacancy-application-form {
        padding: 20px;
    }

    .vacancy-info-box {
        padding: 20px;
    }
}

/* === COMMERCIAL PROPOSAL FORM === */
.commercial-proposal-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    margin-top: 50px;
}

.proposal-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.proposal-form-header {
    text-align: center;
    margin-bottom: 35px;
}

.proposal-form-header h2 {
    color: #1e3c72;
    font-size: 28px;
    margin-bottom: 10px;
}

.proposal-form-header p {
    color: #6c757d;
    font-size: 16px;
}

.commercial-proposal-form .form-group {
    margin-bottom: 25px;
}

.commercial-proposal-form label {
    display: block;
    color: #1e3c72;
    font-weight: 500;
    margin-bottom: 8px;
}

.commercial-proposal-form input[type="text"],
.commercial-proposal-form input[type="email"],
.commercial-proposal-form input[type="tel"],
.commercial-proposal-form select,
.commercial-proposal-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.commercial-proposal-form input:focus,
.commercial-proposal-form select:focus,
.commercial-proposal-form textarea:focus {
    outline: none;
    border-color: #2a5298;
    box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
}

.commercial-proposal-form textarea {
    resize: vertical;
    font-family: inherit;
    min-height: 120px;
}

.commercial-proposal-form select {
    cursor: pointer;
    background: #fff;
}

/* === FAQ PAGE === */

.faq-controls {
    text-align: right;
    margin-bottom: 30px;
}

.faq-controls .btn {
    margin-left: 10px;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category-title {
    color: #1e3c72;
    font-size: 28px;
    margin-bottom: 10px;
}

.faq-category-desc {
    color: #6c757d;
    margin-bottom: 25px;
}

.faq-list {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #1e3c72;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question.active {
    background: #f8f9fa;
    color: #2a5298;
}

.faq-icon {
    font-size: 24px;
    font-weight: bold;
    color: #2a5298;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    padding: 0 25px;
    opacity: 0;
}

.faq-answer.active {
    max-height: 1000px;
    padding: 0 25px 25px 25px;
    opacity: 1;
}

.faq-answer p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 15px;
}

.faq-answer ul {
    list-style: none;
    padding-left: 20px;
}

.faq-answer ul li {
    color: #495057;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.faq-answer ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2a5298;
    font-weight: bold;
}

.faq-answer a {
    color: #2a5298;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-not-found {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: #fff;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
}

.faq-not-found h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
}

.faq-not-found p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    margin-bottom: 25px;
}

/* === COMPLIANCE ANTICORRUPTION PAGE === #1e3c72*/

.compliance-hero {
    background: linear-gradient(135deg, #135fbd 0%, #2a5298 100%);
    color: #fff;
    padding: 60px 0;
    margin-bottom: 50px;
}

.compliance-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.compliance-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.compliance-hero h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px;
}

.compliance-hero p {
    color: rgba(255,255,255,0.95);
    font-size: 18px;
    line-height: 1.7;
}

.compliance-content h2 {
    color: #1e3c72;
    font-size: 32px;
    margin-bottom: 20px;
}

.lead {
    font-size: 18px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 30px;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.policy-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #2a5298;
    transition: all 0.3s;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.policy-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.policy-card h3 {
    color: #1e3c72;
    font-size: 20px;
    margin-bottom: 12px;
}

.policy-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.principles-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.principle-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.principle-number {
    font-size: 48px;
    font-weight: bold;
    color: #e9ecef;
    line-height: 1;
    flex-shrink: 0;
}

.principle-content h3 {
    color: #1e3c72;
    font-size: 22px;
    margin-bottom: 10px;
}

.principle-content p {
    color: #495057;
    line-height: 1.7;
    margin: 0;
}

.measures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.measure-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-top: 3px solid #2a5298;
}

.measure-card h3 {
    color: #1e3c72;
    font-size: 20px;
    margin-bottom: 15px;
}

.measure-card p {
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

.responsibility-content {
    max-width: 900px;
    margin: 0 auto;
}

.responsibility-warning {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.warning-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.warning-text h3 {
    color: #856404;
    font-size: 22px;
    margin-bottom: 10px;
}

.warning-text p {
    color: #856404;
    margin: 0;
    line-height: 1.6;
}

.responsibility-types {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.responsibility-types h3 {
    color: #1e3c72;
    font-size: 22px;
    margin-bottom: 20px;
}

.responsibility-list {
    list-style: none;
    padding: 0;
}

.responsibility-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
    line-height: 1.6;
}

.responsibility-list li:last-child {
    border-bottom: none;
}

.responsibility-list strong {
    color: #1e3c72;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.document-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.document-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #2a5298;
}

.document-card h4 {
    color: #1e3c72;
    font-size: 18px;
    margin-bottom: 12px;
}

.document-card p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.section-highlight {
    background: #f8f9fa;
}

.reporting-box {
    max-width: 1000px;
    margin: 0 auto;
}

.reporting-box h2 {
    color: #1e3c72;
    font-size: 32px;
    text-align: center;
    margin-bottom: 15px;
}

.reporting-intro {
    text-align: center;
    color: #495057;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.reporting-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.channel-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.channel-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.channel-card h4 {
    color: #1e3c72;
    font-size: 18px;
    margin-bottom: 12px;
}

.channel-card p {
    color: #495057;
    margin: 5px 0;
}

.channel-time {
    font-size: 13px;
    color: #6c757d;
    font-style: italic;
}

.confidentiality-note {
    background: #e7f3ff;
    border-left: 4px solid #2a5298;
    padding: 20px;
    border-radius: 8px;
}

.confidentiality-note p {
    color: #1e3c72;
    line-height: 1.7;
    margin: 0;
}

.confidentiality-note strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

/* Responsive Design for FAQ and Compliance */
@media (max-width: 768px) {
    .faq-controls {
        text-align: center;
    }

    .faq-controls .btn {
        margin: 5px;
    }

    .faq-question {
        padding: 15px;
        font-size: 15px;
    }

    .faq-answer.active {
        padding: 0 15px 20px 15px;
    }

    .compliance-hero h2 {
        font-size: 28px;
    }

    .compliance-icon {
        font-size: 48px;
    }

    .principle-number {
        font-size: 36px;
    }

    .policy-grid {
        grid-template-columns: 1fr;
    }

    .measures-grid {
        grid-template-columns: 1fr;
    }

    .reporting-channels {
        grid-template-columns: 1fr;
    }
}

/* === TENDER DETAIL PAGE === */
.tender-page-status {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.status-badge {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.status-badge.status-active {
    background: #d4edda;
    color: #155724;
}

.tender-type-badge {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    background: #e7f3ff;
    color: #1e3c72;
}

.tender-detail-section {
    padding: 50px 0 80px;
}

.tender-detail-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.tender-detail-main > div {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.tender-detail-main h2 {
    color: #1e3c72;
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.tender-detail-main h3 {
    color: #2a5298;
    font-size: 18px;
    margin: 25px 0 15px;
}

.tender-detail-main p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Dates Grid */
.dates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.date-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    align-items: center;
}

.date-item.date-deadline {
    background: #fff3cd;
    border: 1px solid #ffc107;
}

.date-icon {
    font-size: 28px;
}

.date-label {
    display: block;
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 5px;
}

.date-value {
    display: block;
    font-weight: 600;
    color: #1e3c72;
    font-size: 15px;
}

/* Specs List */
.tender-specs-list {
    list-style: none;
    padding: 0;
}

.tender-specs-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #495057;
    border-bottom: 1px dashed #e9ecef;
}

.tender-specs-list li:last-child {
    border-bottom: none;
}

.tender-specs-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Requirements */
.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.requirement-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    align-items: flex-start;
}

.req-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.req-content h4 {
    color: #1e3c72;
    font-size: 16px;
    margin-bottom: 8px;
}

.req-content p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* Documents Checklist */
.docs-checklist {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.docs-checklist li {
    padding: 12px 15px 12px 40px;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
    font-size: 14px;
    color: #495057;
}

.docs-checklist li::before {
    content: "📋";
    position: absolute;
    left: 12px;
}

/* Criteria Table */
.criteria-table {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.criteria-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
}

.criteria-row:last-child {
    border-bottom: none;
}

.criteria-row.criteria-header {
    background: #1e3c72;
    color: #fff;
    font-weight: 600;
}

.criteria-row:not(.criteria-header):nth-child(even) {
    background: #f8f9fa;
}

.criteria-row span:last-child {
    font-weight: 600;
    color: #2a5298;
}

.criteria-header span:last-child {
    color: #fff;
}

/* Submission Steps */
.submission-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-top: 5px;
}

.step-content h4 {
    color: #1e3c72;
    font-size: 17px;
    margin-bottom: 8px;
}

.step-content p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* Sidebar */
.tender-detail-sidebar > div,
.tender-detail-sidebar > a {
    display: block;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.tender-detail-sidebar h3 {
    color: #1e3c72;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.tender-info-card .info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #e9ecef;
}

.tender-info-card .info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: #6c757d;
    font-size: 14px;
}

.info-value {
    color: #1e3c72;
    font-weight: 600;
    font-size: 14px;
}

/* Download Card */
.tender-download-card {
    background: linear-gradient(135deg, #e7f3ff 0%, #f8f9fa 100%) !important;
    border: 2px dashed #2a5298;
}

.tender-download-card p {
    color: #495057;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-download {
    width: 100%;
    text-align: center;
}

/* Contact Card */
.contact-person-info {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.person-name {
    color: #1e3c72;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.person-position {
    color: #6c757d;
    font-size: 14px;
}

.contact-details p {
    margin: 8px 0;
    color: #495057;
    font-size: 14px;
}

/* Back Button */
.btn-back {
    text-align: center;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .tender-detail-layout {
        grid-template-columns: 1fr;
    }

    .tender-detail-sidebar {
        order: -1;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .tender-detail-sidebar > div,
    .tender-detail-sidebar > a {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .dates-grid {
        grid-template-columns: 1fr;
    }

    .docs-checklist {
        grid-template-columns: 1fr;
    }

    .tender-page-status {
        flex-wrap: wrap;
    }

    .tender-detail-sidebar {
        grid-template-columns: 1fr;
    }
}

/* === SERVICES GRID === */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-grid-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.service-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.service-card-accent {
    height: 8px;
}

.service-card-content {
    padding: 25px;
}

.service-card-content h3 {
    color: #1e3c72;
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card-content p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.service-card-link {
    color: #2a5298;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    transition: color 0.3s;
}

.service-grid-card:hover .service-card-link {
    color: #1e3c72;
}

/* Why Us Grid */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-us-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.why-us-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.why-us-item h3 {
    color: #1e3c72;
    font-size: 20px;
    margin-bottom: 10px;
}

.why-us-item p {
    color: #6c757d;
    font-size: 14px;
}

/* === SERVICE DETAIL PAGE === */
.service-page-header {
    text-align: center;
}

.service-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.service-header-icon {
    font-size: 64px;
}

.service-detail-section {
    padding: 60px 0;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.service-hero-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.service-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-block {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.service-block h2 {
    color: #1e3c72;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.service-block p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-block p:last-child {
    margin-bottom: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature-item h4 {
    color: #1e3c72;
    font-size: 16px;
    margin-bottom: 5px;
}

.feature-item p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Aircraft Badges */
.aircraft-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.aircraft-badge {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Advantages List */
.advantages-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.advantage-card {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.adv-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.advantage-card h4 {
    color: #1e3c72;
    font-size: 16px;
    margin-bottom: 8px;
}

.advantage-card p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

/* Certificates List */
.certificates-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.certificates-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    border-bottom: 1px dashed #e9ecef;
    color: #495057;
}

.certificates-list li:last-child {
    border-bottom: none;
}

.certificates-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 18px;
}

/* Service Sidebar */
.service-detail-sidebar .sidebar-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.service-detail-sidebar h3 {
    color: #1e3c72;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.quick-info .info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #e9ecef;
}

.quick-info .info-item:last-child {
    border-bottom: none;
}

.quick-info .label {
    color: #6c757d;
    font-size: 14px;
}

.quick-info .value {
    color: #1e3c72;
    font-weight: 600;
    font-size: 14px;
}

.cta-card {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
    color: #fff;
}

.cta-card h3 {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.2);
}

.cta-card p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.btn-block:last-child {
    margin-bottom: 0;
}

.cta-card .btn-outline {
    border-color: #fff;
    color: #fff;
}

.cta-card .btn-outline:hover {
    background: #fff;
    color: #1e3c72;
}

.contact-card .contact-info p {
    margin: 8px 0;
    color: #495057;
    font-size: 14px;
}

.contact-card .work-hours {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    color: #28a745;
    font-weight: 500;
}

.related-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-services li {
    margin-bottom: 12px;
}

.related-services li:last-child {
    margin-bottom: 0;
}

.related-services a {
    color: #495057;
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
}

.related-services a:hover {
    background: #e9ecef;
    color: #1e3c72;
}

/* Responsive Services */
@media (max-width: 1024px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-layout {
        grid-template-columns: 1fr;
    }

    .service-detail-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-detail-sidebar .sidebar-card {
        margin-bottom: 0;
    }

    .service-detail-sidebar .btn-back {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .advantages-list {
        grid-template-columns: 1fr;
    }

    .service-detail-sidebar {
        grid-template-columns: 1fr;
    }

    .service-header-content {
        flex-direction: column;
        gap: 10px;
    }

    .service-header-icon {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

/* === NEW PAGES: Operators, Crew, Aerodrome, Press === */

/* Info Cards Grid */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.info-cards-grid .info-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.info-cards-grid .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.info-card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 6px 0;
    color: #555;
    line-height: 1.5;
}

.info-list li strong {
    color: #1e3c72;
}

/* Detail Grid */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.detail-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.detail-item h3 {
    color: #1e3c72;
    font-size: 1.15rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b35;
}

/* Content Block */
.content-block {
    margin-top: 20px;
}

/* Data Table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.data-table thead {
    background: #1e3c72;
    color: #fff;
}

.data-table th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
}

.data-table td {
    padding: 12px 20px;
    border-bottom: 1px solid #e9ecef;
    color: #555;
}

.data-table tbody tr:hover {
    background: #f8f9fa;
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

/* Tariff Notes */
.tariff-notes {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2a5298;
}

.tariff-notes p {
    color: #555;
    margin-bottom: 8px;
}

.tariff-notes p:last-child {
    margin-bottom: 0;
}

/* Download Section */
.download-section {
    margin-top: 25px;
    text-align: center;
}

/* Contacts Grid */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.contact-card h3 {
    color: #1e3c72;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-phone {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2a5298;
    margin: 10px 0;
}

.contact-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Button Outline */
.btn-outline {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid #2a5298;
    color: #2a5298;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: transparent;
}

.btn-outline:hover {
    background: #2a5298;
    color: #fff;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* Document Card h3 fix */
.document-card h3 {
    color: #1e3c72;
    font-size: 18px;
    margin-bottom: 12px;
}

/* Breadcrumb (alternative class) */
.breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
}

.breadcrumb-list li {
    color: #666;
}

.breadcrumb-list li a {
    color: #2a5298;
    transition: color 0.3s;
}

.breadcrumb-list li a:hover {
    color: #ff6b35;
}

.breadcrumb-list li:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    color: #ccc;
}

/* === DOCUMENT VIEWER MODAL === */
.doc-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.doc-modal-overlay.active {
    display: flex;
}

.doc-modal {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 920px;
    height: 86vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.doc-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #1e3c72;
    color: #fff;
    flex-shrink: 0;
    gap: 12px;
}

.doc-modal-title {
    font-size: 0.92rem;
    font-weight: 600;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.doc-modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 2px;
    opacity: 0.75;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.doc-modal-close:hover {
    opacity: 1;
}

.doc-modal-body {
    flex: 1;
    overflow: hidden;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    background: #f1f5f9;
}

.doc-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.doc-modal-notice {
    padding: 7px 20px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    font-size: 0.76rem;
    color: #94a3b8;
    text-align: center;
    flex-shrink: 0;
}

/* Ensure button.btn inherits font and cursor */
button.btn {
    cursor: pointer;
    font-family: inherit;
}

@media (max-width: 600px) {
    .doc-modal {
        height: 94vh;
    }

    .doc-modal-overlay {
        padding: 8px;
    }
}

/* === PRINT STYLES === */
@media print {
    header, footer, .scroll-top-btn, .accessibility-panel, .doc-modal-overlay {
        display: none !important;
    }
}

