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

html {
  scroll-behavior: smooth;
  min-height: 100%;
  overflow-x: hidden;
  background: #0f1d35;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f5f7fb;
  color: #11213a;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* CONTAINER */
.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(245, 247, 251, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(61, 109, 198, 0.12);
  width: 100%;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 30px;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
}

.logo {
  height: 30px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  text-decoration: none;
  color: #17315c;
  font-size: 0.98rem;
  font-weight: 600;
  position: relative;
  transition: 0.25s ease;
}

.main-nav a:hover {
  color: #3f7fe0;
}

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0d1b35 0%, #1f3f75 60%, #4a88e8 100%);
  overflow: hidden;
  width: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.06), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px 0;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #dce9ff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

.hero-text {
  max-width: 640px;
  font-size: 1.15rem;
  color: #e9f1ff;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  padding: 15px 26px;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(135deg, #6aa8ff, #3871d8);
  color: #ffffff;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 18px 40px rgba(57, 111, 216, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* SECTIONS */
.section {
  padding: 100px 0;
  width: 100%;
}

.section-light {
  background: #f5f7fb;
}

.section-dark {
  background: linear-gradient(180deg, #12284d 0%, #0d1b35 100%);
  color: #f3f7ff;
}

.section-label {
  color: #4a88e8;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  margin-bottom: 14px;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.center-title {
  text-align: center;
  margin-bottom: 50px;
}

/* SPLIT GRID */
.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-grid p {
  font-size: 1.06rem;
  color: #294160;
  margin-bottom: 18px;
}

.split-grid img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(32, 64, 120, 0.12);
}

/* STORY SLIDER */
.story-slider {
  position: relative;
  overflow: visible;
  padding-bottom: 95px;
}

.story-slide {
  display: none;
  animation: fadeStory 0.55s ease;
}

.story-slide.active {
  display: block;
}

.slider-arrow {
  position: absolute;
  bottom: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: rgba(17, 33, 58, 0.92);
  color: #ffffff;
  font-size: 30px;
  cursor: pointer;
  z-index: 50;
  box-shadow: 0 14px 35px rgba(17, 33, 58, 0.25);
  transition: 0.3s ease;
}

.slider-arrow:hover {
  background: #11213a;
  transform: scale(1.08);
}

.slider-arrow.prev {
  left: 50%;
  margin-left: -70px;
}

.slider-arrow.next {
  right: 50%;
  margin-right: -70px;
}

@keyframes fadeStory {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(150, 186, 255, 0.15);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(150, 186, 255, 0.32);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.card p {
  color: #d7e5ff;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 320px;
  background: #d9e6fb;
  box-shadow: 0 20px 45px rgba(32, 64, 120, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* CONTACT */
.contact-section {
  background:
    radial-gradient(circle at top right, rgba(79, 140, 232, 0.12), transparent 25%),
    #eef4fc;
}

.contact-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  padding: 42px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(71, 117, 198, 0.12);
  border-radius: 30px;
  box-shadow: 0 22px 50px rgba(26, 52, 98, 0.08);
  backdrop-filter: blur(10px);
}

.contact-left p {
  color: #3b5274;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.contact-line {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(58, 95, 155, 0.12);
}

.contact-line span {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: #4a88e8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-line a,
.contact-line p {
  color: #11213a;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 600;
}

/* FOOTER */
.site-footer {
  background: #0f1d35;
  color: #cddaf5;
  padding: 26px 0;
  margin-top: auto;
  width: 100%;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.socials {
  display: flex;
  gap: 18px;
}

.socials a {
  color: #8fb8ff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
}

.socials a:hover {
  color: #ffffff;
}

/* TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.team-item {
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(71,117,198,0.12);
  text-align: center;
  transition: 0.25s ease;
  min-width: 0;
}

.team-item:hover {
  transform: translateY(-5px);
}

.team-item img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.team-item h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  line-height: 1.2;
}

.team-item p {
  font-size: 0.85rem;
  color: #4a88e8;
  font-weight: 600;
  line-height: 1.3;
}

/* SOCIAL */
.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(63,127,224,0.25);
  transition: 0.25s ease;
}

.social-link img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.social-link:hover {
  background: rgba(63,127,224,0.12);
  transform: translateY(-2px);
}

/* COOKIE */
.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.35);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-box {
  width: min(100%, 700px);
  background: #05070c;
  color: #ffffff;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.cookie-box p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-actions button {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #ffffff;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 1rem;
  cursor: pointer;
}

#cookie-accept {
  background: linear-gradient(135deg, #ff5a5f, #ff3e57);
  border: none;
  font-weight: 700;
}

/* FLOATING LOGO */
.floating-logo {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 9999;
  width: 75px;
  opacity: 0.9;
  pointer-events: none;
}

.floating-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .split-grid,
  .cards,
  .gallery-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item {
    min-height: 260px;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-content {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {

  .nav-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .section {
    padding: 72px 0;
  }

  .contact-box {
    padding: 28px;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .slider-arrow {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }

  .slider-arrow.prev {
    margin-left: -58px;
  }

  .slider-arrow.next {
    margin-right: -58px;
  }

  .floating-logo {
    width: 52px;
    right: 10px;
  }

  .cookie-banner {
    padding: 16px;
  }

  .cookie-box {
    border-radius: 26px;
    padding: 28px 20px 20px;
  }
}