* {
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* Header Tasarımı */
.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;
}

.logo img {
    height: 55px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.nav-links i {
    font-size: 10px;
}

.btn-contact {
    background: #79a300;
    /* Innocon Yeşili */
    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 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: 300px;
    /* Yüksekliği alt taraftan küçülttüm */
    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;
    /* Köşe kavisleri */
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 87px;
}

.hero-content h1 {
    color: white;
    font-size: 42px;
    font-weight: 700;
}

/* Sağ Alttaki Sosyal Medya */
.hero-social {
    position: absolute;
    right: 200px;
    bottom: 120px;
    display: flex;
    gap: 25px;
}

.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);
}


.hizmet-kartlari {
    padding: 50px 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.kart-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 eşit sütun */
    gap: 20px;
    /* Kartlar arası boşluk */
    width: 90%;
    max-width: 1200px;
}

.kart {
    height: 250px;
    /* Görseldeki basık yükseklik */
    border-radius: 20px;
    /* Yumuşak köşeler */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Kart üzerine gelince hafif büyüme efekti */
.kart:hover {
    transform: translateY(-5px);
}

.kart-icerik h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    padding: 0 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Mobil uyumluluk: Ekran küçülünce kartlar alt alta biner */
@media (max-width: 992px) {
    .kart-container {
        grid-template-columns: 1fr;
    }
}


.site-footer {
    background-color: #ffffff;
    padding-top: 60px;
    border-top: 1px solid #eee;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px 40px 20px;
}

/* Sol Taraf */
.footer-logo img {
    height: 45px;
    margin-bottom: 20px;
}

.footer-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

/* Sağ Taraf - Bülten */
.footer-right h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.subscribe-form input {
    width: 250px;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
}

.subscribe-form button {
    background-color: #769900;
    color: #fff;
    border: none;
    padding: 0 25px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

/* Sosyal Medya */
.footer-socials {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.footer-socials a {
    width: 35px;
    height: 35px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.footer-socials a:hover {
    background-color: #769900;
    color: #fff;
    border-color: #769900;
}

/* Footer Alt Kısım */
.footer-bottom {
    border-top: 1px solid #eee;
    padding: 20px 0;
}

.bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 12px;
    color: #777;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    text-decoration: none;
    color: #777;
}