/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@600;700&display=swap');

/* GENEL AYARLAR */
body { 
    margin: 0; 
    font-family: 'Lato', sans-serif; 
    background-color: #111; 
    color: #fff; 
}

/* Sayfa genelinde orta boşluk ve kayma önleme */
.container {
    width: 100%;
    max-width: 1200px; /* Orta genişlik */
    margin: 0 auto; /* Ortala */
    padding: 0 20px; /* Kenarlardan 20px boşluk */
    box-sizing: border-box; /* Padding dahil genişlik */
}
/* HEADER */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px; /* Mobilde fazla boşluk olmaması için */
    flex-wrap: wrap; /* küçük ekranlarda taşmayı önler */
}

/* Logo */
.header-logo { 
    display:flex; 
    flex-direction:column; 
}
.header-logo h1 { 
    font-size:50px; 
    color:#FFD700; 
    margin:0; 
}
.header-logo .header-name { 
    font-size:18px; 
    font-style:italic; 
    color:#FFD700; 
}

/* Hamburger ve Menü kapsayıcı */
.header-right { display:flex; align-items:center; }

/* Hamburger */
.menu-toggle { 
    display:block; 
    font-size:28px; 
    color:#FFD700; 
    cursor:pointer; 
    margin-left:15px; 
}

/* Menü */
.main-menu ul {
  display:none;
  flex-direction:column;
  gap:15px;
  padding:15px 20px;
  margin:0;
  list-style:none;
  background-color:#111;
  position:absolute;
  top:70px; /* header yüksekliğine göre */
  right:10px;
  min-width:150px;
  border-radius:10px;
  box-shadow:0 0 20px rgba(255,215,0,0.25);
  z-index:9999;
}
.main-menu ul.active { display:flex; }
.main-menu ul li a { 
    color:#FFD700; 
    text-decoration:none; 
    font-weight:600; 
    display:flex; 
    align-items:center; 
    gap:5px; 
}
.main-menu ul li a:hover { color:#fff; }

/* Desktop */
@media(min-width:769px){
  .menu-toggle { display:none; }
  .main-menu ul {
    display:flex !important;
    position:static;
    flex-direction:row;
    background:none;
    box-shadow:none;
    gap:30px;
    padding:0;
  }
}

/* Mobil */
@media(max-width:768px){
  .header-container { 
      flex-direction:row; 
      justify-content:space-between; 
      align-items:center; 
      padding:10px 15px; 
  }
  .header-logo h1 { font-size:36px; } /* logo boyutu küçüldü */
  .header-logo .header-name { font-size:14px; } /* isim boyutu küçüldü */
  .header-right { flex-direction:row; align-items:center; }
}


/* Logo linki */
.header-logo a {
  text-decoration: none; /* Alt çizgiyi kaldırır */
  color: inherit; /* H1’in rengini korur */
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-logo a:hover {
  transform: scale(0.96); /* Tıklanma efekti gibi küçülür */
  opacity: 0.8;
}

.header-logo a, .header-logo a:visited {
  text-decoration: none;
  color: inherit;
}

/* Mobilde mavi vurgu/alt çizgi engelle */
.header-logo a {
  -webkit-tap-highlight-color: transparent;
  text-decoration: none !important;
  color: inherit !important;
}
.header-logo a:visited,
.header-logo a:focus,
.header-logo a:active {
  color: inherit !important;
  text-decoration: none !important;
  outline: none;
}



/* HERO */
.hero { position:relative; width:100%; height:100vh; display:flex; align-items:center; justify-content:center; text-align:center; overflow:hidden; }
.hero-video { position:absolute; top:50%; left:50%; width:100%; height:100%; object-fit:cover; object-position:center; transform:translate(-50%,-50%); z-index:-1; }
.hero::before { content:""; position:absolute; top:0; left:0; right:0; bottom:0; background-color: rgba(0,0,0,0.5); z-index:1; }
.hero-content { position:relative; z-index:2; max-width:900px; padding:20px; }
.hero-content h1 { font-size:60px; color:#FFD700; margin-bottom:10px; }
.hero-content h2 { font-size:32px; font-weight:600; margin-bottom:20px; }
.hero-content .quote { font-size:24px; font-style:italic; margin-bottom:30px; color:#fff; }

/* Buton */
.btn.whatsapp-btn { background-color:#25D366; color:#fff; padding:12px 25px; border-radius:50px; font-weight:bold; display:inline-flex; align-items:center; gap:10px; transition:0.3s; }
.btn.whatsapp-btn:hover { transform:scale(1.05); box-shadow:0 5px 15px rgba(0,0,0,0.3); }

/* Video gösterimi */
.desktop-video { display:block; }
.mobile-video { display:none; }

@media(max-width:1024px){
  .desktop-video { display:none; }
  .mobile-video { display:block; }
  .hero { height:90vh; }
  .hero-video { object-position: top center; }
  .hero-content h1{font-size:36px;}
  .hero-content h2{font-size:22px;}
  .hero-content .quote{font-size:16px;}
  .btn.whatsapp-btn{padding:10px 20px;font-size:14px;}
}

@media(max-width:480px){
  .hero{height:80vh;}
  .hero-content h1{font-size:28px;}
  .hero-content h2{font-size:18px;}
  .hero-content .quote{font-size:14px;}
  .hero-video { object-position: top center; }
}

/* HAK yazısı tıklanabilir link */
.logo-link {
  color: inherit;            /* h1 rengini korur (altın sarısı) */
  text-decoration: none;     /* alt çizgiyi kaldırır */
  cursor: pointer;           /* imleç el simgesi olur */
  transition: 0.3s ease;     /* yumuşak hover efekti */
}

.logo-link:hover {
  opacity: 0.8;              /* üzerine gelince hafif soluklaşma efekti */
}



/* HOŞGELDİNİZ */
.welcome {
  background-color: #111;
  padding: 40px 20px;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1200px;
  color: #fff;
}

/* Üst kısım: yazı + video yan yana */
.welcome-top {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.welcome-text {
  flex: 1;
  min-width: 280px;
}

.welcome-text h2 {
  font-family: 'Poppins', sans-serif;
  color: #FFD700;
  font-size: 32px;
  margin-bottom: 15px;
}

.welcome-text p {
  font-size: 18px;
  line-height: 1.7;
}

.welcome-video {
  flex: 1;
  min-width: 300px;
}

.welcome-video video {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Alt kısım: linkler */
.welcome-links h3 {
  color: #FFD700;
  margin-bottom: 15px;
  font-size: 22px;
}

.helpful-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}

.link-item {
  flex: 1 1 180px; /* kutular esnek */
}

.link-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: transform 0.3s, color 0.3s;
  background: #222;
  padding: 10px;
  border-radius: 8px;
}

.link-item a img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
  background: #111;
  padding: 2px;
}

.link-item a:hover {
  color: #FFD700;
  transform: scale(1.05);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .welcome-top {
    flex-direction: column;
  }
  .helpful-links {
    justify-content: center;
  }
}



/* Hakkımızda Bölümü */
.about-section {
    position: relative;
    padding: 80px 40px; /* Dilersen artırabilirsin */
    color: #fff;
    overflow: hidden;
    border-radius: 0; /* Kenarlarda boşluk olmasın diye 0 yapabiliriz */

    /* Arka plan: fotoğraf tüm alanı kaplasın */
    background: url("arkaplan.jpg") center center no-repeat;
    background-size: cover; /* Hem genişlik hem yükseklik kaplasın */
}

/* Overlay ile yazılar okunaklı */
.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* Yazı okunması için yarı şeffaf siyah */
    z-index: 0;
}

/* İçerik overlay üstünde gözüksün */
.about-section * {
    position: relative;
    z-index: 1;
}




.about-section {
    background-color: #111;
    padding: 60px 25px;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 1200px;
    color: #fff;
}

.about-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.about-left {
    flex: 1 1 55%;
}

.about-right {
    flex: 1 1 40%;
}

/* Başlıklar */
.about-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700; /* kalın */
    color: #FFD700;   /* altın sarısı */
    margin-bottom: 25px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7); /* hafif gölge */
}

.about-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600; /* biraz kalın */
    color: #FFD700;
    margin-top: 20px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.about-section p, 
.about-section li {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;          /* saf beyaz */
    font-weight: 500;     /* biraz kalınlaştır */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* hafif gölge */
    margin-bottom: 15px;
}

/* Feature box (ikonlu) */
.feature-box {
    display: flex;
    margin-bottom: 20px;
}

.iconset {
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.icon {
    display: inline-block;
    font-size: 28px;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    border: 2px solid #FFD700;
    border-radius: 50%;
    color: #FFD700;
}

/* Değerlerimiz alt kısım */
.values-section {
    margin-top: 20px; /* Çok az boşluk */
}


.values-section h3 {
    margin-bottom: 15px;
}

.values-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .about-flex {
        flex-direction: column;
    }

    .feature-box {
        flex-direction: row;
        margin-bottom: 15px;
    }
}


/* Hizmetlerimiz Bölümü */
.services-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
  text-align: center;
  display: flex;
  flex-wrap: wrap;             /* Kartlar alt satıra geçebilir */
  justify-content: center;     /* Kartları yatayda ortala */
  gap: 25px;                   /* Kartlar arası boşluk */
}

/* Hizmet Kartları */
.service-card {
  background-color: #2D2D2D;
  color: #E5E5E5;
  border-radius: 16px;
  padding: 30px;
  width: 400px;
  max-width: 100%;
  margin: 15px 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: inline-block;
  vertical-align: top;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
}

.service-card:hover h3,
.service-card:hover p {
  color: #111;
}

/* Başlık */
.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 10px;
  position: relative;
}

.service-card h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #FFD700;
  margin-top: 5px;
  border-radius: 2px;
}

/* Paragraflar */
.service-card p {
  font-size: 0.95rem;
  color: #E5E5E5;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Buton */
.service-card button {
  background-color: #FFD700;
  border: none;
  color: #222;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Başlık (bölüm genel) */
.advertisers-service-sec .section-header h2,
.advertisers-service-sec .section-header h2 span {
  font-family: 'Poppins', sans-serif;
  color: #FFD700;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: normal;
}

.advertisers-service-sec .section-header .sec-icon {
  display: none !important;
}

/* Modal Genel Stil */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0,0,0,0.6);
  padding-top: 50px;
  transition: opacity 0.3s ease;
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease-in-out;
  box-sizing: border-box;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content h2 {
  margin-top: 0;
  color: #222;
}

.modal-content h3 {
  color: #444;
  margin-top: 25px;
}

.modal-content p,
.modal-content ul,
.modal-content ol {
  color: #555;
  line-height: 1.6;
}

.modal-content ul,
.modal-content ol {
  padding-left: 20px;
}

.modal-content span {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
  color: #222;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .service-card { width: 45%; }
}

@media screen and (max-width: 768px) {
  .service-card { width: 90%; margin: 15px auto; }
}

 


/* Sadece iletişim kısmını hedefliyoruz */
.contact-page-sec {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a, #252525); /* Metallic siyah gradyan */
  padding: 60px 20px;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Üstte 3 kutu yan yana */
.contact-top-boxes {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap; /* Mobilde alt alta geçmesini sağlar */
  margin-bottom: 40px;
}

.contact-info-item.small-box {
  flex: 1 1 200px; /* kutular biraz daha dar */
  background: #071c34;
  padding: 15px; /* iç boşluk azaltıldı */
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  margin-bottom: 15px;
}

.contact-info-icon i {
  font-size: 28px; /* ikon küçültüldü */
}

.contact-info-text h2 {
  font-size: 16px; /* başlık küçültüldü */
}


.contact-info-item.small-box:hover {
  transform: translateY(-5px);
}

.contact-info-icon i {
  font-size: 32px;
  color: #fda40b;
  margin-bottom: 10px;
}

.contact-info-text h2 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}

.contact-info-text span {
  color: #bbb;
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-info-text a {
  color: #fda40b;
  text-decoration: none;
}

.contact-info-text a:hover {
  text-decoration: underline;
}

/* Alt: form + harita yan yana */
.contact-bottom {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* Mobilde alt alta geçmesi için */
}

.contact-page-form,
.contact-page-map {
  flex: 1 1 300px; /* Minimum 300px, gerektiğinde küçülür */
  box-sizing: border-box;
}

.contact-page-form h2 {
  color: #fda40b;
  font-size: 22px;
  margin-bottom: 15px;
}

.contact-page-form input,
.contact-page-form textarea {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 12px;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  border-radius: 4px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.contact-page-form input::placeholder,
.contact-page-form textarea::placeholder {
  color: #aaa;
}

/* Focus halinde daha belirgin */
.contact-page-form input:focus,
.contact-page-form textarea:focus {
  border-color: #fda40b;
  outline: none;
}

.single-input-fieldsbtn input[type="submit"] {
  background: #fda40b;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  padding: 10px 0;
  width: 120px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.single-input-fieldsbtn input[type="submit"]:hover {
  background: #071c34;
  color: #fda40b;
}

.contact-page-map {
  height: 400px;
}

.contact-page-form input,
.contact-page-form textarea,
.contact-page-map iframe {
  width: 100%; /* Mobilde taşmayı önler */
  box-sizing: border-box;
}
.contact-info-note {
  color: #bbb;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px; /* ikon ile yazı arasında boşluk */
  margin-top: 5px;
  justify-content: center; /* ortalı görünmesi için */
}

.contact-info-note i {
  color: #fda40b; /* ikonları temayla uyumlu renkte */
  font-size: 12px;
}


/* Responsive (mobil uyumlu) */
@media (max-width: 768px) {
  .contact-top-boxes {
    flex-direction: column;
  }
  .contact-bottom {
    flex-direction: column;
  }
  .contact-page-map {
    height: 300px;
  }
}

@media (max-width: 500px) {
  .single-input-fieldsbtn input[type="submit"] {
    width: 100%; /* Mobilde submit butonu taşmasın */
  }
}

/* FOOTER */
footer {
    background-color: #111;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    margin-top: 40px; /* eklendi */
}

footer p {
    margin: 8px 0;
    font-size: 14px;
    color: #ccc; /* gri ama daha okunabilir */
}

footer a {
    color: #FFD700;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

footer a:hover {
    color: #fff;
}

/* MOBİL UYUM */
@media (max-width: 768px) {
    footer {
        font-size: 13px;
        padding: 20px 10px;
        margin-top: 30px; /* mobilde biraz daha az boşluk */
    }
    footer p {
        margin: 6px 0;
    }
}

@media (max-width: 768px) {
  /* İletişim altına daha net boşluk */
  .contact-page-sec {
    padding-bottom: 80px;
  }

  /* Footer görünümü */
  footer {
    position: relative;
    background: #0a0a0a; /* daha koyu siyah ton */
    padding: 40px 20px;
    margin-top: 0;
    text-align: center;
  }

  /* Footer üstüne “şerit efekti” */
  footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%; /* sayfa genişliğinin %90'ı kadar */
    height: 4px; /* şerit kalınlığı */
    background: linear-gradient(90deg, #fda40b, #ffd700, #fda40b);
    border-radius: 2px;
  }

  /* Footer metinleri */
  footer p {
    margin-top: 20px; /* şeritle metin arasına boşluk */
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
  }

  footer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
  }
}









.floating-buttons {
  position: fixed;
  bottom: 100px; /* Chat balonundan yukarıda kalsın */
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.float-btn:hover {
  transform: scale(1.1);
}

.whatsapp { background: #25D366; }
.phone { background: #007BFF; }
.email { background: #FF9800; }

/* 📱 Mobil görünüm (768px altı ekranlar için) */
@media (max-width: 768px) {
  .floating-buttons {
    left: 20px;   /* Mobilde sola al */
    right: auto;  /* Sağdan iptal */
    bottom: 20px; /* Chat balonu ile çakışmasın */
  }
}






