/* ========== GENEL ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #1e293b;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 60px 0;
}
.section.bg {
    background: #f1f5f9;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0f172a;
}
.section-sub {
    text-align: center;
    color: #475569;
    margin-bottom: 48px;
    font-size: 18px;
}

/* ========== SLIDER ========== */
.slider {
    position: relative;
    height: 550px;
    overflow: hidden;
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.slide.active {
    opacity: 1;
    z-index: 1;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
}
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    z-index: 2;
}
.slide-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
}
.slide-content p {
    font-size: 22px;
    margin-bottom: 30px;
}
.btn {
    display: inline-block;
    background-color: #f97316;
    color: white;
    padding: 14px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s;
    border: none;
    cursor: pointer;
}
.btn:hover {
    background-color: #ea580c;
    transform: scale(1.02);
}

/* ========== GRID SİSTEMLERİ ========== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.grid-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 40px 0;
}

/* ========== HİZMET KARTLARI ========== */
.service-card {
    background: #f8fafc;
    border-radius: 28px;
    padding: 32px 24px;
    text-align: center;
    transition: 0.25s;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
}
.service-card .icon {
    font-size: 48px;
    color: #f97316;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

/* ========== GALERİ ========== */
.gallery-item {
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* ========== YORUMLAR ========== */
.testimonial {
    background: #ffffff;
    border-radius: 25px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.customer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.customer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    font-style: italic;
}

/* ========== HABERLER ========== */
.news-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.2s;
}
.news-card:hover {
    transform: translateY(-5px);
}
.news-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-content {
    padding: 20px;
}
.news-date {
    color: #f97316;
    font-size: 14px;
    margin-bottom: 8px;
}
.news-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}
.news-excerpt {
    color: #475569;
    font-size: 14px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .grid-3, .grid-4, .grid-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4, .grid-gallery {
        grid-template-columns: 1fr;
    }
    .slider {
        height: 400px;
    }
    .slide-content h1 {
        font-size: 32px;
    }
    .slide-content p {
        font-size: 16px;
    }
    .gallery-item {
        height: 160px;
    }
    .news-img {
        height: 160px;
    }
}

/* ========== MENU AYAR ========== */
.main-header .header-inner {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    justify-content: flex-start !important;
}