* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #425c8c;
    --primary-dark: #3a5078;
    --primary-light: #5a7ab0;
    --green: #16a34a;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--gray-50);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    height: 56px;
    width: auto;
    border-radius: 0.25rem;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-desktop a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.2s;
    padding-bottom: 0.25rem;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--primary);
}

.nav-desktop a.active {
    border-bottom: 2px solid var(--primary);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 0.375rem;
}

.mobile-menu-btn:hover {
    background: var(--gray-100);
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-600);
    position: relative;
    transition: background 0.2s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--gray-600);
    left: 0;
    transition: transform 0.2s;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.mobile-menu-btn.open .hamburger {
    background: transparent;
}

.mobile-menu-btn.open .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.open .hamburger::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid var(--gray-200);
    background: var(--white);
}

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

.nav-mobile a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: 0.375rem;
}

.nav-mobile a:hover {
    background: var(--gray-50);
    color: var(--primary);
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
    .nav-mobile {
        display: none !important;
    }
}

.page-banner {
    background: var(--primary);
    padding: 3rem 0;
}

.page-banner h1 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .page-banner h1 {
        font-size: 2.5rem;
    }
}

.main-content {
    flex: 1;
    padding: 2rem 0;
}

.container.with-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-area {
    flex: 1;
}

.sidebar {
    width: 100%;
}

.sidebar-card {
    background: var(--white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.sidebar-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.sidebar-item .icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.sidebar-item .label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.sidebar-item .value {
    color: var(--gray-700);
    font-style: normal;
}

.sidebar-item .value a {
    font-weight: 600;
}

.sidebar-item .muted {
    color: var(--gray-500);
}

@media (min-width: 1024px) {
    .container.with-sidebar {
        flex-direction: row;
    }
    .sidebar {
        width: 320px;
        flex-shrink: 0;
    }
}

.card {
    background: var(--white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .card {
        padding: 2rem;
    }
}

.card h2 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-section {
    background: var(--white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 2rem;
}

.hero-image {
    height: 300px;
    background: url('../images/hero.jpg') center center;
    background-size: cover;
    position: relative;
}

@media (min-width: 768px) {
    .hero-image {
        height: 400px;
    }
}

.hero-cta {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 1.5rem 2rem;
}

.hero-cta h2 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .hero-cta h2 {
        font-size: 1.75rem;
    }
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    transition: color 0.2s;
}

.phone-link:hover {
    color: #fef08a;
}

.phone-link .icon {
    width: 32px;
    height: 32px;
}

@media (min-width: 768px) {
    .phone-link {
        font-size: 2.25rem;
    }
}

.services-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--gray-100);
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.service-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.service-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.service-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .trust-badges {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.trust-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.trust-icon.green {
    color: var(--green);
}

.trust-title {
    font-weight: 600;
    color: var(--gray-900);
}

.trust-desc {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.quality-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    padding: 2rem;
    text-align: center;
    color: var(--white);
    margin-bottom: 2rem;
}

.quality-banner h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .quality-banner h2 {
        font-size: 2rem;
    }
}

.quality-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    max-width: 640px;
    margin: 0 auto 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

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

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

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

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

.btn-block {
    width: 100%;
    margin-top: 1.5rem;
}

.icon-btn {
    width: 16px;
    height: 16px;
}

.about-intro {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-content p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.values-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-item {
    text-align: center;
    padding: 1rem;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.value-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--gray-600);
}

.commitment-list {
    list-style: none;
}

.commitment-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray-700);
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--green);
    flex-shrink: 0;
}

.contact-box {
    background: var(--gray-50);
    border-radius: 0.5rem;
    padding: 1.5rem;
    max-width: 400px;
}

.contact-box h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.contact-box p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.icon-sm {
    width: 16px;
    height: 16px;
    color: var(--gray-400);
    flex-shrink: 0;
}

.location-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.location-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.location-item address {
    font-style: normal;
    color: var(--gray-700);
}

.location-item strong {
    color: var(--gray-900);
}

.muted {
    color: var(--gray-500);
}

.map-container {
    border-radius: 0.5rem;
    overflow: hidden;
    height: 192px;
}

@media (min-width: 768px) {
    .map-container {
        height: 256px;
    }
}

.form {
    max-width: 100%;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.form-group label .hint {
    font-weight: 400;
    color: var(--gray-500);
    font-size: 0.8rem;
}

.form-group input[type="file"] {
    padding: 0.5rem;
    background: var(--gray-50);
    border: 2px dashed var(--gray-300);
    cursor: pointer;
}

.form-group input[type="file"]:hover {
    border-color: var(--primary);
    background: var(--gray-100);
}

.g-recaptcha {
    margin-bottom: 1rem;
}

.form-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin: 1.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray-200);
}

.form-section-title:first-of-type {
    margin-top: 0;
}

.form-section-title .hint {
    font-weight: 400;
    color: var(--gray-500);
    font-size: 0.8rem;
}

.form-row-3 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .form-row-3 {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.checkbox-grid {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.checkbox-label input[type="checkbox"] {
    width: 1.125rem;
    height: 1.125rem;
    accent-color: var(--primary);
    cursor: pointer;
}

.radio-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.radio-options {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.25rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.radio-label input[type="radio"] {
    width: 1rem;
    height: 1rem;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--gray-900);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(66, 92, 140, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.job-listings {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.job-card {
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: border-color 0.2s;
}

.job-card:hover {
    border-color: var(--primary);
}

.job-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .job-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.job-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
}

.badge-green {
    background: #dcfce7;
    color: #166534;
}

.job-card h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-900);
    margin: 1rem 0 0.5rem;
}

.requirements-list {
    list-style: none;
}

.requirements-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.requirements-list .check-icon {
    margin-top: 0.125rem;
}

.benefits-grid {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
}

.benefit-item .check-icon {
    color: var(--primary);
}

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 3rem 0 0;
    margin-top: 3rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    border-radius: 0.25rem;
}

.footer-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    margin-top: 1rem;
}

.footer-col h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-contact {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.8);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-contact address {
    font-style: normal;
    margin-top: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 2rem;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}
