/*
 * iStudio Technologies - SEO Service Pages Stylesheet
 * This CSS is loaded ONLY on pages using the "SEO Service Page" template.
 * All styles are scoped under .istudio-page to prevent conflicts.
 */

/* Base */
.istudio-page {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.7;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.istudio-page h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a5f;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid #f7941d;
    display: inline-block;
}
.istudio-page h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e3a5f;
    margin-top: 24px;
    margin-bottom: 10px;
}
.istudio-page p {
    font-size: 15px;
    color: #444;
    margin-bottom: 16px;
    line-height: 1.9;
}
.istudio-page .highlight-keyword {
    color: #1e3a5f;
    font-weight: 600;
}

/* Hero Section */
.istudio-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8e 100%);
    padding: 50px 40px;
    border-radius: 16px;
    color: #fff;
    margin-bottom: 40px;
}
.istudio-hero h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}
.istudio-hero h1 span { color: #f7941d; }
.istudio-hero p { color: rgba(255,255,255,0.9); font-size: 16px; }
.istudio-hero .hero-cta {
    display: inline-block;
    background: #f7941d;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 16px;
    transition: transform 0.2s;
}
.istudio-hero .hero-cta:hover { transform: scale(1.05); }

/* Engagement Questions */
.istudio-page .engagement-q {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left: 4px solid #f7941d;
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 10px 10px 0;
    font-size: 16px;
    font-weight: 500;
    color: #1e3a5f;
    font-style: italic;
}

/* Feature Cards */
.istudio-page .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 24px 0;
}
.istudio-page .feature-card {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s;
}
.istudio-page .feature-card:hover {
    border-color: #f7941d;
    box-shadow: 0 6px 20px rgba(30,58,95,0.08);
    transform: translateY(-2px);
}
.istudio-page .feature-card h4 {
    font-size: 15px;
    color: #1e3a5f;
    margin-bottom: 8px;
}
.istudio-page .feature-card h4 .icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: rgba(247,148,29,0.1);
    border-radius: 8px;
    text-align: center;
    line-height: 32px;
    margin-right: 8px;
}
.istudio-page .feature-card p {
    font-size: 13px;
    color: #555;
    margin: 0;
    line-height: 1.7;
}

/* Bullet List with Descriptions */
.istudio-page .bullet-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.istudio-page .bullet-list li {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.istudio-page .bullet-list li:last-child { border-bottom: none; }
.istudio-page .bullet-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #f7941d, #ff6b35);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
.istudio-page .bullet-content h5 {
    font-size: 15px;
    color: #1e3a5f;
    margin-bottom: 4px;
}
.istudio-page .bullet-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Tables */
.istudio-page table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.istudio-page th {
    background: #1e3a5f;
    color: #fff;
    padding: 14px 18px;
    text-align: left;
    font-size: 14px;
}
.istudio-page td {
    padding: 12px 18px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}
.istudio-page tr:nth-child(even) td { background: #f8f9fa; }
.istudio-page tr:hover td { background: #fff3e0; }

/* FAQ */
.istudio-page .faq-item {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 10px;
    margin-bottom: 12px;
    padding: 18px 22px;
    transition: border-color 0.2s;
}
.istudio-page .faq-item:hover { border-color: #f7941d; }
.istudio-page .faq-item h3 {
    font-size: 15px;
    color: #1e3a5f;
    margin-bottom: 8px;
    margin-top: 0;
}
.istudio-page .faq-item h3::before {
    content: 'Q. ';
    color: #f7941d;
    font-weight: 700;
}
.istudio-page .faq-item p { font-size: 14px; color: #555; margin: 0; }

/* Why Choose / Stats Cards */
.istudio-page .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 20px 0;
}
.istudio-page .why-card {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: #f8f9fa;
    border: 1px solid #e8ecf0;
}
.istudio-page .why-card .number { font-size: 32px; font-weight: 800; color: #f7941d; }
.istudio-page .why-card h4 { font-size: 13px; color: #1e3a5f; margin: 6px 0 4px; }
.istudio-page .why-card p { font-size: 12px; color: #666; margin: 0; }

/* Process Steps */
.istudio-page .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
    margin: 24px 0;
}
.istudio-page .process-step {
    text-align: center;
    padding: 18px 12px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8ecf0;
}
.istudio-page .process-step .step-num {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, #f7941d, #ff6b35);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
}
.istudio-page .process-step h5 { font-size: 12px; color: #1e3a5f; margin-bottom: 4px; }
.istudio-page .process-step p { font-size: 11px; color: #666; margin: 0; }

/* Dos and Don'ts */
.istudio-page .dos-donts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}
.istudio-page .dos-col h4 {
    background: #e8f5e9; color: #2e7d32;
    padding: 10px 16px; border-radius: 8px;
    font-size: 16px; margin-bottom: 12px;
}
.istudio-page .donts-col h4 {
    background: #fbe9e7; color: #c62828;
    padding: 10px 16px; border-radius: 8px;
    font-size: 16px; margin-bottom: 12px;
}
.istudio-page .dos-col ul, .istudio-page .donts-col ul { list-style: none; padding: 0; }
.istudio-page .dos-col li, .istudio-page .donts-col li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #444;
}

/* CTA Section */
.istudio-page .cta-box {
    background: linear-gradient(135deg, #1e3a5f, #2d5a8e);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    color: #fff;
    margin: 40px 0;
}
.istudio-page .cta-box h2 { color: #fff; border: none; display: block; margin-top: 0; }
.istudio-page .cta-box p { color: rgba(255,255,255,0.9); }
.istudio-page .cta-btn {
    display: inline-block;
    background: #f7941d;
    color: #fff;
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-top: 16px;
    transition: all 0.2s;
}
.istudio-page .cta-btn:hover { background: #e8850f; }

/* Responsive */
@media (max-width: 768px) {
    .istudio-page .dos-donts { grid-template-columns: 1fr; }
    .istudio-page .feature-grid { grid-template-columns: 1fr; }
    .istudio-hero h1 { font-size: 22px; }
    .istudio-page h2 { font-size: 20px; }
    .istudio-hero { padding: 30px 20px; }
}
