    :root {
      --red: #FDBB06;
      --dark: #1a1a1a;
      --light: #f5f5f5;
      --swiper-theme-color: #FDBB06 !important; /* Ana renk */
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Segoe UI", Arial, sans-serif;
    }
.hero,
.hero .swiper,
.hero .swiper-wrapper,
.hero .swiper-slide {
  height: 100%;
}
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 50px;
    }

    body {
      color: var(--dark);
      background: #fff;
    }
.swiper-slide {
  position: relative;
  width: 100%;
  height: 100vh;
}

/* VIDEO & IMAGE ORTAK */
.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Taşma olmadan ekranı kaplar */
  z-index: 1;
}

/* Video için ekstra netlik */
video.hero-media {
  filter: brightness(0.6);
}

/* Görsel için */
img.hero-media {
  filter: brightness(0.7);
}
    /* Navbar */
    header {
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      z-index: 1000;
    }
.hero-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 32px;
    background: #d40000;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #a80000;
    transform: translateY(-3px);
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 28px;
    color: #ffffff;
    font-weight: 700;
}

.stat span {
    font-size: 14px;
    color: #c1c1c1;
    margin-top: 4px;
}
.footer {
  background: #111;
  color: #ccc;
  padding-top: 60px;
  font-size: 0.95rem;
}
.footer-top {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 1.5rem 40px;
}
.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col p {
  line-height: 1.6;
  color: #aaa;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #aaa;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--red);
}
.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  align-items: center;
  justify-content: center;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
  font-size: 16px;
  text-decoration: none;
}

.footer-socials a:hover {
  background: var(--red);
  transform: translateY(-4px);
}
.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  color: #888;
}
.footer-bottom strong {
  font-weight: 600;
  color: #fff;
}
.footer-bottom a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero{
    height: 100vh !important;
  }
  
    .hero-stats {
        gap: 20px;
    }

    .stat strong {
        font-size: 22px;
    }
}
    /* Hero tam genişlikte olmalı */
    .hero {
      width: 100%;
      max-width: 100%;
      height: 90vh;
      margin: 0;
      padding: 0;
    }

    .logo img {
      height: 100%;
    }

    .copy {
      background-color: #000;
      color: #fff;
      padding: 1rem 5rem;
      display: flex;
      justify-content: space-between;
      font-size: 0.9rem;
      align-items: center;
    }

    .copy a {
      color: #fff;
      text-decoration: none;
      font-weight: bold;
    }

    .copy b {
      color: var(--brand-color);
    }

    .copy .socials {
      display: flex;
      gap: 1rem;
    }

    .socials .social {
      background-color: red;
      aspect-ratio: 1/1;
      height: 30px;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    nav {

      margin: auto;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 2rem;
    }

    .logo {
      height: 100%;
      font-size: 1.6rem;
      font-weight: bold;
      color: var(--red);
      letter-spacing: 1px;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 2rem;
    }

    nav a {
      text-decoration: none;
      color: var(--dark);
      font-weight: 500;
      transition: color 0.3s;
    }

    nav a:hover {
      color: var(--red);
    }

    /* Hero Slider */
    .hero {
      position: relative;
      height: 90vh;
      overflow: hidden;
      border-bottom: 2px solid var(--red);
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
    }

    .slide.active {
      opacity: 1;
    }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg,rgba(0, 0, 0, 0.6) 0%, rgba(8, 20, 36, 0) 100%);
}

    .hero-text {
      z-index: 2;
      position: absolute;
      top: 50%;
      left: 10%;
      transform: translateY(-50%);
      color: white;
      max-width: 600px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 6px;
      backdrop-filter: blur(2px);
      padding: 2rem;
      border-left: 5px solid var(--red);
    }

    .hero-text h1 {
      font-size: 2.1rem;
      margin-bottom: 1rem;
    }

    .hero-text p {
      font-size: 1.1rem;
      line-height: 1.5;
    }

    section {
      max-width: 1200px;
      margin: auto;
      padding: 3rem 1.5rem;
    }

    h2 {
      color: var(--red);
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
      position: relative;
    }

    .sub-title {
      font-size: 1.5rem !important;
      font-weight: bold;
      margin-bottom: 1rem;
    }

    .alert-success {
      position: fixed;
      top: 50px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1050;

      min-width: 320px;
      max-width: 90%;
      padding: 14px 20px;

      background-color: #d1e7dd;
      color: #0f5132;
      border: 1px solid #badbcc;
      border-radius: 6px;

      font-size: 1.2rem;
      font-weight: 500;
      text-align: center;

      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      animation: slideDownFade 0.4s ease;
    }

    /* Giriş animasyonu */
    @keyframes slideDownFade {
      from {
        opacity: 0;
        transform: translate(-50%, -20px);
      }

      to {
        opacity: 1;
        transform: translate(-50%, 0);
      }
    }

    h2::after {
      content: "";
      display: block;
      width: 60px;
      height: 3px;
      /* background: var(--red); */
      margin: 0.5rem auto 0;
    }

    /* Hakkımızda */
    .about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: center;
    }

    .about img {
      object-fit: cover;
      aspect-ratio: 1/1;
      width: 100%;
      border-radius: 16px;
    }

    .about p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #333;
    }

    /* Hizmetler */
    .services {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 1rem;
    }

    .service {
      text-align: center;
      padding: 1.5rem;
      background: var(--light);
      border-radius: 6px;
      transition: all 0.3s;
    }

    .service i {
      font-size: 3rem;
      margin-bottom: 1rem;
      color: var(--red);
    }

    .service:hover {
      cursor: pointer;
      transform: translateY(-10px);
      box-shadow: 0 4px 10px rgba(0, 0, 1, 0.15);
    }

    .service h3 {
      color: var(--dark);
      margin-bottom: 0.8rem;
    }

    /* Haberler */
    .news {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .news-card {
      background: var(--light);
      border-radius: 8px;
      overflow: hidden;
      transition: 0.3s;
    }

    .news-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .news-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .news-card h4 {
      padding: 1rem;
      color: var(--red);
    }

    .news-card p {
      padding: 0 1rem 1rem;
      font-size: 0.95rem;
      color: #444;
    }

    /* İletişim */
    .contact form {
      display: grid;
      gap: 1rem;
      max-width: 600px;
      margin: auto;
    }

    .contact input,
    .contact textarea {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 1rem;
    }

    .contact button {
      background: var(--red);
      color: white;
      padding: 0.8rem;
      border: none;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      transition: 0.3s;
    }

    .contact button:hover {
      background: #d29c05;
    }

    footer {
      background: var(--dark);
      color: white;
      text-align: center;
      font-size: 0.9rem;
    }

    @media(max-width: 768px) {
      .services {
        grid-template-columns: 1fr;
      }

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

      .hero-text {
        left: 1rem;
        padding: 1rem;
        max-width: calc(100% - 2rem);
        margin-inline: auto;
      }

      .hero-text h1 {
        font-size: 2rem;
      }

      nav ul {
        display: none;
      }

      .copy {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
      }
    }