/* =========================================
   WEBGUIDE SEO SERVICE - PAGE SPECIFIC CSS
   ========================================= */

.seo-animation-section {
    padding: 6rem 0;
    background-color: #fff;
    overflow: hidden;
}

/* --- Layout Grid --- */
.seo-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.seo-content-col {
    padding-right: 2rem;
}

/* Typography */
.seo-subtitle {
    display: inline-block;
    color: var(--clr-primary);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.seo-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--clr-secondary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* --- Daire Animasyonu (Highlight Circle) --- */
.highlight-circle {
    position: relative;
    display: inline-block;
    color: var(--clr-primary);
    z-index: 1;
}

.highlight-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 110%;
    height: 110%;
    border: 3px solid var(--clr-primary);
    border-radius: 60% 40% 50% 70% / 60% 50% 70% 40%; /* Elips efekti */
    opacity: 0;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Animasyon: Sayfa yüklendiğinde veya hover'da tetiklenebilir.
   Burada sürekli bir pulse yerine ilk girişte tetiklenen bir efekt veriyoruz. */
.seo-animation-section:hover .highlight-circle::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    animation: wobbleBorder 4s infinite linear;
}

@keyframes wobbleBorder {
    0% { border-radius: 60% 40% 50% 70% / 60% 50% 70% 40%; }
    50% { border-radius: 40% 60% 70% 50% / 50% 60% 40% 70%; }
    100% { border-radius: 60% 40% 50% 70% / 60% 50% 70% 40%; }
}

.seo-desc {
    font-size: 1.1rem;
    color: var(--clr-text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* --- Modern Liste Tasarımı (SVG İkonlu) --- */
.seo-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: grid;
    gap: 1.2rem;
}

.seo-features-list li {
    font-weight: 600;
    color: var(--clr-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--clr-surface);
    color: var(--clr-primary);
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.seo-features-list li:hover .feature-icon {
    background-color: var(--clr-primary);
    color: #fff;
    transform: rotate(10deg);
}

/* --- SEO Demo Wrapper --- */
.seo-demo-wrapper {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 60px -15px rgba(0,0,0,0.1); /* Yumuşak derin gölge */
    position: relative;
    padding: 2rem;
    border: 1px solid #f1f3f4;
    min-height: 600px;
    max-width: 100%; 
}

/* --- Google Mock Header --- */
.google-mock-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #f1f3f4;
    padding-bottom: 1.5rem;
}

.g-logo {
    font-family: 'Product Sans', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    user-select: none;
}

.g-search-bar {
    width: 100%;
    max-width: 600px;
    height: 46px;
    border-radius: 24px;
    border: 1px solid #dfe1e5;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 1px 6px rgba(32,33,36,.28);
    font-size: 1rem;
    color: #333;
    justify-content: space-between;
}

.search-icon { color: #4285f4; }

/* --- SERP List --- */
.serp-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.serp-item {
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.5s ease;
    position: relative;
    background: #fff;
    border: 1px solid transparent;
}

.serp-url {
    display: block;
    color: #202124;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.serp-title {
    display: block;
    color: #1a0dab;
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0 0 0.3rem 0;
    line-height: 1.3;
    cursor: pointer;
}

.serp-title:hover { text-decoration: underline; }

.serp-desc {
    color: #4d5156;
    font-size: 0.9rem;
    line-height: 1.58;
    margin: 0;
}

/* --- Your Site Styles --- */
.your-site {
    border: 2px solid var(--clr-primary);
    background: #fff7ed;
    z-index: 10;
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.1);
}

.your-site .serp-title {
    font-weight: 700;
    color: var(--clr-primary);
}

.rank-badge {
    position: absolute;
    right: 1rem;
    top: -10px;
    background: var(--clr-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* --- Success Message Overlay (GÜNCELLENDİ: Bildirim Kartı) --- */
.success-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    width: auto;
    height: auto;
    background: transparent;
    pointer-events: none;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.success-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background: #fff;
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px -5px rgba(0,0,0,0.2);
    border-left: 5px solid #059669; /* Yeşil şerit */
    max-width: 300px;
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.success-overlay.visible .success-content {
    transform: translateX(0);
    opacity: 1;
}

.check-icon {
    width: 32px;
    height: 32px;
    background: #ecfdf5; /* Açık yeşil */
    color: #059669;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 0.8rem;
}

.success-title {
    display: block;
    font-size: 1.1rem;
    color: var(--clr-secondary);
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.success-content p {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    line-height: 1.4;
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .seo-split-layout {
        display: flex;
        flex-direction: column-reverse; /* Mobilde Animasyon Üstte */
        gap: 3rem;
    }
    
    .seo-content-col {
        padding-right: 0;
        text-align: center;
    }
    
    .seo-features-list {
        justify-content: center;
    }
    
    .seo-demo-wrapper {
        min-height: 500px;
        padding: 1.5rem;
    }
    
    .g-search-bar {
        font-size: 0.9rem;
    }
    
    .serp-title {
        font-size: 1.1rem;
    }
    
    /* Mobilde başarı mesajını ortala */
    .success-overlay {
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        display: flex;
        justify-content: center;
    }
    
    .success-content {
        max-width: 100%;
        transform: translateY(-20px);
    }
    
    .success-overlay.visible .success-content {
        transform: translateY(0);
    }
}
/* =========================================
   PRICING SECTION (GÜNCELLENDİ)
   ========================================= */
.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;
    /* Kartların yüksekliklerinin eşit olması için stretch kullanılır */
    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;
    /* Kartın grid hücresini tamamen kaplamasını sağlar */
    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; /* İçeriği iterek footer'ı alta yapıştırır */
}

.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; /* Yeşil */
    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;
    /* Scale efekti yerine border ve shadow ile vurgu yapıyoruz ki hizalar bozulmasın */
    position: relative;
    top: -10px; /* Diğerlerinden hafif yukarıda */
}

.pricing-card.popular:hover {
    transform: translateY(-5px); /* Kendi pozisyonundan yukarı */
}

.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;
}

/* 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; /* Mobilde hizayı sıfırla */
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}
/* =========================================
   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;
}

/* Responsive */
@media (max-width: 768px) {
    .one-time-card {
        flex: 0 0 85%;
    }
}