/* =========================================================
   WEBSITE DEVELOPMENT – PREMIUM SERVICE PAGE (DEVMIXA)
   ========================================================= */

/* ---------- ROOT ---------- */
.website-development {
    --primary: #4f46e5;     /* Indigo premium */
    --dark: #0f172a;        /* Slate dark */
    --text: #334155;        /* Soft dark text */
    --muted: #64748b;
    --bg-light: #f8fafc;
    --border: #e5e7eb;
}

/* ---------- GLOBAL ---------- */
.website-development h1,
.website-development h2,
.website-development h3 {
    color: var(--dark);
    letter-spacing: -0.4px;
}

.website-development p,
.website-development li {
    color: var(--text);
    line-height: 1.75;
    font-size: 16px;
}

.website-development section {
    padding: 70px 0;
}

.website-development .bg-light {
    background: var(--bg-light);
}

/* ---------- HERO ---------- */
.website-development .hero-inner {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    padding: 90px 0;
}

.website-development .hero-inner h1 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 12px;
}

.website-development .hero-subtitle {
    color: #cbd5f5;
    font-size: 18px;
    max-width: 620px;
}

.website-development .page-tag {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    color: #e0e7ff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}

/* ---------- BUTTON ---------- */
.website-development .btn-primary {
    display: inline-block;
    margin-top: 25px;
    background: var(--primary);
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

.website-development .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79,70,229,0.35);
}

/* ---------- CONTAINERS ---------- */
.website-development .container.narrow {
    max-width: 880px;
}

/* ---------- GRID / CARDS ---------- */
.website-development .grid {
    display: grid;
    gap: 26px;
}

.website-development .grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.website-development .card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    transition: all 0.3s ease;
}

.website-development .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(15,23,42,0.08);
}

.website-development .card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* ---------- FEATURE LIST ---------- */
.website-development .feature-list {
    list-style: none;
    padding-left: 0;
    margin-top: 25px;
}

.website-development .feature-list li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

.website-development .feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: bold;
}

/* ---------- COMPARISON ---------- */
.website-development .comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.website-development .comparison > div {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 30px;
}

.website-development .comparison h3 {
    margin-bottom: 15px;
}

/* ---------- PROCESS ---------- */
.website-development .process {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.website-development .process-step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
}

.website-development .process-step span {
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    margin-bottom: 12px;
}

/* ---------- FAQ ---------- */
.website-development .faq h3 {
    margin-top: 28px;
    font-size: 17px;
}

.website-development .faq p {
    margin-top: 8px;
    color: var(--muted);
}

/* ---------- CTA ---------- */
.website-development .cta {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
    color: #fff;
    border-radius: 24px;
    padding: 80px 30px;
    text-align: center;
}

.website-development .cta h2 {
    color: #fff;
}

.website-development .cta p {
    color: #e0e7ff;
    max-width: 650px;
    margin: 15px auto 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    .website-development .grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .website-development .process {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .website-development section {
        padding: 55px 0;
    }

    .website-development .grid-3,
    .website-development .comparison,
    .website-development .process {
        grid-template-columns: 1fr;
    }

    .website-development .hero-inner h1 {
        font-size: 30px;
    }
}
