/* 
   Rigtige Contractors Vikar ApS - Premium Styling (Enhanced & Modernized)
   Custom Vanilla CSS for recruitment platform
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #0f172a;       /* Deep Navy */
    --primary-light: #1e293b; /* Medium Navy */
    --accent: #10b981;        /* Vibrant Royal Blue */
    --accent-hover: #059669;  /* Darker Blue */
    --accent-light: #ecfdf5;  /* Soft Blue Tint */
    --text-dark: #0f172a;     /* Near Black */
    --text-muted: #475569;    /* Slate Gray */
    --bg-light: #f8fafc;      /* Soft Off-White */
    --bg-white: #ffffff;      /* Pure White */
    --border: #e2e8f0;        /* Light Gray Border */
    --success: #10b981;       /* Premium Green */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.06), 0 4px 6px -2px rgba(15, 23, 42, 0.03);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 90px 0;
}

.section-bg {
    background-color: var(--bg-white);
}

.text-center {
    text-align: center;
}

.max-w-md {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Header & Navbar */
header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-img {
    height: 52px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--primary);
    line-height: 1.1;
}

.logo-text span {
    color: var(--accent);
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 36px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.98rem;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background-color: var(--accent);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-btn-container {
    display: flex;
    align-items: center;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1100;
}

.bar {
    display: block;
    width: 26px;
    height: 3px;
    margin: 6px auto;
    transition: var(--transition);
    background-color: var(--primary);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 8px;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--accent);
}

.btn-white:hover {
    background-color: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.btn-nav {
    padding: 12px 24px;
    font-size: 0.95rem;
    background-color: var(--primary);
    color: var(--bg-white);
}

.btn-nav:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96) 0%, rgba(30, 41, 59, 0.94) 100%), 
                url('../img/kk.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: var(--bg-white);
    padding: 140px 0 110px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--bg-light), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
}

.hero-title {
    font-size: 3.85rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 28px;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.hero-title span {
    color: #34d399; /* Soft Accent Blue */
    background: linear-gradient(to right, #34d399, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1; /* Cool Muted Slate */
    margin-bottom: 44px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-card-pattern {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 44px;
    width: 100%;
    max-width: 460px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 34px;
}

.badge-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--success);
    position: relative;
}

.badge-dot::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid var(--success);
    animation: pulse 2.2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(2.4); opacity: 0; }
}

.hero-card-title {
    color: var(--bg-white);
    font-size: 1.35rem;
}

.hero-stat-row {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hero-stat-label {
    color: #cbd5e1;
    font-size: 1rem;
}

.hero-stat-value {
    color: var(--bg-white);
    font-weight: 700;
}

/* Stats Section */
.stats-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.stat-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 35px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-label {
    color: var(--text-dark);
    font-weight: 600;
}

.stat-sub {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-pre {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
    display: block;
}

.section-title {
    font-size: 2.65rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Industries/Sectors Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
}

.industry-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 45px 35px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.industry-card:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    transform: translateY(-6px);
}

.industry-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    background-color: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.95rem;
    margin-bottom: 28px;
}

.industry-title {
    font-size: 1.45rem;
    margin-bottom: 14px;
}

.industry-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Steps Timeline Layout */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    padding-left: 30px;
    border-left: 2px dashed var(--border);
}

.process-step {
    position: relative;
    margin-bottom: 40px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-marker {
    position: absolute;
    left: -42px;
    top: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 4px solid var(--bg-light);
    box-shadow: var(--shadow-sm);
}

.step-content {
    background-color: var(--bg-white);
    border-radius: var(--radius-sm);
    padding: 24px 30px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Features/Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.feature-item {
    display: flex;
    gap: 24px;
}

.feature-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--success);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
    font-size: 0.85rem;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

.features-image-container {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 70px 50px;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.features-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-color: var(--accent);
    filter: blur(100px);
    opacity: 0.35;
}

.feature-promo-title {
    font-size: 2.25rem;
    color: var(--bg-white);
    margin-bottom: 24px;
}

.feature-promo-text {
    color: #cbd5e1;
    margin-bottom: 36px;
    font-size: 1.05rem;
}

/* FAQ Section & Accordion */
.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-header {
    width: 100%;
    padding: 26px 34px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary);
    transition: var(--transition);
    gap: 20px;
}

.faq-header:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 1.35rem;
    color: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 34px;
}

.faq-content p {
    padding-bottom: 26px;
    color: var(--text-muted);
    font-size: 1rem;
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-item.active .faq-content {
    max-height: 400px;
}

/* Contact Info & Forms */
.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.contact-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 35px;
    border: 1px solid var(--border);
    display: flex;
    gap: 24px;
    box-shadow: var(--shadow-sm);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background-color: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.contact-card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-card-detail {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Forms styling */
.form-container {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 44px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 28px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    color: var(--text-dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.form-helper {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 6px;
    display: block;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* File Upload custom style */
.file-upload-wrapper {
    position: relative;
    border: 2px dashed var(--border);
    border-radius: var(--radius-sm);
    padding: 35px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background-color: var(--bg-light);
}

.file-upload-wrapper:hover {
    border-color: var(--accent);
    background-color: var(--bg-white);
}

.file-upload-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-icon {
    font-size: 2.25rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.file-upload-text {
    font-size: 0.98rem;
    color: var(--text-muted);
}

.file-upload-text span {
    color: var(--accent);
    font-weight: 700;
}

/* Jobs Page CSS */
.jobs-filter-bar {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--accent);
    color: var(--bg-white);
    border-color: var(--accent);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 36px;
}

.job-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.job-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.job-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-badge-category {
    background-color: var(--accent-light);
    color: var(--accent);
}

.job-badge-type {
    background-color: #f0fdf4;
    color: #166534;
}

.job-title {
    font-size: 1.55rem;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.job-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
}

.job-details-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.job-details-list {
    margin-bottom: 34px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.job-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.job-detail-item i {
    color: var(--accent);
    margin-top: 4px;
    font-size: 1rem;
    flex-shrink: 0;
}

.job-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

/* Alert Boxes */
.alert {
    padding: 18px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 28px;
    font-size: 1rem;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Compliance Banner */
.compliance-box {
    border-left: 4px solid var(--accent);
    background-color: var(--bg-light);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 24px;
    margin: 28px 0;
}

.compliance-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.compliance-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer styling */
footer {
    background: linear-gradient(180deg, rgba(9, 13, 22, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%),
                url('../img/kk.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: #cbd5e1;
    padding: 100px 0 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 70px;
    margin-bottom: 70px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo-img {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
    align-self: flex-start;
}

.footer-desc {
    font-size: 1rem;
    line-height: 1.6;
}

.footer-title {
    color: var(--bg-white);
    font-size: 1.25rem;
    margin-bottom: 28px;
    font-family: var(--font-heading);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-link {
    font-size: 1rem;
}

.footer-link:hover {
    color: var(--bg-white);
    transform: translateX(6px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    font-size: 1rem;
}

.footer-contact-icon {
    color: var(--accent);
    flex-shrink: 0;
    font-size: 1.15rem;
}

.footer-bottom {
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Subpage Hero */
.subpage-hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 41, 59, 0.94) 100%),
                url('../img/kk.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: var(--bg-white);
    padding: 110px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.subpage-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.subpage-title {
    font-size: 3.15rem;
    color: var(--bg-white);
    margin-bottom: 14px;
}

.subpage-breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.98rem;
    color: #94a3b8;
}

.breadcrumb-separator {
    color: #64748b;
}

.breadcrumb-active {
    color: var(--accent);
}

/* Call to Action Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: var(--radius-lg);
    padding: 70px 50px;
    color: var(--bg-white);
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
}

.cta-title {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-desc {
    max-width: 650px;
    margin: 0 auto 36px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-title {
        font-size: 3.25rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: -50px auto 50px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: relative;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        height: calc(100vh - 90px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        padding: 50px 24px;
        gap: 28px;
        align-items: center;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-btn-container {
        display: none; /* Hide desktop apply button */
    }

    .nav-menu .nav-btn-container-mobile {
        display: block;
        margin-top: 18px;
        width: 100%;
    }

    .nav-menu .nav-btn-container-mobile .btn {
        width: 100%;
    }

    .section {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Custom class for mobile apply button in list */
.nav-btn-container-mobile {
    display: none;
}
