/* --- CSS VARIABLES & RESET --- */
:root {
    --primary-color: #004e92;
    --secondary-color: #000428;
    --accent-color: #00b4db;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f4f7f6;
    --white: #ffffff;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- LAYOUT UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

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

.section-subtitle {
    color: var(--text-light);
    margin-top: 10px;
    font-size: 1.1rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 10px auto 0;
}

/* --- IMAGE STYLES --- */
.section-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: block;
}

.section-image-large {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: block;
}

/* --- HEADER --- */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s;
}

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

.btn-contact {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background 0.3s;
}

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

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 80px;
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.btn-hero {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.2s, background 0.3s;
}

.btn-hero:hover {
    transform: translateY(-3px);
    background-color: #0099bb;
}

/* --- ABOUT SECTION --- */
.about {
    background-color: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-item {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1rem;
}

.feature-item p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-light);
}

.about-image-section {
    position: relative;
}

.about-image-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    border-radius: 8px;
    z-index: -1;
}

/* --- SERVICES SECTION --- */
.services {
    background-color: var(--bg-light);
}

.services-image-container {
    margin-bottom: 50px;
    border-radius: 8px;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-item {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid transparent;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-top: 4px solid var(--accent-color);
}

.service-item h3 {
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.service-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- TEAM SECTION --- */
.team {
    background-color: var(--white);
}

.team-image-container {
    margin-bottom: 50px;
    border-radius: 8px;
    overflow: hidden;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 35px 30px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
}

.team-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.role-badge {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-card h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-size: 1.4rem;
}

.exp-highlight {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 15px;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- CONTACT SECTION --- */
.contact {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
}

.contact h2 {
    color: var(--white);
    font-size: 2.8rem;
}

.contact h2::after {
    background: var(--accent-color);
}

.contact-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 15px;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.contact-item span {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item a {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent-color);
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* --- FOOTER --- */
footer {
    background: #000214;
    color: #888;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-section {
        order: -1;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .section-image-large {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        min-height: 70vh;
        margin-top: 80px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-image-large {
        height: 280px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        gap: 30px;
    }

    .contact-item a {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-image-large {
        height: 220px;
    }

    .contact h2 {
        font-size: 2rem;
    }
}


/* =========================================
   RECRUITMENT LINK STYLES
   ========================================= */

/* People Section Recruitment CTA */
.people-recruitment-cta {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.people-recruitment-cta p {
    color: #64748b;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.btn-recruitment {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #004e92 0%, #00b4db 100%);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(0, 78, 146, 0.25);
}

.btn-recruitment:hover {
    background: linear-gradient(135deg, #003d73 0%, #004e92 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 78, 146, 0.35);
    color: #ffffff;
}

.btn-recruitment svg {
    transition: transform 0.3s ease;
}

.btn-recruitment:hover svg {
    transform: translateX(3px);
}

/* Footer Styles */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-careers-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-careers-link:hover {
    color: #00b4db;
}

.footer-careers-link svg {
    color: #64748b;
    transition: color 0.3s ease;
}

.footer-careers-link:hover svg {
    color: #00b4db;
}

/* Responsive for Recruitment Elements */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links {
        justify-content: center;
    }

    .people-recruitment-cta {
        margin-top: 40px;
    }

    .btn-recruitment {
        width: 100%;
        justify-content: center;
    }
}
