/* Scroll Top Button düzenlemeleri */
#scroll-top {
    position: fixed;
    bottom: 75px; /* Mobil navigasyonun üzerine konumlandır */
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: #72AE44;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 5px;
    z-index: 1200; /* Daha yüksek z-index */
    cursor: pointer;
    display: inline-block; /* Gözükmesi için değiştirildi */
    transition: all 0.3s ease;
}

#scroll-top:hover {
    background-color: #ff7e31;
}

/* Randevu Form Popup Stilleri */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    display: none;
}
.appointment-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 350px;
    max-height: 75vh;
    background: white;
    z-index: 2000;
    display: none;
    overflow: hidden;
    border-radius: 10px;
}
.appointment-area {
    background: white;
    padding: 10px;
    position: relative;
}
.appointment-content {
    padding: 10px;
    padding-top: 20px;
}
.appointment-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.appointment-content p {
    font-size: 13px;
    margin-bottom: 12px;
}
.close-popup {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #333;
    font-size: 20px;
    cursor: pointer;
    z-index: 2001;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f1f1;
}
.form-control, .form-select {
    margin-bottom: 8px;
    padding: 6px;
    font-size: 14px;
}
.theme-btn {
    background: #72AE44;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    font-size: 15px;
}
.theme-btn:hover {
    background: #f07c00;
}

/* About section stilleri */
.about-img {
    position: relative;
    margin-bottom: 30px;
}
.about-img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: -20px;
    top: -20px;
    background: #ff7e31;
    z-index: -1;
    border-radius: 10px;
    opacity: 0.1;
}
.about-content {
    padding: 30px;
}
.about-content h2 {
    color: #1d1d1d;
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 700;
}
.about-content h4 {
    color: #1d1d1d;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}
.about-content ul li {
    position: relative;
    padding-left: 25px;
    color: #666;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
}
/* Buton stilleri */
.btn-primary {
    background: #72AE44;
    border-color: #72AE44;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: #ff7e31;
    border-color: #ff7e31;
}
.btn-success {
    background: #72AE44;
    border-color: #72AE44;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-success:hover {
    background: #ff7e31;
    border-color: #ff7e31;
}

.page-title-area {
    background: #72AE44;
    padding: 10px 0;
    margin-bottom: 20px;
}
.page-title h1 {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
}
.section-title {
    text-align: center;
    margin-bottom: 30px;
}
.section-title h2 {
    color: #333;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}
/* Container padding düzenleme */
.container.py-5 {
    padding-top: 20px !important;
    padding-bottom: 30px !important;
}

.video-wrapper {
    position: relative;
    padding-bottom: 177.77%; /* Shorts için 9:16 aspect ratio */
    height: 0;
    margin-bottom: 20px;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.container .text-center h1 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.2px;
}

/* Responsive düzenlemeler */
@media (max-width: 991px) {
    .about-content {
        padding: 15px;
        margin-top: 0; /* Mobilde üst margin kaldırıldı */
    }
    
    .about-content h2 {
        font-size: 28px;
    }
    
    .about-content h4 {
        font-size: 20px;
    }
    
    .video-wrapper {
        padding-bottom: 177.77%;
        margin: 0 auto 30px;
        max-width: 350px;
    }
    
    /* Alt buton düzenlemesi */
    .about-content .mt-4 {
        margin-bottom: 70px !important; /* Mobil navigasyon için ekstra boşluk */
    }
}

@media (max-width: 768px) {
    .page-title h1 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .about-content {
        padding: 0;
    }
    
    .about-content h2 {
        font-size: 24px;
        margin-top: 20px;
    }
    
    .btn-primary, .btn-success {
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .appointment-popup {
        width: 90%;
        max-height: 80vh;
    }
    .appointment-content {
        padding: 8px;
        padding-top: 15px;
    }
    .appointment-content h3 {
        font-size: 16px;
    }
    .appointment-content p {
        font-size: 11px;
        margin-bottom: 10px;
    }
    .form-control, .form-select {
        margin-bottom: 6px;
        padding: 6px;
        font-size: 13px;
    }
    .theme-btn {
        margin-top: 8px;
        padding: 8px 16px;
        font-size: 14px;
    }
}