/* =========================================================
   ANKIT GLOBAL - SERVICE AND LEGAL PAGES
   Add this file after your main style.css in header.php.
========================================================= */

:root {
    --page-brand: #f58220;
    --page-brand-dark: #d86405;
    --page-navy: #102a43;
    --page-text: #334e68;
    --page-muted: #627d98;
    --page-light: #f5f8fb;
    --page-border: #dce6ef;
    --page-white: #ffffff;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 5rem;
    color: var(--page-white);
    background:
        radial-gradient(circle at 85% 20%, rgba(245, 130, 32, 0.28), transparent 28%),
        linear-gradient(135deg, #081f33 0%, #123b5d 65%, #174e75 100%);
}

.page-hero::after {
    position: absolute;
    right: -8rem;
    bottom: -12rem;
    width: 28rem;
    height: 28rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    content: "";
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    max-width: 850px;
    margin: 0 0 1rem;
    font-size: clamp(2.35rem, 5vw, 4.35rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.page-hero p {
    max-width: 760px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.75;
}

.eyebrow,
.section-kicker {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--page-brand);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.page-breadcrumb {
    margin-bottom: 2.5rem;
}

.page-breadcrumb,
.page-breadcrumb a,
.page-breadcrumb .active {
    color: rgba(255, 255, 255, 0.72);
}

.page-breadcrumb a:hover {
    color: var(--page-white);
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.45);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.btn-brand {
    padding: 0.8rem 1.35rem;
    border-color: var(--page-brand);
    color: var(--page-white);
    background: var(--page-brand);
    font-weight: 700;
}

.btn-brand:hover,
.btn-brand:focus {
    border-color: var(--page-brand-dark);
    color: var(--page-white);
    background: var(--page-brand-dark);
}

.content-section {
    padding: 5.5rem 0;
    color: var(--page-text);
}

.content-section h2 {
    margin-bottom: 1rem;
    color: var(--page-navy);
    font-size: clamp(1.75rem, 3vw, 2.45rem);
    font-weight: 800;
    letter-spacing: -0.025em;
}

.content-section p,
.content-section li {
    font-size: 1.04rem;
    line-height: 1.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.feature-card {
    padding: 1.65rem;
    border: 1px solid var(--page-border);
    border-radius: 1rem;
    background: var(--page-white);
    box-shadow: 0 12px 35px rgba(16, 42, 67, 0.06);
}

.feature-card h3,
.process-list h3 {
    margin-bottom: 0.55rem;
    color: var(--page-navy);
    font-size: 1.15rem;
    font-weight: 800;
}

.feature-card p,
.process-list p {
    margin: 0;
    color: var(--page-muted);
    font-size: 0.96rem;
    line-height: 1.7;
}

.quote-card {
    top: 7rem;
    padding: 2rem;
    border-top: 4px solid var(--page-brand);
    border-radius: 1rem;
    background: var(--page-light);
    box-shadow: 0 16px 45px rgba(16, 42, 67, 0.1);
}

.quote-card h2 {
    font-size: 1.75rem;
}

.quote-card p {
    color: var(--page-muted);
    font-size: 0.98rem;
}

.contact-line {
    display: block;
    margin-top: 1rem;
    color: var(--page-navy);
    font-weight: 700;
    text-decoration: none;
}

.contact-line:hover {
    color: var(--page-brand-dark);
}

.process-block,
.notice-box {
    margin-top: 3.5rem;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--page-light);
}

.process-list {
    display: grid;
    gap: 1.25rem;
    margin: 1.75rem 0 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    display: grid;
    grid-template-columns: 3.25rem 1fr;
    gap: 1rem;
    align-items: start;
}

.process-list > li > span {
    display: grid;
    width: 3.25rem;
    height: 3.25rem;
    place-items: center;
    border-radius: 50%;
    color: var(--page-white);
    background: var(--page-navy);
    font-size: 0.85rem;
    font-weight: 800;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem 1.75rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 1.7rem;
}

.check-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--page-brand);
    content: "✓";
    font-weight: 900;
}

.notice-box {
    border-left: 4px solid var(--page-brand);
}

.notice-box h2 {
    font-size: 1.5rem;
}

.notice-box p {
    margin-bottom: 0;
}

.legal-hero {
    padding-bottom: 4rem;
}

.updated-date {
    margin-top: 1.25rem;
    font-size: 0.9rem !important;
}

.legal-content {
    max-width: 920px;
    margin: 0 auto;
}

.legal-content > p:first-child {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--page-border);
    font-size: 1.12rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    font-size: 1.5rem;
}

.legal-content a {
    color: var(--page-brand-dark);
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .page-hero {
        padding: 4.5rem 0 3.75rem;
    }

    .content-section {
        padding: 4rem 0;
    }

    .feature-grid,
    .check-list {
        grid-template-columns: 1fr;
    }

    .quote-card,
    .process-block,
    .notice-box {
        padding: 1.5rem;
    }
}
