:root {
    --primary-blue: #104066;
    --dark-blue: #0a2d4a;
    --primary-red: #cf0106;
    --bright-red: #e63946;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #6c757d;
    --dark-gray: #212529;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 12px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
}

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

.btn-primary:hover {
    background-color: var(--bright-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: rgba(16, 64, 102, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-monogram {
    width: 50px;
    height: 50px;
    background-color: var(--primary-red);
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
    margin-right: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--primary-blue);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 12px;
    color: var(--medium-gray);
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-red);
}

.nav-menu a.active {
    color: var(--primary-red);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-red);
}

.language-switcher {
    display: flex;
    margin-left: 20px;
}

.language-switcher button {
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--medium-gray);
    cursor: pointer;
    padding: 5px 10px;
    transition: var(--transition);
}

.language-switcher button.active {
    color: var(--primary-blue);
}

.language-switcher button:hover:not(.active) {
    color: var(--primary-red);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
}

/* PAGE HERO - OUR CULTURE */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, rgba(207, 1, 6, 0.05) 0%, rgba(248, 249, 250, 1) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><path fill="%23cf0106" fill-opacity="0.03" d="M200,0 C310.46,0 400,89.54 400,200 C400,310.46 310.46,400 200,400 C89.54,400 0,310.46 0,200 C0,89.54 89.54,0 200,0 Z M200,50 C118.43,50 50,118.43 50,200 C50,281.57 118.43,350 200,350 C281.57,350 350,281.57 350,200 C350,118.43 281.57,50 200,50 Z"></path></svg>') center/contain no-repeat;
    opacity: 0.5;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.page-hero p {
    font-size: 20px;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

/* CULTURE INTRODUCTION */
.culture-intro {
    padding: 80px 0;
    background-color: white;
}

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

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}

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

.intro-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.intro-text p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

.intro-image {
    height: 400px;
    border-radius: 8px;
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=800');
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

/* CORE VALUES */
.values-section {
    padding: 80px 0;
    background-color: var(--off-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    align-items: start;
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(207, 1, 6, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 32px;
}

.value-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.value-content p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* TEAM GALLERY */
.gallery-section {
    padding: 80px 0;
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    height: 300px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.gallery-item.team-building {
    background-image: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=800');
}

.gallery-item.birthday {
    background-image: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=800');
}

.gallery-item.awards {
    background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=800');
}

.gallery-item.training {
    background-image: url('https://images.unsplash.com/photo-1543269865-cbf427effbad?auto=format&fit=crop&w=800');
}

.gallery-item.social {
    background-image: url('https://images.unsplash.com/photo-1559028012-481c04fa702d?auto=format&fit=crop&w=800');
}

.gallery-item.office {
    background-image: url('https://images.unsplash.com/photo-1568992687947-868a62a9f521?auto=format&fit=crop&w=800');
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(16, 64, 102, 0.9));
    color: white;
}

.gallery-overlay h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 18px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 0;
}

/* WORK ENVIRONMENT */
.environment-section {
    padding: 80px 0;
    background-color: var(--off-white);
}

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

.environment-image {
    height: 450px;
    border-radius: 8px;
    background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w-800');
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.environment-features {
    list-style: none;
}

.environment-features li {
    margin-bottom: 25px;
    padding-left: 40px;
    position: relative;
}

.environment-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 24px;
    width: 30px;
    height: 30px;
    background-color: rgba(207, 1, 6, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.environment-features h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.environment-features p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* GROWTH & DEVELOPMENT */
.growth-section {
    padding: 80px 0;
    background-color: white;
}

.growth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.growth-card {
    background-color: var(--off-white);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border-top: 5px solid var(--primary-red);
}

.growth-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background-color: white;
}

.growth-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(207, 1, 6, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-red);
    font-size: 30px;
}

.growth-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.growth-card p {
    color: var(--medium-gray);
}

/* JOIN OUR TEAM CTA */
.join-team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    text-align: center;
}

.join-team-section h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.join-team-section p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
}

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

.team-stat-number {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.team-stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* FOOTER */
footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo .logo-monogram {
    background-color: white;
    color: var(--primary-red);
}

.footer-logo .logo-main {
    color: white;
}

.footer-logo .logo-tagline {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-red);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-red);
    margin-top: 3px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-red);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

/* RESPONSIVE STYLES */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .environment-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .growth-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-menu li {
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu, .language-switcher {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 20px;
    }

    .nav-menu.active li {
        margin: 10px 0;
    }

    .page-hero {
        padding: 140px 0 60px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .page-hero p {
        font-size: 18px;
    }

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

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

    .team-stats {
        flex-direction: column;
        gap: 30px;
    }

    .value-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .value-icon {
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 32px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .intro-text h3 {
        font-size: 28px;
    }

    .join-team-section h2 {
        font-size: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .intro-image {
        height: 300px;
    }

    .environment-image {
        height: 350px;
    }
}