﻿/* CSS Variables for Brand Colors */
:root {
    --primary-red: #E32127;
    --primary-dark-red: #B71C1C;
    --primary-green: #136333;
    --light-elegant-black: #818181;
    --elegant-black: #1a1a1a;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #757575;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 16px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--elegant-black);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 500;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    color: var(--elegant-black);
}

h3 {
    font-size: 1.5rem;
    color: var(--elegant-black);
}

p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--medium-gray);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo .logo-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-dark-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo .logo-image {
    height: 40px;
    margin-top: 8px;
    margin-left: 20px;
    width: auto;
    transition: all 0.3s ease;
}

    .nav-logo .logo-image:hover {
        transform: scale(1.05);
    }

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-item a {
    text-decoration: none;
    color: var(--elegant-black);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

    .nav-item a:hover {
        background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .nav-item a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-red);
        transition: var(--transition);
    }

    .nav-item a:hover::after {
        width: 100%;
    }

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    min-width: 200px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: var(--elegant-black);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid var(--light-gray);
}

    .dropdown-content a:last-child {
        border-bottom: none;
    }

    .dropdown-content a:hover {
        background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

    .hamburger .bar {
        width: 25px;
        height: 3px;
        background: var(--elegant-black);
        margin: 3px 0;
        transition: var(--transition);
    }

/* Hero Section with Swiper */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

    .hero-swiper .swiper-slide {
        position: relative;
        overflow: hidden;
    }

        .hero-swiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
            transition: transform 0.8s ease;
        }

        /* Video slide styles */
        .hero-swiper .swiper-slide video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
            transition: transform 0.8s ease;
        }

        .hero-swiper .swiper-slide.video-slide.swiper-slide-active video {
            transform: scale(1.05);
        }

    .hero-swiper .swiper-slide-active img {
        transform: scale(1.05);
    }

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(227, 33, 39, 0.3), rgba(26, 26, 26, 0.4));
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-text h1 {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.8rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s ease 0.3s forwards;
}

.hero-text p {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease 0.6s forwards;
}





/* Custom Swiper Navigation */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: -35px;
    z-index: 10;
    cursor: pointer;
    pointer-events: auto;
}

    .hero-swiper .swiper-button-next::after,
    .hero-swiper .swiper-button-prev::after {
        font-size: 24px;
        font-weight: 700;
    }

    .hero-swiper .swiper-button-next:hover,
    .hero-swiper .swiper-button-prev:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

.hero-swiper .swiper-button-next {
    right: 40px;
}

.hero-swiper .swiper-button-prev {
    left: 40px;
}

/* Custom Swiper Pagination */
.hero-swiper .swiper-pagination {
    bottom: 40px;
}

.hero-swiper .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--white);
    border-color: var(--primary-red);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(227, 33, 39, 0.5);
}

.hero-swiper .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Animations */
@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Swiper Custom Effects */
.hero-swiper .swiper-slide-prev img {
    transform: scale(1) translateX(-10px);
}

.hero-swiper .swiper-slide-next img {
    transform: scale(1) translateX(10px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-header h2 {
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto;
    }

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-sections {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.about-section {
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

    .about-content.reverse {
        direction: rtl;
    }

        .about-content.reverse > * {
            direction: ltr;
        }

.about-text h3 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--primary-green);
    font-weight: 600;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: flex-start;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

    .about-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(227, 33, 39, 0.1), rgba(19, 99, 51, 0.1));
        z-index: 1;
    }

    .about-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: var(--transition);
    }

/* Values Section */
.values {
    padding: 100px 0;
    background: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-medium);
    }

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

    .value-icon .material-icons {
        color: var(--white);
        font-size: 2rem;
    }

.value-card h3 {
    color: var(--elegant-black);
    margin-bottom: 1rem;
}

/* About Page Enhanced Styles */
.about-page {
    padding: 2rem 0 4rem;
}

.about-section {
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .about-section.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

    .about-content.reverse {
        direction: rtl;
    }

        .about-content.reverse > * {
            direction: ltr;
        }

.about-text {
    padding: 2rem 0;
}

    .about-text h2 {
        color: var(--elegant-black);
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
    }

        .about-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(45deg, var(--primary-red), var(--primary-dark-red));
            border-radius: 2px;
        }

    .about-text p {
        color: var(--dark-gray);
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .about-text strong {
        color: var(--primary-red);
        font-weight: 600;
    }

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

    .about-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .about-image:hover img {
        transform: scale(1.05);
    }

/* Enhanced Certifications */
.certifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cert-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

    .cert-item:hover {
        border-color: var(--primary-green);
        transform: translateY(-5px);
        box-shadow: var(--shadow-medium);
    }

    .cert-item .material-icons {
        font-size: 3rem;
        color: var(--primary-green);
        margin-bottom: 1rem;
        transition: all 0.3s ease;
    }

    .cert-item h4 {
        color: var(--elegant-black);
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .cert-item p {
        color: var(--dark-gray);
        font-size: 0.9rem;
        line-height: 1.5;
    }

/* Enhanced Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

    .stats.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
    border-radius: var(--border-radius);
    color: var(--white);
    transition: transform 0.3s ease;
}

    .stat-item:hover {
        transform: translateY(-8px) scale(1.05);
    }

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Enhanced Values */
.values {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: var(--shadow-light);
}

    .value-card.slide-up {
        opacity: 1;
        transform: translateY(0);
    }

    .value-card:hover {
        box-shadow: var(--shadow-heavy);
        border-color: var(--primary-green);
    }

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

    .value-icon .material-icons {
        color: var(--white);
        font-size: 2.2rem;
        transition: transform 0.3s ease;
    }

.value-card h3 {
    color: var(--elegant-black);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.value-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Timeline Component */
.timeline-container {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--light-gray);
}

    .timeline-container h3 {
        color: var(--elegant-black);
        font-size: 2rem;
        margin-bottom: 3rem;
        text-align: center;
    }

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(to bottom, var(--primary-red), var(--primary-dark-red));
        transform: translateX(-50%);
    }

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

    .timeline-item:nth-child(even) {
        transform: translateX(50px);
    }

    .timeline-item.timeline-animate {
        opacity: 1;
        transform: translateX(0);
    }

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 4px solid var(--primary-green);
    border-radius: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-year {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 0.9rem;
}

.timeline-content {
    width: calc(50% - 60px);
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-red);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 60px);
    border-left: none;
    border-right: 4px solid var(--primary-red);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: calc(50% + 60px);
}

.timeline-content h4 {
    color: var(--elegant-black);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

        .about-content.reverse {
            direction: ltr;
        }

    .about-text h2 {
        font-size: 2rem;
    }

    .stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-marker {
        left: 30px;
        width: 60px;
        height: 60px;
    }

    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 100px !important;
        margin-right: 0 !important;
        border-left: 4px solid var(--primary-red) !important;
        border-right: none !important;
    }

    .timeline-item {
        transform: translateX(-30px);
    }

        .timeline-item:nth-child(even) {
            transform: translateX(-30px);
        }
}

/* Locations Page Styles */
.interactive-map-section {
    padding: 4rem 0;
    background: var(--white);
}

.map-container {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    margin-top: 3rem;
}

.map-filters {
    display: flex;
    padding: 2rem;
    gap: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid var(--light-gray);
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 20px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 25px;
    color: var(--dark-gray);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

    .filter-btn:hover {
        border-color: var(--primary-green);
        transform: translateY(-2px);
        box-shadow: var(--shadow-light);
    }

    .filter-btn.active {
        color: var(--white);
        border-color: transparent;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

        .filter-btn.active[data-filter="sucursal"] {
            background: linear-gradient(45deg, var(--primary-green), #0f4d29);
        }

        .filter-btn.active[data-filter="corporativa"] {
            background: linear-gradient(45deg, var(--primary-red), #d61f24);
        }


        .filter-btn.active[data-filter="frontera"] {
            background: linear-gradient(45deg, #ff9800, #f57c00);
        }

        .filter-btn.active[data-filter="puerto"] {
            background: linear-gradient(45deg, #2196F3, #1976D2);
        }

        .filter-btn.active[data-filter="virtual"] {
            background: linear-gradient(45deg, #9C27B0, #7B1FA2);
        }

    .filter-btn .material-icons {
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .filter-btn[data-filter="sucursal"] .material-icons {
        color: var(--primary-green);
    }

    .filter-btn[data-filter="corporativa"] .material-icons {
        color: var(--primary-red);
    }


    .filter-btn[data-filter="frontera"] .material-icons {
        color: #ff9800;
    }

    .filter-btn[data-filter="puerto"] .material-icons {
        color: #2196F3;
    }

    .filter-btn[data-filter="virtual"] .material-icons {
        color: #9C27B0;
    }

    .filter-btn.active .material-icons {
        color: var(--white) !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

.real-map-wrapper {
    position: relative;
    height: 600px;
    background: #f5f5f5;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.ol-map {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
}

.map-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.map-control-btn {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

    .map-control-btn:hover {
        background: var(--primary-green);
        color: var(--white);
        border-color: var(--primary-green);
        transform: scale(1.1);
    }

    .map-control-btn .material-icons {
        font-size: 1.2rem;
    }

/* OpenLayers custom styles */
.ol-popup {
    position: absolute;
    background-color: var(--white);
    box-shadow: var(--shadow-heavy);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-green);
    bottom: 12px;
    left: -50px;
    min-width: 200px;
    z-index: 1000;
}

    .ol-popup:after,
    .ol-popup:before {
        top: 100%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
    }

    .ol-popup:after {
        border-top-color: var(--white);
        border-width: 10px;
        left: 48px;
        margin-left: -10px;
    }

    .ol-popup:before {
        border-top-color: var(--primary-green);
        border-width: 12px;
        left: 48px;
        margin-left: -12px;
    }

.ol-popup-closer {
    text-decoration: none;
    position: absolute;
    top: 8px;
    right: 8px;
    color: var(--dark-gray);
    font-weight: bold;
}

    .ol-popup-closer:hover {
        color: var(--primary-red);
    }

.popup-content h4 {
    margin: 0 0 10px 0;
    color: var(--elegant-black);
    font-size: 1.1rem;
}

.popup-content p {
    margin: 5px 0;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.popup-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.popup-btn {
    padding: 8px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

    .popup-btn.primary {
        background: var(--primary-green);
        color: var(--white);
    }

    .popup-btn.secondary {
        background: var(--primary-red);
        color: var(--white);
    }

    .popup-btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-light);
    }

/* Custom marker styles */
.location-marker-overlay {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

    .location-marker-overlay.corporate {
        background: var(--primary-red);
        border: 3px solid var(--white);
    }

    .location-marker-overlay.branch {
        background: var(--primary-green);
        border: 3px solid var(--white);
    }

    .location-marker-overlay.border {
        background: #ff9800;
        border: 3px solid var(--white);
    }

    .location-marker-overlay.port {
        background: #2196F3;
        border: 3px solid var(--white);
    }

    .location-marker-overlay.virtual {
        background: #9C27B0;
        border: 3px solid var(--white);
    }

    .location-marker-overlay:hover {
        transform: scale(1.2);
        box-shadow: 0 4px 12px rgba(227, 33, 39, 0.5);
    }

    .location-marker-overlay .material-icons {
        color: var(--white) !important;
        font-size: 16px !important;
        line-height: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        font-weight: 400 !important;
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

/* Custom Tooltip Styles */
.location-marker-overlay {
    position: relative;
}

/* Global tooltip that appears above all elements */
#global-tooltip {
    position: fixed;
    background: rgba(0, 0, 0, 0.9);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 999999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
    transform: translateX(-50%) translateY(-100%);
}

    #global-tooltip.show {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(-110%);
    }

    #global-tooltip::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 5px solid transparent;
        border-top-color: rgba(0, 0, 0, 0.9);
    }


.virtual-info {
    background: rgba(156, 39, 176, 0.1);
    border-left: 3px solid #9C27B0;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

    .virtual-info h4 {
        color: #9C27B0;
        margin-bottom: 0.5rem;
    }

.virtual-note {
    font-size: 0.85rem;
    color: #9C27B0;
    font-style: italic;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
}

.attended-by-contact {
    margin: 1rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

    .contact-item .material-icons {
        font-size: 1rem;
        color: #9C27B0;
    }

    .contact-item a {
        color: #9C27B0;
        text-decoration: none;
        font-weight: 500;
    }

        .contact-item a:hover {
            text-decoration: underline;
        }

.attended-by-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.attended-maps-btn, .attended-call-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.attended-maps-btn {
    background: #9C27B0;
    color: var(--white);
    border: 1px solid #9C27B0;
}

    .attended-maps-btn:hover {
        background: #7B1FA2;
        border-color: #7B1FA2;
        transform: translateY(-1px);
    }

.attended-call-btn {
    background: #9C27B0;
    color: var(--white);
    border: 1px solid #9C27B0;
}

    .attended-call-btn:hover {
        background: #7B1FA2;
        border-color: #7B1FA2;
        transform: translateY(-1px);
    }

    .attended-maps-btn .material-icons,
    .attended-call-btn .material-icons {
        font-size: 1rem;
        color: var(--white);
    }

.location-info-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-heavy);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
}

    .location-info-panel.active {
        right: 0;
    }

.panel-header {
    padding: 2rem;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-dark-red));
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1001;
}

    .panel-header h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin: 0;
        flex: 1;
        line-height: 1.3;
        color: var(--white)
    }

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

    .close-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }

.panel-content {
    padding: 2rem;
}

.location-info-grid {
    display: grid;
    gap: 2rem;
}

.info-section h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--elegant-black);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

    .info-section h4 .material-icons {
        color: var(--primary-green);
        font-size: 1.2rem;
    }

.info-section p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.info-section a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
}

    .info-section a:hover {
        text-decoration: underline;
    }

.services-section {
    border-top: 1px solid var(--light-gray);
    padding-top: 1.5rem;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.service-tag {
    background: linear-gradient(45deg, var(--primary-red), var(--primary-dark-red));
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.info-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.maps-btn,
.call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.maps-btn {
    background: var(--primary-green);
    color: var(--white) !important;
}

    .maps-btn:hover {
        background: #0f5132;
        transform: translateY(-2px);
    }

.call-btn {
    background: var(--primary-red);
    color: var(--white) !important;
}

    .call-btn:hover {
        background: #c41e3a;
        transform: translateY(-2px);
    }

.locations-stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-red);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

    .stat-card.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    .stat-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-heavy);
    }

.stat-card-branch {
    border-left-color: var(--primary-green);
}

    .stat-card-branch:hover {
        border-left-color: #0f4d29;
    }

.stat-card-corporate {
    border-left-color: var(--primary-red);
}

    .stat-card-corporate:hover {
        border-left-color: #d61f24;
    }

.stat-card-border {
    border-left-color: #ff9800;
}

    .stat-card-border:hover {
        border-left-color: #f57c00;
    }

.stat-card-port {
    border-left-color: #2196F3;
}

    .stat-card-port:hover {
        border-left-color: #1976D2;
    }

.stat-card-virtual {
    border-left-color: #9C27B0;
}

    .stat-card-virtual:hover {
        border-left-color: #7B1FA2;
    }

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.stat-card-branch .stat-icon {
    background: linear-gradient(45deg, var(--primary-green), #0f4d29);
}

.stat-card-corporate .stat-icon {
    background: linear-gradient(45deg, var(--primary-red), #d61f24);
}

.stat-card-border .stat-icon {
    background: linear-gradient(45deg, #ff9800, #f57c00);
}

.stat-card-port .stat-icon {
    background: linear-gradient(45deg, #2196F3, #1976D2);
}

.stat-card-virtual .stat-icon {
    background: linear-gradient(45deg, #9C27B0, #7B1FA2);
}

/* Statistics locations list styles */
.stat-locations {
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.stat-card.expanded .stat-locations {
    max-height: 300px;
    opacity: 1;
    padding-bottom: 0.5rem;
}

.locations-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.location-item {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .location-item.more-locations {
        background: rgba(255, 255, 255, 0.25);
        font-weight: 600;
        cursor: pointer;
    }

.no-locations {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-style: italic;
    margin: 0;
    text-align: center;
}

.stat-card {
    cursor: pointer;
    position: relative;
}

    .stat-card::after {
        content: '▼';
        position: absolute;
        top: 1rem;
        right: 1rem;
        color: rgba(255, 255, 255, 0.8);
        font-size: 1rem;
        font-weight: bold;
        transition: transform 0.3s ease;
        z-index: 10;
        pointer-events: none;
    }

    .stat-card.expanded::after {
        transform: rotate(180deg);
        color: rgba(255, 255, 255, 1);
    }

/* New Statistics Design */
.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.stat-overview-item {
    background: linear-gradient(45deg, var(--primary-red), #d61f24);
    padding: 2rem 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

    .stat-overview-item:hover {
        transform: translateY(-5px);
    }

.stat-overview-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-overview-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.locations-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-category {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
    border-left: 5px solid var(--primary-green);
    max-height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

    .location-category.corporate {
        border-left-color: var(--primary-red);
    }

    .location-category.border {
        border-left-color: #ff9800;
    }

    .location-category.port {
        border-left-color: #2196F3;
    }

    .location-category.virtual {
        border-left-color: #9C27B0;
    }

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.category-icon {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    justify-content: center !important;
    background: linear-gradient(45deg, var(--primary-green), #0f4d29) !important;
    border: none !important;
    box-shadow: none !important;
    position: relative !important;
}

    .category-icon.corporate {
        background: linear-gradient(45deg, var(--primary-red), #d61f24) !important;
    }

    .category-icon.border {
        background: linear-gradient(45deg, #ff9800, #f57c00) !important;
    }

    .category-icon.port {
        background: linear-gradient(45deg, #2196F3, #1976D2) !important;
    }

    .category-icon.virtual {
        background: linear-gradient(45deg, #9C27B0, #7B1FA2) !important;
    }

    .category-icon .material-icons {
        color: var(--white) !important;
        font-size: 1.5rem !important;
        line-height: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

.category-info h3 {
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.category-info .category-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    flex: 1;
    align-content: flex-start;
}

.location-pill {
    background: linear-gradient(45deg, var(--primary-green), #0f4d29);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    overflow: hidden;
}

    .location-pill:hover {
        transform: scale(1.05);
    }

    /* Expandable location pill styles */
    .location-pill.expandable {
        padding: 0;
        white-space: normal;
        text-align: left;
        cursor: pointer;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

        .location-pill.expandable:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

.pill-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.8rem;
    cursor: pointer;
    background: inherit;
    transition: background-color 0.2s ease;
}

    .pill-header:hover {
        background: rgba(255, 255, 255, 0.1);
    }

.pill-name {
    font-weight: 500;
    font-size: 0.85rem;
}

.expand-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.location-pill.expanded .expand-icon {
    transform: rotate(180deg);
}

.pill-details {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    background: rgba(255, 255, 255, 0.95);
    color: var(--elegant-black);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.location-pill.expanded .pill-details {
    max-height: 300px;
    opacity: 1;
    padding: 1rem;
}

.location-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

    .location-detail-item .material-icons {
        font-size: 1.1rem;
        color: var(--primary-green);
        margin-top: 0.1rem;
        flex-shrink: 0;
    }

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

    .detail-content strong {
        font-weight: 500;
        color: var(--elegant-black);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .detail-content a {
        color: var(--primary-green);
        text-decoration: none;
        font-weight: 500;
    }

        .detail-content a:hover {
            text-decoration: underline;
        }

    .detail-content small {
        color: var(--text-secondary);
        font-size: 0.75rem;
        font-style: italic;
    }

.virtual-info .detail-content span {
    color: var(--elegant-black);
    font-weight: 500;
}

.location-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    flex: 1;
    justify-content: center;
}

    .action-btn .material-icons {
        font-size: 1rem;
    }

.maps-btn {
    background: var(--primary-green);
    color: var(--white);
}

    .maps-btn:hover {
        background: #0f4d29;
        transform: translateY(-1px);
    }

.call-btn {
    background: transparent;
    color: var(--primary-green) !important;
    border: 1px solid var(--primary-green);
}

    .call-btn:hover {
        background: var(--primary-green);
        color: var(--white);
        transform: translateY(-1px);
    }

.location-pill.corporate {
    background: linear-gradient(45deg, var(--primary-red), #d61f24);
}

.location-pill.border {
    background: linear-gradient(45deg, #ff9800, #f57c00);
}

.location-pill.port {
    background: linear-gradient(45deg, #2196F3, #1976D2);
}

.location-pill.virtual {
    background: linear-gradient(45deg, #9C27B0, #7B1FA2);
}

/* Custom scrollbar for location categories */
.location-category::-webkit-scrollbar {
    width: 6px;
}

.location-category::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.location-category::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

    .location-category::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 0, 0, 0.3);
    }

.stat-icon .material-icons {
    color: var(--white);
    font-size: 1.8rem;
}

.stat-content h3 {
    color: var(--elegant-black);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.stat-content p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* Responsive Design for Locations */
@media (max-width: 1024px) {
    .location-info-panel {
        width: 350px;
        right: -350px;
    }
}

@media (max-width: 768px) {
    .map-filters {
        padding: 1.5rem;
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .mexico-map-wrapper {
        padding: 1.5rem;
        min-height: 400px;
    }

    .location-info-panel {
        width: 100%;
        right: -100%;
        position: fixed;
        top: 0;
        height: 100vh;
    }

        .location-info-panel.active {
            right: 0;
        }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .location-label {
        font-size: 9px;
    }

    .info-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .map-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        justify-content: center;
    }

    .mexico-map-wrapper {
        padding: 1rem;
        min-height: 300px;
    }

    .panel-header {
        padding: 1.5rem;
    }

    .panel-content {
        padding: 1.5rem;
    }
}

/* Services Filter Section */
.services-filter {
    padding: 2rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--medium-gray);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--dark-gray);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

    .filter-tab:hover {
        background: var(--medium-gray);
        color: var(--elegant-black);
    }

    .filter-tab.active {
        background: var(--primary-red);
        color: var(--white);
        border-color: var(--primary-red);
    }

    .filter-tab .material-icons {
        font-size: 1.1rem;
    }

/* Services Grid Section */
.services-grid-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-medium);
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-red), var(--primary-dark-red));
    }

.service-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .service-icon.hazmat {
        background: linear-gradient(45deg, #ff9800, #f44336);
    }

    .service-icon.express {
        background: linear-gradient(45deg, #2196f3, #03a9f4);
    }

    .service-icon .material-icons {
        color: var(--white);
        font-size: 1.5rem;
    }

.service-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--medium-gray);
    color: var(--dark-gray);
}

    .service-badge.popular {
        background: #4caf50;
        color: var(--white);
    }

    .service-badge.premium {
        background: #9c27b0;
        color: var(--white);
    }

    .service-badge.express {
        background: #2196f3;
        color: var(--white);
    }

    .service-badge.certified {
        background: #ff9800;
        color: var(--white);
    }

.service-body {
    padding: 0 1.5rem 1.5rem;
    flex-grow: 1;
}

    .service-body h3 {
        color: var(--elegant-black);
        font-size: 1.3rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .service-body p {
        color: var(--dark-gray);
        line-height: 1.6;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature {
    font-size: 0.85rem;
    color: var(--primary-green);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.service-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--light-gray);
    margin-top: auto;
}

.service-action {
    width: 100%;
    padding: 12px 24px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

    .service-action:hover {
        background: var(--primary-green);
        transform: translateY(-2px);
    }

/* Service Card Filter Animation */
.service-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.service-card.visible {
    opacity: 1;
    transform: scale(1);
}

/* Locations Section */
.locations {
    padding: 100px 0;
    background: var(--light-gray);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.location-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

    .location-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-medium);
    }

.location-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

    .location-icon .material-icons {
        color: var(--white);
        font-size: 2rem;
    }

.location-info p {
    margin-bottom: 0.5rem;
    text-align: left;
}

/* Downloads Section */
.downloads {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    position: relative;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--primary-green), #0d4f2a);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(19, 99, 51, 0.3);
}

    .download-badge .material-icons {
        font-size: 1.1rem;
    }

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.download-category {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-green);
}

    .download-category:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    }

.category-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}

    .category-header .material-icons {
        font-size: 3rem;
        color: var(--primary-green);
        background: rgba(19, 99, 51, 0.1);
        padding: 1rem;
        border-radius: 50%;
        margin-bottom: 1rem;
    }

    .category-header h3 {
        color: var(--elegant-black);
        margin: 0 0 0.5rem 0;
        font-size: 1.4rem;
        font-weight: 600;
    }

    .category-header p {
        color: var(--text-secondary);
        margin: 0;
        font-size: 0.9rem;
    }

.download-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

    .download-item:hover {
        background: #e9ecef;
        transform: translateX(8px);
        border-left-color: var(--primary-green);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .download-item.featured {
        background: linear-gradient(135deg, rgba(19, 99, 51, 0.05), rgba(19, 99, 51, 0.02));
        border: 2px solid rgba(19, 99, 51, 0.2);
        border-left: 4px solid var(--primary-green);
    }

        .download-item.featured:hover {
            background: linear-gradient(135deg, rgba(19, 99, 51, 0.1), rgba(19, 99, 51, 0.05));
            border-color: var(--primary-green);
        }

.download-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .download-icon .material-icons {
        font-size: 1.8rem;
        color: var(--primary-green);
    }

.download-info {
    flex: 1;
}

    .download-info h4 {
        margin: 0 0 0.5rem 0;
        color: var(--elegant-black);
        font-size: 1.1rem;
        font-weight: 600;
    }

    .download-info p {
        margin: 0 0 0.5rem 0;
        font-size: 0.9rem;
        color: var(--text-secondary);
        line-height: 1.4;
    }

.file-details {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.file-type {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .file-type.pdf {
        background: #ff4757;
        color: var(--white);
    }

    .file-type.excel {
        background: #1e824c;
        color: var(--white);
    }

.file-size {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.downloads-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

    .footer-info .material-icons {
        color: var(--primary-green);
        font-size: 1.5rem;
    }

    .footer-info p {
        margin: 0;
        color: var(--text-secondary);
        font-size: 0.95rem;
    }

.support-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--primary-green), #0d4f2a);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(19, 99, 51, 0.3);
}

    .support-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(19, 99, 51, 0.4);
    }

/* Responsive Design for Downloads */
@media (max-width: 768px) {
    .downloads-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .download-category {
        padding: 1.5rem;
    }

    .category-header .material-icons {
        font-size: 2.5rem;
        padding: 0.8rem;
    }

    .download-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .download-icon {
        width: 50px;
        height: 50px;
    }

    .file-details {
        justify-content: center;
    }

    .downloads-footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive Design for Locations CTA */
@media (max-width: 768px) {
    .locations-cta {
        padding: 3rem 0;
    }

        .locations-cta .cta-grid {
            grid-template-columns: 1fr !important;
            gap: 2.5rem !important;
        }

        .locations-cta .cta-content {
            text-align: center;
            order: 1;
        }

        .locations-cta .cta-image {
            order: 2;
        }

        .locations-cta .cta-content h2 {
            font-size: 1.8rem;
            line-height: 1.3;
        }

        .locations-cta .cta-content p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

    .location-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }

    .stat-highlight {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .location-features {
        gap: 1rem;
        margin: 2rem 0;
    }

    .feature-item {
        padding: 1rem;
        text-align: left;
    }

        .feature-item .material-icons {
            font-size: 1.3rem;
            padding: 10px;
        }

    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }

        .cta-actions .cta-button {
            justify-content: center;
            width: 100%;
            max-width: 280px;
            padding: 14px 24px;
        }

    .image-container img {
        height: 250px;
    }

    .overlay-content .material-icons {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .locations-cta {
        padding: 2.5rem 0;
    }

    .location-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .locations-cta .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .locations-cta .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .location-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin: 1.5rem 0;
    }

    .stat-highlight {
        padding: 1.2rem 0.8rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .location-features {
        gap: 0.8rem;
        margin: 1.5rem 0;
    }

    .feature-item {
        padding: 0.8rem;
        gap: 0.8rem;
        flex-direction: column;
        text-align: center;
    }

        .feature-item .material-icons {
            font-size: 1.2rem;
            padding: 8px;
            align-self: center;
        }

    .feature-content h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .feature-content p {
        font-size: 0.9rem;
        margin: 0;
    }

    .cta-actions {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }

        .cta-actions .cta-button {
            padding: 12px 20px;
            font-size: 0.95rem;
            max-width: 100%;
        }

    .image-container img {
        height: 200px;
    }
}

/* Responsive Design for Services CTA */
@media (max-width: 768px) {
    .services-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-stat {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

        .stat-icon .material-icons {
            font-size: 1.3rem;
        }

    .stat-number {
        font-size: 1.3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

        .service-icon .material-icons {
            font-size: 1.5rem;
        }

    .service-badge {
        margin-top: 0;
    }

    .highlight-content {
        flex-direction: column;
        text-align: center;
    }

        .highlight-content .material-icons {
            font-size: 2rem;
        }

    .services-footer .cta-actions {
        flex-direction: column;
    }
}

/* Vacantes Page Styles */
/* Video Hero Section */
.video-hero {
    padding: 5rem 0;
    background: var(--light-gray);
}

.video-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .video-header h2 {
        font-size: 2.5rem;
        color: var(--elegant-black);
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .video-header p {
        font-size: 1.1rem;
        color: var(--dark-gray);
        max-width: 600px;
        margin: 0 auto;
    }

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    background: #0a0a0a;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 4px 16px rgba(0, 0, 0, 0.12), 0 16px 64px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .video-wrapper:hover {
        box-shadow: 0 0 0 1px rgba(227, 33, 39, 0.2), 0 8px 32px rgba(0, 0, 0, 0.2), 0 32px 128px rgba(227, 33, 39, 0.08);
    }


.careers-video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    background: #000;
    position: relative;
}


.video-info {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.video-wrapper:hover .video-info {
    opacity: 1;
    transform: translateY(0);
}

.video-title {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .video-title h3 {
        color: white;
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0;
        margin-bottom: 4px;
    }

    .video-title p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        margin: 0;
    }

.video-badge {
    background: var(--primary-red);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(227, 33, 39, 0.3);
}

.custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 24px 24px;
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.video-wrapper:hover .custom-controls {
    opacity: 1;
    transform: translateY(0);
}

.control-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.play-button {
    width: 48px;
    height: 48px;
    background: var(--primary-red);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(227, 33, 39, 0.4);
}

    .play-button:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 24px rgba(227, 33, 39, 0.6);
    }

.progress-container {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.progress-bar {
    height: 100%;
    background: var(--primary-red);
    border-radius: 3px;
    width: 0%;
    position: relative;
    transition: width 0.1s ease;
}

    .progress-bar::after {
        content: '';
        position: absolute;
        right: -6px;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
        background: white;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        opacity: 0;
        transition: opacity 0.2s ease;
    }

.progress-container:hover .progress-bar::after {
    opacity: 1;
}

.time-display {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 80px;
    text-align: center;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

    .volume-button:hover {
        background: rgba(255, 255, 255, 0.1);
    }

.volume-slider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.volume-progress {
    height: 100%;
    background: var(--primary-red);
    border-radius: 2px;
    width: 70%;
    position: relative;
    transition: width 0.1s ease;
}

    .volume-progress::after {
        content: '';
        position: absolute;
        right: -4px;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        background: white;
        border-radius: 50%;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        opacity: 0;
        transition: opacity 0.2s ease;
    }

.volume-slider:hover .volume-progress::after {
    opacity: 1;
}

.fullscreen-button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

    .fullscreen-button:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.1);
    }

.video-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.careers-video {
    cursor: pointer;
}

    .careers-video::-webkit-media-controls {
        display: none !important;
    }

/* Fullscreen styles */
.video-wrapper:fullscreen {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    width: 100vw;
    height: 100vh;
}

    .video-wrapper:fullscreen .careers-video {
        width: 100%;
        height: 100%;
        max-width: 100vw;
        max-height: 100vh;
        object-fit: contain;
    }

    .video-wrapper:fullscreen .custom-controls {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .video-wrapper:fullscreen .video-info {
        position: fixed;
        top: 24px;
        left: 24px;
        right: 24px;
        z-index: 1000;
    }

/* Careers Hero Content Section */
.careers-hero-content {
    padding: 5rem 0;
    background: var(--white);
}

    .careers-hero-content .hero-text {
        text-align: center;
        max-width: 1000px;
        margin: 0 auto;
    }

    .careers-hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        color: var(--elegant-black);
    }

    .careers-hero-content p {
        font-size: 1.3rem;
        margin-bottom: 3rem;
        line-height: 1.6;
        color: var(--dark-gray);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 3rem;
    }

/* Legacy careers-hero styles (kept for compatibility) */
.careers-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(227, 33, 39, 0.8), rgba(183, 28, 28, 0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.careers-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-dark-red));
    color: var(--white);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(227, 33, 39, 0.3);
}

.careers-hero .hero-text {
    color: var(--white);
    max-width: 800px;
}

.careers-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.careers-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.hero-stat {
    text-align: center;
    color: var(--white);
}

    .hero-stat .stat-number {
        display: block;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .hero-stat .stat-label {
        font-size: 0.9rem;
        opacity: 0.9;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

.why-xcf {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.why-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--primary-green), #0d4f2a);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(19, 99, 51, 0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-green);
    text-align: center;
}

    .benefit-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    }

    .benefit-card.featured {
        border-top-color: var(--primary-red);
        background: linear-gradient(135deg, rgba(227, 33, 39, 0.02), rgba(255, 255, 255, 1));
    }

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-green), #0d4f2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(19, 99, 51, 0.3);
}

.benefit-card.featured .benefit-icon {
    background: linear-gradient(45deg, var(--primary-red), var(--primary-dark-red));
    box-shadow: 0 4px 15px rgba(227, 33, 39, 0.3);
}

.benefit-icon .material-icons {
    color: var(--white);
    font-size: 2rem;
}

.benefit-card h3 {
    color: var(--elegant-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.standard-benefits {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

    .standard-benefits h3 {
        text-align: center;
        color: var(--elegant-black);
        margin-bottom: 2rem;
        font-size: 1.5rem;
    }

.standard-benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.standard-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .standard-benefit:hover {
        background: #e9ecef;
        transform: translateY(-2px);
    }

    .standard-benefit .material-icons {
        color: var(--primary-green);
        font-size: 1.5rem;
    }

    .standard-benefit span:last-child {
        font-weight: 500;
        color: var(--elegant-black);
    }

.available-jobs {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.jobs-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-dark-red));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(227, 33, 39, 0.3);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.job-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-green);
}

    .job-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    }

.job-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.job-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-green), #0d4f2a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(19, 99, 51, 0.3);
}

    .job-icon .material-icons {
        color: var(--white);
        font-size: 1.8rem;
    }

.job-badge {
    background: var(--primary-green);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .job-badge.urgent {
        background: var(--primary-red);
        animation: pulse 2s infinite;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.job-content h3 {
    color: var(--elegant-black);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.job-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.job-requirements {
    margin-bottom: 1.5rem;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

    .requirement .material-icons {
        color: var(--primary-green);
        font-size: 1.1rem;
    }

.job-locations {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

    .job-locations .material-icons {
        color: var(--primary-red);
        font-size: 1.1rem;
    }

.apply-btn {
    width: 100%;
    background: linear-gradient(45deg, var(--primary-green), #0d4f2a);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(19, 99, 51, 0.3);
}

    .apply-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(19, 99, 51, 0.4);
    }

.application-form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-dark-red));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(227, 33, 39, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .form-header h2 {
        color: var(--elegant-black);
        margin-bottom: 1rem;
        font-size: 2rem;
    }

    .form-header p {
        color: var(--text-secondary);
        font-size: 1.1rem;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--elegant-black);
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

        .form-group label .material-icons {
            color: var(--primary-green);
            font-size: 1.2rem;
        }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        border: 2px solid #e9ecef;
        border-radius: 8px;
        font-size: 1rem;
        font-family: 'Roboto', sans-serif;
        transition: all 0.3s ease;
        background: var(--white);
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(19, 99, 51, 0.1);
        }

        .form-group input.error,
        .form-group select.error {
            border-color: var(--primary-red);
            box-shadow: 0 0 0 3px rgba(227, 33, 39, 0.1);
        }

    .form-group.file-upload {
        margin-top: 1.5rem;
    }

        .form-group.file-upload input[type="file"] {
            display: none;
        }

.file-upload-area {
    border: 2px dashed #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

    .file-upload-area:hover,
    .file-upload-area.drag-over {
        border-color: var(--primary-green);
        background: rgba(19, 99, 51, 0.05);
    }

    .file-upload-area.file-selected {
        border-color: var(--primary-green);
        background: rgba(19, 99, 51, 0.05);
    }

.file-upload-content .material-icons {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.file-upload-content p {
    color: var(--elegant-black);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.file-upload-content small {
    color: var(--text-secondary);
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.submit-btn {
    background: linear-gradient(45deg, var(--primary-green), #0d4f2a);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(19, 99, 51, 0.3);
    margin-bottom: 1rem;
}

    .submit-btn:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(19, 99, 51, 0.4);
    }

    .submit-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

    .form-note .material-icons {
        color: var(--primary-green);
        font-size: 1.1rem;
    }

/* Contact Help Note Styles */
.contact-help-note {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-green);
    text-align: center;
}

    .contact-help-note h4 {
        color: var(--elegant-black);
        margin-bottom: 0.5rem;
        font-size: 1.2rem;
        font-weight: 600;
    }

    .contact-help-note > p {
        color: var(--dark-gray);
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }

.contact-details-inline {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

    .contact-item-inline .material-icons {
        color: var(--primary-green);
        font-size: 1.1rem;
    }

@media (max-width: 768px) {
    .contact-details-inline {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-help-note {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
}

/* SweetAlert2 Custom Styling - Material Design */
.swal2-popup {
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
    font-family: 'Roboto', sans-serif !important;
    padding: 2rem !important;
}

.swal2-title {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 600 !important;
    color: var(--elegant-black) !important;
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
}

.swal2-content {
    font-family: 'Roboto', sans-serif !important;
    font-size: 15px !important;
    color: var(--dark-gray) !important;
    line-height: 1.5 !important;
}

.swal2-actions {
    gap: 12px !important;
    margin-top: 1.5rem !important;
}

.swal2-confirm {
    border-radius: 24px !important;
    padding: 12px 24px !important;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border: none !important;
    min-width: 100px !important;
    height: 40px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

.swal2-cancel {
    border-radius: 24px !important;
    padding: 12px 24px !important;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border: 2px solid var(--medium-gray) !important;
    background: transparent !important;
    color: var(--dark-gray) !important;
    min-width: 100px !important;
    height: 40px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.swal2-confirm:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
}

.swal2-cancel:hover {
    background: var(--light-gray) !important;
    border-color: var(--dark-gray) !important;
    transform: translateY(-1px) !important;
}

.swal2-icon {
    border: none !important;
    margin: 1rem auto 1.5rem !important;
}

    .swal2-icon.swal2-success {
        border-color: var(--primary-green) !important;
        color: var(--primary-green) !important;
    }

    .swal2-icon.swal2-error {
        border-color: var(--primary-red) !important;
        color: var(--primary-red) !important;
    }

    .swal2-icon.swal2-warning {
        border-color: #ff9800 !important;
        color: #ff9800 !important;
    }

    .swal2-icon.swal2-question {
        border-color: #2196f3 !important;
        color: #2196f3 !important;
    }

.swal2-loader {
    border-color: var(--primary-green) transparent var(--primary-green) transparent !important;
}

.swal2-close {
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    background: rgba(0, 0, 0, 0.05) !important;
    color: var(--dark-gray) !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    right: 12px !important;
    top: 12px !important;
}

    .swal2-close:hover {
        background: rgba(0, 0, 0, 0.1) !important;
        transform: scale(1.1) !important;
    }

/* Toast notifications styling */
.swal2-toast .swal2-popup {
    border-radius: 12px !important;
    padding: 1rem 1.5rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

.swal2-toast .swal2-title {
    font-size: 14px !important;
    margin: 0 !important;
}

.swal2-toast .swal2-content {
    font-size: 13px !important;
    margin: 0 !important;
}

/* Custom classes for specific dialogs */
.swal-validation-popup {
    font-family: 'Roboto', sans-serif !important;
}

.swal-validation-title {
    color: var(--elegant-black) !important;
    font-weight: 600 !important;
}

.swal-validation-content {
    font-size: 15px !important;
}

.careers-contact {
    padding: 5rem 0;
    background: var(--elegant-black);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

    .contact-item .material-icons {
        color: var(--primary-green);
        font-size: 1.5rem;
        margin-top: 0.2rem;
    }

    .contact-item strong {
        color: var(--white);
        display: block;
        margin-bottom: 0.5rem;
    }

    .contact-item p {
        color: #ccc;
        margin: 0;
    }

.contact-cta {
    background: linear-gradient(45deg, var(--primary-red), var(--primary-dark-red));
    padding: 2.5rem;
    border-start-start-radius: 16px;
    border-start-end-radius: 16px;
    text-align: center;
}

.cta-content .material-icons {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-btn {
    background: var(--white);
    color: var(--primary-red);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

    .contact-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

/* Responsive Design for Vacantes */
@media (max-width: 768px) {
    .video-hero {
        padding: 3rem 0;
    }

    .video-header h2 {
        font-size: 2rem;
    }

    .video-header p {
        font-size: 1rem;
    }

    .video-wrapper {
        margin: 0 15px;
        border-radius: 15px;
    }

    .careers-video {
        min-height: 300px;
        height: 350px;
    }

    .video-wrapper:hover {
        box-shadow: 0 0 0 1px rgba(227, 33, 39, 0.15), 0 12px 48px rgba(0, 0, 0, 0.15), 0 24px 96px rgba(227, 33, 39, 0.05);
    }

    .video-wrapper {
        border-radius: 20px;
        max-width: 95%;
    }

    .control-bar {
        flex-wrap: wrap;
        gap: 12px;
    }

    .play-button {
        width: 40px;
        height: 40px;
    }

    .time-display {
        font-size: 0.8rem;
        min-width: 70px;
    }

    .volume-container {
        gap: 6px;
    }

    .volume-slider {
        width: 60px;
    }

    .video-title h3 {
        font-size: 1rem;
    }

    .video-title p {
        font-size: 0.8rem;
    }

    .video-badge {
        font-size: 0.7rem;
        padding: 6px 10px;
    }

    .custom-controls {
        padding: 30px 16px 16px;
    }

    .video-info {
        top: 16px;
        left: 16px;
        right: 16px;
    }

    .careers-hero-content {
        padding: 3rem 0;
    }

        .careers-hero-content h1 {
            font-size: 2.5rem;
        }

        .careers-hero-content p {
            font-size: 1.1rem;
        }

    .careers-hero h1 {
        font-size: 2.5rem;
    }

    .careers-hero p {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .standard-benefits-list {
        grid-template-columns: 1fr;
    }
}

/* Footer - Advanced UI/UX */
.footer {
    background: var(--elegant-black);
    color: var(--white);
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 127, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 38, 127, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(220, 38, 127, 0.03) 0%, transparent 50%);
    animation: patternMove 30s ease-in-out infinite;
}

.footer-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-red) 20%, 
        var(--primary-green) 80%, 
        transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.footer-section {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

.footer-brand {
    position: relative;
}

.footer-logo {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(220, 38, 127, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
    z-index: -1;
}


.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    transition: color 0.3s ease;
}

.footer-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.8rem;
}



.footer-title .material-icons {
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.footer-section:hover .footer-title .material-icons {
    color: var(--primary-green);
    transform: scale(1.1);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.footer-links-list li:hover {
    transform: translateX(8px);
}

.footer-links-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    padding: 0.3rem 0;
}


.footer-links-list li a:hover {
    color: var(--white);
    transform: translateX(4px);
}


/* Social Links */
.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-link {
    position: relative;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: all 0.3s ease;
    z-index: 2;
}

.social-link:hover {
    border-color: var(--primary-red);
}

.social-link:hover::before {
    left: 100%;
}

.social-link.facebook:hover {
    background: linear-gradient(135deg, #1877F2, #0d5cd4);
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
    color: white;
}

.social-link.linkedin:hover {
    background: linear-gradient(135deg, #0077B5, #005885);
    color: white;
}

.social-link.whatsapp:hover {
    background: linear-gradient(135deg, #25D366, #1da851);
    color: white;
}

/* Social Tooltips */
.social-tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}


.social-link:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -35px;
}

/* Footer Stats */
.footer-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(220, 38, 127, 0.1), rgba(220, 38, 127, 0.05));
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 38, 127, 0.2);
}

.stat-item:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(220, 38, 127, 0.2), rgba(220, 38, 127, 0.1));
    border-color: rgba(220, 38, 127, 0.4);
    box-shadow: 0 8px 24px rgba(220, 38, 127, 0.15);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    color: var(--primary-green);
    transform: scale(1.1);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Contact Info */
.footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    align-items: center;
}

    .footer .contact-item:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(220, 38, 127, 0.3);
    }

    .footer .contact-item .material-icons {
        color: var(--primary-red);
        font-size: 1.4rem;
        margin-top: 0.2rem;
        transition: color 0.3s ease;
    }


    .footer .contact-item a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
        line-height: 1.5;
    }

    .footer .contact-item:hover a {
        color: var(--white);
    }

    .footer .contact-item address {
        font-style: normal;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        transition: color 0.3s ease;
    }

    .footer .contact-item:hover address {
        color: var(--white);
    }

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-red);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* Back to Top Button */
.footer-back-to-top {
    text-align: center;
    margin-top: 1rem;
}

.back-to-top-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(220, 38, 127, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 24px rgba(220, 38, 127, 0.4);
    background: linear-gradient(135deg, var(--primary-green), #0d4f2a);
}

.back-to-top-btn .material-icons {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes patternMove {
    0%, 100% { 
        background-position: 0% 50%, 100% 20%, 50% 80%; 
    }
    50% { 
        background-position: 100% 50%, 0% 20%, 80% 80%; 
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Responsive Design */
@media (max-width: 1260px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: left;
        transition: var(--transition);
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
        gap: 0;
        align-items: flex-start;
    }

        .nav-menu.active {
            left: 0;
        }

        .nav-menu li {
            margin: 0.15rem 0;
            position: relative;
            padding: 0;
            text-align: left;
            width: 100%;
        }

            .nav-menu li a {
                display: block;
                padding: 0.75rem 2rem;
                text-align: left;
            }

    /* Mobile dropdown styles */
    .dropdown-content {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        background: #f8f9fa;
        margin-top: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        width: 100%;
    }

    .dropdown:hover .dropdown-content,
    .dropdown.active .dropdown-content {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
    }

    .dropdown-content a {
        padding: 8px 2.5rem;
        border-bottom: 1px solid #eee;
        font-size: 0.9rem;
        text-align: left;
        color: var(--dark-gray);
    }

    .hamburger {
        display: flex;
    }

        .hamburger.active .bar:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger.active .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        justify-content: center;
    }

    .carousel-nav {
        display: none;
    }

    .prev-btn, .next-btn {
        display: none;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .filter-tabs {
        gap: 0.5rem;
    }

    .filter-tab {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .services-filter {
        position: static;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0 !important;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .downloads-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .header-content h1 {
        font-size: 2rem;
    }

    .header-content p {
        font-size: 1rem;
    }

    .page-header {
        height: 400px;
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

    .header-content p {
        font-size: 1.2rem;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }

    .decoration-element {
        display: none;
    }

    .timeline-container::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 70px;
    }

        .timeline-item:nth-child(even) {
            flex-direction: row !important;
        }

    .timeline-date {
        width: 60px;
        height: 60px;
        font-size: 0.9rem;
        position: absolute;
        left: 0;
    }

    .timeline-content {
        margin: 0;
        margin-left: 2rem;
    }

        .timeline-content::before {
            left: -15px !important;
            right: auto !important;
            border-right-color: var(--white) !important;
            border-left-color: transparent !important;
        }

    .certifications {
        grid-template-columns: 1fr;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .services-preview {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Page Header Styles */
.page-header {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    margin-top: 70px;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transform: scale(1.1);
    animation: contractImage 1.5s ease-out forwards;
}

@keyframes contractImage {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}


.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: -1;
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

    .header-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: var(--elegant-black);
        line-height: 1.2;
    }

    .header-content p {
        font-size: 1.4rem;
        font-weight: 400;
        margin-bottom: 2.5rem;
        color: var(--dark-gray);
        line-height: 1.5;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    margin-top: 1rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

    .breadcrumb a {
        color: var(--primary-red);
        text-decoration: none;
        transition: var(--transition);
        font-weight: 500;
    }

        .breadcrumb a:hover {
            color: var(--primary-dark-red);
            text-decoration: underline;
        }

    .breadcrumb .separator {
        color: var(--dark-gray);
        font-weight: 300;
    }

    .breadcrumb .current {
        color: var(--dark-gray);
        font-weight: 500;
    }

/* Header Decorative Elements */
.header-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(227, 33, 39, 0.1), rgba(19, 99, 51, 0.1));
    animation: float 6s ease-in-out infinite;
}

.decoration-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.decoration-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.decoration-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 25%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Page-specific sections */
.about-page, .services-page {
    padding: 100px 0;
    background: var(--white);
}

    .about-page .about-text h2 {
        color: var(--primary-red);
        margin-bottom: 1.5rem;
        font-size: 2rem;
    }

/* Certifications */
.certifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.cert-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

    .cert-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-light);
    }

    .cert-item .material-icons {
        font-size: 3rem;
        color: var(--primary-green);
        margin-bottom: 1rem;
    }

    .cert-item h4 {
        color: var(--elegant-black);
        margin-bottom: 0.5rem;
    }

    .cert-item p {
        font-size: 0.9rem;
        color: var(--dark-gray);
    }

/* Timeline Styles */
.timeline {
    padding: 100px 0;
    background: var(--light-gray);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

    .timeline-container::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--primary-red);
        transform: translateX(-50%);
    }

.timeline-item {
    position: relative;
    margin: 3rem 0;
    display: flex;
    align-items: center;
}

    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }

    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }

.timeline-date {
    width: 100px;
    height: 100px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-light);
    z-index: 2;
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin: 0 2rem;
    position: relative;
}

    .timeline-content::before {
        content: '';
        position: absolute;
        top: 50%;
        width: 0;
        height: 0;
        border: 15px solid transparent;
        transform: translateY(-50%);
    }

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -30px;
    border-right-color: var(--white);
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -30px;
    border-left-color: var(--white);
}

.timeline-content h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: var(--elegant-black);
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .cta-button {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

    .cta-content .cta-button:hover {
        background: var(--primary-green);
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
    }

/* Locations CTA Section */
.locations-cta {
    padding: 5rem 0;
    position: relative;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-dark-red));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(227, 33, 39, 0.3);
}

    .location-badge .material-icons {
        font-size: 1.1rem;
    }

.location-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.stat-highlight {
    text-align: center;
    background: var(--white);
    padding: 2rem 1rem;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-red);
}

    .stat-highlight:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-medium);
        border-top-color: var(--primary-green);
    }

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.location-features {
    display: grid;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.feature-item {
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

    .feature-item:hover {
        transform: translateX(5px);
        box-shadow: var(--shadow-medium);
    }

    .feature-item .material-icons {
        color: var(--primary-green);
        background: rgba(19, 99, 51, 0.1);
        padding: 12px;
        border-radius: 50%;
        font-size: 1.5rem;
        flex-shrink: 0;
    }

.feature-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--elegant-black);
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

    .cta-actions .cta-button {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1rem;
        font-weight: 500;
        border-radius: 8px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

        .cta-actions .cta-button.primary {
            background: linear-gradient(45deg, var(--primary-red), var(--primary-dark-red));
            color: var(--white);
            box-shadow: 0 4px 15px rgba(227, 33, 39, 0.3);
        }

            .cta-actions .cta-button.primary:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 25px rgba(227, 33, 39, 0.4);
            }

        .cta-actions .cta-button.secondary {
            background: var(--white);
            color: var(--primary-red);
            border: 2px solid var(--primary-red);
        }

            .cta-actions .cta-button.secondary:hover {
                background: var(--primary-red);
                color: var(--white);
                transform: translateY(-2px);
            }

.image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(227, 33, 39, 0.8), rgba(183, 28, 28, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
}

    .overlay-content .material-icons {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .overlay-content p {
        font-size: 1.1rem;
        font-weight: 500;
        margin: 0;
    }

@media (max-width: 768px) {
    .location-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .highlight-item {
        justify-content: center;
    }
}

/* About CTA Section */
.about-cta {
    padding: 100px 0;
    background: var(--white);
}

/* Enhanced About CTA */
.enhanced-cta {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

    .enhanced-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
        opacity: 0.3;
    }

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-content h2 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-content strong {
    color: var(--primary-green);
    font-weight: 600;
}

.cta-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

    .cta-stats .stat-item {
        text-align: center;
        padding: 1rem;
        background: var(--light-gray);
        border-radius: var(--border-radius);
        min-width: 120px;
    }

.cta-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

    .cta-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(227, 33, 39, 0.1), rgba(19, 99, 51, 0.1));
        z-index: 1;
    }

    .cta-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: var(--transition);
    }

.about-cta .cta-image:hover img {
    transform: scale(1.05);
}
.locations-cta .cta-image:hover img {
    transform: scale(1.05);
}

/* Enhanced About CTA Elements */
.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(227, 33, 39, 0.2);
    animation: fadeInUp 0.6s ease-out;
}

.badge-icon {
    font-size: 1rem;
}

.enhanced-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.enhanced-description {
    font-size: 1.2rem !important;
    line-height: 1.7 !important;
    color: #555 !important;
    margin-bottom: 2.5rem !important;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.stats-showcase {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(227, 33, 39, 0.1);
    transition: all 0.3s ease;
    flex: 1;
}

    .stat-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        border-color: var(--primary-red);
    }

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enhanced-actions {
    display: flex !important;
    gap: 1rem !important;
    margin-top: 2.5rem !important;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.enhanced-button {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 1rem 2rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

    .enhanced-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s ease;
    }

    .enhanced-button:hover::before {
        left: 100%;
    }

.button-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.enhanced-button:hover .button-icon {
    transform: translateX(4px);
}

.enhanced-button-alt {
    background: transparent !important;
    color: var(--primary-red) !important;
    border: 2px solid var(--primary-red) !important;
    padding: 0.9rem 2rem !important;
    font-weight: 600 !important;
}

    .enhanced-button-alt:hover {
        background: var(--primary-red) !important;
        color: var(--white) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(227, 33, 39, 0.3) !important;
    }

.enhanced-image {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(227, 33, 39, 0.1), rgba(19, 99, 51, 0.1));
    z-index: 2;
    transition: opacity 0.3s ease;
}

.enhanced-image:hover .image-overlay {
    opacity: 0.7;
}

.floating-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.badge-content {
    text-align: center;
}

.badge-title {
    display: block;
    font-weight: 700;
    color: var(--primary-green);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.badge-subtitle {
    display: block;
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .enhanced-title {
        font-size: 2rem !important;
    }

    .stats-showcase {
        flex-direction: column;
        gap: 1rem;
    }

    .enhanced-actions {
        flex-direction: column;
    }

    .enhanced-button,
    .enhanced-button-alt {
        justify-content: center;
        text-align: center;
    }

    .floating-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.75rem;
    }

    /* About CTA Responsive */
    .about-cta .cta-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    .about-cta .cta-content {
        text-align: center;
        order: 1;
    }

    .about-cta .cta-image {
        order: 2;
    }

    .about-cta .enhanced-title {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .about-cta .enhanced-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .about-cta .enhanced-actions {
        justify-content: center;
        gap: 1rem;
    }

    .about-cta .enhanced-button,
    .about-cta .enhanced-button-alt {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
    }

    .about-cta .cta-image img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .about-cta {
        padding: 2.5rem 0;
    }

        .about-cta .enhanced-title {
            font-size: 1.5rem !important;
            margin-bottom: 1rem;
        }

        .about-cta .enhanced-description {
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .about-cta .enhanced-actions {
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
            margin-top: 1.5rem;
        }

        .about-cta .enhanced-button,
        .about-cta .enhanced-button-alt {
            padding: 12px 20px;
            font-size: 0.95rem;
            max-width: 100%;
        }

        .about-cta .cta-image img {
            height: 200px;
        }

        .about-cta .floating-badge {
            top: 0.5rem;
            right: 0.5rem;
            padding: 0.5rem;
        }
}

/* Services CTA Section */
.services-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    position: relative;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-dark-red));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(227, 33, 39, 0.3);
}

    .services-badge .material-icons {
        font-size: 1.1rem;
    }

.services-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-red);
}

    .service-stat:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        border-left-color: var(--primary-green);
    }

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-dark-red));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .stat-icon .material-icons {
        color: var(--white);
        font-size: 1.5rem;
    }

.stat-content {
    display: flex;
    flex-direction: column;
}



.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-green);
    position: relative;
    overflow: hidden;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    }

    .service-card.featured {
        border-top-color: var(--primary-red);
        background: linear-gradient(135deg, rgba(227, 33, 39, 0.02), rgba(255, 255, 255, 1));
    }

        .service-card.featured::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--primary-red), var(--primary-dark-red));
            clip-path: polygon(100% 0, 0 0, 100% 100%);
        }

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.services-cta .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-green), #0d4f2a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(19, 99, 51, 0.3);
}

    .services-cta .service-icon.premium {
        background: linear-gradient(45deg, var(--primary-red), var(--primary-dark-red));
        box-shadow: 0 4px 15px rgba(227, 33, 39, 0.3);
    }

    .services-cta .service-icon.express {
        background: linear-gradient(45deg, #2196f3, #03a9f4);
        box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    }

    .services-cta .service-icon.hazmat {
        background: linear-gradient(45deg, #ff9800, #f44336);
        box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    }

.service-icon .material-icons {
    color: var(--white);
    font-size: 1.8rem;
}

.service-badge {
    background: linear-gradient(45deg, var(--primary-red), var(--primary-dark-red));
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(227, 33, 39, 0.3);
}

.service-content h3 {
    color: var(--elegant-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .service-features li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        color: var(--text-secondary);
    }

    .service-features .material-icons {
        color: var(--primary-green);
        font-size: 1.1rem;
    }

.services-footer {
    margin-top: 4rem;
    text-align: center;
}

.services-highlight {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(19, 99, 51, 0.1);
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

    .highlight-content .material-icons {
        color: var(--primary-green);
        font-size: 2.5rem;
        flex-shrink: 0;
    }

.highlight-text h4 {
    margin: 0 0 0.5rem 0;
    color: var(--elegant-black);
    font-size: 1.2rem;
    font-weight: 600;
}

.highlight-text p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.services-footer .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: left;
    flex-wrap: wrap;
}

.cta-button {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    border: none;
    cursor: pointer;
}

    .cta-button.primary {
        background: var(--primary-red);
        color: var(--white);
    }

        .cta-button.primary:hover {
            background: var(--primary-green);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

    .cta-button.secondary {
        background: var(--white);
        color: var(--primary-red);
        border: 2px solid var(--primary-red);
    }

        .cta-button.secondary:hover {
            background: var(--primary-red);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

/* Logo link styles */
.logo-link {
    text-decoration: none;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Social Floating Action Button */
.social-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
}

.fab-main {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(227, 33, 39, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--white);
    border: none;
    outline: none;
}

    .fab-main:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(227, 33, 39, 0.5);
    }

    .fab-main.active {
        transform: rotate(45deg);
    }

    .fab-main .material-icons {
        font-size: 1.5rem;
        transition: transform 0.3s ease;
    }

    .fab-main.active .material-icons {
        transform: rotate(-45deg);
    }

.fab-menu {
    position: absolute;
    bottom: 80px;
    right: 7.5px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .fab-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.fab-item {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    transform: scale(0);
    animation: fabItemIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.fab-menu.active .fab-item:nth-child(1) {
    animation-delay: 0.1s;
}

.fab-menu.active .fab-item:nth-child(2) {
    animation-delay: 0.15s;
}

.fab-menu.active .fab-item:nth-child(3) {
    animation-delay: 0.2s;
}

.fab-menu.active .fab-item:nth-child(4) {
    animation-delay: 0.25s;
}

.fab-menu.active .fab-item:nth-child(5) {
    animation-delay: 0.3s;
}

.fab-menu.active .fab-item:nth-child(6) {
    animation-delay: 0.35s;
}

@keyframes fabItemIn {
    0% {
        transform: scale(0) rotate(180deg);
        opacity: 0;
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.fab-item:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Social Media Colors */
.fab-item.facebook {
    background: #1877F2;
}

    .fab-item.facebook:hover {
        background: #166FE5;
    }

.fab-item.whatsapp {
    background: #25D366;
}

    .fab-item.whatsapp:hover {
        background: #20BA5A;
    }

.fab-item.linkedin {
    background: #0A66C2;
}

    .fab-item.linkedin:hover {
        background: #0952A5;
    }

.fab-item.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

    .fab-item.instagram:hover {
        background: linear-gradient(45deg, #E1751F, #C91F65, #6D2C91, #4146B8);
    }

.fab-item.twitter {
    background: #000000;
}

    .fab-item.twitter:hover {
        background: #333333;
    }

/* Responsive Footer Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-stats {
        justify-content: center;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: 1;
        margin-bottom: 3rem;
    }
    
    .footer-logo-image {
        height: 50px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-stats {
        flex-direction: column;
        gap: 1.5rem;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-item {
        text-align: left;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-links-list li:hover,
    .contact-item:hover {
        transform: none;
    }
    
    .footer-links-list li a:hover {
        transform: none;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-back-to-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
    }
    
    .back-to-top-btn {
        width: 45px;
        height: 45px;
    }
    
    .back-to-top-btn .material-icons {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .social-links {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .contact-item {
        padding: 0.8rem;
        max-width: 100%;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .separator {
        display: none;
    }
}

/* Responsive Design for Social FAB */
@media (max-width: 768px) {
    .social-fab {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .fab-main {
        width: 55px;
        height: 55px;
    }

        .fab-main .material-icons {
            font-size: 1.3rem;
        }

    .fab-item {
        width: 45px;
        height: 45px;
    }

    .fab-menu {
        bottom: 70px;
    }
}



.normal-title {
    font-size: 2.5rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
    margin-top: 20px;
    background: linear-gradient(135deg, var(--light-elegant-black), var(--elegant-black));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.contact-cta .cta-content h2 {
    color: var(--primary-dark-red);
}

.location-pill .call-btn:hover{
    color: var(--white) !important;
}

.attended-by-actions .attended-call-btn:hover {
    color: var(--white) !important;
}

.attended-by-actions .attended-call-btn .material-icons {
    color: var(--primary-green) !important;
}

.attended-by-actions .attended-call-btn:hover .material-icons {
    color: var(--white) !important;
}

#location-details .call-btn:hover {
    color: var(--white) !important;
}

.waves-bg-green {
    background-image: url('../assets/svg/3.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.waves-bg-green-2 {
    background-image: url('../assets/svg/6.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.waves-bg-red {
    background-image: url('../assets/svg/4.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.waves-bg-red-2 {
    background-image: url('../assets/svg/5.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}







