/* --- Variables --- */
:root {
    --color-mint: #00b894;      /* Mint Green */
    --color-mint-dark: #008f73;
    --color-slate: #636e72;     /* Slate Grey */
    --color-dark: #2d3436;      /* Dark Text */
    --color-bg: #f5f6fa;        /* Light Grey BG */
    --color-white: #ffffff;
    
    --font-heading: 'Nunito Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius: 8px;
    --shadow: 0 4px 15px rgba(0,0,0,0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-dark);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: var(--radius); }

/* --- Status Bar --- */
.status-bar { background-color: var(--color-dark); color: #fff; padding: 8px 0; font-size: 0.85rem; text-align: center; }
.status-flex { display: flex; justify-content: center; gap: 15px; }
.status-link { color: var(--color-mint); font-weight: bold; }

/* --- Header --- */
.clean-header {
    background-color: var(--color-white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    position: sticky; top: 0; z-index: 1000;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.header-content { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: var(--color-dark); letter-spacing: -0.5px; }
.mint-text { color: var(--color-mint); }

.office-nav ul { display: flex; gap: 25px; align-items: center; }
.office-nav a { font-weight: 600; color: var(--color-slate); font-size: 0.95rem; }
.office-nav a:hover, .office-nav a.active { color: var(--color-mint); }

.btn-mint { background-color: var(--color-mint); color: var(--color-white) !important; padding: 10px 25px; border-radius: 50px; font-weight: bold; box-shadow: 0 4px 10px rgba(0, 184, 148, 0.2); }
.btn-mint:hover { background-color: var(--color-mint-dark); transform: translateY(-2px); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.bar { width: 25px; height: 3px; background-color: var(--color-dark); border-radius: 2px; }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 260px; height: 100%;
    background-color: var(--color-white); z-index: 2000;
    display: flex; flex-direction: column; padding: 40px; gap: 20px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.05); transition: 0.3s ease;
}
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; color: var(--color-dark); background: none; border: none; cursor: pointer; }
.mobile-menu a { font-family: var(--font-heading); font-size: 1.1rem; border-bottom: 1px solid #f0f0f0; padding-bottom: 10px; color: var(--color-dark); font-weight: 600; }

/* --- Hero --- */
.hero { position: relative; height: 500px; display: flex; align-items: center; justify-content: flex-start; background-color: #fff; }
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; z-index: -2;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 60%, transparent 100%); z-index: -1; }

.hero-text { z-index: 1; max-width: 600px; padding: 20px; margin-left: 5%; }
.badge-mint { background-color: rgba(0, 184, 148, 0.1); color: var(--color-mint-dark); padding: 5px 12px; border-radius: 4px; font-weight: bold; font-size: 0.8rem; display: inline-block; margin-bottom: 15px; }
.hero h1 { font-family: var(--font-heading); font-size: 3rem; line-height: 1.1; margin-bottom: 20px; color: var(--color-dark); }
.hero p { font-size: 1.2rem; color: var(--color-slate); margin-bottom: 30px; }

.hero-buttons { display: flex; gap: 15px; }
.btn { padding: 12px 30px; border-radius: 6px; font-weight: bold; cursor: pointer; border: none; font-family: var(--font-heading); transition: 0.3s; }
.btn-white { background-color: var(--color-white); color: var(--color-mint); border: 2px solid var(--color-mint); }
.btn-white:hover { background-color: var(--color-mint); color: var(--color-white); }
.btn-transparent { background: transparent; color: var(--color-slate); border: 2px solid var(--color-slate); }
.btn-transparent:hover { background: var(--color-slate); color: var(--color-white); }

/* --- Services --- */
.section-padding { padding: 80px 0; }
.section-head, .page-head { text-align: center; margin-bottom: 60px; }
.section-head h2, .page-head h1 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--color-dark); margin-bottom: 10px; }
.mint-line { width: 60px; height: 4px; background: var(--color-mint); margin: 0 auto; border-radius: 2px; }

.service-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.card { background: var(--color-white); padding: 30px; border-radius: var(--radius); border: 1px solid #eee; transition: 0.3s; text-align: center; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--color-mint); }
.icon-box { font-size: 2.5rem; margin-bottom: 15px; }
.card h3 { font-family: var(--font-heading); margin-bottom: 10px; font-size: 1.3rem; }
.card p { color: var(--color-slate); font-size: 0.95rem; margin-bottom: 20px; }
.link-mint { color: var(--color-mint); font-weight: bold; }

/* --- Banner --- */
.mint-banner { background-color: var(--color-mint); color: var(--color-white); padding: 60px 0; margin-top: 50px; border-radius: var(--radius); width: 95%; margin: 50px auto; }
.banner-flex { display: flex; justify-content: space-between; align-items: center; padding: 0 40px; }
.banner-text h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 5px; }
.btn-dark { background-color: var(--color-dark); color: var(--color-white); padding: 12px 30px; border-radius: 50px; font-weight: bold; }
.btn-dark:hover { background-color: #000; }

/* --- Split (About) --- */
.split-view { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.side-block { background: var(--color-white); padding: 40px; border-radius: var(--radius); border-top: 5px solid transparent; box-shadow: var(--shadow); }
.side-block.worker { border-top-color: var(--color-mint); }
.side-block.employer { border-top-color: var(--color-slate); }
.side-block h2 { font-family: var(--font-heading); margin-bottom: 15px; }
.mint-list { list-style: none; margin-top: 20px; padding-left: 20px; }
.mint-list li { margin-bottom: 10px; position: relative; font-weight: 500; }
.mint-list li::before { content: '•'; color: var(--color-mint); font-weight: bold; font-size: 1.5rem; position: absolute; left: -20px; top: -5px; }

/* --- Testimonials --- */
.feedback-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.feedback-card { background: var(--color-white); padding: 30px; border-radius: var(--radius); border: 1px solid #eee; }
.rating { color: #f1c40f; margin-bottom: 10px; letter-spacing: 2px; }
.feedback-card p { font-style: italic; color: var(--color-slate); margin-bottom: 15px; }
.client strong { display: block; color: var(--color-dark); font-family: var(--font-heading); }
.client span { font-size: 0.85rem; color: #999; }

/* --- Contact & Forms --- */
.contact-form-wrapper { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; background: var(--color-white); padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow); }
.info-sidebar h3 { font-family: var(--font-heading); color: var(--color-mint); margin-bottom: 20px; }
.c-row { margin-bottom: 15px; font-size: 1rem; color: var(--color-dark); }
.urgent-note { background: #fff3cd; color: #856404; padding: 15px; border-radius: 4px; margin-top: 20px; font-size: 0.9rem; font-weight: bold; border-left: 4px solid #ffc107; }

.office-form .form-group { margin-bottom: 20px; }
.office-form label { display: block; margin-bottom: 5px; font-weight: 600; color: var(--color-dark); }
.office-form input, .office-form select, .office-form textarea { width: 100%; padding: 12px; border: 1px solid #dfe6e9; border-radius: 6px; font-family: var(--font-body); background: #fdfdfd; }
.office-form input:focus { border-color: var(--color-mint); outline: none; }
.radio-group { display: flex; gap: 20px; }
.full-width { width: 100%; }

/* --- Legal --- */
.legal-doc { max-width: 800px; margin: 0 auto; background: var(--color-white); padding: 60px; border-radius: var(--radius); border: 1px solid #eee; }
.legal-doc h1 { font-family: var(--font-heading); color: var(--color-dark); text-align: center; }
.meta { text-align: center; color: var(--color-slate); margin-bottom: 20px; }
.legal-doc h3 { color: var(--color-mint-dark); margin-top: 30px; margin-bottom: 10px; font-family: var(--font-heading); }

/* --- Footer --- */
.clean-footer { background-color: var(--color-white); padding: 50px 0; margin-top: auto; border-top: 1px solid #eee; text-align: center; }
.f-brand h4 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 5px; }
.f-nav a { color: var(--color-slate); margin: 0 15px; font-weight: 500; }
.f-nav a:hover { color: var(--color-mint); }
.copyright { margin-top: 20px; font-size: 0.8rem; color: #b2bec3; }

@media (max-width: 992px) {
    .office-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero h1 { font-size: 2.5rem; }
    .banner-flex, .split-view, .contact-form-wrapper { grid-template-columns: 1fr; flex-direction: column; text-align: center; }
    .hero-content { margin-left: 0; }
    .urgent-note { text-align: left; }
}