/* 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;
    }
}



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

/* Saç tedavisi ana bölümü */
.thi-sapphire-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-sapphire-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
}

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

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

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

/* Saç tedavisi başlık stili */
.thi-sapphire-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-sapphire-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-sapphire-text p {
    margin-bottom: 0.75rem;
}

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

/* Uyarı kutusu */
.thi-sapphire-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-sapphire-warning-icon {
    color: #f0ad4e;
    font-size: 1.5rem;
}

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

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

/* 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;
    }
}

/* Hakkında Bölümü Stilleri */
.thi-about-section {
    padding: 60px 0;
    background-color: #fff;
}

.thi-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Avantajlar */
.thi-advantages {
    margin-bottom: 60px;
}

.thi-advantages h2,
.thi-process h2,
.thi-faq h2 {
    text-align: center;
    color: #333;
    font-size: 32px;
    margin-bottom: 40px;
}

.thi-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.thi-advantage-item {
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.thi-advantage-item:hover {
    transform: translateY(-5px);
}

.thi-advantage-icon {
    font-size: 40px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.thi-advantage-item h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
}

.thi-advantage-item p {
    color: #666;
    line-height: 1.6;
}

/* İşlem Aşamaları */
.thi-process {
    margin-bottom: 60px;
}

.thi-process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.thi-timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.thi-timeline-number {
    width: 40px;
    height: 40px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.thi-timeline-content {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    flex-grow: 1;
}

.thi-timeline-content h3 {
    color: #333;
    margin-bottom: 10px;
}

.thi-timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* SSS */
.thi-faq {
    max-width: 800px;
    margin: 0 auto;
}

.thi-faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.thi-faq-question {
    padding: 20px;
    background: #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.thi-faq-question h3 {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.thi-faq-icon {
    color: #4CAF50;
    transition: transform 0.3s ease;
}

.thi-faq-item.active .thi-faq-icon {
    transform: rotate(180deg);
}

.thi-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.thi-faq-item.active .thi-faq-answer {
    padding: 20px;
    max-height: 1000px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .thi-about-section {
        padding: 40px 0;
    }

    .thi-advantages h2,
    .thi-process h2,
    .thi-faq h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .thi-advantage-item {
        padding: 20px;
    }

    .thi-timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .thi-timeline-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Hakkında Bölümü Yeni Stiller */
.thi-about-content {
    max-width: 80%;
    margin: 0;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    border-top: 5px solid #749f74;
}

.thi-about-content h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: left;
    font-family: \'Playfair Display\', serif;
    position: relative;
    padding-bottom: 0.8rem;
}

.thi-about-content h2::after {
    content: \'\';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #749f74;
    border-radius: 2px;
}

.thi-about-content h3 {
    color: #34495e;
    font-size: 1.3rem;
    margin: 1.8rem 0 1rem;
    font-weight: 600;
    font-family: \'Playfair Display\', serif;
}

.thi-about-content p {
    color: #576574;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.thi-treatment-steps {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.thi-treatment-steps li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #749f74;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
}

.thi-treatment-steps li:hover {
    transform: translateX(5px);
    background: #f1f8f1;
}

.thi-treatment-steps li strong {
    color: #749f74;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.thi-about-content ul:not(.thi-treatment-steps) {
    padding-left: 1.2rem;
    margin: 1rem 0;
}

.thi-about-content ul:not(.thi-treatment-steps) li {
    color: #576574;
    margin-bottom: 0.6rem;
    line-height: 1.6;
    position: relative;
    font-size: 0.9rem;
}

.thi-about-content ul:not(.thi-treatment-steps) li::before {
    content: \'•\';
    color: #749f74;
    font-weight: bold;
    margin-right: 0.4rem;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .thi-about-content {
        padding: 1.2rem;
        max-width: 95%;
        margin: 0 auto;
    }

    .thi-about-content h2 {
        font-size: 1.5rem;
    }

    .thi-about-content h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.8rem;
    }

    .thi-about-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .thi-treatment-steps li {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .thi-treatment-steps li strong {
        font-size: 0.9rem;
    }

    .thi-about-content ul:not(.thi-treatment-steps) li {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
}

