:root {
    --primary: #0A2E5B; 
    --accent: #FF9900; 
    --light-bg: #f3f7f9;
    --text-dark: #1f2937;
}

/* GENEL */
body { 
    font-family: 'Poppins', sans-serif; 
    color: var(--text-dark); 
    margin: 0; 
    background-color: white; 
    font-size: 16px;
}
.container { width: 90%; max-width: 1280px; margin: 0 auto; }
strong { color: var(--accent); font-weight: 700; }

/* HERO */
/* HERO */
.hero {
    background-color: var(--primary);
    color: white;
    padding: 80px 0;
    min-height: 80vh;
}
.hero-content {
    width: 49.9%;
    float: left;
    box-sizing: border-box;
    padding-right: 40px;
}
.hero-image {
    width: 49.9%;
    float: right;
    box-sizing: border-box;
}
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
}
.hero p { font-size: 1.25rem; margin-bottom: 30px; opacity: 0.9; }
.small-info { font-size: 16px; opacity: 0.8; }

/* CTA */
.cta-group { display: flex; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.cta-button {
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.3s;
    display: inline-block;
    text-align: center;
}
.web-cta { background-color: var(--accent); color: var(--primary); box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4); }
.desktop-cta { background-color: transparent; color: white; border: 2px solid white; }
.bordered { border: 2px solid var(--accent); color: var(--accent); background-color: transparent; }
.cta-group.center { justify-content: center; }

/* GENEL SECTIONS */
section { padding: 80px 0; }
h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
} 
.light-section { background-color: var(--light-bg); }
.info-section { background-color: white; text-align: center; padding: 40px 0; }
.info-section p { font-size: 1.1rem; font-weight: 600; color: var(--text-dark); }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.feature-box {
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s;
    border-bottom: 4px solid var(--accent);
}
.feature-box h3 { color: var(--primary); font-size: 1.4rem; }

/* SECURITY */
.security-grid { display: flex; justify-content: space-around; gap: 30px; flex-wrap: wrap; text-align: center; }
.security-item { width: 30%; min-width: 260px; }
.security-item h3 { color: var(--primary); margin-top: 10px; }

/* CTA SECTION */
.cta-section {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 80px 0;
}
.cta-section p { font-size: 1.3rem; margin-bottom: 40px; }

/* SHARE BUTTONS */
.share-buttons a {
    margin: 0 10px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

/* FOOTER */
footer {
    background-color: #333;
    color: #ddd;
    padding: 20px 0;
    text-align: center;
}
footer a { color: var(--accent); text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-content, .hero-image { width: 100%; float: none; text-align: center; padding: 0; }
    .hero h1 { font-size: 2.5rem; }
    .security-grid { flex-direction: column; align-items: center; }
    .security-item { width: 80%; }
}
/* Üst Menü Tasarımı */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  z-index: 999;
  font-family: 'Poppins', sans-serif;
}

.topbar .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.topbar .logo a {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1.2rem;
  text-decoration: none;
}

.topbar nav ul {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.topbar nav a {
  color: #444;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.topbar nav a:hover,
.topbar nav a.active {
  color: #0078ff;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.contact-info a {
  color: #0078ff;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a.whatsapp {
  background: #25D366;
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.contact-info a.whatsapp:hover {
  background: #1eb858;
}

/* Responsive ayarlar */
@media (max-width: 900px) {
  .topbar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .contact-info {
    font-size: 0.85rem;
  }
  .topbar nav ul {
    flex-wrap: wrap;
    gap: 0.8rem;
  }
}

/* ===== ÜST MENÜ (TOPBAR) ===== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #f8f9fb 0%, #e9ecf3 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  z-index: 999;
  font-family: 'Poppins', sans-serif;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  backdrop-filter: blur(6px);
}

.topbar .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo */
.topbar .logo a {
  font-weight: 700;
  color: #1d1d1d;
  font-size: 1.25rem;
  text-decoration: none;
  letter-spacing: -0.3px;
}

/* Menü */
.topbar nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.topbar nav a {
  color: #444;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.topbar nav a:hover,
.topbar nav a.active {
  color: #005ee0;
  transform: translateY(-1px);
}

/* İletişim kısmı */
.contact-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
  color: #333;
}

.contact-info span {
  white-space: nowrap;
}

.contact-info a {
  color: #005ee0;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a.whatsapp {
  background: #25D366;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-info a.whatsapp:hover {
  background: #1eb858;
  transform: scale(1.05);
}



/* Responsive */
@media (max-width: 950px) {
  .topbar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .topbar nav ul {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .contact-info {
    font-size: 0.85rem;
  }
}
/* ===== LOGO ===== */
.logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo img {
  height: 34px;
  width: auto;
  display: block;
}

.logo span {
  font-weight: 600;
  font-size: 1.15rem;
  color: #1d1d1d;
  letter-spacing: -0.2px;
}

/* Hover efekti */
.logo a:hover span {
  color: #005ee0;
}

/* ===== HAKKIMIZDA SAYFASI ===== */

.about-hero {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.about-hero .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(65%);
}

.about-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.about-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* İçerik */
.about-content {
  max-width: 1100px;
  margin: 60px auto;
  line-height: 1.8;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.about-content h2 {
  font-size: 1.7rem;
  color: #005ee0;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
  font-size: 1rem;
}

/* Buton */
.contact-btn {
  display: inline-block;
  margin-top: 10px;
  background: #005ee0;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-btn:hover {
  background: #0048ad;
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 1.4rem;
  }
  .about-hero p {
    font-size: 0.95rem;
  }
  .about-content {
    padding: 0 1.2rem;
  }
}
/* ===== BİZE ULAŞIN ===== */

.contact-hero {
  background: linear-gradient(120deg, #005ee0, #003c9b);
  color: #fff;
  text-align: center;
  padding: 100px 20px 70px;
  margin-top: 90px;
}

.contact-hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* İçerik düzeni */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 0;
}

.contact-info-block {
  background: #f8f9fb;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  font-family: 'Poppins', sans-serif;
}

.contact-info-block h2 {
  color: #005ee0;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.contact-info-block a {
  color: #005ee0;
  text-decoration: none;
}

.contact-info-block p {
  margin-bottom: 15px;
  color: #333;
}

/* Form */
.contact-form-block {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
}

.contact-form label {
  font-weight: 500;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #005ee0;
  outline: none;
}

.contact-form button {
  background: #005ee0;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background: #0048ad;
  transform: translateY(-2px);
}

/* Harita */
.map-section {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
  .contact-hero {
    padding: 80px 20px 50px;
  }
}

.cta-section h2 {
    color: white; /* Arka plan koyu, yazı beyaz olsun */
}


/* Farklı animasyonlar */
[data-animate] { 
  opacity: 0; 
  transform: translateY(30px); 
  transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

[data-animate].active { 
  opacity: 1; 
  transform: translateY(0); 
}

.hero h1, .hero p { transition: transform 0.6s ease, opacity 0.6s ease; }
.cta-button { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.cta-button:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }

.features-grid .feature-box:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }

.share-buttons a:hover { transform: rotate(-5deg) scale(1.2); }

/* Parallax hero image */
.hero-image img { transition: transform 0.5s ease; }
.hero:hover .hero-image img { transform: scale(1.03) translateY(-5px); }

/* Scroll Animations handled in JS */
/* ===== GENEL ANİMASYONLAR ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

[data-animate].active {
  opacity: 1;
  transform: translateY(0);
}

/* Hero overlay animasyonu */
.about-hero .hero-overlay h1,
.about-hero .hero-overlay p {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

.about-hero.active .hero-overlay h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.about-hero.active .hero-overlay p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* Hover efektleri */
.contact-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.about-content p:hover {
  transform: translateX(5px);
  transition: transform 0.3s ease;
}
/* ===== GENEL ANİMASYONLAR ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

[data-animate].active {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ hover & scroll animasyonları */
.faq-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Plus işareti döndürme animasyonu */
.faq-question span {
  font-size: 1.4rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Scroll ile açılacak animasyon */
[data-animate-faq] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

[data-animate-faq].active {
  opacity: 1;
  transform: translateY(0);
}
/* Scroll animasyonu için */
.faq-item.active-animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.6s ease-out;
}

/* Aç/kapa cevaplar */
.faq-item .faq-answer {
  display: none;
  padding: 20px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  background: white;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}
/* --- Mobil Cihazlar için Genel Ayarlar --- */
@media (max-width: 1024px) {
  header.topbar .container {
    flex-direction: column;
    align-items: center;
  }

  header.topbar nav ul {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  header.topbar .contact-info {
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    text-align: center;
  }

  .hero-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-image img {
    width: 100%;
    height: auto;
  }

  .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .security-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-group.center {
    flex-direction: column;
    gap: 12px;
  }

  footer .container {
    text-align: center;
  }
}

/* --- Daha Küçük Mobil Cihazlar (Tablet ve Altı) --- */
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .cta-button {
    font-size: 0.9rem;
    padding: 10px 16px;
  }
}
/* --- Mobil Cihazlar için Hakkımızda Sayfası --- */
@media (max-width: 1024px) {
  .about-hero {
    flex-direction: column;
    text-align: center;
  }

  .about-hero .hero-img {
    width: 100%;
    height: auto;
  }

  .hero-overlay h1 {
    font-size: 1.8rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }

  .about-content article {
    padding: 0 15px;
  }

  .about-content h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .about-content p {
    font-size: 1rem;
  }

  .contact-btn {
    display: block;
    width: 80%;
    margin: 20px auto;
    text-align: center;
  }

  header.topbar .container {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  header.topbar nav ul {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  header.topbar .contact-info {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  footer .container {
    text-align: center;
  }
}

/* --- Daha Küçük Cihazlar (Tablet & Telefon) --- */
@media (max-width: 600px) {
  .hero-overlay h1 {
    font-size: 1.5rem;
  }

  .hero-overlay p {
    font-size: 0.95rem;
  }

  .about-content h2 {
    font-size: 1.5rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .contact-btn {
    font-size: 0.95rem;
    padding: 10px 16px;
  }
}
/* --- SSS Sayfası Mobil Uyumluluk --- */
@media (max-width: 1024px) {
  .faq-section {
    padding: 0 15px;
    margin: 40px auto;
  }

  .faq-section h1 {
    font-size: 1.8rem;
    margin-top: 80px;
    margin-bottom: 30px;
  }

  .faq-question {
    font-size: 1rem;
    padding: 14px 16px;
  }

  .faq-answer {
    font-size: 0.95rem;
    padding: 16px;
  }

  .faq-question span {
    font-size: 1.2rem;
  }

  header.topbar .container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  header.topbar nav ul {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  header.topbar .contact-info {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  footer .container {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .faq-section h1 {
    font-size: 1.5rem;
    margin-top: 60px;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 12px 14px;
  }

  .faq-answer {
    font-size: 0.9rem;
    padding: 14px;
  }

  .faq-question span {
    font-size: 1rem;
  }
}
/* --- İletişim Sayfası Mobil Uyumluluk --- */
@media (max-width: 1024px) {
  .contact-section {
    flex-direction: column;
    gap: 30px;
  }

  .contact-info-block, .contact-form-block {
    width: 100%;
    padding: 0;
  }

  .contact-info-block h2 {
    font-size: 1.5rem;
  }

  .contact-info-block p, .contact-form label {
    font-size: 0.95rem;
  }

  .contact-form input, .contact-form textarea, .contact-form button {
    width: 100%;
  }

  header.topbar .container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  header.topbar nav ul {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  header.topbar .contact-info {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  footer .container {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .contact-hero h1 {
    font-size: 1.5rem;
  }
  .contact-hero p {
    font-size: 0.95rem;
  }
  .contact-form input, .contact-form textarea, .contact-form button {
    font-size: 0.9rem;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}
.topbar.sticky {
  position: sticky;
 box-sizing: border-box;
 width: 100%;
 left: 0;       
  top: 0;
  overflow: hidden; 
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.logo img {
  display: block;
  height: auto;
}

.right-section {
  display: flex;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 15px;
  font-size: 13px; /* Daha küçük yapıldı */
}

.contact-info a {
  text-decoration: none;
  color: #222;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #f4436d;
}

.nav-links ul {
  display: flex;
  gap: 20px; /* Daha küçük yapıldı */
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px; /* Menü içerikleri küçültüldü */
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: all 0.3s;
}

.nav-links a:hover {
  color: #f4436d;
}

.nav-links .cta {
  background: #f4436d;
  color: #fff;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 14px;
}

.mobile-menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}



.topbar .logo img {
    width: 120px; /* istediğin genişlik */
    height: auto; /* yüksekliği otomatik */
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(10, 46, 91, 0.95);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: left 0.3s ease;
  z-index: 998;
  flex-direction: column;
}

.mobile-menu-overlay.active {
  left: 0;
}

.mobile-menu-overlay ul {
  list-style: none;
  text-align: center;
  padding: 0;
}

.mobile-menu-overlay li {
  margin: 20px 0;
}

.mobile-menu-overlay a {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
}

.mobile-menu-toggle {
  font-size: 2rem;
  cursor: pointer;
  display: none;
  margin-left: 20px;
}

/* Mobilde göster */
@media (max-width: 950px) {
  .mobile-menu-toggle { display: block; }
  .nav-links { display: none; }
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu.active {
  display: flex;
}
