/* =========================================================
   WEBSITE DESIGN – PREMIUM SERVICE PAGE (DEVMIXA)
   ========================================================= */

.website-design {
    --primary: #0ea5e9;     /* Sky blue – design vibe */
    --dark: #020617;        /* Deep dark */
    --text: #334155;        /* Soft readable text */
    --muted: #64748b;
    --bg-light: #f1f5f9;
    --border: #e2e8f0;
}

/* ---------- GLOBAL ---------- */
.website-design section {
    padding: 75px 0;
}

.website-design h1,
.website-design h2,
.website-design h3 {
    color: var(--dark);
    letter-spacing: -0.4px;
}

.website-design h1 {
    font-size: 38px;
}

.website-design h2 {
    font-size: 28px;
    margin-bottom: 18px;
}

.website-design h3 {
    font-size: 18px;
}

.website-design p,
.website-design li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.website-design .bg-light {
    background: var(--bg-light);
}

.website-design .container.narrow {
    max-width: 900px;
}

/* ---------- HERO ---------- */
.website-design .hero-inner {
    background: linear-gradient(135deg, #020617, #0f172a);
    color: #fff;
    padding: 95px 0;
}

.website-design .hero-inner h1 {
    color: #fff;
}

.website-design .hero-subtitle {
    color: #cbd5f5;
    font-size: 18px;
    max-width: 650px;
}

.website-design .page-tag {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #e0f2fe;
    margin-bottom: 16px;
}

/* ---------- BUTTON ---------- */
.website-design .btn-primary {
    display: inline-block;
    margin-top: 28px;
    background: var(--primary);
    color: #fff;
    padding: 14px 34px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all .25s ease;
}

.website-design .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 34px rgba(14,165,233,.35);
}

/* ---------- FEATURE LIST ---------- */
.website-design .feature-list {
    list-style: none;
    padding-left: 0;
    margin-top: 25px;
}

.website-design .feature-list li {
    padding-left: 30px;
    margin-bottom: 14px;
    position: relative;
}

.website-design .feature-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-size: 18px;
}

/* ---------- GRID & CARDS ---------- */
.website-design .grid {
    display: grid;
    gap: 28px;
}

.website-design .grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.website-design .card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    transition: all .3s ease;
}

.website-design .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(2,6,23,0.08);
}

.website-design .card h3 {
    margin-bottom: 10px;
}

/* ---------- PROCESS ---------- */
.website-design .process {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.website-design .process-step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 26px;
    text-align: center;
}

.website-design .process-step span {
    display: inline-block;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    margin-bottom: 14px;
}

/* ---------- FAQ ---------- */
.website-design .faq h3 {
    margin-top: 30px;
    font-size: 17px;
}

.website-design .faq p {
    margin-top: 8px;
    color: var(--muted);
}

/* ---------- CTA ---------- */
.website-design .cta {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff;
    padding: 85px 30px;
    border-radius: 26px;
    text-align: center;
}

.website-design .cta h2 {
    color: #fff;
}

.website-design .cta p {
    color: #e0f2fe;
    max-width: 680px;
    margin: 16px auto 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    .website-design .grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .website-design .process {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .website-design section {
        padding: 55px 0;
    }

    .website-design .grid-3,
    .website-design .process {
        grid-template-columns: 1fr;
    }

    .website-design h1 {
        font-size: 30px;
    }
}
