/* =========================================
   WEBGUIDE GET QUOTE - PAGE SPECIFIC CSS
   ========================================= */

/* Hero bölümü 'webguide-money-page.css' üzerinden stil alıyor. */

/* =========================================
   1. ABOUT US SECTION (BİZ KİMİZ?)
   ========================================= */
.about-us-section {
    padding: 6rem 0;
    background-color: #fff;
    border-top: 1px solid var(--clr-border);
}

/* Grid Layout (Seo Split Layout ile aynı yapıda) */
.seo-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Sol: Görsel */
.seo-visual-col .faq-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid var(--clr-border);
}

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

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

/* Sağ: İçerik */
.seo-content-col {
    padding-left: 1rem;
}

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

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

/* Özellik Listesi (PHP'de seo-features-list kullanıldı) */
.seo-features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    display: grid;
    gap: 1rem;
}

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

.feature-icon {
    font-size: 1.2rem;
}

/* =========================================
   2. HİZMETLER SECTION (ALL SERVICES)
   ========================================= */
.all-services-section {
    padding: 6rem 0;
    background-color: #f8fafc;
    border-top: 1px solid var(--clr-border);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--clr-secondary);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--clr-text-light);
}

/* Grid Yapısı (PHP'de curriculum-grid kullanıldı) */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Hizmet Kartı (PHP'de curriculum-card kullanıldı) */
.curriculum-card {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none !important; /* Link olduğu için */
    color: inherit;
    height: 100%;
}

.curriculum-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.08);
    border-color: var(--clr-primary);
}

.card-icon {
    width: 50px;
    height: 50px;
    background-color: var(--clr-surface);
    color: var(--clr-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.curriculum-card:hover .card-icon {
    background-color: var(--clr-primary);
    color: #fff;
    transform: rotate(5deg) scale(1.1);
}

.card-icon svg { width: 24px; height: 24px; stroke-width: 1.5; }

.curriculum-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--clr-secondary);
    margin-bottom: 0.8rem;
    transition: color 0.2s;
}

.curriculum-card:hover h3 {
    color: var(--clr-primary);
}

.curriculum-card p {
    font-size: 0.9rem;
    color: var(--clr-text-light);
    line-height: 1.5;
    margin: 0;
}

/* =========================================
   3. NEDEN BİZ? SECTION (WHY CHOOSE US)
   ========================================= */
.why-choose-us-section {
    padding: 6rem 0;
    background-color: #fff;
    border-top: 1px solid var(--clr-border);
}

/* Grid (PHP'de advantages-grid kullanıldı) */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

/* Kart (PHP'de advantage-card kullanıldı) */
.advantage-card {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advantage-card:hover {
    border-color: var(--clr-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

/* İkon (PHP'de adv-icon-box kullanıldı) */
.adv-icon-box {
    width: 64px;
    height: 64px;
    background-color: var(--clr-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--clr-primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.advantage-card:hover .adv-icon-box {
    background-color: var(--clr-primary);
    color: #fff;
    transform: scale(1.1);
}

.adv-icon-box svg { width: 32px; height: 32px; }

.adv-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-secondary);
    margin-bottom: 1rem;
}

.adv-content p {
    font-size: 0.95rem;
    color: var(--clr-text-light);
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .seo-split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .seo-content-col { padding-left: 0; text-align: center; }
    .seo-features-list { justify-content: center; }

    .curriculum-grid, 
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .curriculum-grid, 
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .seo-title, .section-title {
        font-size: 2rem;
    }
}