/* ========================================
   Belgier HR Services - Main Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #1e3a5f;
    --secondary-color: #2d5a87;
    --accent-color: #f39c12;
    --accent-hover: #e67e22;
    --text-color: #333;
    --text-light: #555;
    --text-muted: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #eee;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 10px 30px rgba(0,0,0,0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--accent-color);
}

.top-bar i {
    margin-right: 8px;
}

.social-links a {
    margin-left: 15px;
    font-size: 1rem;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* ========================================
   Header / Navigation
   ======================================== */
header {
    background: var(--white);
    padding: 8px 40px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    transform: scale(1.3);
    transform-origin: left center;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
}

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.9), rgba(45, 90, 135, 0.9)), 
                url('../images/hero-bg.jpg') center/cover;
    color: var(--white);
    padding: 100px 40px;
    text-align: center;
}

.hero .breadcrumb {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.hero .breadcrumb a {
    color: var(--accent-color);
}

.hero .breadcrumb a:hover {
    text-decoration: underline;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero .tagline {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   Section Styles
   ======================================== */
section {
    padding: 80px 40px;
}

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

/* ========================================
   Who We Are Section
   ======================================== */
.who-we-are {
    background: var(--bg-light);
}

.who-we-are .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.who-we-are .text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.who-we-are .image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ========================================
   Team Section
   ======================================== */
.team {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.team-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.team-card h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-card .role {
    color: var(--accent-color);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.team-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========================================
   Specialize Section
   ======================================== */
.specialize {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.specialize .section-title h2 {
    color: var(--white);
}

.specialize .section-title p {
    color: rgba(255,255,255,0.8);
}

.specialize-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.specialize-item {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: background 0.3s;
}

.specialize-item:hover {
    background: rgba(255,255,255,0.2);
}

.specialize-item i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    background: var(--bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-card .quote {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card .author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-card .author-info h5 {
    color: var(--primary-color);
}

.testimonial-card .author-info span {
    color: #888;
    font-size: 0.85rem;
}

/* ========================================
   Why Work With Us Section
   ======================================== */
.why-work {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.1);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.benefit-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ========================================
   Requirements Section
   ======================================== */
.requirements {
    background: var(--bg-light);
}

.requirements .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.requirements h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.requirements ul {
    list-style: none;
}

.requirements li {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 15px;
}

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

/* ========================================
   Current Openings Section
   ======================================== */
.openings {
    background: var(--white);
}

.openings-list {
    max-width: 800px;
    margin: 0 auto;
}

.opening-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.opening-item:hover {
    background: var(--primary-color);
    color: var(--white);
}

.opening-item:hover .view-jd {
    background: var(--accent-color);
    color: var(--white);
}

.opening-item h4 {
    font-size: 1.1rem;
}

.view-jd {
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
}

.apply-btn {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    padding: 15px 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.apply-btn:hover {
    background: var(--accent-hover);
}

/* ========================================
   Services Section
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-card i {
    font-size: 2rem;
    color: var(--accent-color);
}

.contact-info-card h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-info-card p {
    color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    padding: 15px 40px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: var(--accent-hover);
}

/* ========================================
   Footer
   ======================================== */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 40px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-section p,
.footer-section li {
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-section ul {
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    padding: 8px 0;
    border-bottom: none;
    position: relative;
    padding-left: 18px;
}

.footer-section ul li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.footer-section ul li:hover::before {
    transform: translateX(4px);
}

.footer-section ul li:last-child {
    border-bottom: none;
}

.footer-section a {
    color: rgba(255,255,255,0.85);
    transition: all 0.3s;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--accent-color);
    transform: translateX(3px);
    padding-left: 0;
}

.footer-section i {
    margin-right: 12px;
    color: var(--accent-color);
    width: 16px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--accent-hover);
}

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

.btn-secondary:hover {
    background: var(--secondary-color);
}

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

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

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.text-accent {
    color: var(--accent-color);
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 992px) {
    .who-we-are .content,
    .requirements .content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section ul li {
        padding-left: 0;
        display: inline-block;
    }
    
    .footer-section ul li::before {
        display: none;
    }
    
    .footer-section ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 25px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 10px 20px;
    }
    
    .top-bar .contact-info {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    
    .top-bar a {
        margin-left: 0;
    }
    
    header {
        padding: 15px 20px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 15px;
    }
    
    nav ul.active {
        display: flex;
    }
    
    .hero {
        padding: 60px 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .tagline {
        font-size: 1.1rem;
    }
    
    section {
        padding: 50px 20px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-card {
        flex-direction: column;
        text-align: center;
    }
    
    .team-card img {
        margin: 0 auto;
    }
    
    .opening-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .specialize-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
