/* Genel Ayarlar ve Yumuşak Kaydırma */
html {
    scroll-behavior: smooth; /* Menüye tıklayınca yavaşça kaymasını sağlar */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
}

/* =========================================
   ÜST KISIM (HEADER) VE MENÜ
========================================= */
.header {
    background-color: #222;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #ffcc00;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.logo h1 {
    color: #ffcc00;
    font-size: 24px;
    letter-spacing: 1px;
}

.logo p {
    font-size: 13px;
    color: #ddd;
    margin-top: 3px;
}

/* Menü Linkleri */
.navbar ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #ffcc00;
}

/* Üst Kısım İletişim Butonları (Hemen Ara & WhatsApp) */
.iletisim-butonlari {
    display: flex;
    gap: 15px; 
    align-items: center;
}

.call-btn {
    background-color: #ffcc00;
    color: #222;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.3);
}

.call-btn:hover {
    background-color: #fff;
    color: #222;
    transform: translateY(-2px);
}

.wp-sag-ust {
    background-color: #25D366; 
    color: #ffffff; 
    padding: 10px 24px;
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    transition: 0.3s;
}

.wp-sag-ust:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
}

/* =========================================
   ORTAK BAŞLIK TASARIMI
========================================= */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    color: #222;
}

.section-title .line {
    width: 60px;
    height: 4px;
    background-color: #ffcc00;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* =========================================
   SLAYT ALANI
========================================= */
.slider-container {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
    background-color: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.slider-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 90%;
}

.slider-overlay h2 {
    font-size: 45px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    margin-bottom: 15px;
    color: #ffcc00;
}

.slider-overlay p {
    font-size: 20px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

/* =========================================
   NEDEN BİZ BÖLÜMÜ
========================================= */
.why-us {
    padding: 80px 20px;
    background-color: #fff;
}

.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.feature-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-bottom: 4px solid #ffcc00;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #222;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
}

/* =========================================
   HİZMETLER BÖLÜMÜ
========================================= */
.services {
    padding: 80px 20px;
    background-color: #f0f0f0;
}

.service-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 50px 30px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.service-card .icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #222;
}

.service-card p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

/* =========================================
   ALT KISIM (FOOTER)
========================================= */
.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 20px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-section {
    min-width: 250px;
    text-align: center;
}

.footer-section h3 {
    color: #ffcc00;
    margin-bottom: 20px;
    font-size: 20px;
    border-bottom: 2px solid #333;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-section p {
    line-height: 1.8;
    font-size: 15px;
}

.hours {
    font-weight: bold;
    color: #fff;
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #888;
}

/* =========================================
   MOBİL UYUM (RESPONSIVE)
========================================= */
@media (max-width: 850px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .navbar ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .slider-overlay h2 {
        font-size: 32px;
    }
}