/* =======================
   RESET & TEMEL AYARLAR
======================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Arial, sans-serif;
    background: #f6f8fb;
    color: #1f2937;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
  .floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
  }
  
  .floating-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  .floating-icons img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }
  .floating-icons .whatsapp-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  @media (max-width: 600px) {
    .floating-icons {
        bottom: 10px;
        right: 10px;
    }
  
    .floating-icons a {
        width: 50px;
        height: 50px;
    }
  
    .floating-icons img {
        width: 100%;
        height: 100%;
    }
  }
  
/* =======================
   CONTAINER
======================= */
.container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(16px, 4vw, 24px);
}

/* =======================
   HERO ALANI
======================= */
.hero {
    position: relative;
    min-height: 100svh;
    width: 100%;
    overflow: hidden;
}

/* Arka plan görsel */
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.45)
    );
    z-index: 1;
}

/* İçerik */
.hero-content {
    position: relative;
    z-index: 2;
    min-height: 100svh;

    max-width: 1100px;
    margin-inline: auto;
    padding-inline: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.hero-content p {
    font-size: clamp(15.5px, 2.5vw, 18px);
    max-width: 880px;
    opacity: 0.95;
}

/* =======================
   SEO BLOKLAR
======================= */
.seo-block {
    margin-block: 60px;
}

.seo-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    margin-block: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* =======================
   HEADER & NAVBAR
======================= */
.header {
    background: #0f172a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

/* Menü */
.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #e5e7eb;
    text-decoration: none;
    padding: 14px 16px;
    font-size: 15px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-menu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* =======================
   DROPDOWN
======================= */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #020617;
    border-radius: 10px;
    padding: 8px 0;
    display: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu .title {
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
}

.dropdown-menu a {
    padding: 10px 16px;
    font-size: 14px;
}

/* =======================
   HAMBURGER
======================= */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
}

/* =======================
   MOBİL
======================= */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #020617;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 14px;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #020617;
        border-radius: 0;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero {
        min-height: 90svh;
    }
}


/* LOGO ALANI */
.logo {
    display: flex;
    align-items: center;
}

/* LOGO GÖRSELİ */
.logo img {
    width: clamp(160px, 20vw, 220px);
    height: auto;
    object-fit: contain;
    display: block;
}

/* MOBİL */
@media (max-width: 768px) {
    .logo img {
        width: 160px;
    }
}


/* ===== FOOTER GENEL ===== */
.site-footer {
    background: linear-gradient(135deg, #0b1f3a, #0f2c55);
    color: #e6ecf5;
    padding: 4rem 1.5rem 2rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-footer h3,
.site-footer h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* ===== FOOTER GRID ===== */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* ===== ABOUT ===== */
.footer-about p {
    line-height: 1.7;
    font-size: 0.95rem;
    color: #d5deea;
}

/* ===== LİNKLER ===== */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #d5deea;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0.5rem;
}

.footer-links a::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #4da3ff;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

/* ===== İLETİŞİM ===== */
.footer-contact p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #d5deea;
}

.whatsapp-link {
    display: inline-block;
    background: #25d366;
    color: #ffffff;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.whatsapp-link:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

/* ===== ALT FOOTER ===== */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #c9d3e0;
}

.footer-bottom strong {
    color: #ffffff;
}

.footer-bottom .developer {
    margin-top: 0.5rem;
}

.footer-bottom .developer a {
    color: #4da3ff;
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom .developer a:hover {
    text-decoration: underline;
}

/* ===== MOBİL ===== */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 3rem 1.2rem 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
    }
}

/* Varsayılan: gizli */
.mobile-call-bar {
    display: none;
}

/* Sadece mobilde göster */
@media (max-width: 768px) {
    .mobile-call-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #000;
        text-align: center;
        padding: 14px 0;
        z-index: 9999;
    }

    .mobile-call-bar a {
        text-decoration: none;
        font-size: 30px;
        font-weight: 700;
        color: #d3f801; /* Sarı numara */
        display: inline-block;
    }

    .mobile-call-bar a span {
        margin-left: 6px;
    }
}


/* Varsayılan: GİZLİ */
.fixed-call-bar {
    display: none;
}

/* MOBİL */
@media (max-width: 768px) {
    .fixed-call-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: #16b100;
        padding: 12px 16px 10px;
        z-index: 9999;
        box-shadow: 0 -6px 20px rgba(0,0,0,0.25);
    }

    .call-action {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: #0e8f00;
        padding: 12px;
        border-radius: 10px;
        color: #fff;
        font-weight: 600;
        text-decoration: none;
        font-size: 15px;
    }

    .call-action svg {
        width: 22px;
        height: 22px;
        fill: #fff;
    }

    .site-name {
        text-align: center;
        font-size: 13px;
        background: rgba(0,0,0,0.2);
        padding: 4px 8px;
        border-radius: 8px;
        font-weight: 500;
        pointer-events: none; /* TIKLANMAZ */
    }

    /* Alt bar içerik altına taşmasın */
    body {
        padding-bottom: 90px;
    }
}
