* {
    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;
}



/* ===== 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);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Section */
.service-section {
    padding: 60px 20px;
    background: #fff;
}

/* Container */
.service-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card */
.service-card {
    position: relative;
    height: 200px;
    border-radius: 14px;
    overflow: hidden;
}

/* Image */
.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.55)
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

/* Title */
.service-overlay h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

/* Button */
.service-btn {
    background: #8bc53f;
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.service-btn:hover {
    background: #76a832;
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 992px) {
    .service-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .service-container {
        grid-template-columns: 1fr;
    }

    .service-card {
        height: 180px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Section */
.service-section {
    padding: 105px 20px;
    background: #fff;
}

/* Container */
.service-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card */
.service-card {
    position: relative;
    height: 210px;
    border-radius: 16px;
    overflow: hidden;
}

/* Image */
.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

/* Title */
.service-overlay h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

/* Button */
.service-btn {
    background: #8bc53f;
    color: #000;
    padding: 8px 22px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.service-btn:hover {
    background: #76a832;
}

/* =====================
   TABLET
===================== */
@media (max-width: 992px) {
    .service-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        height: 200px;
    }
}

/* =====================
   MOBILE
===================== */
@media (max-width: 576px) {
    .service-container {
        grid-template-columns: 1fr;
    }

    .service-card {
        height: 180px;
    }

    .service-overlay h3 {
        font-size: 20px;
    }
}