/* ==========================================================================
   WEBGUIDE MONEY PAGES (ORTAK HİZMET SAYFASI STİLLERİ)
   ========================================================================== */

.money-page-container {
    padding-top: 0; /* Header ile Hero arasındaki dış boşluk kaldırıldı */
    padding-bottom: 5rem;
    overflow-x: hidden;
}

/* --- Money Hero Section --- */
.money-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin-top: 0;
    padding-top: 1rem; 
}

.money-hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

/* H1 Typography */
.money-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--clr-secondary);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

/* Typewriter Area */
.money-typewriter {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--clr-primary);
    margin-bottom: 2rem;
    min-height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: monospace, var(--font-main);
}

.cursor {
    display: inline-block;
    width: 3px;
    background-color: var(--clr-primary);
    animation: moneyBlink 1s infinite;
    margin-left: 5px;
}

@keyframes moneyBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Description Text */
.money-hero-desc {
    font-size: 1.15rem;
    color: var(--clr-text-light);
    line-height: 1.7;
    margin-bottom: 3rem;
    font-weight: 400;
}

.money-hero-desc strong {
    color: var(--clr-secondary);
    font-weight: 700;
}

/* Actions */
.money-hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* =========================================
   FAQ SECTION (SIKÇA SORULAN SORULAR)
   ========================================= */
.money-faq-section {
    padding: 6rem 0;
    background-color: #fff;
    border-top: 1px solid var(--clr-border);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center; 
}

/* Sol: Görsel */
.faq-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.faq-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.faq-image-wrapper:hover img {
    transform: scale(1.03);
}

.faq-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--clr-primary-light);
    border-radius: 50%;
    z-index: -1;
}

/* Sağ: İçerik */
.faq-content-col .section-title {
    margin-bottom: 1rem;
    color: var(--clr-secondary);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--clr-text-light);
    margin-bottom: 2.5rem;
}

/* Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--clr-primary);
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.08);
}

.faq-header {
    width: 100%;
    padding: 1.5rem;
    background: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-secondary);
    margin: 0;
    padding-right: 1rem;
}

.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Artı (+) İkonu */
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: var(--clr-primary);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.faq-icon::before { width: 2px; height: 16px; } 
.faq-icon::after { width: 16px; height: 2px; } 

/* Aktif Durumda Eksi (-) Olsun */
.faq-item.active .faq-icon::before {
    transform: translate(-50%, -50%) rotate(90deg); 
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fff;
}

.faq-body p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--clr-text);
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   PRICING SECTION (ORTAK KULLANIM)
   ========================================= */
.seo-pricing-section {
    padding: 6rem 0;
    background-color: #fff;
    border-top: 1px solid #f1f3f4;
}

.text-center { text-align: center; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    align-items: stretch; 
}

/* Pricing Card */
.pricing-card {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; 
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px rgba(0,0,0,0.08);
}

/* Header */
.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--clr-surface);
}

.plan-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--clr-secondary);
    margin-bottom: 1rem;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 5px;
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.plan-price .period {
    font-size: 1rem;
    color: var(--clr-text-light);
    align-self: flex-end;
    margin-bottom: 5px;
    margin-left: 5px;
}

.plan-desc {
    font-size: 0.95rem;
    color: var(--clr-text-light);
    line-height: 1.5;
    margin: 0;
}

/* Features List */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--clr-text);
    margin-bottom: 1rem;
}

.plan-features li.disabled {
    color: #cbd5e1;
    text-decoration: line-through;
}

.check-icon { color: #059669; font-weight: 800; }
.cross-icon { color: #cbd5e1; font-weight: 800; }

/* Footer & Button */
.pricing-footer {
    margin-top: auto;
}

.btn.full-width {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* --- POPULAR CARD (Öne Çıkan) --- */
.pricing-card.popular {
    border-color: var(--clr-primary);
    box-shadow: 0 10px 40px -10px rgba(255, 87, 34, 0.15);
    z-index: 2;
    position: relative;
    top: -10px;
}

.pricing-card.popular:hover {
    transform: translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--clr-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* =========================================
   ONE-TIME SERVICES SLIDER
   ========================================= */
.one-time-slider-section {
    padding: 6rem 0;
    overflow: hidden; 
}

/* Navigasyon Butonları */
.slider-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--clr-border);
    color: var(--clr-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.nav-btn:hover {
    background: var(--clr-primary);
    color: #fff;
    border-color: var(--clr-primary);
}

/* Slider Track */
.one-time-slider-container { width: 100%; }

.one-time-slider-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.one-time-slider-track::-webkit-scrollbar { display: none; }

/* Slider Kartı */
.one-time-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    height: auto; 
    min-height: 380px;
}

/* =========================================
   REVIEWS SECTION (YORUMLAR)
   ========================================= */
.money-reviews-section {
    padding: 6rem 0;
    background-color: #f8fafc;
    border-top: 1px solid var(--clr-border);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Sol: Form */
.review-form-col {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--clr-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.review-form {
    margin-top: 2rem;
}

/* Yıldız Oylama (Input) */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    font-size: 1.5rem;
    color: #cbd5e1;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating-input input:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
    color: #fbbf24; /* Altın Sarısı */
}

/* Sağ: Yorum Listesi (Vertical Slider) */
.approved-reviews-col {
    padding-top: 1rem;
}

.reviews-list-title {
    font-size: 1.5rem;
    color: var(--clr-secondary);
    margin-bottom: 2rem;
    font-weight: 800;
}

.reviews-slider-container {
    height: 600px; /* Görünür alan yüksekliği */
    overflow: hidden;
    position: relative;
    /* Üst ve alt için maskeleme efekti */
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.reviews-track {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: scrollUp 20s linear infinite;
    padding: 1rem 0; 
}

/* Yorumun üzerine gelince akışı durdur */
.reviews-slider-container:hover .reviews-track {
    animation-play-state: paused;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); } /* İçerik kopyalanmışsa %50, değilse %100 */
}

/* Yorum Kartı */
.review-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--clr-border);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-author-name {
    display: block;
    font-weight: 700;
    color: var(--clr-secondary);
    font-size: 1rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--clr-text-light);
}

.review-rating {
    color: #fbbf24;
    letter-spacing: 2px;
}

.review-text p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--clr-text);
    line-height: 1.5;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        gap: 3rem;
    }

    .pricing-card.popular {
        top: 0; 
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .faq-image-col {
        order: -1; 
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .reviews-slider-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .money-hero { min-height: auto; padding: 3rem 0; }
    .money-hero-title { font-size: 2.5rem; }
    .money-typewriter { font-size: 1.3rem; flex-direction: column; }
    .money-hero-desc { font-size: 1rem; }
    
    /* GÜNCELLEME: Mobil Buton Düzeltmesi */
    .money-hero-actions { 
        flex-direction: column; 
        align-items: center; /* Butonları ortala */
        width: 100%;
        gap: 1rem; /* Butonlar arası boşluk */
    }
    
    /* Buton Genişlik Kontrolü */
    .money-hero-actions .btn {
        width: auto !important; /* İçeriğe göre genişlik */
        min-width: 200px; /* Çok dar olmasın */
        display: inline-flex !important;
        box-sizing: border-box;
    }
    
    .one-time-card {
        flex: 0 0 85%;
    }
}