:root {
    --primary-color: #304FFE;
    /* Electric Royal Blue */
    --secondary-color: #00C853;
    /* Vivid Malachite Green */
    --accent-color: #f50057;
    /* Energetic Pink/Red */
    --text-color: #1a1a2e;
    /* Very dark blue-ish gray for text */
    --light-bg: #f0f4f8;
    /* Very subtle cool white */
    --white: #ffffff;
    --shadow: 0 10px 30px -5px rgba(48, 79, 254, 0.15);
    --shadow-hover: 0 20px 40px -5px rgba(48, 79, 254, 0.25);
    --gradient-primary: linear-gradient(135deg, #304FFE 0%, #0056FF 100%);
    --gradient-secondary: linear-gradient(135deg, #00C853 0%, #00E676 100%);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--gradient-secondary);
    color: var(--white);
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
}

.section {
    padding: 6rem 0;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

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

.nav-links .btn {
    padding: 0.7rem 1.5rem;
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(48, 79, 254, 0.3);
}

.nav-links .btn:hover {
    box-shadow: 0 8px 25px rgba(48, 79, 254, 0.4);
}


/* Hero */
.hero {
    background: linear-gradient(135deg, rgba(48, 79, 254, 0.85), rgba(0, 86, 255, 0.75)), url('../img/hero_vivid_team.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--light-bg), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 4.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 1;
    font-weight: 300;
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.about-card {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-secondary);
}

.about-card h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
}

.about-card i {
    color: var(--secondary-color);
    font-size: 1.8rem;
}


/* Vacancies Section */
.vacancies {
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.vacancies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.vacancy-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

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

.vacancy-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.vacancy-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vacancy-card:hover .vacancy-img img {
    transform: scale(1.1);
}

.vacancy-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vacancy-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.vacancy-salary {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: block;
}

.vacancy-content ul {
    margin-bottom: 1.5rem;
}

.vacancy-content ul li {
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.vacancy-content ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.9rem;
}

.vacancy-actions {
    margin-top: auto;
    display: flex;
    gap: 1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    flex: 1;
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(48, 79, 254, 0.2);
}

.vacancy-actions .btn {
    flex: 1;
}


/* Contact/Footer */
footer {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5rem 0 3rem;
    text-align: center;
    position: relative;
}

footer h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #00E676;
    /* Brighter WhatsApp Green */
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.4);
    z-index: 1001;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 230, 118, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
    }
}

/* Detail Page Overrides */
.detail-hero {
    height: 50vh;
    background: var(--gradient-primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.detail-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    margin-top: -80px;
    padding: 4rem;
    position: relative;
    z-index: 10;
}

.salary-badge {
    background: var(--gradient-secondary);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}


/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }

    .hero {
        height: 70vh;
    }

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

    .nav-links {
        display: none;
    }

    /* Mobile menu simplified for now */
    .section {
        padding: 4rem 0;
    }

    .detail-card {
        padding: 2rem;
    }
}