/* -------------------------
   Design Tokens
-------------------------- */
:root {
    --primary: #1f6ae1;
    --primary-dark: #1554b2;
    --text-dark: #111827;
    --text-muted: #6b7280;
    --bg-light: #f9fafb;
    --bg-card: #ffffff;
    --border-soft: #e5e7eb;
    --radius-lg: 16px;
    --radius-md: 12px;
    --shadow-sm: 0 6px 20px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* -------------------------
   Reset & Base
-------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.7;
}

.container {
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: 24px;
}

/* -------------------------
   Hero Section
-------------------------- */

.service-hero {
    /* background-color: #ff9800; */
    padding: 180px 20px;
    background:#ff9800
       /*  radial-gradient(80% 80% at 0% 0%, #ff9800 0%, transparent 60%),
        radial-gradient(80% 80% at 100% 100%, #ff9800 0%, transparent 60%),
        linear-gradient(180deg, #ff9800 0%, #ffffff 100%);
 */
}

/* subtle texture overlay */
  /* .service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(2px);
    mix-blend-mode: soft-light;
  } */

.service-hero h1 {
    font-size: clamp(2.4rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.service-hero h2 {
    font-size: 1.35rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 24px;
}

.service-hero p {
    max-width: 760px;
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* -------------------------
   Sections
-------------------------- */
.service-section {
    padding: 88px 0;
}

.light-bg {
    background-color: var(--bg-light);
}

.service-section h2 {
    font-size: 2.1rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin-bottom: 36px;
}

.service-section h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 28px;
}

.service-section p {
    font-size: 1rem;
    color: var(--text-muted);
}



/* -------------------------
   Feature Cards
-------------------------- */
.features1 {
    background: #ffffff;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.features {
    background: #ffffff;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary);
}

/* -------------------------
   Horizontal Timeline
-------------------------- */
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    position: relative;
    padding-top: 40px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--border-soft),
        transparent
    );
}

.timeline li {
    position: relative;
    text-align: center;
    padding: 24px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
}

.step-dot {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: -48px auto 12px;
    box-shadow: 0 10px 20px rgba(31, 106, 225, 0.35);
}

.timeline strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.timeline p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Mobile: vertical timeline */
@media (max-width: 768px) {
    .timeline {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        display: none;
    }

    .step-dot {
        margin-top: 0;
    }
}


/* -------------------------
   Benefits
-------------------------- */
.benefits {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 14px;
}

.benefits li {
    position: relative;
    padding-left: 28px;
    font-size: 1rem;
    color: var(--text-muted);
}

.benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
}

/* -------------------------
   FAQ
-------------------------- */
/* -------------------------
   FAQ Accordion
-------------------------- */
.faq-wrapper {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid var(--border-soft);
    padding: 18px 0;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    animation: faqFade 0.3s ease;
}

/* Only one open at a time */
.faq-wrapper details[open] ~ details[open] {
    open: false;
}

@keyframes faqFade {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -------------------------
   Responsive Tweaks
-------------------------- */
@media (max-width: 768px) {
    .service-hero {
        padding: 72px 0;
    }

    .service-section {
        padding: 64px 0;
    }

    .service-section h2 {
        font-size: 1.8rem;
    }
}


ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 6px;
}

ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

ol li {
    margin-bottom: 6px;
}