/* Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: #f4f4f4;
}

/******************************************HERO START****************************************/ 
.hero-section {
    position: relative;
    width: 100%;
    height: 60vh; 
    min-height: 450px;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 1;
}

.hero-center-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    text-align: center;
    padding: 0 20px;
}

.hero-company-title {
    color: #ffffff;
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
    animation: fadeInDown 1s ease-out;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 40px;
    border-radius: 80px;
    display: inline-flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.contact-link {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s ease;
}

.contact-link:hover {
    transform: scale(1.05);
}

.contact-link i {
    font-size: 24px;
    color: #2C3E50; 
}

.contact-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-text small {
    font-size: 10px;
    text-transform: uppercase;
    color: #dddddd;
    letter-spacing: 1px;
}

.contact-text span {
    font-size: 16px;
    font-weight: 700;
}

.divider {
    width: 1px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
}

.email-social-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #ffffff;
    font-size: 16px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #2C3E50;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/******************************************WHY BELTAS START****************************************/ 
.stats-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: #1a1a1b;
    margin-bottom: 60px;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #2C3E50;
    margin: 15px auto 0;
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.stat-card {
    background: #fdfdfd;
    padding: 45px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
    cursor: pointer;
}

.stat-icon {
    font-size: 45px;
    color: #2C3E50;
    margin-bottom: 20px;
    transition: 0.4s ease;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat-desc {
    color: #6c757d;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #2C3E50;
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(10deg);
}

/******************************************PRODUCT START****************************************/ 
.products-section { 
    padding: 80px 0; 
    background: #f4f4f4; 
    
    background-size: cover; 
    background-attachment: fixed;
}

.products-section .section-title { color: #2C3E50; }

.section-subtitle { 
    text-align: center; 
    color: #1a1a1b;
    margin-top: -45px; 
    margin-bottom: 50px; 
    font-size: 16px;
    padding: 0 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 350px), 1fr)); 
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-img {
    height: 220px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.product-card:hover .product-img img { transform: scale(1.1); }

.product-info { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }

.product-info h3 {
    font-size: 20px;
    color: #1a1a1b;
    margin-bottom: 15px;
    border-left: 4px solid #2C3E50;
    padding-left: 10px;
}

.product-info p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-btn {
    text-decoration: none;
    color: #2C3E50;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.product-btn:hover { gap: 15px; }

/******************************************REFERENCES START****************************************/
.references-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reference-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
    border: 1px solid #eee;
    cursor: pointer; /* Pointer özelliği eklendi */
}

.reference-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: #2C3E50; /* Orijinal kırmızı vurgu rengin */
}

.ref-logo {
    width: 130px;
    height: 100px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ref-logo img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
    object-fit: contain;
}

.reference-card:hover .ref-logo img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.ref-name {
    font-size: 14px;
    font-weight: 700;
    color: #666;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.reference-card:hover .ref-name {
    color: #111;
}



@media (max-width: 992px) {
    .contact-card {
        gap: 20px;
        padding: 15px 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 80px 0;
    }
    
    .contact-card {
        flex-direction: column;
        border-radius: 35px;
        padding: 30px;
        width: 90%;
        max-width: 350px;
        gap: 20px;
    }

    .divider {
        width: 80%;
        height: 1px;
    }

    .contact-text {
        text-align: center;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .references-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-company-title {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 26px;
    }
}
/******************************************REFERENCES END****************************************/

/******************************************CERTIFICATES START****************************************/
/******************************************CERTIFICATES START****************************************/
.certificates-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.cert-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-top: 40px;
}

/* Sol Menü */
.cert-tabs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cert-tab-btn {
    padding: 20px 25px;
    background: #fff;
    border: none;
    border-radius: 12px;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: #444;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.cert-dot {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    transition: 0.3s;
}

.cert-tab-btn.active {
    background: #2C3E50;
    color: #fff;
    transform: translateX(10px);
}

.cert-tab-btn.active .cert-dot {
    background: #fff;
    box-shadow: 0 0 10px rgba(255,255,255,0.8);
}

/* Sağ Görsel Alanı */
.cert-display {
    flex: 1.5;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-content {
    display: none;
    width: 100%;
    animation: slideUp 0.5s ease forwards;
}

.cert-content.active {
    display: block;
}

.cert-preview {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
}

.cert-preview img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.5s;
}

.cert-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(211, 47, 47, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.cert-preview:hover .cert-overlay { opacity: 1; }
.cert-preview:hover img { transform: scale(1.05); }

.zoom-icon {
    color: #fff;
    font-size: 30px;
    text-decoration: none;
}

.cert-info {
    margin-top: 25px;
    text-align: center;
}

.cert-info h3 {
    color: #1a1a1b;
    font-size: 22px;
    margin-bottom: 10px;
}

.cert-info p {
    color: #666;
    font-size: 15px;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/****************************************** CERTIFICATES RESPONSIVE ****************************************/
/******************************************CERTIFICATES START****************************************/
.certificates-section {
    padding: 100px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.cert-container {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    align-items: flex-start;
}

/* Sol Sekme Menüsü */
.cert-tabs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cert-tab-btn {
    padding: 18px 25px;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 12px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.cert-dot {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    transition: 0.3s;
}

.cert-tab-btn:hover {
    border-color: #2C3E50;
    background: #fffafa;
}

.cert-tab-btn.active {
    background: #2C3E50;
    color: #ffffff;
    border-color: #2C3E50;
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.2);
}

.cert-tab-btn.active .cert-dot {
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* Sağ Ekran Alanı */
.cert-display {
    flex: 1.5;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    min-height: 550px;
    display: flex;
    flex-direction: column;
}

.cert-content {
    display: none;
    animation: certFade 0.6s ease;
}

.cert-content.active {
    display: block;
}

.cert-preview {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    margin-bottom: 25px;
}

.cert-preview img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.5s ease;
}

.cert-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 62, 80, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.cert-overlay i {
    color: #fff;
    font-size: 40px;
}

.cert-preview:hover .cert-overlay {
    opacity: 1;
}

.cert-preview:hover img {
    transform: scale(1.03);
}

.cert-info h3 {
    font-size: 24px;
    color: #1a1a1b;
    margin-bottom: 12px;
}

.cert-info p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* PDF Butonu */
.view-pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    background: #1a1a1b;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.view-pdf-link:hover {
    background: #2C3E50;
    transform: translateY(-2px);
}

@keyframes certFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .cert-container {
        flex-direction: column;
    }
    
    .cert-tabs {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        padding: 10px 5px 20px;
    }
    
    .cert-tab-btn {
        white-space: nowrap;
        min-width: max-content;
    }
    
    .cert-tab-btn.active {
        transform: translateY(-5px);
    }

    .cert-display {
        width: 100%;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .cert-info h3 { font-size: 20px; }
    .cert-display { padding: 15px; }
}

/******************************************CERTIFICATES END****************************************/

/******************************************CATALOG START****************************************/

.cta-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1b 0%, #333 100%);
    color: #fff;
}
.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.cta-content h2 { font-size: 28px; margin-bottom: 10px; color: #2C3E50; }
.cta-actions { display: flex; gap: 15px; }
.cta-btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}
.cta-btn.primary { background: #2C3E50; color: #fff; }
.cta-btn.secondary { background: transparent; border: 2px solid #fff; color: #fff; }
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

@media (max-width: 768px) {
    .cta-flex { flex-direction: column; text-align: center; }
    .cta-actions { flex-direction: column; width: 100%; }
}

/******************************************CATALOG END****************************************/


/******************************************CONTACT START****************************************/

.contact-section { padding: 100px 0; background: #fff; }
.contact-wrapper { 
    display: grid; 
    grid-template-columns: 1fr 1.5fr; 
    gap: 50px; 
    margin-top: 50px;
}

.contact-info-card {
    background: #1a1a1b;
    color: #fff;
    padding: 40px;
    border-radius: 20px;
}

.contact-info-card h3 { color: #2C3E50; margin-bottom: 25px; }
.info-item { display: flex;  gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.info-item i { color: #2C3E50; font-size: 20px; margin-top: 4px; }

.wa-quick-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 15px;
    border-radius: 10px;
    margin-top: 30px;
    font-weight: 700;
    transition: 0.3s;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form input, .contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus { border-color: #2C3E50; box-shadow: 0 0 10px rgba(211, 47, 47, 0.1); }
.submit-btn {
    background: #2C3E50;
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

@media (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; }
}


/******************************************CONTACT END****************************************/




.expert-areas-filter { padding: 60px 20px; background: #fff; text-align: center; }

.filter-tabs {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.tab-btn {
    padding: 12px 28px;
    border: 2px solid #f0f0f0;
    background: #fff;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    color: #777;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-btn.active {
    background: #7f8c8d;
    border-color: #7f8c8d;
    color: #fff;
    box-shadow: 0 4px 15px rgba(127, 140, 141, 0.3);
}

.areas-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.area-tag {
    background: #fdfdfd;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    border: 1px solid #eee;
    /* Animasyon için başlangıç değerleri */
    animation: fadeInTag 0.5s ease forwards;
}

@keyframes fadeInTag {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.expert-areas-filter { padding: 80px 0; background: #fff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.area-header { text-align: center; margin-bottom: 40px; }
.area-header h2 { color: #2c3e50; font-size: 32px; margin: 10px 0; font-weight: 700; }
.area-header .line { width: 50px; height: 3px; background: #7f8c8d; margin: 0 auto; }
.area-header .badge { color: #7f8c8d; font-weight: 700; letter-spacing: 1px; font-size: 13px; }

.filter-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }

.tab-btn {
    padding: 12px 24px;
    border: 2px solid #f1f1f1;
    background: #2c3e50;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    color: #f1f1f1;
    transition: all 0.3s ease;
}

.tab-btn.active { 
    background: #7f8c8d; 
    border-color: #7f8c8d; 
    color: #fff; 
    box-shadow: 0 4px 15px rgba(127, 140, 141, 0.3); 
}

.areas-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; min-height: 150px; }

.area-tag {
    background: #fdfdfd;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    border: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    animation: tagFadeIn 0.4s ease-out forwards;
}

@keyframes tagFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .tab-btn { padding: 10px 18px; font-size: 13px; }
    .area-header h2 { font-size: 26px; }
}

.therapy-approaches { padding: 80px 0; background: #fff; }

.approaches-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.approach-card {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 40px 30px;
    width: 450px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.approach-card:hover {
    border-color: #7f8c8d;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.approach-icon {
    font-size: 40px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.approach-card h3 {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 15px;
}

.approach-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.therapy-link {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #7f8c8d;
    color: #7f8c8d;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.therapy-link:hover {
    background: #7f8c8d;
    color: #fff;
}

@media (max-width: 768px) {
    .approach-card { width: 100%; }
}


.faq-section { padding: 80px 0; background: #fff; }
.faq-container { max-width: 800px; margin: 40px auto 0; }
.faq-item { border: 1px solid #eee; border-radius: 4px; margin-bottom: 10px; overflow: hidden; }
.faq-question {
    width: 100%; padding: 20px; background: #fff; border: none;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 16px; font-weight: 700; color: #2c3e50; cursor: pointer;
    text-align: left; transition: 0.3s;
}
.faq-question:hover { background: #fdfdfd; color: #7f8c8d; }
.faq-question i { font-size: 14px; transition: 0.4s; color: #7f8c8d; }
.faq-answer { max-height: 0; overflow: hidden; transition: 0.4s ease-out; background: #fcfcfc; }
.faq-answer p { padding: 20px; color: #666; line-height: 1.7; margin: 0; font-size: 15px; }
/* Aktif Sınıfı */
.faq-item.active .faq-answer { max-height: 500px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-item.active .faq-question { background: #f4f6f7; border-bottom: 1px solid #eee; }

/* Cevap içeriği sarmalayıcısı */
.answer-content {
    padding: 20px;
}

.faq-answer p {
    padding: 0 0 15px 0; /* Alttan boşluk bırakıldı */
}

/* Link Butonu Stili */
.faq-link-area {
    margin-top: 10px;
}

.faq-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #3498db;
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.faq-btn:hover {
    background-color: #2980b9;
}

.faq-btn i {
    font-size: 12px;
    margin-left: 5px;
    color: #fff !important;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Metin ve ikon arası boşluk */
    padding: 10px 25px;
    border: 2px solid #eee;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
    font-weight: 600;
    color: #7f8c8d;
}

.tab-btn i {
    font-size: 12px;
    transition: transform 0.3s ease; /* Okun dönme hızı */
}

/* Hover efekti */
.tab-btn:hover {
    border-color: #3498db;
    color: #3498db;
}

/* Aktif buton stili ve okun dönmesi */
.tab-btn.active {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
}

.tab-btn.active i {
    transform: rotate(180deg); /* Aktif olduğunda ok yukarı döner */
    color: #fff;
}