/* Import fonts and variables */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
@import 'variables.css';

/* Reset and base styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* General Styles */
body {
    padding-top: 76px;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px;
    width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/background.jpeg') center/cover no-repeat;
    filter: brightness(0.8);
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 50, 80, 0.95) 0%, rgba(45, 50, 80, 0.8) 100%);
    width: 100%;
}

.hero-content {
    background: transparent;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-xl) 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-lg);
    font-weight: 500;
    font-size: 0.9375rem;
    margin: 0 auto;
}

.hero-badge i {
    color: var(--highlight);
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.2;
    margin: var(--spacing-lg) auto;
    max-width: 1200px;
    width: 90%;
}

.text-highlight {
    color: var(--highlight);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    width: 90%;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    width: 100%;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.hero-features i {
    color: var(--highlight);
    font-size: 1.25rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        padding: 0 var(--spacing-md);
    }

    .hero-features {
        display: flex;
        flex-direction: column;
        align-items: center; /* Centers the whole container */
        justify-content: center;
        text-align: left;
        width: 100%;
    }

    .hero-features span {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        width: auto;
        min-width: 250px; /* Ensures it doesn't shrink too much */
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 90%;
        max-width: 300px;
    }
}

/* Update particles opacity for better visibility */
#particles-js {
    opacity: 0.3;
}

.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.hero-shape svg {
    width: 100%;
    height: 70px;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-logo {
    width: auto;
    height: 32px;
    transition: transform 0.3s ease;
}

.brand-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--primary) !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 1.5rem;
}

.navbar-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-primary-outline {
    color: var(--primary);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    background: transparent;
    padding: 0.5rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
}

.btn-primary-outline:hover {
    background: rgba(var(--primary-rgb), 0.05);
    border-color: rgba(var(--primary-rgb), 0.3);
    color: var(--primary);
}

.btn-gradient {
    background: var(--gradient-accent);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--border-radius-md);
    border: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

/* Responsive Navbar */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-md);
    }
    .navbar-nav {
        margin: 1rem 0;
    }
    .navbar-actions {
        flex-direction: column;
        width: 100%;
    }
    .navbar-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* Footer Styles */
.footer-section {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    position: relative;
}

.footer-info p {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.footer-logo .brand-title {
    color: white;
    font-size: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.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.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--accent);
    font-size: 1.25rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-info {
        text-align: center;
    }
    
    .footer-info p {
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Page Headers */
.page-header {
    background: #f8f9fa;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

/* Services Section */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--accent-rgb), 0.1);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--accent-rgb), 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-benefits {
    background: rgba(var(--accent-rgb), 0.05);
    padding: 1rem;
    border-radius: var(--border-radius-md);
}

.benefits-label {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.5rem;
}

.service-benefits p {
    margin-bottom: 0;
    font-size: 0.875rem;
}

.service-card .btn {
    margin-top: auto;
}

@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, rgba(var(--primary-rgb), 0.03), rgba(var(--accent-rgb), 0.03));
    border-top: 1px solid rgba(var(--primary-rgb), 0.05);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.05);
}

.cta-section .section-title {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-gradient {
    background: var(--gradient-accent);
    border: none;
    padding: 1rem 2rem;
    font-weight: 500;
}

.cta-section .btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-section .section-text {
    color: var(--secondary);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery */
.gallery-item {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Career Section */
.job-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.job-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

/* Welcome Section */
.welcome-section {
    padding: var(--spacing-xl) 0 0 0;
    background: white;
    position: relative;
}

.welcome-content {
    padding: var(--spacing-lg) 0;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-accent);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gradient-accent);
    margin: var(--spacing-md) auto 0;
    border-radius: 2px;
}

.section-text {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--secondary);
}

.service-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: var(--spacing-xl);
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.highlight-item i {
    font-size: 2.5rem;
    background: var(--gradient-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-item span {
    font-weight: 500;
    color: var(--primary);
}

@media (max-width: 768px) {
    .service-highlights {
        flex-direction: column;
        gap: 2rem;
    }
    
    .section-text {
        padding: 0 var(--spacing-md);
        font-size: 1rem;
    }
}

/* Page Hero */
.page-hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab') center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
}

.min-vh-50 {
    min-height: 50vh;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: var(--spacing-xl) 0;
}

.mission-content {
    height: 100%;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--accent-rgb), 0.1);
    box-shadow: var(--shadow-sm);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--accent-rgb), 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.mission-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 3px solid rgba(var(--primary-rgb), 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

/* Team Cards */
.team-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h4 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.position {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.social-links a:hover {
    background: var(--gradient-accent);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .mission-content {
        text-align: center;
        padding: 0 1rem;
    }
    
    .mission-image {
        margin-top: 2rem;
        height: 400px;
    }
}

/* Service Categories */
.service-category {
    margin-bottom: 4rem;
}

.category-title {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-size: 0.9375rem;
}

.service-benefits li i {
    color: var(--accent);
    font-size: 1.25rem;
}

.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card p {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.service-card .btn {
    margin-top: auto;
}

/* Gallery Styles */
.gallery-filter {
    padding: 1rem 0;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    background: white;
    border-radius: var(--border-radius-md);
    color: var(--secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    background: rgba(var(--accent-rgb), 0.05);
    color: var(--accent);
}

.filter-btn.active {
    background: var(--gradient-accent);
    color: white;
    border-color: transparent;
}

.gallery-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--primary-rgb), 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 2rem;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    font-size: 0.9375rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.view-project {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.view-project:hover {
    background: white;
    color: var(--primary);
}

/* Lightbox Customization */
.lb-data .lb-caption {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.lb-data .lb-details {
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .gallery-card img {
        height: 250px;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Why Choose Us Section */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--accent-rgb), 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: white;
}

.feature-card h4 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--secondary);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 1.5rem;
    }
}

/* Career Page Styles */
.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.job-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    height: 100%;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.job-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--primary);
}

.job-type {
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
}

.job-content {
    padding: 1.5rem;
}

.job-requirements {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.job-requirements li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.job-requirements li::before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
}

.application-form .form-label {
    font-weight: 500;
    color: var(--primary);
}

@media (max-width: 768px) {
    .benefit-card {
        padding: 1.5rem;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Contact Page Styles */
.contact-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: rgba(var(--accent-rgb), 0.5);
    box-shadow: 0 0 0 0.2rem rgba(var(--accent-rgb), 0.1);
}

.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 450px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
}

/* Language Selector Styles */
/* Option 1 - Dropdown */
.language-selector .language-btn {
    color: var(--primary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.language-selector .language-btn:hover {
    color: var(--accent);
}

.language-selector .dropdown-menu {
    min-width: 150px;
    padding: 0.5rem;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    box-shadow: var(--shadow-sm);
    border-radius: var(--border-radius-sm);
}

.language-selector .dropdown-item {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
}

.language-selector .dropdown-item:hover {
    background: rgba(var(--accent-rgb), 0.1);
}

.language-selector .dropdown-item.active {
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
}

/* Option 2 - Button Toggle */
.btn-language {
    color: var(--primary);
    background: transparent;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-language:hover {
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
}

.btn-language.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

@media (max-width: 991px) {
    .language-selector {
        margin-top: 1rem;
        justify-content: center;
        display: flex;
    }
}

/* Cookie Consent Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 1rem 0;
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-setting-item {
    padding: 1rem;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
}

.cookie-setting-item:last-child {
    margin-bottom: 0;
}

.form-switch .form-check-input {
    width: 3em;
    height: 1.5em;
    cursor: pointer;
}

.form-switch .form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}