* {

    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: 40px;
    bottom: 30px;
    display: flex;
    gap: 15px;
}

.hero-social a {
    color: white;
    font-size: 16px;
    opacity: 0.8;
}

/* 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);
    gap: 20px;
    width: 100%;
    max-width: 1360px;
}

.kart {
    top: 20px;
    height: 260px;
    border-radius: 20px;
    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;
    }
}