/* =====================================================
   FANCHATY HOMEPAGE SECTIONS
   SSS + AI Deneyimi Birleşik Blok
   ===================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* =====================================================
   ANA KONTEYNER
   ===================================================== */
.fanchaty-homepage-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

/* =====================================================
   SECTION HEADER (Ortak Başlık Stili)
   ===================================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 15px 0;
}

.title-gradient {
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-highlight {
    background: linear-gradient(135deg, #dd4791 0%, #9c40d9 50%, #534fe0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-left: 10px;
}

.title-decoration {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dd4791, #534fe0);
    margin: 0 auto;
    border-radius: 2px;
}

/* =====================================================
   AI DENEYİMİ BÖLÜMÜ
   ===================================================== */
.ai-experience-section {
    margin-bottom: 80px;
}

.experience-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Giriş Metni */
.intro-text {
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.9) 0%, rgba(25, 25, 30, 0.95) 100%);
    border: 1px solid rgba(221, 71, 145, 0.2);
    border-radius: 20px;
    padding: 35px 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.intro-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #dd4791, #6c49d5, #534fe0);
}

.intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
    margin: 0 0 15px 0;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* Özellik Kartları */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(35, 35, 40, 0.95) 0%, rgba(25, 25, 30, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(221, 71, 145, 0.05) 0%, rgba(83, 79, 224, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(221, 71, 145, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(221, 71, 145, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(221, 71, 145, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover .card-glow {
    opacity: 1;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px 0;
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #aaa;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Kullanıcı Yorumları */
.testimonials-section {
    margin-bottom: 50px;
}

.testimonials-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(40, 40, 45, 0.9) 0%, rgba(30, 30, 35, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 25px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(221, 71, 145, 0.3);
    transform: translateX(5px);
}

.quote-mark {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 50px;
    font-weight: 800;
    color: rgba(221, 71, 145, 0.3);
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
    color: #ddd;
    margin: 0 0 12px 0;
    padding-left: 35px;
}

.testimonial-author {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #dd4791;
    padding-left: 35px;
}

/* CTA Bölümü */
.cta-section {
    background: linear-gradient(135deg, rgba(221, 71, 145, 0.15) 0%, rgba(83, 79, 224, 0.15) 100%);
    border: 1px solid rgba(221, 71, 145, 0.3);
    border-radius: 20px;
    padding: 35px 40px;
    text-align: center;
}

.cta-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px 0;
}

.cta-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #ccc;
    margin: 0;
    max-width: 700px;
    margin: 0 auto;
}

/* =====================================================
   SSS BÖLÜMÜ
   ===================================================== */
.faq-section {
    max-width: 850px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(35, 35, 40, 0.95) 0%, rgba(28, 28, 33, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(221, 71, 145, 0.4);
}

.faq-item[open] {
    border-color: rgba(221, 71, 145, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 25px;
    cursor: pointer;
    list-style: none;
    transition: all 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: linear-gradient(135deg, #dd4791 0%, #534fe0 100%);
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 15px 25px 25px;
    animation: fadeSlideDown 0.3s ease;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: #bbb;
    margin: 0;
    padding-left: 10px;
    border-left: 3px solid rgba(221, 71, 145, 0.5);
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   RESPONSIVE - TABLET
   ===================================================== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 36px;
    }

    .feature-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .intro-text {
        padding: 30px;
    }
}

/* =====================================================
   RESPONSIVE - MOBİL
   ===================================================== */
@media (max-width: 768px) {
    .fanchaty-homepage-content {
        padding: 40px 15px;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 28px;
    }

    .title-highlight {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }

    .intro-text {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .intro-text p {
        font-size: 15px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-card h3 {
        font-size: 17px;
    }

    .testimonials-title {
        font-size: 20px;
    }

    .testimonial-card {
        padding: 20px 25px;
    }

    .quote-mark {
        font-size: 40px;
        top: 10px;
        left: 15px;
    }

    .testimonial-text {
        font-size: 14px;
        padding-left: 30px;
    }

    .testimonial-author {
        padding-left: 30px;
    }

    .cta-section {
        padding: 30px 25px;
    }

    .cta-section h3 {
        font-size: 20px;
    }

    .faq-item summary {
        padding: 18px 20px;
    }

    .faq-question {
        font-size: 15px;
    }

    .faq-answer {
        padding: 15px 20px 20px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .ai-experience-section {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }

    .intro-text p {
        font-size: 14px;
    }

    .feature-card h3 {
        font-size: 16px;
    }

    .feature-card p {
        font-size: 13px;
    }
}


/* =====================================================
   FOOTER TASARIMI
   ===================================================== */

/* =====================================================
   MASAÜSTÜ FOOTER
   ===================================================== */
.fanchaty-footer-new.desktop-footer {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #0d0d0f 0%, #141418 50%, #0d0d0f 100%);
    border-top: 1px solid rgba(221, 71, 145, 0.2);
    position: relative;
    overflow: hidden;
}

.fanchaty-footer-new.desktop-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #dd4791 20%, #534fe0 50%, #dd4791 80%, transparent 100%);
}

.fanchaty-footer-new .footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 70px 40px 30px;
}

.fanchaty-footer-new .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

/* Logo & Açıklama */
.fanchaty-footer-new .footer-brand {
    padding-right: 20px;
}

.fanchaty-footer-new .footer-logo {
    max-width: 160px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(1.05);
}

.fanchaty-footer-new .footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #999;
    margin: 0 0 20px 0;
}

.fanchaty-footer-new .footer-secure {
    margin-top: 15px;
}

.fanchaty-footer-new .secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #8fd1ff;
    background: rgba(143, 209, 255, 0.1);
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid rgba(143, 209, 255, 0.2);
}

/* Footer Sütunları */
.fanchaty-footer-new .footer-column {}

.fanchaty-footer-new .footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    position: relative;
    padding-bottom: 12px;
}

.fanchaty-footer-new .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #dd4791, #534fe0);
    border-radius: 1px;
}

.fanchaty-footer-new .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fanchaty-footer-new .footer-links li {
    margin-bottom: 12px;
}

.fanchaty-footer-new .footer-links a {
    font-size: 14px;
    color: #888;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.fanchaty-footer-new .footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #dd4791;
    transition: width 0.3s ease;
}

.fanchaty-footer-new .footer-links a:hover {
    color: #dd4791;
}

.fanchaty-footer-new .footer-links a:hover::before {
    width: 100%;
}

.fanchaty-footer-new .footer-links a.coming-soon {
    color: #666;
}

.fanchaty-footer-new .footer-links a.coming-soon span {
    font-size: 11px;
    font-style: italic;
    opacity: 0.7;
    margin-left: 5px;
}

/* Ödeme İkonları */
.fanchaty-footer-new .footer-payment {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fanchaty-footer-new .payment-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fanchaty-footer-new .payment-img {
    max-height: 32px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.fanchaty-footer-new .payment-img:hover {
    opacity: 1;
}

/* Alt Bilgi */
.fanchaty-footer-new .footer-bottom {
    padding-top: 25px;
    padding-bottom: 0;
    margin-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.fanchaty-footer-new.desktop-footer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.fanchaty-footer-new .copyright {
    font-size: 13px;
    color: #555;
    margin: 0;
}

/* =====================================================
   MOBİL FOOTER
   ===================================================== */
.fanchaty-footer-new.mobile-footer {
    display: none;
    width: 100%;
    background: linear-gradient(180deg, #0d0d0f 0%, #111114 100%);
    border-top: 1px solid rgba(221, 71, 145, 0.2);
}

.fanchaty-footer-new.mobile-footer .footer-container {
    padding: 50px 20px 25px;
}

/* Mobil Logo */
.fanchaty-footer-new .mobile-brand {
    text-align: center;
    margin-bottom: 35px;
}

.fanchaty-footer-new .mobile-brand .footer-logo {
    max-width: 140px;
    margin: 0 auto 15px;
    display: block;
}

.fanchaty-footer-new .mobile-brand .footer-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #888;
    max-width: 320px;
    margin: 0 auto;
}

/* Mobil Accordion */
.fanchaty-footer-new .mobile-accordion-menu {
    max-width: 400px;
    margin: 0 auto 35px;
}

.fanchaty-footer-new .accordion-section {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.fanchaty-footer-new .accordion-section.active {
    border-color: rgba(221, 71, 145, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.fanchaty-footer-new .accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.fanchaty-footer-new .accordion-trigger span {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.fanchaty-footer-new .accordion-arrow {
    width: 20px;
    height: 20px;
    color: #dd4791;
    transition: transform 0.3s ease;
}

.fanchaty-footer-new .accordion-section.active .accordion-arrow {
    transform: rotate(180deg);
}

.fanchaty-footer-new .accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.fanchaty-footer-new .accordion-section.active .accordion-panel {
    max-height: 200px;
}

.fanchaty-footer-new .accordion-panel a {
    display: block;
    padding: 12px 25px;
    font-size: 14px;
    color: #888;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
}

.fanchaty-footer-new .accordion-panel a:hover {
    color: #dd4791;
    background: rgba(255, 255, 255, 0.03);
    border-left-color: #dd4791;
}

.fanchaty-footer-new .accordion-panel a.coming-soon span {
    font-size: 11px;
    font-style: italic;
    opacity: 0.6;
}

/* Mobil Sosyal Medya */
.fanchaty-footer-new .mobile-social {
    text-align: center;
    margin-bottom: 30px;
}

.fanchaty-footer-new .mobile-social h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 15px 0;
}

.fanchaty-footer-new .social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.fanchaty-footer-new .social-btn {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fanchaty-footer-new .social-btn svg {
    width: 22px;
    height: 22px;
}

.fanchaty-footer-new .social-btn:hover {
    background: linear-gradient(135deg, #dd4791, #534fe0);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(221, 71, 145, 0.3);
}

/* Mobil Ödeme */
.fanchaty-footer-new .mobile-payment {
    text-align: center;
    margin-bottom: 25px;
}

.fanchaty-footer-new .mobile-payment h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px 0;
}

.fanchaty-footer-new .mobile-payment .payment-img {
    max-height: 36px;
}

/* Mobil Copyright */
.fanchaty-footer-new .mobile-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fanchaty-footer-new .mobile-copyright p {
    font-size: 12px;
    color: #555;
    margin: 0 0 10px 0;
}

.fanchaty-footer-new .mobile-copyright .secure-badge {
    font-size: 12px;
}

/* =====================================================
   FOOTER RESPONSIVE
   ===================================================== */
@media (max-width: 1200px) {
    .fanchaty-footer-new .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 40px;
    }

    .fanchaty-footer-new .footer-grid .footer-column:last-child {
        grid-column: span 1;
    }
}

@media (max-width: 1024px) {
    .fanchaty-footer-new .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }

    .fanchaty-footer-new .footer-brand {
        grid-column: span 2;
        text-align: center;
        padding-right: 0;
    }

    .fanchaty-footer-new .footer-brand .footer-logo {
        margin: 0 auto 20px;
    }

    .fanchaty-footer-new .footer-brand .footer-desc {
        max-width: 500px;
        margin: 0 auto 20px;
    }

    .fanchaty-footer-new .footer-brand .footer-secure {
        text-align: center;
    }

    .fanchaty-footer-new .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .fanchaty-footer-new .footer-column {
        text-align: center;
    }

    .fanchaty-footer-new .footer-links a::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .fanchaty-footer-new .footer-payment {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .fanchaty-footer-new.desktop-footer {
        display: none;
    }

    .fanchaty-footer-new.mobile-footer {
        display: block;
    }
}

@media (max-width: 380px) {
    .fanchaty-footer-new .accordion-trigger {
        padding: 14px 16px;
    }

    .fanchaty-footer-new .accordion-trigger span {
        font-size: 14px;
    }

    .fanchaty-footer-new .social-btn {
        width: 42px;
        height: 42px;
    }

    .fanchaty-footer-new .social-btn svg {
        width: 20px;
        height: 20px;
    }
}





/* Mobil Footer Alt Boşluk Düzeltme */
.fanchaty-footer-new.mobile-footer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.fanchaty-footer-new.mobile-footer .footer-container {
    padding-bottom: 20px !important;
}

.fanchaty-footer-new .mobile-copyright {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.fanchaty-footer-new .mobile-copyright .secure-badge {
    margin-bottom: 0 !important;
}

/* Elementor container override */
.elementor-widget-container:has(.fanchaty-footer-new) {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

footer.fanchaty-footer-new.mobile-footer {
    margin: 0 !important;
    padding: 0 !important;
}

footer.fanchaty-footer-new.mobile-footer .footer-container {
    padding: 50px 20px 20px !important;
}