/* dis */
/*
 * Saç Tedavileri CSS Dosyası
 * Bu dosya, saç tedavileri sayfasına özel stilleri içerir
 */

/* Saç tedavisi ana bölümü */
.thi-plastic-section {
    padding: 3rem 0;
    background-color: #fff;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Saç tedavisi başlık ve içerik alanı */
.thi-plastic-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
}

/* Sol içerik alanı */
.thi-plastic-left-content {
    flex: 1;
    padding-right: 2rem;
}

/* Sağ görsel alanı */
.thi-plastic-right-image {
    flex: 1;
    text-align: center;
}

.thi-plastic-right-image img {
    width: 100%;
    height: auto;
    border-radius: 30%;
    max-width: 550px;

}

/* Saç tedavisi başlık stili */
.thi-plastic-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #749f74; /* Şirketin yeşil tonu */
    padding-bottom: 1rem;
    position: relative;
    font-family: \'Playfair Display\', serif;
}

/* Saç tedavisi metin stili */
.thi-plastic-text {
    font-size: 0.85rem; /* Daha küçük yazı boyutu */
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
    font-weight: 500; /* Metni biraz daha kalın yap */
}

.thi-plastic-text p {
    margin-bottom: 0.75rem;
}

/* Vurgulu metinler için stil */
.thi-plastic-text strong {
    color: #92bd92; /* Şirketin açık yeşil tonu */
    font-weight: 600;
}

/* Uyarı kutusu */
.thi-plastic-warning {
    margin-top: 1.5rem;
    padding: 0.75rem 1rem;
    background-color: #fcf8e3;
    border-left: 5px solid #f0ad4e;
    color: #8a6d3b;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
}

.thi-plastic-warning-icon {
    color: #f0ad4e;
    font-size: 1.5rem;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .thi-plastic-section {
        padding: 0rem;
    }

    .thi-plastic-content-wrapper {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .thi-plastic-right-image {
        order: -1; /* En üstte göster */
        width: 100%;
       
        display: none;
        justify-content: center;
    }
    
    .thi-plastic-right-image img {
        max-width: 300px;
        width: 90%;
    }
    
    .thi-plastic-left-content {
        padding: 0 1rem;
        width: 100%;
        text-align: center;
    }
    
    .thi-plastic-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 0rem;
		display:none;
    }
    
    .thi-plastic-text {
        font-size: 0.8rem;
        font-weight: bold;
        text-align: left;
        padding: 0;
        width: 95%;
        margin: 0 auto;
    }
} 

/* treat */
/* Saç Tedavileri CSS */
.thi-treatments-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.thi-treatment-item {
    display: flex;
    margin-bottom: 5rem;
    position: relative;
    height: 400px;
}

.thi-treatment-item:nth-child(even) {
    flex-direction: row-reverse;
}

.thi-treatment-content {
    position: absolute;
    width: 80%;
    padding: 2rem;
    background: white;
    z-index: 3;
    top: 50px;
    left: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.thi-treatment-item:nth-child(even) .thi-treatment-content {
    left: auto;
    right: 0;
}

.thi-treatment-image {
    width: 70%;
    height: 100%;
    position: absolute;
    right: 0;
    z-index: 1;
}

.thi-treatment-item:nth-child(even) .thi-treatment-image {
    right: auto;
    left: 0;
}

.thi-treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thi-treatment-title {
    font-size: 2.2rem;
    color: #749f74;
    margin-bottom: 1.5rem;
    font-family: \'Playfair Display\', serif;
    font-weight: 500;
}

.thi-treatment-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.thi-treatment-buttons {
    display: flex;
    gap: 1rem;
}

.thi-details-button {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: #749f74;
    color: white;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.thi-appointment-button {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: #92bd92;
    color: white;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.thi-details-button:hover,
.thi-appointment-button:hover {
    background: #588358;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .thi-treatment-item {
        height: auto;
        display: flex;
        flex-direction: column;
        margin-bottom: 3rem;
        position: relative;
    }
    
    .thi-treatment-item:nth-child(even) {
        flex-direction: column;
    }
    
    .thi-treatment-image {
        position: relative;
        width: 100%;
        height: 300px;
        order: -1;
        margin-bottom: 1rem;
    }
    
    .thi-treatment-item:nth-child(even) .thi-treatment-image {
        right: auto;
        left: auto;
    }
    
    .thi-treatment-content {
        position: relative;
        width: 100%;
        top: auto;
        left: auto;
        right: auto;
        padding: 1.5rem;
        
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .thi-treatment-item:nth-child(even) .thi-treatment-content {
        left: auto;
        right: auto;
    }
    
    .thi-treatment-buttons {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }
    
    .thi-details-button,
    .thi-appointment-button {
        width: auto;
        min-width: 120px;
        padding: 0.8rem 2rem;
    }
    
    .thi-treatment-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .thi-treatment-description {
        text-align: center;
    }
}

/* Before/After Bölümü */
.thi-before-after-section {
    max-width: 1250px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.thi-before-after-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.thi-before-after-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 1.5rem;
}

.thi-before-after-item h3 {
    color: #749f74;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.thi-before-after-images {
    display: flex;
    gap: 1rem;
    position: relative;
}

.thi-before, .thi-after {
    flex: 1;
    position: relative;
}

.thi-before img, .thi-after img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.thi-before:hover img, .thi-after:hover img {
    transform: scale(1.05);
}

.thi-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(116, 159, 116, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive tasarım */
@media (max-width: 992px) {
    .thi-before-after-grid {
        grid-template-columns: 1fr;
    }
    
    .thi-before-after-item {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .thi-before-after-images {
        flex-direction: column;
    }
    
    .thi-before img, .thi-after img {
        height: 250px;
    }
}

/* Deneyimler Bölümü - Video Container */
.thi-experiences-section {
    max-width: 1250px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.thi-experiences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.thi-experience-video {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.thi-experience-video:hover {
    transform: translateY(-5px);
}

.thi-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 1rem;
}

.thi-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.thi-video-info {
    padding: 1rem 0 0;
}

.thi-video-info h3 {
    color: #749f74;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.thi-video-date {
    color: #888;
    font-size: 0.8rem;
}

/* Responsive tasarım - Deneyimler */
@media (max-width: 992px) {
    .thi-experiences-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .thi-experience-video {
        padding: 1rem;
    }

    .thi-video-info h3 {
        font-size: 1.1rem;
    }
} 

/* tabs */
/* Saç tedavileri tab butonları */
.thi-tabs-container {
    max-width: 1200px;
    margin: 1rem auto;
    padding: 0 1rem;
    text-align: left;
}

.thi-tab-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.thi-tab-button {
    background-color: #92bd92; /* Şirketin açık yeşil tonu */
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.thi-tab-button:hover {
    background-color: #749f74; /* Şirketin koyu yeşil tonu */
}

.thi-tab-button.active {
    background-color: #749f74; /* Şirketin koyu yeşil tonu */
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .thi-tab-buttons {
        justify-content: center;
    }
    
    .thi-tab-button {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
}

.thi-faq-section {
    padding: 2rem 2rem;
    background-color: #fff;
}

.thi-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: left;
}

.thi-faq-item {
    max-width: 1200px;
    background: #fff;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #e5e5e5;
    border-left: 3px solid #92bd92;
    transition: all 0.3s ease;
}

.thi-faq-item:hover {
    border-left-color: #749f74;
    transform: translateX(2px);
}

.thi-faq-item.active {
    border-left-color: #749f74;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.thi-faq-question {
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thi-faq-question:hover {
    background-color: rgba(146, 189, 146, 0.05);
}

.thi-faq-question h3 {
    margin: 0;
    font-size: 0.95rem;
    color: #444;
    font-weight: 500;
}

.thi-faq-icon {
    color: #92bd92;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
}

.thi-faq-item.active .thi-faq-icon {
    color: #749f74;
    transform: rotate(45deg);
}

.thi-faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
    font-size: 0.9rem;
}

.thi-faq-item.active .thi-faq-answer {
    padding: 0.8rem 1rem;
    max-height: 500px;
    border-top: 1px solid rgba(146, 189, 146, 0.1);
    background-color: #fafafa;
}

.thi-faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .thi-faq-section {
        padding: 1.5rem 1rem;
    }

    .thi-faq-question h3 {
        font-size: 0.9rem;
    }

    .thi-faq-container {
        padding: 0;
    }

    .thi-faq-item {
        max-width: 100%;
    }

    .thi-faq-answer {
        font-size: 0.85rem;
    }
} 

