* {
    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;
}

* {
    
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Section */
.services-section {
    max-width: 1400px;
    margin: 110px auto;
    padding: 0px 0px;
}

/* Header */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.services-header h2 {
    font-size: 32px;
    font-weight: 700;
}

.all-services-btn {
    border: 1px solid #7a8f1f;
    color: #7a8f1f;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Box */
.service-box {
    border: 1px solid #e5e5e5;
    border-radius: 25px;
    padding: 50px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Icon */
.service-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    background: #6C8E00;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.service-icon.dark {
    background: #6b8e00;
    color: #fff;
}

.service-icon.light {
    background: #ecf6e6;
    color: #6b8e00;
}

/* Content */
.service-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.service-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
}

.detail-link {
    font-size: 12px;
    font-weight: 600;
    color: #6b8e00;
    text-decoration: none;
}

/* =====================
   RESPONSIVE
===================== */

/* Tablet */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .services-header h2 {
        font-size: 26px;
    }

    .service-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* 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;
    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: 200px;
}

.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);
    }
}

* {
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* ANA ALAN */
.offerings-area {
    padding: 60px 20px;
}

/* GRID YAPI */
.offerings-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* KUTU */
.offer-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    border: 1px solid #e6e6e6;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* PC HOVER */
.offer-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

/* MOBİL TAP HİSSİ */
.offer-box:active {
    transform: scale(0.97);
}

/* İKON */
.offer-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #6f8f00;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.offer-icon--soft {
    background: #eaf6e5;
    color: #6f8f00;
}

/* BAŞLIK */
.offer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* METİN */
.offer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 18px;
}

/* CTA */
.offer-cta {
    font-size: 13px;
    font-weight: 600;
    color: #6f8f00;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* TABLET */
@media (max-width: 900px) {
    .offerings-layout {
        grid-template-columns: 1fr;
    }
}

/* MOBİL */
@media (max-width: 480px) {
    .offer-box {
        padding: 24px;
    }

    .offer-heading {
        font-size: 17px;
    }
}


/* 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-bloklari {
    padding: 60px 0;
    background-color: #fff;
}

.hizmet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2x2 Yerleşim */
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.hizmet-kart {
    background: #fff;
    border: 1px solid #e8e8e8;
    /* İnce gri çerçeve */
    border-radius: 20px;
    /* Yumuşak kavis */
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.3s ease;
}

.hizmet-kart:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* İkon Daireleri */
.hizmet-ikon {
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: white;
}

.icon-green {
    background-color: #769900;
}

.icon-dark-green {
    background-color: #5d7a00;
}

.icon-light-green {
    background-color: #f1fdf0;
    color: #769900;
}

/* Metin Alanları */
.hizmet-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.hizmet-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Detaylı İncele Linki */
.footer-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px 30px 20px;
}

.detay-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    border-bottom: 2px solid #769900;
    /* Altındaki yeşil çizgi */
    padding-bottom: 5px;
}

.detay-link i {
    color: #769900;
    font-size: 18px;
}


.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;
}