/* ========== CSS VARIABLES (COLORS & FONTS ONLY) ========== */
:root {
    /* Colors */
    --color-primary: #558ac7;
    --color-dark: #2B2B2B;
    --color-white: #ffffff;
    --color-light-gray: #f5f5f5;
    --color-text-dark: #1a1a1a;
    --color-border: #558ac7;
    
    /* Fonts */
    --font-primary: 'Shinko Sans', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
}

/* ========== BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background: var(--color-white);
    line-height: 1.6;
}

a{
    text-decoration: none;
}

/* ========== NAVBAR (FIXED) ========== */
.navbar {
    background: var(--color-white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 0.7rem 0;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo */
.logo img {
    height: 70px;
    width: auto;
    display: block;
}

/* Desktop Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    font-family: var(--font-primary);
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--color-primary);
}

/* ========== CTA BUTTON (REUSABLE) ========== */
.cta-wrapper {
    display: block;
}

.cta-button {
    display: flex;
    align-items: center;
    border-color: var(--color-primary);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: var(--color-primary);
    padding: 0;
    font-family: var(--font-primary);
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
}

.cta-text {
    width: 80%;
    padding: 12px 16px;
    background: white;
    color: var(--color-text-dark);
    transition: all 0.4s ease;
    z-index: 2;
    position: relative;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    font-size: 1rem;
}

.cta-arrow {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    transition: all 0.4s ease;
    z-index: 2;
    position: relative;
}

.cta-arrow img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    transform: rotate(-45deg); /* Points to top-right corner */
    filter: brightness(0) invert(1);
}

/* Hover Effect: Sliding fill wave left to right */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-dark);
    transition: left 0.5s ease;
    z-index: 1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover .cta-text {
    background-color: var(--color-primary);
}

.cta-button:hover .cta-arrow img {
    transform: rotate(0deg); /* Points right */
}

/* ========== MOBILE STYLES ========== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: var(--color-primary);
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s ease;
}

/* Hamburger active state — no X animation, stays as 3 lines */
.hamburger.active .hamburger-line {
    /* Stays exactly the same — no transformation */
    transform: none;
    opacity: 1;
}

/* Fullscreen Overlay Menu */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-border);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-container {
    text-align: center;
    padding: 2rem;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.mobile-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.mobile-overlay.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-overlay.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-overlay.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }

.mobile-nav-links li a {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--color-white);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.mobile-nav-links li a:hover {
    color: var(--color-primary);
    transform: scale(1.05);
}

/* Close button inside menu */
.mobile-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--color-dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.mobile-overlay.active .mobile-close {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.4s;
}

.mobile-close:hover {
    background: var(--color-white);
    transform: rotate(90deg);
}

.mobile-close:hover span {
    background: var(--color-primary);
}

.mobile-close span {
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s ease;
}

.mobile-close span:first-child {
    transform: rotate(45deg);
}

.mobile-close span:last-child {
    transform: rotate(-45deg);
}

/* ========== RESPONSIVE BREAKPOINT ========== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .cta-wrapper {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }

    .logo img {
        height: 50px;
    }
}


/* ========== HERO SECTION ========== */
.hero {
    min-height: 91vh;
    background-image: url('/images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 9vh;
}

/* Dark overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 91vh;
}

.hero-content {
    max-width: 1500px;
}

/* Eyebrow */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.hero-icon {
    width: 24px;
    height: 24px;
}

.hero-eyebrow span {
    color: var(--color-white);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
}

/* Title */
.hero-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--color-white);
    font-weight: 200;
}

.hero-title strong {
    font-weight: bold;
}

/* Description */
.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
}

/* Hero CTA */
.hero-cta {
    margin-bottom: 3rem;
}

/* Divider */
.hero-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 2rem 0 2rem 0;
}

/* 3 Points */
.hero-points {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-icon-small {
    width: 30px;
    height: 30px;
}

.hero-point span {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-content{
        margin-top: 10vh;
    }

    .hero-container{
        padding: 15px;
    }

    .hero-eyebrow span{
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-points {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .hero-point {
        justify-content: flex-start;
        margin-bottom: 0;
    }
    
    .hero-divider {
        margin: 1.5rem 0 1.5rem 0;
    }

    .cta-text{
        font-size: 0.85rem;
    }

    .cta-arrow{
        width: 1rem;
    }
}

/* ========== COMPANY INTRO SECTION ========== */
.company-intro {
    padding: 80px 0;
    background: url('https://html.awaikenthemes.com/toplax/images/about-us-bg.svg') no-repeat;
    background-position: bottom left;
    background-size: auto;
    overflow-x: hidden;
}

.company-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left Side Images */
.company-left {
    position: relative;
}

/* Row 1: Horizontal image + badge side by side */
.image-row {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.image-horizontal-wrapper {
    flex: 2;
}

.img-horizontal {
    width: 90%;
    height: auto;
    border-radius: 40px;
    border: var(--color-white) solid 10px;
    display: block;
}

.experience-badge {
    flex: 1;
    display: flex;
    align-items: center;
    margin-top: -10%;
    margin-left: -5%;
    gap: 12px;
    padding: 20px 16px;
    border-radius: 16px;
}

.experience-number {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.experience-text {
    font-size: 1.1rem;
    color: var(--color-dark);
    font-weight: 500;
    line-height: 1.5;
}

/* Row 2: Vertical image overlapping */
.image-vertical-wrapper {
    position: relative;
    width: 65%;
    margin-left: auto;
    margin-top: -120px;
    z-index: 2;
}

.img-vertical {
    width: 100%;
    height: auto;
    border-radius: 40px;
    border: var(--color-white) solid 10px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .image-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .experience-badge {
        width: 100%;
        justify-content: center;
    }
    
    .image-vertical-wrapper {
        width: 80%;
        margin-top: -30px;
    }
}

/* Right Side */
.company-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.company-icon {
    width: 24px;
    height: 24px;
}

.company-eyebrow span {
    color: var(--color-primary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.company-title {
    font-family: var(--font-primary);
    font-size: 2.3rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    color: var(--color-dark);
    font-weight: 200;
}

.company-title strong {
    font-weight: bold;
}

.company-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Bottom Row (List + Card) */
.company-bottom-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 0;
    flex-wrap: wrap;
    align-items: center;
}

.company-list {
    flex: 1;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.list-icon {
    width: 22px;
    height: 22px;
}

.list-item span {
    color: var(--color-dark);
    font-weight: 500;
}

/* Tech Card */
.tech-card {
    background: var(--color-light-gray);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.tech-number-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.tech-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: 8px 0;
}

.star-icon {
    width: 16px;
    height: 16px;
}

.tech-text {
    font-size: 0.8rem;
    color: var(--color-dark);
    font-weight: 600;
}

.company-cta {
    margin-top: 0;
}

/* Mobile Responsive for Company Intro */
@media (max-width: 768px) {
    .company-intro {
        padding: 50px 0;
    }
    
    .company-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Left side - keep same layout as desktop */
    .image-row {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    
    .image-horizontal-wrapper {
        flex: 2;
    }
    
    .img-horizontal {
        width: 100%;
        border-width: 5px;
        border-radius: 30px;
    }
    
    .experience-badge {
        flex: 1;
        margin-top: 0;
        margin-left: 0;
        gap: 8px;
        padding: 12px;
        margin-top: -15%;
    }
    
    .experience-number {
        font-size: 1.8rem;
    }
    
    .experience-text {
        font-size: 0.75rem;
    }
    
    .image-vertical-wrapper {
        width: 65%;
        margin-top: -25%;
        margin-left: auto;
    }
    
    .img-vertical {
        border-width: 5px;
        border-radius: 30px;
    }
    
    /* Right side adjustments */
    .company-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .company-description {
        font-size: 0.95rem;
    }
    
    /* Bottom row stack */
    .company-bottom-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .company-list {
        width: 100%;
    }
    
    .tech-card {
        width: 100%;
        padding: 1.5rem;
    }
    
    .company-cta .cta-button {
        margin-top: 2rem;
        width: 100%;
    }
}

/* ========== SERVICES SECTION ========== */
.services {
    background-image: url('https://images.unsplash.com/photo-1731694405826-9fd14296b3d2?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 80px 0 100px 0; /* Large bottom padding for card overlap */
}

/* Dark overlay */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Top Part - 50/50 Split */
.services-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.services-left {
    text-align: left;
}

.services-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.services-icon {
    width: 24px;
    height: 24px;
}

.services-eyebrow span {
    color: var(--color-white);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.services-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--color-white);
    font-weight: 200;
}

.services-title strong {
    font-weight: 700;
    color: var(--color-white); /* Same color as top line */
}

.services-right {
    display: flex;
    align-items: center;
    height: 100%;
}

.services-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

/* Card Wrapper - Overlaps to next section */
.services-card-wrapper {
    position: relative;
    z-index: 3;
    margin-bottom: -250px; 
    margin-top: 150px;
}

.services-card {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-item {
    padding: 5rem 4rem;
    text-align: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.service-name {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.service-btn {
    background: transparent;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    transition: gap 0.3s ease;
}

.service-btn span {
    font-size: 0.9rem;
}

.service-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.service-btn:hover {
    gap: 12px;
}

.service-btn:hover .service-arrow {
    transform: translateX(3px);
}

.service-divider {
    width: 1px;
    background: #e0e0e0;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .services-top {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-title {
        font-size: 1.8rem;
    }
    
    .services-card {
        grid-template-columns: 1fr;
        margin: 0 20px;
    }
    
    .service-divider {
        width: 100%;
        height: 1px;
    }
    
    .service-item {
        padding: 2rem;
    }
    
    .services-card-wrapper {
        margin-top: -100px;
    }
    
    .services {
        padding: 60px 0 50px 0;
        max-height: 90vh;
    }
}

@media (max-width: 768px) {
    .services-title {
        font-size: 1.5rem;
    }
    
    .services-description {
        font-size: 0.9rem;
    }
    
    .service-name {
        font-size: 1rem;
    }
    
    .services-card-wrapper {
        margin-top: 50px;
    }
}

/* ========== VISION & MISSION (PREMIUM SPLIT SCREEN) ========== */
.vision-mission-split {
    display: flex;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

/* Left Side - Dark Background */
.vm-left {
    flex: 1;
    background: #0f172a; /* Dark slate premium color */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.vm-cards-container {
    max-width: 550px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 10rem;
}

/* Vision Card */
.vm-card {
    padding: 4rem;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.vision-card {
    background: #ffffff;
}

.mission-card {
    background: #f0f4f8; /* Subtle blue-gray tint */
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.vm-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.2rem;
}

.vm-icon {
    width: 28px;
    height: 28px;
}

.vm-eyebrow span {
    color: var(--color-primary);
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.vm-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

.mission-card .vm-text {
    color: #2a2a2a;
}

/* Right Side - Full Height Image */
.vm-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.vm-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .vision-mission-split {
        flex-direction: column;
        min-height: auto;
    }
    
    .vm-left {
        padding: 3rem 1.5rem;
        min-height: auto;
    }
    
    .vm-cards-container {
        max-width: 100%;
        margin-top: 30rem;
    }
    
    .vm-right {
        min-height: 400px;
    }
    
    .vm-image {
        height: 400px;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .vm-card {
        padding: 1.5rem;
    }
    
    .vm-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .vm-right {
        min-height: 300px;
    }
    
    .vm-image {
        height: 300px;
    }
}

/* ========== OPERATIONAL COVERAGE SECTION ========== */
.operational-coverage {
    padding: 80px 0;
    background: var(--color-white);
}

.op-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Side */
.op-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.op-icon {
    width: 24px;
    height: 24px;
}

.op-eyebrow span {
    color: var(--color-primary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.op-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.op-title strong {
    color: var(--color-primary);
}

.op-states {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.state-badge {
    background: #f0f4f8;
    color: var(--color-dark);
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.mobility-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--color-dark);
}

.op-list {
    list-style: none;
    padding: 0;
}

.op-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.op-list li span {
    color: #444;
    font-size: 1rem;
}

/* Right Side - Map */
.op-right {
    position: relative;
}

.op-map {
    width: 50rem;
    height: auto;
    transition: all 0.3s ease;
}

.op-map:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .op-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .op-title {
        font-size: 1.8rem;
    }
    
    .op-right {
        order: -1; /* Map on top for mobile */
    }
    
    .op-map {
        object-fit: cover;
        width: 95vw;
    }
}

@media (max-width: 768px) {
    .operational-coverage {
        padding: 60px 0;
    }
    
    .op-title {
        font-size: 1.5rem;
    }
    
    .state-badge {
        padding: 6px 18px;
        font-size: 0.8rem;
    }
    
    .mobility-title {
        font-size: 1.1rem;
    }
    
    .op-list li span {
        font-size: 0.9rem;
    }
}

/* ========== FLEET & LOGISTICS SUPPORT ========== */
.fleet-logistics {
    padding: 80px 0;
    background: #f8f9fa;
}

.fl-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Left Side */
.fl-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.fl-icon {
    width: 24px;
    height: 24px;
}

.fl-eyebrow span {
    color: var(--color-primary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.fl-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.fl-title strong {
    color: var(--color-primary);
}

.fl-image-wrapper {
    margin-top: 1rem;
}

.fl-main-image {
    width: 90%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.fl-main-image:hover {
    transform: scale(1.02);
}

/* Right Side */
.fl-images-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.fl-small-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.fl-small-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.fl-content {
    background: var(--color-light-gray);
    padding: 1.8rem;
    border-radius: 20px;
}

.fl-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fl-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.2rem;
}

.fl-check {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin-top: 2px;
}

.fl-list li span {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.5;
}

.fl-list li strong {
    color: var(--color-dark);
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .fl-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .fl-title {
        font-size: 1.8rem;
    }
    
    .fl-images-row {
        order: -1;
    }

    .fl-left {
        order: 1;
    }
    
    .fl-right {
        order: 2;
    }
}

@media (max-width: 768px) {
    .fleet-logistics {
        padding: 60px 0;
    }
    
    .fl-title {
        font-size: 1.5rem;
    }

    .fl-main-image{
        width: 100%;
    }
    
    .fl-small-image{
        height: auto;
    }

    .fl-images-row {
        gap: 0.8rem;
    }
    
    .fl-content {
        padding: 1.3rem;
    }
    
    .fl-list li span {
        font-size: 0.9rem;
    }
}

/* ========== TECHNICAL WORKFORCE SECTION ========== */
.technical-workforce {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.tw-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Side */
.tw-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.tw-icon {
    width: 24px;
    height: 24px;
}

.tw-eyebrow span {
    color: var(--color-primary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.tw-title {
    font-family: var(--font-primary);
    font-size: 2.3rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--color-dark);
}

.tw-title strong {
    color: var(--color-primary);
}

.tw-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tw-stat-item {
    text-align: left;
}

.tw-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
}

.tw-stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.tw-stat-divider {
    width: 2px;
    height: 40px;
    background: #ddd;
}

.tw-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.tw-training-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e8f0fe;
    padding: 12px 20px;
    border-radius: 40px;
    margin-top: 0.5rem;
}

.tw-badge-icon {
    width: 20px;
    height: 20px;
}

.tw-training-badge span {
    font-size: 0.9rem;
    color: #333;
}

.tw-training-badge strong {
    color: var(--color-primary);
    font-size: 1.1rem;
}

/* Right Side */
.tw-right {
    position: relative;
}

.tw-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.tw-training-note {
    background: var(--color-white);
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--color-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tw-training-note p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .tw-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tw-title {
        font-size: 1.8rem;
    }
    
    .tw-stats {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .technical-workforce {
        padding: 60px 0;
    }
    
    .tw-title {
        font-size: 1.5rem;
    }
    
    .tw-stat-number {
        font-size: 2rem;
    }
    
    .tw-stats {
        gap: 1rem;
    }
    
    .tw-stat-divider {
        height: 30px;
    }
    
    .tw-training-badge {
        padding: 10px 16px;
    }
    
    .tw-training-badge span {
        font-size: 0.8rem;
    }
}

/* ========== WHY CHOOSE US SECTION ========== */
.why-choose {
    padding: 80px 0;
    background: var(--color-white);
}

.wc-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

/* Top Part: 50/50 Split */
.wc-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.wc-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.wc-icon {
    width: 24px;
    height: 24px;
}

.wc-eyebrow span {
    color: var(--color-primary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.wc-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    line-height: 1.3;
    color: var(--color-dark);
}

.wc-title strong {
    color: var(--color-primary);
}

.wc-description {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Bottom Grid: 2 Columns */
.wc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.wc-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wc-point {
    text-align: center;
}

.wc-point-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 40px;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease;
}

.wc-point-image:hover {
    transform: scale(1.05);
}

.wc-point-text {
    font-size: 1.5rem;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 2rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .wc-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .wc-title {
        font-size: 1.8rem;
    }
    
    .wc-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .wc-col {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .why-choose {
        padding: 60px 0;
    }
    
    .wc-title {
        font-size: 1.5rem;
    }
    
    .wc-point-image {
        height: 250px; 
        border-radius: 20px;
    }
    
    .wc-point-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: #0f172a; /* Dark slate background */
    padding: 80px 0;
    position: relative;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

/* Left Side - Auto width based on content */
.cta-left {
    flex: 0 1 auto;
    max-width: 600px;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-button-wrapper {
    display: inline-block;
}

/* Right Side - Auto width based on image */
.cta-right {
    flex: 0 1 auto;
}

.cta-rotating-link {
    display: inline-block;
    cursor: pointer;
}

.cta-rotating-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    animation: rotate 20s linear infinite;
    transition: transform 0.3s ease;
}

.cta-rotating-image:hover {
    transform: scale(1.05);
}

/* Continuous rotation animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .cta-container {
        flex-direction: column;
        align-items: start;
        gap: 2rem;
    }
    
    .cta-left {
        text-align: left;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-rotating-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 0.95rem;
    }
}

/* ========== FOOTER SECTION ========== */
.footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--color-white);
}

.footer-links,
.footer-emails {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-emails li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-emails a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover,
.footer-emails a:hover {
    color: var(--color-primary);
}

.footer-address {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    text-decoration: underline;
}

.footer-credit a:hover {
    color: var(--color-primary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
}

.footer-social {
    margin-top: 1rem;
}

.social-icon {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.social-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}