* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: #fdfdfd;
    overflow-x: hidden;
    color: #333;
    width: 100%;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

.main-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.sidebar {
    width: 220px;
    background: #fff;
    border-right: 1px solid #f0f0f0;
    position: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.sidebar-logo {
    padding: 40px 20px;
    text-align: center;
}

.sidebar-logo img {
    width: 130px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.side-nav ul {
    list-style: none;
}

.side-nav ul li {
    margin-bottom: 5px;
}

.side-nav ul li a {
    display: block;
    padding: 18px 30px;
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 13px;
    transition: 0.3s;
}

.side-nav ul li a.active,
.side-nav ul li a:hover {
    color: #fff;
    background: #84b026;
}

.sidebar-footer {
    margin-top: auto;
    padding: 25px;
    font-size: 11px;
    color: #bbb;
    border-top: 1px solid #f9f9f9;
    text-align: center;
}

.content-area {
    margin-left: 220px;
    flex: 1;
    display: flex;
    flex-direction: column;
    width: calc(100% - 220px);
}

.hero-slider {
    position: relative;
    height: 550px;
    overflow: hidden;
    background: #1a1a1a;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active { 
    opacity: 1; 
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 50px;
    left: 50px;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    max-width: 450px;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    z-index: 10;
}

.badge {
    background: #84b026;
    color: #fff;
    padding: 5px 12px;
    font-weight: 800;
    font-size: 11px;
    display: inline-block;
    margin-bottom: 15px;
    border-radius: 2px;
}

.slide-caption h2 {
    font-size: 32px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.slide-caption p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: #fff;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 20;
    transition: 0.3s;
}
.next { right: 20px; }
.prev { left: 20px; }
.prev:hover, .next:hover { background: #84b026; }

/* Yeşil Şerit */
.green-cta {
    background: #84b026;
    color: #fff;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
}

.green-cta p {
    font-size: 16px;
    font-weight: 600;
}

.btn-ulasin {
    background-color: #222222 !important; 
    color: #ffffff !important;          
    text-decoration: none !important;    
    padding: 10px 20px;               
    border-radius: 4px;                 
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-ulasin:hover {
    background-color: #333333 !important;
}

.about-home {
    padding: 80px 5%;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    background: #fff;
    align-items: center;
    width: 100%;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
}

.mini-title {
    color: #84b026;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.about-center h2 {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.2;
    margin: 15px 0;
}

.about-center p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.small-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 20px;
}

.botanik-info {
    background: #004d26;
    color: #fff;
    display: flex;
    width: 100%;
}

.botanik-container { display: flex; width: 100%; }

.botanik-text {
    flex: 1;
    padding: 60px 8%;
}

.botanik-desc {
    font-style: italic;
    line-height: 1.8;
    margin: 20px 0;
    opacity: 0.9;
}

.botanik-image { flex: 1; }
.botanik-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 80px;
}

.hizmet-kartlari {
    padding: 80px 5%;
    background: #f4f4f4;
    width: 100%;
}

.kart-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.kart-item {
    background: #fff;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.kart-item:hover {
    border-color: #84b026;
    transform: translateY(-5px);
}

.kart-icon {
    background: #84b026;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.kart-icerik h4 { font-weight: 900; margin-bottom: 10px; font-size: 15px; }
.kart-icerik p { font-size: 13px; color: #777; line-height: 1.6; }

/* Referans Galeri */
.referans-galeri { padding: 80px 60px; background: #fff; }
.galeri-baslik { text-align: center; margin-bottom: 50px; }
.galeri-baslik h2 { font-size: 48px; font-weight: 900; color: #111; }
.galeri-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.galeri-item { overflow: hidden; border-radius: 20px; }
.galeri-item img { width: 100%; height: 320px; object-fit: cover; transition: 0.4s; display: block; }
.galeri-item img:hover { transform: scale(1.08); }

.footer-social-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
    padding: 30px 5%;
    background: #fff;
}

.social-box {
    border: 2px solid #004d26;
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.social-box i { font-size: 32px; color: #004d26; }
.social-text span { display: block; font-size: 11px; color: #e67e22; font-weight: 700; }
.social-text strong { font-size: 14px; color: #004d26; }

/* Bize Ulaşın Footer Alanı */
.footer-contact-bar {
    background: #004d26;
    padding: 35px 5%;
    color: #fff;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-left h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
    color: #84b026;
    letter-spacing: 1px;
}

.contact-left p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.5;
}

@media screen and (max-width: 992px) {
    body .main-wrapper {
        flex-direction: column !important;
    }

    body .content-area {
        margin-left: 0 !important;
        width: 100% !important;
    }

    body .sidebar {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        border-right: none !important;
        border-bottom: 1px solid #f0f0f0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 20px !important;
    }

    .sidebar .sidebar-logo {
        padding: 0 !important;
        margin-bottom: 15px !important;
    }

    .sidebar .sidebar-logo img {
        width: 90px !important;
        height: auto !important;
    }

    body .side-nav {
        width: 100% !important;
    }

    body .side-nav ul {
        display: flex !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        list-style: none !important;
    }

    body .side-nav ul li {
        margin-bottom: 0 !important;
    }

    body .side-nav ul li a {
        padding: 10px 15px !important;
        font-size: 13px !important;
    }

    body .sidebar-footer {
        display: none !important;
    }

    body .green-cta {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
        padding: 20px !important;
    }

    body .hero-slider {
        height: 300px !important;
    }

    body .slide-caption {
        left: 15px !important;
        bottom: 15px !important;
        padding: 15px !important;
        max-width: calc(100% - 30px) !important;
    }

    body .slide-caption h2 {
        font-size: 18px !important;
    }

    body .about-home {
        grid-template-columns: 1fr !important;
        padding: 30px 20px !important;
        gap: 20px !important;
    }

    .about-home .about-image img,
    .about-home .small-image img {
        height: 220px !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        display: block !important;
    }

    body .botanik-container {
        flex-direction: column !important;
    }

    body .botanik-image img {
        border-top-left-radius: 0 !important;
        height: 220px !important;
    }

    body .kart-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    body .footer-social-row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 20px !important;
    }
}