/* -----------------------------
   GENEL AYARLAR
------------------------------- */
body {
    margin: 0;
    font-family: 'Rubik', sans-serif;
}

a { text-decoration: none; }

/* -----------------------------
   HEADER
------------------------------- */
.header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.header .header-container {
    max-width: 74%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    white-space: nowrap;
}

/* Logo */
.logo img {
    height: 55px;
}

/* -----------------------------
   DESKTOP MENÜ
------------------------------- */
.nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav ul li {
    position: relative;
}

.nav ul li a {
    display: block;
    padding: 8px 12px;
    color: #222;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.nav ul li a:hover {
    background: #d60000;
    color: #fff;
}

/* -----------------------------
   DROPDOWN MENÜ
------------------------------- */

/* İlk durumda görünmesin */
.nav ul li .dropdown-menu { display: none !important; }

/* Hover kaybolma sorunu çözümü: top:100% */
.dropdown-menu {
    position: absolute;
    top: 100%; 
    left: 0;
    background: #d60000;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 180px;
    border-radius: 5px;
    display: none;
    z-index: 10000;
}

/* Dropdown elemanları */
.dropdown-menu li a {
    color: #fff !important; /* BEYAZ YAZI GARANTİLİ */
    padding: 12px 14px;
    display: block;
    font-size: 15px;
}

.dropdown-menu li a:hover {
    background: #b30000;
}

/* Hover aktif etme */
.nav ul li:hover > .dropdown-menu {
    display: block !important;
}

/* Desktop Randevu Butonu */
.randevu-btn {
    background: #d60000;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.randevu-btn:hover {
    background: #b30000;
}

/* -----------------------------
   HAMBURGER ICON
------------------------------- */
.hamburger {
    display: none;
    width: 32px;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger .line {
    height: 3px;
    background: #222;
    border-radius: 2px;
    display: block;
    transition: 0.35s ease;
    transform-origin: left;
}

.line1 { width: 18px; }
.line2 { width: 26px; }
.line3 { width: 32px; }

.hamburger.active .line1 { width: 8px; }
.hamburger.active .line2 { width: 14px; }
.hamburger.active .line3 { width: 18px; }

/* -----------------------------
   MOBIL MENÜ
------------------------------- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: 0.4s ease;
    z-index: 9998;
    overflow-y: auto;
    padding-top: 100px;
}

.close-mobile-menu {
    position: absolute;
    top: 25px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: #222;
    font-size: 22px;
    font-weight: 500;
    transition: 0.3s ease;
}

.close-mobile-menu:hover {
    color: #d60000;
}

.close-mobile-menu .close-icon {
    font-size: 32px;
    font-weight: 400;
}

.close-mobile-menu .close-text {
    font-size: 20px;
    font-weight: 500;
}

.mobile-menu-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 16px;
    box-sizing: border-box;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    padding: 18px 0;
    border-bottom: 1px solid #f2f2f2;
}

.mobile-menu ul li a {
    display: block;
    font-size: 21px;
    color: #222;
}

.mobile-randevu {
    background: #d60000;
    color: #fff !important;
    padding: 10px 16px;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    transition: 0.3s ease;
}

.mobile-randevu:hover {
    background: #b30000;
}

/* -----------------------------
   RESPONSIVE
------------------------------- */
@media(max-width: 980px) {
    .header .header-container { max-width: 95%;}
    .nav,
    .header-btn {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}





    main{
        margin-top: 100px;
    }
    .container{
        position: relative;
        width: 95%;
        max-width: 1400px;
        margin: 50px auto;
    }
    @media (max-width: 768px) {
        .container{
           
            width: 90%;
            
        }
    }

    


    .slider-container {
        position: relative;
        width: 95%;
        max-width: 1400px;
        margin: 50px auto;
        overflow: hidden;
    }

    .slider-track {
        display: flex;
        transition: transform 0.7s ease;
    }

    .slider-track img {
        width: 100%;
        flex-shrink: 0;
        object-fit: cover;
        border-radius: 10px;
    }

    /* Navigasyon butonları */
    .arrow {
        position: absolute;
        right: 10px;
        width: 60px;
        height: 60px;
        background: rgba(0,0,0,0.5);
        color: white;
        font-size: 36px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        user-select: none;
        border-radius: 0;
        z-index: 3;
    }

    .arrow-left { top: 35%; }
    .arrow-right { top: 46%; }

    .arrow-left::after { content: "\276E"; }
    .arrow-right::after { content: "\276F"; }

    /* Süre çubuğu */
    .progress-bar-container {
        margin: auto;
        max-width: 96%;
        position: relative;
        height: 2px;
        background: rgba(0,0,0,0.2);
        border-radius: 10px;
        overflow: hidden;
        margin-top: 15px;
    }

    .progress-bar {
        height: 100%;
        width: 0%;
        background: #000;
        transition: width linear;
    }

    /* Responsive ayarlar */
    @media (max-width: 1024px) {
        .slider-container { max-width: 1000px; }
        .arrow { width: 50px; height: 50px; font-size: 28px; }
    }

    @media (max-width: 768px) {
        .progress-bar-container { max-width: 100%; }
        .slider-track img {height: 250px; border-radius:10px;}
        .slider-container { max-width: 600px;  height: 270px; }    
        .arrow-left { top: 31%; }
        .arrow-right { top: 46%; }
        .arrow { width: 35px; height: 35px; font-size: 20px; }
    }






    .site-footer {
        background: transparent; /* Arka plan kaldırıldı */
        color: #222; /* Kırık siyah ton */
        font-weight: bold;
        padding: 40px 20px;
        font-family: Arial, sans-serif;
    }
    
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .footer-logo img {
        max-width: 150px;
        display: block;
        margin-bottom: 15px;
        margin-right: 30px; /* Logo ile menü arasına boşluk */
    }
    
    .site-footer h3 {
        color: #d60000;
        margin-bottom: 10px;
        font-size: 18px;
    }
    
    .site-footer ul {
        list-style: none;
        padding: 0;
    }
    
    .site-footer ul li {
        margin-bottom: 6px;
        display: flex;
        align-items: center;
        gap: 6px;
      
        font-family: 'Rubik', sans-serif;
    }
    
    .site-footer ul li i {
        color: #222;
        font-size: 16px;
    }
    
    .site-footer a {
        color: #222;
        text-decoration: none;
    }
    .site-footer a:hover {
        color: #e60000;
        transition: 0.3s;
        text-decoration: none;
    }
    
    .footer-sections {
        display: flex;
        justify-content: flex-start;
        gap: 5px; /* Kolon arası boşluk azaltıldı */
        flex-wrap: wrap;
        align-items: flex-start;
    }
    
    .footer-col {
        flex: 0 1 250px; /* Kolon genişliği sınırlandı */
    }
    
    .footer-social {
        text-align: center;
        margin: 20px 0;
    }
    
    .footer-social a {
        color: #222;
        margin: 0 10px;
        font-size: 28px;
        transition: 0.3s;
    }
    
    .footer-social a:hover {
        color: #e60000;
    }
    
    .footer-bottom {
        text-align: center;
        border-top: 1px solid #ccc;
        padding-top: 15px;
        font-size: 14px;
        color: #555;
    }
    
    .yol-tarifi-btn {
        display: none;
        margin-top: 10px;
        padding: 6px 12px;
        background: #e60000;
        color: #fff;
        border-radius: 5px;
        font-weight: bold;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    
    .footer-contact {
        margin-top: -30px;
    }
    
    @media (max-width: 1024px) {
        .footer-sections {
            justify-content: space-between; /* Daha sıkı kolonlar */
        }
    }
    
 /* Mobil düzenleme */
@media (max-width: 768px) {
    .footer-sections {
        display: flex;
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 20px;
    }

    /* Logo en üstte */
    .footer-logo {
        flex: 1 1 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    /* 1. ve 2. menü yan yana */
    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        flex: 0 1 45%; 
        text-align: center; 
    }
    

    /* 3. menü 1+2’nin altında */
    .footer-col:nth-child(4) {
        flex: 1 1 100%;
        margin: 5px auto;
        padding-left: 8px; 
        text-align: center; 
    }

    /* 4. menü (iletişim) en altta */
    .footer-contact {
        flex: 1 1 100%;
        margin-top: 20px;
    }

    .footer-col ul {
        padding: 0;
        margin: 0 auto;
    }

    .yol-tarifi-btn {
        display: inline-flex !important;
    }

    /* Sosyal medya ikonları */
    .footer-social {
        text-align: center;
        width: 100%;
        margin: 15px 0;
    }
}
    
    