/* ========================================
   ГЛОБАЛЬНЫЕ ПЕРЕМЕННЫЕ
======================================== */

:root {
  /* Цвета из логотипа БКДА */
  --primary-navy: #1a3a52;
  --primary-red: #d32f2f;
  --primary-gold: #c9a961;
  
  /* Дополнительные цвета */
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --dark-bg: #1a1a1a;
  
  /* Текст */
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --text-white: #ffffff;
  
  /* Overlay */
  --overlay-dark: rgba(26, 58, 82, 0.75);
  --overlay-gradient: linear-gradient(135deg, rgba(26, 58, 82, 0.9) 0%, rgba(211, 47, 47, 0.7) 100%);
  
  /* Тени */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.15);
  
  /* Переходы */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ========================================
   БАЗОВЫЕ СТИЛИ
======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-navy);
}

h1 { font-size: 56px; font-weight: 800; }
h2 { font-size: 42px; }
h3 { font-size: 32px; }
h4 { font-size: 24px; }

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

img {
  max-width: 100%;
  height: auto;
}

section {
  position: relative;
}

/* ========================================
   HEADER / NAVIGATION
======================================== */

.navbar {
  padding: 20px 0;
  transition: all var(--transition-normal);
  z-index: 1000;
}

.navbar-transparent {
  background: rgba(26, 58, 82, 0.85);
  backdrop-filter: blur(10px);
}

.navbar-scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  transition: var(--transition-normal);
}

.navbar-scrolled .navbar-brand img {
  height: 40px;
}

.brand-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: 1px;
}

.navbar-transparent .brand-text {
  color: var(--white);
}

.navbar-scrolled .brand-text {
  color: var(--primary-navy);
}

.navbar-transparent .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar-transparent .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-scrolled .navbar-toggler {
  border-color: rgba(26, 58, 82, 0.3);
}

.navbar-scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 58, 82, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: var(--transition-normal);
}

.navbar-transparent .nav-link {
  color: var(--white);
}

.navbar-scrolled .nav-link {
  color: var(--text-dark);
}

.nav-link:hover,
.nav-link.active {
  border-bottom-color: var(--primary-red);
}

/* Переключатель языков */
.lang-switcher {
  display: flex;
  gap: 8px;
  margin: 0 20px;
}

.lang-switcher button {
  background: transparent;
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lang-switcher button:hover,
.lang-switcher button.active {
  background: var(--primary-gold);
  color: var(--primary-navy);
}

/* Telegram Button */
.btn-telegram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0088cc;
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: var(--transition-normal);
  margin-right: 10px;
}

.btn-telegram:hover {
  background: #006ba3;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

.telegram-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.telegram-icon-small {
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-right: 5px;
}

.navbar-transparent .btn-telegram {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.navbar-transparent .btn-telegram:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* CTA кнопка в header */
.btn-primary-red {
  background: var(--primary-red);
  color: var(--white);
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
  transition: var(--transition-normal);
}

.btn-primary-red:hover {
  background: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
  color: var(--white);
}

/* ========================================
   HERO SECTION
======================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('../image/hero-background.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-gradient);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

/* Hero Logo */
.hero-logo-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 0;
  padding-top: 0;
}

.hero-logo-plate {
  background: var(--white);
  padding: 24px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  width: 100%;
  max-width: 280px;
  height: fit-content;
  min-height: 180px;
}

.hero-logo-plate:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-logo {
  height: auto;
  width: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Hero Content */
.hero-content {
  padding-left: 40px;
}

.hero-title-line1 {
  color: var(--white);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-title-line2 {
  color: var(--white);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-title {
  color: var(--white);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  color: var(--white);
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 48px;
  opacity: 0.95;
}

/* Hero Benefits */
.hero-benefits {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.benefit-item {
  text-align: center;
  color: var(--white);
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  width: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.benefit-text {
  font-size: 18px;
  line-height: 1.4;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-text strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--primary-gold);
  text-align: center;
}

.benefit-text span {
  display: block;
  text-align: center;
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-large {
  background: var(--primary-red);
  color: var(--white);
  padding: 14px 36px;
  font-size: 16px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
  transition: var(--transition-normal);
  display: inline-block;
}

.btn-primary-large:hover {
  background: #b71c1c;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(211, 47, 47, 0.5);
  color: var(--white);
}

.btn-outline-large {
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  font-size: 16px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--white);
  transition: var(--transition-normal);
  display: inline-block;
}

.btn-outline-large:hover {
  background: var(--white);
  color: var(--primary-navy);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.scroll-indicator a {
  color: var(--white);
  font-size: 32px;
  opacity: 0.8;
  transition: var(--transition-normal);
}

.scroll-indicator a:hover {
  opacity: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { 
    transform: translateX(-50%) translateY(0); 
  }
  40% { 
    transform: translateX(-50%) translateY(-10px); 
  }
  60% { 
    transform: translateX(-50%) translateY(-5px); 
  }
}

/* ========================================
   PATHS SECTION - Три пути сотрудничества
======================================== */

.paths-section {
  background: var(--light-bg);
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header .lead {
  font-size: 20px;
  color: var(--text-light);
  font-weight: 300;
}

.path-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.path-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}


.path-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.path-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.path-card:hover .path-image img {
  transform: scale(1.1);
}

.path-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

.path-icon {
  font-size: 64px;
  color: var(--white);
}

.path-content {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.path-content h3 {
  color: var(--primary-navy);
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 700;
}

.path-content p {
  color: var(--text-light);
  margin-bottom: 24px;
  flex-grow: 1;
  font-size: 15px;
  line-height: 1.6;
}

.path-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.path-features li {
  padding: 8px 0;
  color: var(--text-dark);
  font-size: 15px;
}

.path-features i {
  color: var(--primary-red);
  margin-right: 10px;
  font-size: 16px;
}

.btn-path {
  background: var(--primary-red);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  transition: var(--transition-normal);
  border: none;
}

.btn-path:hover {
  background: var(--primary-navy);
  transform: translateX(5px);
  color: var(--white);
}

/* ========================================
   REGION SECTION - Почему СПб
======================================== */

.region-section {
  background: var(--white);
  padding: 100px 0;
}

.map-container {
  background: var(--light-bg);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.map-container img {
  width: 100%;
  height: auto;
}

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

.stat-card {
  display: flex;
  align-items: center;
  background: var(--light-bg);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-red);
  transition: var(--transition-normal);
}

.stat-card:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.2);
}

.stat-icon {
  font-size: 48px;
  color: var(--primary-red);
  margin-right: 24px;
  min-width: 70px;
  text-align: center;
}

.stat-content {
  flex-grow: 1;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.advantages-list {
  border-top: 2px solid var(--light-bg);
  padding-top: 32px;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 28px;
}

.advantage-item i {
  font-size: 24px;
  color: var(--primary-red);
  margin-right: 16px;
  margin-top: 4px;
  min-width: 24px;
}

.advantage-item strong {
  display: block;
  color: var(--primary-navy);
  font-size: 18px;
  margin-bottom: 6px;
}

.advantage-item p {
  color: var(--text-light);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* ========================================
   SERVICES SECTION - Комплекс услуг
======================================== */

.services-section {
  background: var(--light-bg);
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition-normal);
  border: 2px solid transparent;
}

.service-card:hover {
  border-color: var(--primary-red);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(211, 47, 47, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
  transition: transform var(--transition-normal);
}

.service-card:hover .service-icon {
  transform: rotate(360deg) scale(1.1);
}

.service-card h4 {
  color: var(--primary-navy);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

/* ========================================
   INVESTMENTS SECTION - Инвестиционные возможности
======================================== */

.investments-section {
  background: var(--dark-bg);
  padding: 100px 0;
  color: var(--white);
}

.investments-section .section-header h2,
.investments-section .section-header .lead {
  color: var(--white);
}

.investment-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.investment-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 36px;
  transition: var(--transition-normal);
}

.investment-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-gold);
  transform: translateY(-5px);
}


.investment-category {
  font-size: 14px;
  color: var(--primary-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.investment-card h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 24px;
}

.investment-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.investment-detail {
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.investment-detail-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.investment-detail-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-gold);
}

.investment-status {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 16px;
}

.investments-cta {
  text-align: center;
  margin-top: 50px;
}

.btn-gold-large {
  background: var(--primary-gold);
  color: var(--primary-navy);
  padding: 18px 48px;
  font-size: 18px;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
  transition: var(--transition-normal);
  display: inline-block;
}

.btn-gold-large:hover {
  background: #b8965a;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(201, 169, 97, 0.5);
  color: var(--primary-navy);
}

/* ========================================
   PROCESS SECTION - Как мы работаем
======================================== */

.process-section {
  background: var(--white);
  padding: 100px 0;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-red);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-number {
  width: 80px;
  height: 80px;
  background: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
  flex-shrink: 0;
}

.timeline-content {
  flex: 1;
  padding: 0 40px;
  max-width: 400px;
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: left;
}

.timeline-content h4 {
  font-size: 22px;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

/* ========================================
   TEAM SECTION - О команде
======================================== */

.team-section {
  background: var(--light-bg);
  padding: 100px 0;
}

.team-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.team-block {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition-normal);
}

.team-block:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--white);
}

.team-block h3 {
  color: var(--primary-navy);
  font-size: 22px;
  margin-bottom: 16px;
}

.team-block p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.team-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.team-feature-tag {
  background: var(--light-bg);
  color: var(--primary-navy);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* ========================================
   LEADERSHIP SECTION - Руководство
======================================== */

.leadership-section {
  background: var(--white);
  padding: 100px 0;
}

.leadership-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.leadership-card {
  background: var(--light-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.leadership-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.leadership-photo {
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.leadership-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.leadership-info {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.leadership-name {
  color: var(--primary-navy);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.leadership-position {
  color: var(--primary-red);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}

.leadership-quotes {
  margin-top: auto;
}

.quote-item {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 20px;
  position: relative;
}

.quote-item:last-child {
  margin-bottom: 0;
}

.quote-item::before {
  content: '"';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 32px;
  color: var(--primary-gold);
  font-family: 'Georgia', serif;
  line-height: 1;
}

.quote-item em {
  font-style: italic;
  color: var(--text-dark);
  display: block;
}

/* ========================================
   FAQ SECTION
======================================== */

.faq-section {
  background: var(--white);
  padding: 100px 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  background: var(--white);
  border: 2px solid var(--light-bg);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.accordion-item:hover {
  border-color: var(--primary-red);
}

.accordion-button {
  background: var(--white);
  color: var(--primary-navy);
  font-size: 18px;
  font-weight: 600;
  padding: 24px;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-normal);
  position: relative;
}

.accordion-button:not(.collapsed) {
  background: var(--light-bg);
  color: var(--primary-red);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  content: '\f107' !important; /* Font Awesome chevron-down */
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900 !important;
  font-size: 20px !important;
  transition: transform var(--transition-normal) !important;
  /* Убираем стандартную SVG иконку Bootstrap */
  background-image: none !important;
  background-size: 0 !important;
  background-position: 0 0 !important;
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0;
  margin-left: auto;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-collapse {
  border-top: 1px solid var(--light-bg);
}

.accordion-body {
  padding: 24px;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
}

/* ========================================
   FINAL CTA SECTION
======================================== */

.final-cta-section {
  background: url('../image/port-terminal.jpg') center/cover;
  position: relative;
  padding: 120px 0;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-gradient);
  z-index: 1;
}

.final-cta-section .container {
  position: relative;
  z-index: 2;
}

.final-cta-content {
  text-align: center;
  color: var(--white);
}

.final-cta-content h2 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 16px;
}

.final-cta-content p {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 48px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.cta-buttons .btn-primary-large,
.cta-buttons .btn-outline-large {
  min-width: 280px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-item {
  text-align: center;
}

.contact-item i {
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--primary-gold);
}

.contact-item p {
  margin: 0;
  font-size: 16px;
  color: var(--white);
}

.contact-item a {
  color: var(--white);
  font-weight: 600;
}

.contact-item a:hover {
  color: var(--primary-gold);
}

/* ========================================
   FOOTER
======================================== */

.footer-section {
  background: var(--primary-navy);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-section h5 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer {
  background: var(--primary-navy);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.footer-column h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-gold);
}

.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
  display: block;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
}

.footer-links-column a {
  margin-bottom: 8px;
}

.footer-contact-column {
  min-width: 200px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item i {
  color: var(--primary-gold);
  font-size: 16px;
  width: 20px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 0;
  transition: var(--transition-normal);
}

.footer-contact-item a:hover {
  color: var(--primary-gold);
  padding-left: 0;
}

.footer-column a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: var(--transition-normal);
}

.social-link:hover {
  background: var(--primary-gold);
  color: var(--primary-navy);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.contact-info i {
  margin-right: 12px;
  color: var(--primary-red);
}

/* ========================================
   UTILITY CLASSES
======================================== */
