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

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background-color: #f9fafb;
    color: #111827;
    line-height: 1.5;
    transition: background-color 0.3s, color 0.3s;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== GECE MODU ========== */
body.dark-mode {
    background-color: #0a0f2a;
    color: #e0e0e0;
}

body.dark-mode .header,
body.dark-mode .footer {
    background-color: #030617;
    border-color: #1e2a5e;
}

body.dark-mode .service-card,
body.dark-mode .story-card,
body.dark-mode .featured-item,
body.dark-mode .testimonial-card,
body.dark-mode .faq-item {
    background-color: #11173b;
    color: #e0e0e0;
    border-color: #1e2a5e;
}

body.dark-mode .nav-links a {
    color: #e0e0e0;
}

body.dark-mode .nav-links a:hover {
    color: #60a5fa;
}

body.dark-mode .analysis-btn,
body.dark-mode .btn-primary {
    background-color: #3b82f6;
}

body.dark-mode .stats {
    background-color: #030617;
}

body.dark-mode .stats .stat-number {
    color: #60a5fa;
}

body.dark-mode .footer {
    background-color: #030617;
    color: #cbd5e1;
}

body.dark-mode .footer h3,
body.dark-mode .footer h4 {
    color: #ffffff;
}

body.dark-mode .footer a {
    color: #cbd5e1;
}

body.dark-mode .footer a:hover {
    color: #60a5fa;
}

body.dark-mode .footer-bottom {
    border-top-color: #1e2a5e;
}

body.dark-mode .featured-services {
    background-color: #0f142e;
}

body.dark-mode .testimonials {
    background-color: #0a0f2a;
}

/* LOGO */
.logo-img {
    height: 160px;
    width: auto;
    display: block;
}

.logo-light-mode {
    display: block;
}

.logo-dark-mode {
    display: none;
}

body.dark-mode .logo-light-mode {
    display: none;
}

body.dark-mode .logo-dark-mode {
    display: block;
}

.footer-logo {
    height: 110px;
    width: auto;
    margin-bottom: 12px;
}

/* ========== HEADER ========== */
.header {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 24px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 20px;
}

/* LOGO - TÜM SAYFALARDA AYNI BOYUT */
.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

/* Çift mod logo desteği */
.logo-light-mode {
    display: block;
}

.logo-dark-mode {
    display: none;
}

body.dark-mode .logo-light-mode {
    display: none;
}

body.dark-mode .logo-dark-mode {
    display: block;
}

/* NAVIGATION - TÜM SAYFALARDA AYNI */
.nav-links {
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #3b82f6;
}

.nav-links a.active {
    color: #3b82f6;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 4px;
}

/* HEADER BUTONLARI */
.header-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.theme-btn {
    background: none;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.2s;
}

.analysis-btn {
    background-color: #1e3a8a;
    color: white;
    padding: 6px 16px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: background 0.2s;
    white-space: nowrap;
}

.analysis-btn:hover {
    background-color: #1e40af;
}

.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* ========== DROPDOWN MENU ========== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    list-style: none;
    padding: 8px 0;
    z-index: 1000;
}

.dropdown-menu li a {
    display: block;
    padding: 6px 14px;
    color: #1f2937;
    text-decoration: none;
    font-size: 0.8rem;
    white-space: nowrap;
    transition: all 0.2s;
}

.dropdown-menu li a:hover {
    background-color: #f3f4f6;
    color: #1e3a8a;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Gece modu dropdown */
body.dark-mode .dropdown-menu {
    background-color: #11173b;
}

body.dark-mode .dropdown-menu li a {
    color: #e0e0e0;
}

body.dark-mode .dropdown-menu li a:hover {
    background-color: #1e2a5e;
    color: #60a5fa;
}

/* ========== HERO SLIDER - DÜZELTİLMİŞ ========== */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    min-height: 550px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slide-content {
    position: absolute;
    bottom: 25%;
    left: 10%;
    background: rgba(0, 0, 0, 0.65);
    color: white;
    padding: 30px 40px;
    border-radius: 16px;
    max-width: 550px;
    z-index: 10;
    backdrop-filter: blur(2px);
}

.slide-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.slide-desc {
    font-size: 1rem;
    margin-bottom: 24px;
    color: #f0f0f0;
    line-height: 1.5;
}

.slide-link {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.slide-link:hover {
    background: #2563eb;
    transform: scale(1.05);
}

/* Slider Butonları */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 14px 20px;
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: bold;
    z-index: 20;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #3b82f6;
    transform: scale(1.2);
}

/* Dark mode slider ayarları */
.dark-mode .slide-content {
    background: rgba(0, 0, 0, 0.8);
}

/* Mobil uyum */
@media (max-width: 768px) {
    .slider-container {
        min-height: 400px;
    }
    
    .slide img {
        height: 400px;
        object-position: top 30% center;
    }
    
    .slide-content {
        bottom: 15%;
        left: 5%;
        right: 5%;
        padding: 16px 20px;
        max-width: 90%;
    }
    
    .slide-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .slide-desc {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .slide-link {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
    
    .slider-btn {
        padding: 8px 12px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .slider-container {
        min-height: 350px;
    }
    
    .slide img {
        height: 350px;
    }
    
    .slide-content {
        padding: 12px 16px;
    }
    
    .slide-title {
        font-size: 1rem;
    }
    
    .slide-desc {
        font-size: 0.7rem;
    }
}

/* ========== HİZMETLER ========== */
.services {
    padding: 60px 0;
    text-align: center;
}

.section-subtitle {
    color: #4b5563;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 12px;
    color: #1e3a8a;
}

.service-card p {
    color: #4b5563;
}

body.dark-mode .service-card p {
    color: #cbd5e1;
}

/* ========== İSTATİSTİKLER ========== */
.stats {
    background-color: #f3f4f6;
    padding: 60px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e3a8a;
}

/* ========== ÖNE ÇIKAN HİZMETLER ========== */
.featured-services {
    padding: 60px 0;
    background-color: #f8fafc;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.featured-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.2s;
}

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

.featured-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

/* ========== ÇALIŞMA SÜRECİ ========== */
.process {
    padding: 60px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #1e3a8a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 16px;
}

/* ========== MÜŞTERİ YORUMLARI ========== */
.testimonials {
    padding: 60px 0;
    background-color: #f1f5f9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-card h4 {
    color: #1e3a8a;
}

/* ========== BAŞARI HİKAYELERİ ========== */
.success-stories {
    padding: 60px 0;
    text-align: center;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.story-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ========== SSS ========== */
.faq {
    padding: 60px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h3 {
    margin-bottom: 12px;
    color: #1e3a8a;
}

/* ========== CTA ========== */
.cta {
    background: linear-gradient(135deg, #1e3a8a, #0f172a);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta .btn-primary {
    background: white;
    color: #1e3a8a;
    margin-top: 20px;
}

.btn-primary {
    background-color: #ffffff;
    color: #1e3a8a;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.2s;
}

.btn-primary:hover {
    background-color: #e0e7ff;
}

.btn-outline {
    border: 2px solid #1e3a8a;
    background: transparent;
    padding: 10px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    color: #1e3a8a;
    display: inline-block;
}

.center-btn {
    text-align: center;
}

/* ========== FOOTER ========== */
.footer {
    background-color: #111827;
    color: #9ca3af;
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3, .footer h4 {
    color: white;
    margin-bottom: 16px;
}

.footer ul {
    list-style: none;
}

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

.footer a {
    color: #9ca3af;
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #1f2937;
    padding-top: 24px;
}

/* ========== YASAL SEKMELER ========== */
.footer-legal {
    border-top: 1px solid #1f2937;
    padding-top: 24px;
    margin-top: 24px;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    list-style: none;
}

.legal-links li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.legal-links li a:hover {
    color: white;
}

body.dark-mode .footer-legal {
    border-top-color: #1e2a5e;
}

/* ========== WHATSAPP BUTONU ========== */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25D366;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: 0.2s;
    z-index: 100;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
}

/* ========== BÖLÜM BAŞLIKLARI ORTALAMA ========== */
.featured-services h2,
.featured-services .section-subtitle,
.testimonials h2,
.faq h2,
.process h2,
.process .section-subtitle,
.success-stories h2,
.stats h2,
.services h2 {
    text-align: center;
}

/* ========== MOBİL UYUM ========== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .hamburger {
        display: block;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 20px;
        background-color: transparent;
    }
    
    .dropdown.open .dropdown-menu {
        display: block;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .footer-logo {
        height: 75px;
    }
    
    .legal-links {
        gap: 16px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    /* Gece modu mobil menü */
    body.dark-mode .nav-links {
        background-color: #0a0f2a;
    }
    
    body.dark-mode .nav-links a {
        color: #f0f0f0 !important;
    }
    
    body.dark-mode .dropdown.open .dropdown-menu {
        background-color: transparent;
    }
    
    body.dark-mode .hamburger {
        color: #f0f0f0;
    }
}

/* ========== LOGO - BÜYÜTÜLMÜŞ ========== */
.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.02);
}

/* Footer logosu */
.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 12px;
}

/* Mobil uyum - logoyu biraz küçült ama yine büyük kalsın */
@media (max-width: 1024px) {
    .logo-img {
        height: 45px;
    }
    .footer-logo {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 32px;
    }
    .footer-logo {
        height: 55px;
    }
}

/* ========== SOSYAL MEDYA İKONLARI ========== */
.social-section {
    min-width: 140px;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.social-icon-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.social-icon-link i {
    width: 24px;
    font-size: 1.2rem;
    text-align: center;
}

.social-icon-link span {
    font-size: 0.85rem;
}

.social-icon-link:hover {
    transform: translateX(5px);
}

.social-icon-link.whatsapp:hover {
    color: #25D366;
}

.social-icon-link.instagram:hover {
    color: #E4405F;
}

.social-icon-link.facebook:hover {
    color: #1877F2;
}

body.dark-mode .social-icon-link {
    color: #cbd5e1;
}

body.dark-mode .social-icon-link:hover {
    color: #60a5fa;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .social-icons {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .social-icon-link {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .social-icon-link i {
        font-size: 1.5rem;
    }
    
    .social-icon-link:hover {
        transform: translateY(-3px);
    }
}


.slide img {
    width: 100% !important;









/* =========================
   MOBİL HERO TAM EKRAN
========================= */
@media (max-width: 768px) {

  .hero,
  .hero-section,
  .hero-slider-wrapper {
    position: relative;
    min-height: calc(100svh - 95px);
    height: calc(100svh - 95px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
  }

  .hero-slider,
  .slider,
  .slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .hero-slider img,
  .slider img,
  .slides img,
  .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero::after,
  .hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.30),
      rgba(0,0,0,0.70)
    );
    z-index: 2;
  }

  .hero-content,
  .hero-text,
  .slider-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 92%;
    padding: 0 18px;
    text-align: center;
    color: #fff;
  }

  .hero-content h1,
  .hero-text h1,
  .slider-content h1 {
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .hero-content p,
  .hero-text p,
  .slider-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
  }

  .hero-content .btn,
  .hero-text .btn,
  .slider-content .btn {
    padding: 13px 24px;
    border-radius: 999px;
  }

  .hero .arrow,
  .hero-slider .arrow,
  .slider-arrow {
    z-index: 5;
  }

  .hero .dots,
  .hero-slider .dots,
  .slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
  }
}




/* Logo boyut düzeltme */
.logo-img {
  height: 72px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}

.logo {
  display: flex !important;
  align-items: center !important;
}

.footer-logo {
  height: 80px !important;
  width: auto !important;
  object-fit: contain !important;
}

@media (max-width: 768px) {
  .logo-img {
    height: 58px !important;
  }

  .footer-logo {
    height: 68px !important;
  }
}

/* FINAL LOGO SIZE FIX */
.header .logo-img,
.nav .logo-img,
.logo-img {
  height: 52px !important;
  max-height: 52px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  background: transparent !important;
}

@media (max-width: 768px) {
  .header .logo-img,
  .nav .logo-img,
  .logo-img {
    height: 48px !important;
    max-height: 48px !important;
  }
}

/* FINAL MOBILE LOGO BIGGER FIX */
.header .logo-img,
.nav .logo-img,
.logo-img {
  height: 60px !important;
  max-height: 60px !important;
  width: auto !important;
  object-fit: contain !important;
}

@media (max-width: 768px) {
  .header .logo-img,
  .nav .logo-img,
  .logo-img {
    height: 56px !important;
    max-height: 56px !important;
  }
}
