@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f5;
  --bg-card: #ffffff;
  --white: #ffffff;

  --text: #2e2e2e;
  --text-soft: #666666;

  --blue: #233a66;
  --blue-dark: #1b2e55;
  --blue-soft: #eef3fb;

  --orange: #f07a18;
  --orange-soft: #fff3e8;

  --border: #e6e6e6;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.06);

  --radius: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-wrap img {
  height: 58px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.15px;
}

.brand-subtitle {
  font-size: 0.95rem;
  color: var(--text-soft);
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue);
  transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--orange-soft);
  color: var(--orange);
}

/* HERO */
.hero {
  padding: 48px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.hero-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 42px;
  overflow: hidden;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 18px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 3.05rem;
  line-height: 1.08;
  color: var(--blue);
}

.hero p {
  margin: 0 0 14px;
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: none;
}

.hero-strong-line {
  margin-top: 10px;
  color: var(--blue);
  font-weight: 700;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 13px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: #fafafa;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.photo-placeholder {
  min-height: 260px;
  border-radius: 18px;
  border: 1px dashed #d9d9d9;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: #7a7a7a;
  font-size: 1rem;
}

.hero-stats {
  display: grid;
  gap: 16px;
}

.stat-box {
  background: var(--blue);
  border-radius: 18px;
  padding: 20px 22px;
  color: rgba(255, 255, 255, 0.9);
}

.stat-box strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.14rem;
  color: #ffffff;
}

/* GENERIC SECTIONS */
.section {
  padding: 34px 0 60px;
}

.section-title {
  margin: 0 0 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2.05rem;
  line-height: 1.15;
  color: var(--blue);
}

.section-intro {
  margin: 0 0 28px;
  color: var(--text-soft);
  font-size: 1.08rem;
  max-width: 880px;
}

.cards-3,
.cards-2 {
  display: grid;
  gap: 22px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-2 {
  grid-template-columns: repeat(2, 1fr);
}
.cards-2 {
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}

.cards-2 .content-block {
  height: 100%;
}

.cards-2 .content-block + .content-block {
  margin-top: 0;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
}

.card .photo-placeholder {
  min-height: 150px;
  border-radius: 14px;
  margin-bottom: 16px;
}

.card h3 {
  margin: 0 0 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.14rem;
  color: var(--blue);
}

.card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
}

/* BAND */
.band {
  padding: 12px 0 26px;
}

.band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
}

.band-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
}

.band-item strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.2rem;
  color: var(--orange);
}

/* PAGE HERO */
.page-hero {
  padding: 40px 0 22px;
}

.page-hero-box {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 0 0 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2.35rem;
  color: var(--blue);
}

.page-hero p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.08rem;
  max-width: none;
}

/* CONTENT BLOCK */
.content-block {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.content-block + .content-block {
  margin-top: 22px;
}

.content-block h2 {
  margin: 0 0 14px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.5rem;
  color: var(--blue);
}

.content-block p {
  margin: 0 0 14px;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.content-block p:last-child {
  margin-bottom: 0;
}

/* CONTACTS */
.contact-list {
  display: grid;
  gap: 16px;
}

.contact-item {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--blue);
}

/* CTA */
.cta-box {
  background: var(--blue);
  color: var(--white);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  margin: 0 0 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2rem;
  color: #ffffff;
}

.cta-box p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.cta-box .btn-secondary {
  background: var(--white);
  color: var(--blue);
  border-color: transparent;
}

/* FOOTER */
.site-footer {
  margin-top: 0;
  background: #f7f7f7;
  color: var(--text);
  padding: 26px 0 22px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.footer-logo img {
  width: 170px;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-block h3,
.footer-title {
  margin: 0 0 8px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--blue);
}

.footer-block p,
.footer-text {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 0.98rem;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-grid,
  .cards-3,
  .cards-2,
  .band-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .footer-grid {
    align-items: start;
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }

  .main-nav ul {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-card,
  .page-hero-box,
  .card,
  .content-block,
  .cta-box {
    padding: 24px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-title,
  .cta-box h2 {
    font-size: 1.7rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .logo-wrap img {
    height: 48px;
  }

  .footer-logo img {
    width: 150px;
  }
}
.photo-slider-section {
  padding: 8px 0 34px;
}

.photo-slider {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.photo-track {
  display: flex;
  transition: transform 1.50s ease;
  width: 100%;
}

.photo-slide {
  min-width: 100%;
  height: 420px;
  background: #f3f3f3;
}

.photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  border: none;
  background: none;

  color: white;
  font-size: 48px;
  font-weight: 300;

  cursor: pointer;
  transition: opacity 0.2s ease;
}

.photo-arrow:hover {
  opacity: 0.7;
}

.photo-arrow-left {
  left: 18px;
}

.photo-arrow-right {
  right: 18px;
}

@media (max-width: 760px) {
  .photo-slide {
    height: 250px;
  }

  .photo-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.6rem;
  }
}

.hero-side {
  display: flex;
}

.hero-stats-equal {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
  height: 100%;
}

.stat-box {
  background: linear-gradient(180deg, #233a66 0%, #1b2e55 100%);
  border-radius: 20px;
  padding: 24px 26px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(25, 42, 79, 0.18);
}

.stat-box p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.96);
}

.stat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.02rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.12);
}

.stat-box strong {
  display: block;
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.18rem;
  line-height: 1.25;
  color: #ffffff;
}
.zoomable {
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zoomable:hover {
  transform: scale(1.02);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 35, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 9999;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  background: #fff;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.26);
}

.lang-dropdown{
  position: relative;
  margin-left: 18px;
  flex-shrink: 0;
}

.lang-current{
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 34px;
  padding: 0;
  background: #f2f4f7;
  border:1px solid #d0d7de;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1;
  box-shadow:0 2px 6px rgba(0,0,0,0.08);
}
.lang-current:hover{
  background:#d0d7de;
}
.lang-current img{
  width: 22px;
  height: 15px;
  object-fit: contain;
  display: block;
  border-radius: 2px;
}

.lang-menu{
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 46px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
  padding: 6px 0;
  z-index: 1000;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.lang-menu.open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-menu a{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 34px;
  text-decoration: none;
}

.lang-menu a img{
  width: 22px;
  height: 15px;
  object-fit: contain;
  display: block;
  border-radius: 2px;
}

.lang-menu a::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: #2c3e50;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width 0.18s ease;
}

.lang-menu a:hover::after,
.lang-menu a.active::after{
  width: 24px;
}

@media (max-width: 900px){
  .lang-dropdown{
    margin-left: 10px;
  }
}