* {
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* HERO ALANI - Yüksekliği düşürülmüş (basık) yapı */
.hero {
    padding: 15px;
    /* Yanlardan değil, sadece genel çerçeve payı */
}

.hero-inner {
    top: 50px;
    height: 380px;
    /* Yüksekliği alt taraftan küçülttüm */
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    /* Köşe kavisleri */
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 80px;
}

.hero-content h1 {
    color: white;
    font-size: 42px;
    font-weight: 700;
}

/* Sağ Alttaki Sosyal Medya */
.hero-social {
    position: absolute;
    right: 40px;
    bottom: 30px;
    display: flex;
    gap: 15px;
}

.hero-social a {
    color: white;
    font-size: 16px;
    opacity: 0.8;
}

/* ===== MOBİL MENU ===== */
.mobile-menu-btn,
.mobile-menu {
    display: none;
}

@media (max-width: 768px) {

    /* Desktop menü kapalı */
    .nav-links,
    .header-actions {
        display: none;
    }

    /* Hamburger */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .mobile-menu-btn span {
        width: 22px;
        height: 2px;
        background: #333;
        border-radius: 2px;
    }

    /* Accordion */
    .mobile-menu {
        position: absolute;
        top: 95px;
        right: 20px;
        width: 220px;
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        overflow: hidden;
        z-index: 999;
    }

    .mobile-menu a {
        display: block;
        padding: 14px 20px;
        font-size: 14px;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid #eee;
    }

    .mobile-menu a:last-child {
        border-bottom: none;
    }

    .mobile-menu a:hover {
        background: #f6f6f6;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu.active {
        display: block;
        animation: slideDown 0.25s ease;
    }
}

/* Animasyon */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* DESKTOP ACCORDION */
.nav-item {
  position: relative;
}

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #000;
}

.nav-toggle i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 36px;
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  padding: 10px 0;
  display: none;
  flex-direction: column;
  z-index: 100;
}

.dropdown-menu a {
  padding: 10px 16px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
}

.dropdown-menu a:hover {
  background: #f4f4f4;
}

/* ACTIVE */
.nav-item.active .dropdown-menu {
  display: flex;
}

.nav-item.active .nav-toggle i {
  transform: rotate(180deg);
}

/* HEADER */
.main-header {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
}

.header-pill {
    background: white;
    width: 90%;
    max-width: 1660px;
    height: 70px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.btn-contact {
    background: #79a300;
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
}

.btn-login {
    background: #f1f1f1;
    color: #666;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    border: 1px solid #ddd;
    text-decoration: none;
}

/* HERO */
.hero {
    padding: 15px;
    margin-bottom: 80px;
}

.hero-inner {
    height: 450px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 10%;
}

.hero-content h1 {
    color: white;
    font-size: 48px;
    font-weight: 700;
}

.hero-social {
    position: absolute;
    right: 40px;
    bottom: 30px;
    display: flex;
    gap: 15px;
}

.hero-social a {
    color: white;
    font-size: 18px;
    opacity: 0.8;
    text-decoration: none;
}

/* NEDEN BİZİ TERCİH ETMELİSİNİZ */
.innocon-why-us {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

.innocon-why-card {
    background-color: #f1f9f1;
    max-width: 1200px;
    width: 100%;
    padding: 60px 80px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.innocon-why-title h2 {
    font-size: 40px;
    font-weight: 800;
    flex: 1;
}

.innocon-why-content {
    flex: 1.2;
}

.innocon-why-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #444;
    font-weight: 500;
}

.innocon-contact-btn {
    background-color: #79a300;
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

/* FONKSİYONLAR */
.fonksiyonlar-listesi {
    padding: 0px 1px;
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
}

.fonksiyon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    width: 100%;
}

.fonksiyon-kart {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.fonksiyon-kart:hover {
    transform: translateY(-5px);
}

.kart-metin {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.ok-daire {
    width: 45px;
    height: 45px;
    background-color: #79a300;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* FOOTER */
.site-footer {
    padding-top: 8px;
    border-top: 1px solid #eee;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-description {
    color: #777;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.footer-right h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.subscribe-form input {
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 250px;
    outline: none;
}

.subscribe-form button {
    background: #79a300;
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: #79a300;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding: 25px 0;
    font-size: 12px;
    color: #888;
}

.bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    text-decoration: none;
    color: #888;
}

/* MOBİL */
@media (max-width: 992px) {

    .innocon-why-card,
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .fonksiyon-grid {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        padding-left: 20px;
        text-align: center;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-form input {
        width: 100%;
    }
}
