:root {
    --primary-color: #2563EB;
    --primary-light: #3B82F6;
    --dark-bg: #0A0A0A;
    --white: #ffffff;
    --gray: #666666;
}

html{
    scrollbar-width: none;
    scroll-behavior: smooth;
}

/* Base Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
    color: var(--white);
}

body::-webkit-scrollbar{
    background-color: transparent;
    width: 0;
    height: 0;
    
}

/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    flex: 0 0 auto;
    z-index: 1212;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-buttons {
    flex: 0 0 auto;
    animation: fadeInRight 0.8s ease-out 0.4s backwards;
}

/* CTA Buttons */
.nav-cta {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--dark-bg);
    overflow: hidden;
    padding: 0 8%;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-logo {
    flex: 0 0 auto;
    margin-left: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo img {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin: 0;
    font-weight: 800;
    background: linear-gradient(45deg, var(--white) 0%, var(--primary-color) 50%, var(--white) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 12s ease infinite;
    line-height: 0.9;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.workforce-text {
    font-size: 3.5rem;
    margin: 0;
    padding-top: 0.1rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 0.9;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    margin-top: 1.5rem;
    max-width: 600px;
    font-weight: 500;
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-button.primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.6rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.cta-button.primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.triangle-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    clip-path: polygon(65% 0, 100% 0, 100% 100%, 15% 100%);
    background: url('assets/eng/6.jpg') center/cover no-repeat;
    opacity: 0.5;
}

.triangle-pattern::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(37, 99, 235, 0.3));
    z-index: 1;
}

/* Partners Section */
.partners {
    position: absolute !important;
    bottom: 0 !important;
    left: 0;
    right: 0;
    text-align: left;
    z-index: 2;
    width: 100%;
    background: white;
}

.partners p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-left: 8%;
}

.partner-logos {
    display: flex;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
    background: white;
    backdrop-filter: blur(5px);
}

.logos-slide {
    display: flex;
    animation: slide 60s linear infinite;
    gap: 3rem;
    padding: 0 1.5rem;
    background-color: white;
}

.logos-slide img {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
    filter: saturate(0);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logos-slide img:hover {
    opacity: 1;
}

/* About Section */
.about-us {
    background: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
    padding-right: 2rem;
}

.about-text h2 {
    color: var(--dark-bg);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
}

.about-description {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-focus {
    color: var(--dark-bg);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
}

.about-image {
    flex: 1;
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Capabilities Section */
.about-section {
    background: var(--white);
    padding: 100px 0;
    color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.capability-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
}

.capability-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.capability-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.capability-card:hover .capability-image img {
    transform: scale(1.05);
}

.capability-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.capability-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capability-card ul li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.capability-card ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    text-align: center;
    background:#123F8E;
    margin-top: 100px;
    box-sizing: border-box;
}

.map-section .section-title {
    margin-bottom: 2px;
    color:white;
    font-size: 2.5rem;
    font-weight: 700;
}

.map-section .section-subtitle {
    margin-bottom: 40px;
    color: #e9e9e9;
    font-size: 1.2rem;
    font-weight: 500;
}

.map-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-image {
    width: 80%;
    height: auto;
    display: block;
    opacity: 1;
}

/* Workforce Solutions */
.workforce-solutions {
    background: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.workforce-solutions .value-title {
    color: var(--primary-color);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
}

.solutions-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.solution-card-bg {
    flex: 1;
    position: relative;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    transition: transform 0.3s ease;
}

.solution-card-bg.left {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
                url('assets/eng/2.jpeg') center/cover no-repeat;
}

.solution-card-bg.right {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
                url('assets/eng/4.jpeg') center/cover no-repeat;
}

.solution-content {
    z-index: 2;
}

.solution-header {
    margin-bottom: 1rem;
}

.solution-header .material-icons-round.solution-icon {
    font-size: 3rem;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 1.2rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.solution-card-bg:hover .solution-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.solution-card-bg h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.solution-card-bg ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-card-bg ul li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1rem;
}

.solution-card-bg:hover {
    transform: translateY(-5px);
}

/* Value Offer Section */
.value-offer {
    background: var(--primary-color);
    padding: 100px 0;
    position: relative;
    color: white;
}

.value-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.value-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.value-title.second-title {
    margin-top: 5rem;
}

.value-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.value-card {
    flex: 1 1 280px;
    max-width: 350px;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.icon-wrapper .material-icons-round {
    font-size: 32px;
    color: white;
}

.value-card:hover .icon-wrapper {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 5rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    height: 40px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links, .footer-services {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a, .footer-services a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-services a:hover {
    color: var(--white);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray);
}

.contact-item .material-icons-round {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-item p,
.contact-item a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    margin: 0;
}

.contact-item a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.85rem;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--gray);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links, .footer-services {
        align-items: center;
    }

    .footer-contact {
        align-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Animations */
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero {
        padding: 0 5%;
    }
    
    .hero-text h1,
    .workforce-text {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-text h1,
    .workforce-text {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 500px;
    }

    .triangle-pattern {
        clip-path: polygon(75% 0, 100% 0, 100% 100%, 25% 100%);
    }

    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solutions-cards {
        flex-direction: column;
    }

    .solution-card-bg {
        min-height: 300px;
    }

    .hero-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 1rem;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        justify-content: center;
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-cta {
        max-width: 300px;
        padding: 1rem;
        font-size: 1rem;
        text-align: center;
        border-radius: 8px;
    }

    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 1.5rem;
        padding-bottom: 80px;
    }

    .hero-content {
        margin-bottom: 0;
        text-align: center;
    }

    .hero-text h1,
    .workforce-text {
        font-size: 2rem;
        text-align: center;
    }

    .hero-description {
        text-align: center;
        margin: 1.5rem auto;
    }

    .cta-group {
        width: 100%;
        justify-content: center;
    }

    .cta-button.primary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .triangle-pattern {
        clip-path: polygon(0 40%, 100% 20%, 100% 100%, 0 100%);
        opacity: 0.3;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .about-text {
        padding-right: 0;
    }

    .about-image {
        width: 100%;
        height: 300px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact {
        align-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .phone-numbers {
        align-items: center;
    }

    .hero-content {
        margin-bottom: 120px;
    }

    .hero-logo img {
        width: 120px;
    }

    .cta-button.primary {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }

    .hero-content{
        margin-top: 100px;
    }
}

@media (max-width: 480px) {
    .hero-text h1,
    .workforce-text {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .nav-cta,
    .cta-button.primary {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }

    .nav-buttons {
        padding: 0.8rem;
    }

    .value-card {
        min-width: 80%;
    }
}

/* Fix for landscape mode */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        padding-top: 80px;
    }
}

/* Customer Locations Section */
.customer-locations {
    background: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: var(--dark-bg);
}

.customer-locations .section-title {
    color: var(--primary-color);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.location-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.location-card:hover {
    transform: translateY(-5px);
}

.company-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    gap: 1rem;
    flex-wrap: wrap;
}

.company-header h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
}

.staff-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.detail-item .material-icons-round {
    color: var(--primary-color);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.detail-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.5;
}

.multiple-locations {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.multiple-locations p {
    margin: 0;
    padding: 0.25rem 0;
    color: var(--gray);
}

@media (max-width: 1200px) {
    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .customer-locations {
        padding: 60px 0;
    }

    .customer-locations .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .location-card {
        padding: 1.5rem;
    }

    .company-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1.2rem;
    }

    .company-header h3 {
        font-size: 1.3rem;
    }

    .staff-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .detail-item {
        gap: 0.75rem;
    }

    .detail-item .material-icons-round {
        font-size: 1.2rem;
    }

    .detail-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .customer-locations {
        padding: 40px 0;
    }

    .customer-locations .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .location-card {
        padding: 1.25rem;
    }

    .company-header h3 {
        font-size: 1.2rem;
    }
}

/* Final CTA Section */
.final-cta {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('assets/eng/6.jpg') center/cover no-repeat;
    text-align: center;
    color: var(--white);
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.final-cta .cta-button.primary {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    margin: 0 auto;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .final-cta {
        padding: 80px 0;
    }

    .final-cta h2 {
        font-size: 2.2rem;
    }

    .final-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .final-cta {
        padding: 60px 0;
    }

    .final-cta h2 {
        font-size: 1.8rem;
    }

    .final-cta p {
        font-size: 1rem;
    }

    .final-cta .cta-button.primary {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
}

/* Fix for landscape mode */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        padding-top: 80px;
    }
}

/* S.W.A.T. Team Section */
.swat-team-section {
    padding: 6rem 2rem;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.swat-container {
    max-width: 1200px;
    margin: 0 auto;
}

.swat-team-section .section-title {
    text-align: center;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.swat-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.swat-text {
    flex: 1;
}

.support-card, .targets-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.support-card:hover, .targets-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.support-card h3, .targets-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.support-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.highlight-text {
    color: var(--primary-color) !important;
    font-weight: 500;
}

.targets-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.targets-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.target-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.target-text strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.25rem;
}

.target-text p {
    color: var(--gray);
    margin: 0;
}

.swat-image {
    flex: 1;
    position: relative;
}

.swat-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.swat-image img:hover {
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .swat-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .swat-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .swat-team-section {
        padding: 4rem 1rem;
    }
    
    .swat-team-section .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
    
    .support-card, .targets-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .swat-team-section .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Technical Support Section */
.technical-support-section {
    background: var(--white);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
}

.technical-support-section .section-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 4rem;
}

.crew-info {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.crew-header {
    text-align: center;
    margin-bottom: 3rem;
}

.crew-header h3 {
    color: var(--dark-bg);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.engineer-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.engineer-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.engineer-icon .material-icons-round {
    font-size: 2rem;
    padding: 1rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.engineer-icon:hover .material-icons-round {
    transform: translateY(-5px);
    background: rgba(37, 99, 235, 0.2);
}

.engineer-icon span:not(.material-icons-round) {
    color: var(--gray);
    font-weight: 500;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.plan-card {
    background: rgba(37, 99, 235, 0.03);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.plan-header {
    margin-bottom: 1.5rem;
}

.plan-header h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.plan-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-content li {
    color: var(--gray);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.plan-content li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.support-footer {
    text-align: center;
    color: var(--gray);
    font-style: italic;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .technical-support-section {
        padding: 4rem 1rem;
    }

    .crew-info {
        padding: 2rem;
    }

    .crew-header h3 {
        font-size: 1.8rem;
    }

    .engineer-icons {
        gap: 2rem;
    }

    .engineer-icon .material-icons-round {
        font-size: 1.8rem;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .crew-header h3 {
        font-size: 1.5rem;
    }

    .engineer-icons {
        gap: 1.5rem;
    }

    .plan-header h4 {
        font-size: 1.2rem;
    }

    .plan-content li {
        font-size: 0.95rem;
    }
}

/* Capabilities & Brands Section */
.capabilities-brands-section {
    background: white !important;
    padding: 2px 2rem;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.capabilities-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
}

.capabilities-brands-section .section-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.5rem;
}

.capabilities-brands-section .section-subtitle {
    color: var(--dark-bg);
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 4rem;
}

.brands-category {
    margin-bottom: 4rem;
}

.brands-category:last-child {
    margin-bottom: 0;
}

.brands-category h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
}

.brand-logos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 1;
    transition: all 0.3s ease;
}


@media (max-width: 992px) {
    .brand-logos {
        gap: 2rem;
    }
    
    .brand-logo {
        height: 35px;
    }
}

@media (max-width: 768px) {
    .capabilities-brands-section {
        padding: 4rem 1rem;
    }

    .capabilities-brands-section .section-subtitle {
        font-size: 1.5rem;
        margin-bottom: 3rem;
    }

    .brands-category {
        margin-bottom: 3rem;
    }

    .brands-category h4 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .brand-logos {
        gap: 1.5rem;
    }

    .brand-logo {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .capabilities-brands-section .section-subtitle {
        font-size: 1.3rem;
    }

    .brands-category h4 {
        font-size: 1.1rem;
    }

    .brand-logos {
        gap: 1rem;
    }

    .brand-logo {
        height: 25px;
    }
}

/* Testimonial Section */
.testimonial-section {
    background: var(--primary-color);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.testimonial-text {
    flex: 1;
    color: var(--white);
}

.testimonial-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.testimonial-text blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    padding-left: 2rem;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.author-info p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

.testimonial-image {
    flex: 1;
    position: relative;
}

.testimonial-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    z-index: 0;
}

@media (max-width: 992px) {
    .testimonial-content {
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .testimonial-text h2 {
        font-size: 2.2rem;
    }

    .testimonial-text blockquote {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 4rem 1rem;
    }

    .testimonial-text h2 {
        font-size: 2rem;
    }

    .testimonial-text blockquote {
        font-size: 1.1rem;
        padding-left: 1.5rem;
    }

    .author-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .testimonial-text h2 {
        font-size: 1.8rem;
    }

    .testimonial-text blockquote {
        font-size: 1rem;
        padding-left: 1rem;
    }

    .author-info h3 {
        font-size: 1.2rem;
    }

    .author-info p {
        font-size: 0.9rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 500px;
    margin: 50px auto;
    border-radius: 12px;
    padding: 2rem;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

.modal-body {
    position: relative;
}

.modal h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.8rem;
}

.modal form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.modal input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.modal button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.modal button:hover {
    background: var(--primary-light);
}

/* Success State */
.success-state {
    display: none;
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    font-size: 4rem !important;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.success-state p {
    color: #666;
    margin-bottom: 1.5rem;
}

.success-state button {
    display: inline-block;
    min-width: 120px;
}

/* Estilos para móviles */
@media (max-width: 768px) {
    .modal {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-content {
        width: 85%;
        max-width: 400px;
        margin: 0 auto;
        padding: 1.5rem;
        position: relative;
        top: 0;
        transform: none;
    }

    .modal h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .modal input {
        padding: 12px;
        font-size: 1rem;
    }

    .modal button {
        padding: 12px;
        font-size: 1rem;
    }
}

/* Ajustes para pantallas muy pequeñas */
@media (max-width: 480px) {
    .modal-content {
        width: 80%;
        margin: 0 auto;
        padding: 1.2rem;
        border-radius: 12px;
        margin-top: 45%;
    }

    .modal-body{
        padding: 0.5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        box-sizing: border-box;
    }

    .modal{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .modal h2 {
        font-size: 1.3rem;
    }

    .modal input {
        padding: 10px;
        font-size: 0.95rem;
    }

    .modal form {
        gap: 0.8rem;
    }
}

/* Ajustes para cuando el teclado está visible en móviles */
@media (max-height: 600px) {
    .modal-content {
        margin: 0 auto;
        max-height: 90vh;
        padding: 1rem;
    }

    .modal form {
        gap: 0.7rem;
    }

    .modal h2 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .success-state {
        padding: 0.8rem 0;
    }
}
/* Video Section */
.video-section {
    padding: 80px 20px;
    background: #fff;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.video-wrapper {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* Client Testimonials Section */
.client-testimonials {
    padding: 80px 20px;
    background: #f8f9fa;
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
}

.client-testimonials .section-title {
    color: var(--primary-color);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
}

.testimonial-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0 0 15px 0;
    font-style: italic;
}

.testimonial-item .author {
    font-size: 14px;
    color: #666;
    text-align: right;
}

.testimonial-item .author strong {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .client-testimonials {
        padding: 50px 15px;
    }
    
    .client-testimonials .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .testimonial-item {
        padding: 20px;
    }
    
    .testimonial-item p {
        font-size: 15px;
    }
    
    .testimonial-item .author {
        font-size: 13px;
    }
}
