/* ==============================================
   CORPORATE ZEN - MAIN STYLES
   SDemployment Staffing Agency
   ============================================== */

/* =================== NAVIGATION =================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

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

.navbar {
    padding: 0.5rem 0 !important;
}

.navbar-brand img {
    height: 60px;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    padding: 0.5rem 1.25rem !important;
    position: relative;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transform: translateX(-50%);
    transition: var(--transition-normal);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-secondary);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* =================== BUTTONS =================== */
.btn-primary-custom {
    background: var(--color-secondary);
    color: var(--text-white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.btn-primary-custom:hover {
    background: var(--color-primary);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-custom {
    background: transparent;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.75rem;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-outline-custom:hover {
    background: var(--color-primary);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--color-accent);
    color: var(--color-primary);
    font-weight: 700;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.btn-accent:hover {
    background: var(--color-accent-hover);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* =================== HERO SECTION =================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
    background: var(--bg-gradient);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1560179707-f14e90ef3623?w=1200&q=80') center/cover no-repeat;
    opacity: 0.15;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.15);
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--color-accent);
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

/* =================== PAGE HERO (INTERNAL PAGES) =================== */
.page-hero {
    background: var(--bg-gradient);
    padding: 10rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../../frontend/images/texture.png') center center no-repeat;
    /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.03)"/></svg>') repeat; */
    /* background-size: 30px 30px; */
    background-size: cover;
    opacity: 0.15; 
    z-index: 1;
    pointer-events: none;
}

.page-hero h1 {
    color: var(--text-white);
    font-size: 3rem;
    position: relative;
}

.page-hero .breadcrumb {
    justify-content: center;
    margin-top: 1rem;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.page-hero .breadcrumb-item.active {
    color: var(--color-accent);
}

/* =================== SECTIONS =================== */
.section {
    padding: 6rem 0;
}

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

.section-dark {
    background: var(--bg-dark);
    color: var(--text-white);
}

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

.section-title h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-secondary);
    border-radius: var(--radius-full);
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* =================== ABOUT SECTION =================== */
.about-section .about-content {
    padding: 2rem 0;
}

.about-section .about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-section .about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-section .about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--color-accent);
    border-radius: var(--radius-md);
    z-index: -1;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-secondary);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
}

.about-feature span {
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
}

/* =================== MISSION SECTION =================== */
.mission-section {
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="80" r="1" fill="rgba(245,158,11,0.1)"/><circle cx="80" cy="20" r="1.5" fill="rgba(59,130,246,0.1)"/></svg>');
    background-size: 50px 50px;
}

.mission-content {
    position: relative;
    z-index: 2;
}

.mission-section h2 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.mission-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 700px;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.mission-list li i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    margin-top: 2px;
}

/* =================== COMMITMENT SECTION =================== */
.commitment-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.commitment-card {
    background: var(--bg-main);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.commitment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-secondary);
}

.commitment-card h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.commitment-card h4 i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-secondary);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
}

.commitment-card ul {
    list-style: none;
    padding: 0 12px;
    margin: 0;
}

.commitment-card ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.commitment-card ul li:last-child {
    border-bottom: none;
}

.commitment-card ul li i {
    color: var(--color-secondary);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .commitment-cards {
        grid-template-columns: 1fr;
    }
}

/* =================== SERVICES SECTION =================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-content {
    padding: 2rem;
}

.service-card-content h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.service-card-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-main);
}

.service-list li i {
    color: var(--color-secondary);
    font-size: 0.8rem;
}

/* Services Page - Alternating Layout */
.service-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
}

.service-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-block-image {
    flex: 0 0 45%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-block-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.service-block-content {
    flex: 1;
}

.service-block-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-block-content p {
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-block,
    .service-block.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    
    .service-block-image {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* =================== CONTACT SECTION =================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-info-card {
    background: var(--bg-gradient);
    color: var(--text-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    height: 100%;
}

.contact-info-card h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.contact-info-card > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info-item a,
.contact-info-item span {
    color: var(--text-white);
    font-weight: 500;
}

.contact-form-card {
    background: var(--bg-main);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.contact-form-card h3 {
    margin-bottom: 0.5rem;
}

.contact-form-card > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* =================== FORMS =================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
    background: var(--bg-surface);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    background: var(--bg-main);
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-control::placeholder {
    color: var(--text-light);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
    background: var(--bg-surface);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
}

.form-select:focus {
    outline: none;
    background: var(--bg-main);
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-check-input:checked {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-check-label {
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-main);
}

/* Form Alerts */
.form-alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-alert-error {
    background: #fef2f2;
    color: #7f1d1d;
    border: 1px solid #fecaca;
}

/* =================== JOB APPLICATION FORM =================== */
.job-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-main);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.job-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.job-form-header h2 {
    margin-bottom: 0.5rem;
}

.job-form-header p {
    color: var(--text-muted);
}

/* Progress Steps */
.form-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.progress-step:not(:last-child)::after {
    content: '';
    width: 60px;
    height: 2px;
    background: var(--border-color);
    margin: 0 1rem;
}

.progress-step.active::after {
    background: var(--color-secondary);
}

.step-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    color: var(--text-muted);
    font-weight: 600;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    transition: var(--transition-fast);
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
    background: var(--color-secondary);
    color: var(--text-white);
    border-color: var(--color-secondary);
}

.step-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.progress-step.active .step-label {
    color: var(--color-secondary);
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeSlide 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step h5 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* =================== FOOTER =================== */
.site-footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 5rem 0 2rem;
}

.footer-brand img {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact li i {
    color: var(--color-accent);
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* =================== SCROLL TO TOP =================== */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

#scrollTopBtn:hover {
    background: var(--color-primary);
    transform: translateY(-5px);
}

/* =================== ANIMATIONS =================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-left.show {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animations */
.fade-up:nth-child(1) { transition-delay: 0.1s; }
.fade-up:nth-child(2) { transition-delay: 0.2s; }
.fade-up:nth-child(3) { transition-delay: 0.3s; }
.fade-up:nth-child(4) { transition-delay: 0.4s; }

/* =================== UTILITIES =================== */
.text-accent {
    color: var(--color-accent) !important;
}

.text-secondary {
    color: var(--color-secondary) !important;
}

.bg-surface {
    background: var(--bg-surface) !important;
}

.mb-6 {
    margin-bottom: 4rem !important;
}

.py-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 992px) {
    .hero-section {
        padding: 7rem 0 4rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .about_us_image{
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .page-hero {
        padding: 8rem 0 3rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .commitment-card,
    .contact-info-card,
    .contact-form-card,
    .job-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-progress {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .progress-step:not(:last-child)::after {
        width: 30px;
        margin: 0 0.5rem;
    }
    
    .step-label {
        display: none;
    }
}
