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

:root {
    --primary: #1a56db;
    --primary-dark: #1240a8;
    --primary-light: #e8efff;
    --accent: #ff6b2b;
    --accent-light: #fff3ed;
    --bg: #f8fafc;
    --bg-alt: #f0f4ff;
    --text: #1e293b;
    --text-light: #64748b;
    --border: #e2e8f0;
    --white: #ffffff;
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-sm: 8px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
}

.logo:hover {
    color: var(--primary);
    text-decoration: none;
}

.logo-icon {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
    text-decoration: none;
}

.mobile-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-sm);
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, #1a56db 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    padding: 8rem 0 5rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero .highlight {
    color: #fbbf24;
}

.hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.search-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.search-box input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    outline: none;
}

.search-box button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}

.search-box button:hover {
    background: #e55a1b;
}

.quick-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.quick-links span {
    opacity: 0.7;
}

.quick-links a {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}

.quick-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
}

/* ===== Sections ===== */
.section {
    padding: 4rem 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

/* ===== Service Cards (Accordion) ===== */
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
}

.service-card.search-highlight {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(255, 107, 43, 0.2);
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
}

.service-header:hover {
    background: var(--bg);
}

.service-title-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.service-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.service-tagline {
    color: var(--text-light);
    font-size: 0.88rem;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-light);
    flex-shrink: 0;
    transition: transform 0.3s;
    width: 28px;
    text-align: center;
}

.service-body {
    display: none;
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid var(--border);
    animation: slideDown 0.3s ease;
}

.service-card.open .service-body {
    display: block;
}

.service-card.open .toggle-icon {
    transform: rotate(45deg);
}

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

/* ===== Info Grid ===== */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 1.25rem 0;
}

.info-box {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
}

.info-box h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.info-box ul {
    list-style: none;
}

.info-box li {
    padding: 0.35rem 0;
    font-size: 0.92rem;
    position: relative;
    padding-left: 1.2rem;
}

.info-box li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

/* ===== Steps ===== */
.steps {
    margin: 1.25rem 0;
}

.steps h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.93rem;
    line-height: 1.5;
}

.step-num {
    background: var(--primary);
    color: white;
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ===== Pro Tip ===== */
.pro-tip {
    background: var(--accent-light);
    border-left: 4px solid var(--accent);
    padding: 1rem 1.25rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.92rem;
    margin-top: 1rem;
}

/* ===== Job Cards Grid ===== */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.job-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: box-shadow 0.3s, transform 0.2s;
}

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

.job-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.job-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    margin-right: 0.5rem;
    margin-bottom: 0.4rem;
}

.btn:hover {
    background: var(--primary-dark);
    color: white;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* ===== Other Services Grid ===== */
.other-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.other-service {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: var(--text);
    transition: box-shadow 0.2s, transform 0.2s;
}

.other-service:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--text);
}

.service-icon-sm {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.other-service strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
}

.other-service span {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ===== Helpline Grid ===== */
.helpline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.helpline-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    text-align: center;
    transition: box-shadow 0.2s;
}

.helpline-card:hover {
    box-shadow: var(--shadow-md);
}

.helpline-card strong {
    display: block;
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.helpline-card span {
    font-size: 0.88rem;
    color: var(--text-light);
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    background: var(--white);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--bg);
}

.faq-answer {
    display: none;
    padding: 0 1.25rem 1rem;
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
    animation: slideDown 0.3s ease;
}

.faq-item.open .toggle-icon {
    transform: rotate(45deg);
}

/* ===== Ad Container ===== */
.ad-container {
    padding: 1rem 0;
    text-align: center;
    overflow: hidden;
}

.ad-container .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Footer ===== */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer h4 {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.footer p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer ul {
    list-style: none;
}

.footer li {
    padding: 0.25rem 0;
}

.footer a {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.82rem;
}

.footer-bottom p {
    margin-bottom: 0.3rem;
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== No Results ===== */
.no-results {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    font-size: 1rem;
    display: none;
}

/* ===== Breadcrumb Bar ===== */
.breadcrumb-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    margin-top: 68px;
    font-size: 0.88rem;
}

.breadcrumb-bar a {
    color: var(--text-light);
}

.breadcrumb-bar a:hover {
    color: var(--primary);
}

.breadcrumb-bar span {
    color: var(--border);
    margin: 0 0.4rem;
}

.breadcrumb-bar strong {
    color: var(--text);
}

/* ===== Page Hero (Service Pages) ===== */
.page-hero {
    background: linear-gradient(135deg, #1a56db 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    padding: 3.5rem 0;
    text-align: center;
}

.page-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.page-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 750px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.page-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    opacity: 0.85;
}

.page-meta span {
    background: rgba(255,255,255,0.15);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
}

/* ===== Page Layout (Sidebar + Article) ===== */
.page-content {
    padding: 3rem 0;
}

.page-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
    align-items: flex-start;
}

/* ===== Sidebar TOC ===== */
.sidebar {
    position: sticky;
    top: 88px;
}

.toc {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.toc h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.toc ul {
    list-style: none;
}

.toc li {
    margin-bottom: 0.1rem;
}

.toc a {
    display: block;
    padding: 0.4rem 0.75rem;
    font-size: 0.88rem;
    color: var(--text-light);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.2s;
}

.toc a:hover,
.toc a.active {
    background: var(--primary-light);
    color: var(--primary);
    text-decoration: none;
}

/* ===== Main Article ===== */
.main-article {
    min-width: 0;
}

.main-article section {
    margin-bottom: 3rem;
    scroll-margin-top: 88px;
}

.main-article h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
}

.main-article p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.content-list {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.content-list li {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

/* ===== Alert Boxes ===== */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin: 1.25rem 0;
    font-size: 0.93rem;
    line-height: 1.7;
}

.alert-info {
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
}

.alert-success {
    background: #ecfdf5;
    border-left: 4px solid #10b981;
}

.alert-warning {
    background: #fefce8;
    border-left: 4px solid #eab308;
}

/* ===== Link Cards ===== */
.link-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    margin: 1.25rem 0;
}

.link-card {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    text-decoration: none;
    color: var(--text);
    transition: box-shadow 0.2s, transform 0.2s;
}

.link-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--text);
}

.link-card strong {
    font-size: 1rem;
}

.link-card span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.link-card .visit-link {
    color: var(--primary);
    font-weight: 600;
    margin-top: 0.3rem;
}

.link-card.highlight-card {
    border-color: #10b981;
    background: #ecfdf5;
}

/* ===== Document Grid ===== */
.doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    margin: 1.25rem 0;
}

.doc-category {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
}

.doc-category h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.doc-category ul {
    list-style: none;
}

.doc-category li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    padding-left: 1.1rem;
    position: relative;
}

.doc-category li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* ===== Detailed Steps ===== */
.steps-detailed {
    margin: 1.25rem 0;
}

.step-detail {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}

.step-detail:last-child {
    border-bottom: none;
}

.step-num-lg {
    background: var(--primary);
    color: white;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-detail h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.step-detail p {
    margin-bottom: 0;
    font-size: 0.93rem;
    color: var(--text-light);
}

/* ===== Info Table ===== */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0;
    font-size: 0.93rem;
}

.info-table th,
.info-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.info-table th {
    background: var(--bg);
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-light);
}

.info-table tr:hover td {
    background: var(--bg);
}

.highlight-row td {
    background: #ecfdf5 !important;
    font-weight: 600;
}

/* ===== Related Services ===== */
.related-services {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.related-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.5rem 1rem;
    text-decoration: none;
    color: var(--text);
    transition: box-shadow 0.2s, transform 0.2s;
}

.related-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    text-decoration: none;
    color: var(--text);
}

.related-card span:first-child {
    font-size: 2rem;
}

.related-card strong {
    font-size: 0.95rem;
}

.related-card span:last-child {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== Service Card Links (index page - link to individual pages) ===== */
.service-card-link {
    display: block;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    text-decoration: none;
    color: var(--text);
    transition: box-shadow 0.3s, transform 0.2s;
}

.service-card-link:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--text);
}

.service-card-link .service-title-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-card-link .read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.88rem;
    margin-top: 0.3rem;
}

/* ===== Quick Actions Grid (Service Pages) ===== */
.quick-actions-intro {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    padding: 1rem 1.25rem;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary);
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.action-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.action-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(26, 86, 219, 0.12);
    transform: translateY(-4px);
}

.action-card .action-icon {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.action-card h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 0.15rem;
}

.action-card .action-subtitle {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.action-card .action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, #1a56db 0%, #3b82f6 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    margin-top: auto;
    border: none;
    cursor: pointer;
}

.action-card .action-btn:hover {
    background: linear-gradient(135deg, #1240a8 0%, #1a56db 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.3);
    text-decoration: none;
    color: white;
}

.action-card .action-btn::before {
    content: "⊕";
    font-size: 1rem;
    font-weight: 700;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .quick-actions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border);
        gap: 0.8rem;
        box-shadow: var(--shadow-md);
    }

    .nav-links.open {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .helpline-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-box {
        flex-direction: column;
        border-radius: var(--radius);
    }

    .search-box button {
        border-radius: 0 0 var(--radius) var(--radius);
    }

    .section {
        padding: 3rem 0;
    }

    .service-header h3 {
        font-size: 1rem;
    }

    .quick-links {
        font-size: 0.8rem;
    }

    /* SEO Page Layout */
    .page-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .page-hero h1 {
        font-size: 1.6rem;
    }

    .page-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .link-cards {
        grid-template-columns: 1fr;
    }

    .doc-grid {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .action-card {
        padding: 1.25rem 1rem;
    }

    .step-detail {
        gap: 0.75rem;
    }

    .step-num-lg {
        min-width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .info-table {
        font-size: 0.82rem;
    }

    .info-table th,
    .info-table td {
        padding: 0.6rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .helpline-grid {
        grid-template-columns: 1fr 1fr;
    }

    .other-services-grid {
        grid-template-columns: 1fr;
    }

    .quick-actions-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .action-card h4 {
        font-size: 0.85rem;
    }
}
