html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

.site-content {
  flex: 1;
}

.footer {
  background: #f5f5f5;
  padding: 20px 0;
  margin-top: auto;
}


.hero {
  background: #0b1c2d;
  color: #fff;
  padding: 145px 0;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
}

.video-hero {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgb(11 28 45 / 63%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  top: -60px;
}


.section-title {
  padding: 40px 15px 20px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 600;
  color: #0b1c2d;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 16px;
  color: #666;
}


.brand-card {
  display: block;
  background: #fff;
  border: 1px solid #ddd;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  transition: 0.3s;
  text-decoration: none;
  color: #333;
}

.brand-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}


.brands-grid {
  margin-top: 40px;
}

.brand-box {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
}

.brand-box:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transform: translateY(-6px);
}

.brand-box h4 {
  font-size: 20px;
  font-weight: 600;
  color: #0b1c2d;
  margin-bottom: 10px;
}

.brand-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.brand-link {
  font-weight: 600;
  color: #0b5ed7;
  text-decoration: none;
}

.brand-link:hover {
  text-decoration: underline;
}


.about-page {
  padding: 60px 15px 80px;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.about-content strong {
  color: #0b1c2d;
}


.contact-page {
  padding: 60px 15px 80px;
}

.contact-box {
  max-width: 700px;
  margin: 40px auto 0;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 35px 40px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}

.contact-list span {
  font-size: 14px;
  color: #777;
  margin-bottom: 6px;
}

.contact-list a {
  font-size: 18px;
  font-weight: 600;
  color: #0b5ed7;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}


.vision-page {
  padding: 60px 15px 80px;
}

.vision-box {
  margin: 40px auto;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 35px 40px;
}

.vision-box h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0b1c2d;
  margin-bottom: 15px;
}

.vision-box p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.panel {
  margin-top: 20px;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {

  .video-hero {
    height: 420px;
    max-height: 345px;
  }

  .hero-content {
    width: 100%;
    margin-top: 10px;
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 15px;
  }

  .section-title {
    padding: 30px 15px 10px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .section-title p {
    font-size: 14px;
  }

  .brand-box {
    margin-top: 10px;
    padding: 25px;
  }

  .about-content p,
  .vision-box p {
    font-size: 15px;
    line-height: 1.7;
  }

  .vision-box,
  .contact-box {
    padding: 25px;
    margin: 30px auto;
  }

  .contact-list a {
    font-size: 16px;
  }
}


.home-brands {
  background: #f8f9fb;
  padding: 80px 20px;
  display: block;
  clear: both;
}

.home-brands-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.home-brands-title {
  text-align: center;
  margin-bottom: 50px;
}

.home-brands-title h2 {
  font-size: 34px;
  font-weight: 700;
  color: #0b1c2d;
  margin-bottom: 10px;
}

.home-brands-title p {
  font-size: 16px;
  color: #666;
}


.home-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}


.home-brand-item {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
}

.home-brand-item:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transform: translateY(-6px);
}

.home-brand-item h4 {
  font-size: 20px;
  font-weight: 600;
  color: #0b1c2d;
  margin-bottom: 10px;
}

.home-brand-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.home-brand-item a {
  font-weight: 600;
  color: #0b5ed7;
  text-decoration: none;
}

.home-brand-item a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .home-brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .home-brands {
    padding: 60px 15px;
  }

  .home-brands-title h2 {
    font-size: 26px;
  }

  .home-brands-grid {
    grid-template-columns: 1fr;
  }
}

.hero,
.video-hero,
.press-hero {
  flex-shrink: 0;
}

.page-hero {
  position: relative;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 768px) {
  .page-hero {
    height: 420px;
    max-height: 345px;
  }
}

.press-hero {
  background: linear-gradient(135deg, #0b1c2d, #123a5f);
}

.press-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

.press-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.company-section {
  padding: 80px 0;
  background: #f8f9fb;
  color: #e5e7eb;
}

.company-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #777;
  text-decoration-line: underline;
  text-decoration-color: #777;
  text-decoration-thickness: 4px;
  text-underline-offset: 10px;
}

.company-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #000000;
}

.company-header p {
  font-size: 17px;
  color: #000000;
  line-height: 1.6;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.company-box {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 30px;
  transition: 0.3s;
}

.no-select {
  -webkit-user-select: none; /* Chrome, Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Edge (eski) */
  user-select: none;
}

.company-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #000000;
}

.company-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #000000;
}

.company-box ul {
  padding-left: 0;
  list-style: none;
}

.company-box ul li {
  padding: 8px 0;
  font-size: 15px;
  color: #000000;
}
