/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #064a81;
    --color-secondary: #e4032e;
    --color-dark: #111827;
    --color-text: #111827;
    --color-text-light: #3d445c;
    --color-text-muted: #9ca3af;
    --color-bg-light: #f5f8fe;
    --color-white: #ffffff;
    --color-whatsapp: #25d366;
    --color-footer-bg: #111827;
    --color-footer-text: #f5f8fe;
    --color-copyright: #b1b1b1;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 150px;
}

/* Header */
.header {
    background: var(--color-white);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    width: 100%;
}

.header .container {
    max-width: 1440px;
    width: 100%;
    padding: 0 150px;
    margin: 0 auto;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #0d131e;
    line-height: 19.36px;
}

.logo-main {
    color: var(--color-text);
}

.nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

@media (max-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    text-decoration: none;
    line-height: 26px;
    transition: color 0.3s;
}

.nav-link.active {
    color: var(--color-secondary);
}

.nav-link:hover {
    color: var(--color-secondary);
}

.btn-outline {
    border: 1px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    padding: 8px 24px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-outline img,
.btn-outline svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-outline .btn-icon-path {
    stroke: #064A81;
    transition: stroke 0.3s ease;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-outline:hover .btn-icon-path {
    stroke: #ffffff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--color-text);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Hero Section / Banner Slider */
.hero-slider {
    position: relative;
    height: 799px;
    overflow: hidden;
    color: var(--color-white);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0) 0%, rgba(17, 24, 39, 1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 596px;
    margin-left: 150px;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Rubik', sans-serif;
    font-size: 48.16px;
    font-weight: 400;
    line-height: 56px;
    margin-bottom: 24px;
    color: var(--color-white);
}

.hero-title-light {
    font-weight: 300;
}

.hero-title-semibold {
    font-weight: 600;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 23px;
    margin-bottom: 43px;
    color: var(--color-white);
    font-style: normal;
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: var(--color-white);
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-text-muted);
}

.btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
    border: none;
    padding: 16px 32px;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    transition: all 0.3s;
    text-decoration: none;
    width: auto;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 13px;
    z-index: 2;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--color-secondary);
}

/* Partners Section */
.partners {
    background: var(--color-white);
    padding: 80px 0;
}

.partners-content {
    text-align: center;
}

.partners-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.partners-icon img {
    width: 32.48px;
    height: 39.54px;
}

.partners-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
    color: var(--color-text);
    margin-bottom: 24px;
}

.partners-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 24.2px;
    color: var(--color-text);
    max-width: 962px;
    margin: 0 auto 40px;
}

.partners-logos-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.partners-logos {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll-left 60s linear infinite;
    width: fit-content;
}

.partners-logos:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent;
    border-radius: 4px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Services Section */
.services {
    background: var(--color-bg-light);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 10px;
}

.section-badge {
    display: inline-block;
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 20px;
}

.section-badge-white {
    border-color: var(--color-white);
    color: var(--color-white);
}

.section-description {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 24.2px;
    color: var(--color-text);
    max-width: 1140px;
    margin: 0 auto;
}

.section-description-light {
    color: var(--color-footer-text);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 367px);
    gap: 20px;
    max-width: 1141px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    width: 367px;
    min-height: 405px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(228, 3, 46, 0.02) 0%, rgba(6, 74, 129, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px) scale(1.02);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.service-card:hover .service-icon {
    transform: translateY(-4px) scale(1.1);
}

.service-icon svg {
    width: 40px;
    height: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon .icon-path {
    fill: #064A81;
    transition: fill 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon .icon-path {
    fill: #E4032E;
}

.service-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    color: var(--color-primary);
    margin-bottom: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.service-card:hover .service-title {
    color: var(--color-secondary);
    transform: translateY(-2px);
}

.service-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 21.78px;
    color: var(--color-text);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.service-card:hover .service-description {
    transform: translateY(-2px);
}

.service-title-red {
    color: var(--color-secondary);
}

.service-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 21.78px;
    color: var(--color-text);
}

/* Solutions Section */
.solutions {
    background: var(--color-dark);
    padding: 100px 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1140px;
    margin: 0 auto;
}

.solution-card {
    background: #212734;
    border-radius: 11.32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-image {
    width: 100%;
    height: 192px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
}

.solution-content {
    padding: 24px;
}

.solution-title {
    font-family: 'Manrope', sans-serif;
    font-size: 18.87px;
    font-weight: 700;
    line-height: 26.42px;
    color: var(--color-white);
    margin-bottom: 12px;
}

.solution-description {
    font-family: 'Manrope', sans-serif;
    font-size: 13.21px;
    font-weight: 400;
    line-height: 18.87px;
    color: var(--color-white);
}

/* CTA Section */
.cta {
    background: var(--color-secondary);
    padding: 100px 0;
    text-align: center;
}

.cta-title {
    font-family: 'Rubik', sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 48px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.cta-description {
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--color-white);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-outline {
    border: 1px solid var(--color-white);
    background: transparent;
    color: var(--color-white);
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cta-outline:hover {
    background: var(--color-white);
    color: var(--color-secondary);
}

.btn-cta-whatsapp {
    background: var(--color-whatsapp);
    color: var(--color-white);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.btn-cta-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.btn-cta-whatsapp svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-cta-whatsapp svg path {
    fill: #ffffff;
}

/* Footer */
.footer {
    background: var(--color-footer-bg);
    padding: 32px 0 40px;
    color: var(--color-footer-text);
    position: relative;
    overflow: hidden;
    min-height: 227px;
}

.footer-shape {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1010px;
    height: 274px;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.footer-shape-mask {
    position: relative;
    width: 100%;
    height: 100%;
    mask-image: radial-gradient(circle at center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-mask-image: radial-gradient(circle at center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    overflow: hidden;
}

.footer-shape-image {
    width: 508px;
    height: 508px;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.footer-logo {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 22.75px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    display: block;
}

.footer-description {
    font-family: 'Rubik', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    color: var(--color-white);
    margin-bottom: 20px;
    max-width: 336px;
}

.social-media {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: block;
}

.social-icon:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-footer-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: flex-end;
}

.footer-copyright {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16.8px;
    color: var(--color-copyright);
    text-align: right;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 50px;
    }
    
    .header .container {
        padding: 0 50px;
    }
    
    .hero-content {
        margin-left: 50px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header .container {
        padding: 0 20px;
    }
    
    .header {
        height: auto;
        min-height: 70px;
        padding: 12px 0;
    }
    
    .header-content {
        flex-wrap: nowrap;
        gap: 15px;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        gap: 8px;
        flex: 0 0 auto;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
        margin-left: auto;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 16px;
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: block;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .header-content .btn-outline {
        padding: 6px 16px;
        font-size: 14px;
        order: 2;
        display: none;
    }
    
    .transport-service-content .btn-outline {
        display: inline-flex;
        padding: 8px 20px;
        font-size: 14px;
        margin-top: 16px;
    }
    
    .btn-outline svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-slider {
        height: 600px;
    }
    
    .hero-content {
        margin-left: 20px;
        margin-right: 20px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 22px;
    }
    
    .services-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        width: 100%;
        max-width: 367px;
        margin: 0 auto;
    }
    
    .footer {
        padding: 40px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
        text-align: center;
    }
    
    .footer-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-right {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .footer-description {
        max-width: 100%;
        text-align: center;
    }
    
    .social-media {
        justify-content: center;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
    
    .footer-link {
        font-size: 14px;
    }
    
    .footer-bottom {
        justify-content: flex-start;
        margin-top: 30px;
    }
    
    .footer-copyright {
        text-align: left;
        font-size: 11px;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 32px;
        line-height: 38px;
    }
    
    .cta-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn-cta-whatsapp,
    .btn-cta-outline {
        width: 100%;
        max-width: 400px;
        justify-content: center;
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .partners {
        padding: 60px 0;
    }
    
    .partners-text {
        font-size: 16px;
        line-height: 22px;
    }
    
    .section-description {
        font-size: 16px;
        line-height: 22px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 0;
        min-height: 60px;
    }
    
    .header-content {
        gap: 10px;
    }
    
    .logo-text {
        font-size: 13px;
    }
    
    .mobile-menu-toggle {
        width: 26px;
        height: 20px;
    }
    
    .mobile-menu-toggle span {
        height: 2.5px;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8.75px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8.75px) rotate(-45deg);
    }
    
    .nav {
        top: 60px;
        padding: 15px;
    }
    
    .nav-link {
        font-size: 15px;
        padding: 10px 0;
    }
    
    .btn-outline {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .hero-title {
        font-size: 20px;
        line-height: 21px;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 12px;
        line-height: 20px;
        margin-bottom: 0px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0px;
        margin-bottom: 0px;
        border-top: none;
        padding-top: 0;
        margin-top: 12px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .hero-slider-dots {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 13px;
        z-index: 2;
    }
    
    .btn-primary {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .partners {
        padding: 40px 0;
    }
    
    .partners-text {
        font-size: 14px;
        line-height: 20px;
    }
    
    .partners-logos {
        gap: 40px;
    }
    
    .partner-logo {
        width: 120px;
        height: 60px;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 40px 30px;
        min-height: 350px;
    }
    
    .service-title {
        font-size: 20px;
        line-height: 26px;
    }
    
    .service-description {
        font-size: 16px;
        line-height: 20px;
    }
    
    .solutions {
        padding: 60px 0;
    }
    
    .solution-content {
        padding: 20px;
    }
    
    .solution-title {
        font-size: 16px;
        line-height: 22px;
    }
    
    .solution-description {
        font-size: 12px;
        line-height: 16px;
    }
    
    .cta-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .cta-description {
        font-size: 14px;
        line-height: 20px;
    }
    
    .page-hero-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .services-hero-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .contact-hero-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .footer-nav {
        gap: 10px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    .faq-question {
        padding: 14px;
        font-size: 14px;
    }
    
    .faq-answer p {
        font-size: 14px;
        line-height: 20px;
    }
    
    .contact-info-card {
        padding: 24px 16px;
    }
    
    .contact-info-title {
        font-size: 15px;
        line-height: 20px;
    }
    
    .contact-info-value {
        font-size: 13px;
        line-height: 18px;
    }
    
    .form-title {
        font-size: 20px;
        line-height: 26px;
    }
    
    .form-input,
    .form-textarea {
        font-size: 14px;
        padding: 10px 14px;
    }
    
    .form-textarea {
        min-height: 150px;
    }
    
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* Page Hero Styles (for About, Services, Contact pages) */
.page-hero {
    position: relative;
    height: 629px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 30px;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 1440px;
    width: 100%;
    padding: 0 150px;
    margin: 0 auto;
}

.page-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 60px;
    font-weight: 300;
    line-height: 60px;
    color: #f5f8fe;
    letter-spacing: -1.26px;
    margin-top: 80px;
    margin-bottom: 24px;
    text-align: left;
}

.page-hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 25px;
    color: #111827;
    max-width: 821px;
    text-align: center;
    margin: 0 auto;
}

.services-hero {
    height: 716px;
}

.services-hero-content {
    text-align: center;
}

.services-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 60px;
    font-weight: 300;
    line-height: 60px;
    color: #111827;
    letter-spacing: -1.26px;
    margin-bottom: 20px;
    text-align: center;
}

.services-hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 25px;
    color: #111827;
    max-width: 821px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero {
    height: 657px;
    align-items: flex-end;
    padding-bottom: 30px;
}

.contact-hero .page-hero-overlay {
    display: none;
}

.contact-hero-content {
    text-align: center;
    padding: 0 150px;
    margin-bottom: 0px;
}

.contact-hero-title {
    background: linear-gradient(90deg, #111827 0%, #417DFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: -1.26px;
    margin-bottom: 20px;
    text-align: center;
}

.contact-hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    color: var(--color-text);
    max-width: 621px;
    margin: 0 auto;
    text-align: center;
}

/* About Page Styles */
.about-section {
    background: var(--color-white);
    padding: 60px 0;
}

.about-content {
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 24.2px;
    color: var(--color-text);
    margin-bottom: 20px;
}

.vision-mission {
    background: var(--color-bg-light);
    padding: 80px 0;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1138px;
    margin: 0 auto;
}

.vision-card,
.mission-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
}

.vision-card {
    background: var(--color-white);
}

.vision-card:hover {
    background: var(--color-secondary);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15), 0 6px 12px rgba(0, 0, 0, 0.1);
}

.mission-card {
    background: var(--color-white);
}

.mission-card:hover {
    background: var(--color-secondary);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15), 0 6px 12px rgba(0, 0, 0, 0.1);
}

.vision-image,
.mission-image {
    width: 100%;
    height: 292px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.vision-content,
.mission-content {
    padding: 24px;
}

.vision-header,
.mission-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.vision-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.vision-card:hover .vision-title {
    color: var(--color-white);
}

.mission-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.mission-card:hover .mission-title {
    color: var(--color-white);
}

.vision-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 26px;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.vision-card:hover .vision-text {
    color: var(--color-white);
}

.mission-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 26px;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.mission-card:hover .mission-text {
    color: var(--color-white);
}

.vision-icon-path {
    transition: stroke 0.3s ease;
}

.vision-card:hover .vision-icon-path {
    stroke: var(--color-white);
}

.mission-icon-path {
    transition: stroke 0.3s ease;
}

.mission-card:hover .mission-icon-path {
    stroke: var(--color-white);
}

/* History Section */
.history-section {
    background: var(--color-dark);
    padding: 100px 0;
    min-height: 1000px;
    display: flex;
    align-items: center;
}

.section-header-dark {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge-white {
    border-color: var(--color-white);
    color: var(--color-white);
}

.history-timeline {
    display: grid;
    grid-template-columns: 312px 16px 312px;
    gap: 16px;
    max-width: 742px;
    margin: 0 auto;
    position: relative;
    min-height: 786px;
    align-items: start;
}

.timeline-left {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-end;
    padding-top: 145px;
}

.timeline-right {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    padding-top: 0;
}

.timeline-item {
    width: 312px;
}

.timeline-left .timeline-item[data-year="2004"] {
    margin-right: 15px;
}

.timeline-left .timeline-item[data-year="2019"] {
    margin-top: 215px;
    margin-right: 15px;
}

.timeline-right .timeline-item[data-year="2010"] {
    margin-top: 270px;
}

.timeline-right .timeline-item[data-year="2026"] {
    margin-top: 203px;
}

.timeline-left .timeline-item {
    text-align: right;
}

.timeline-right .timeline-item {
    text-align: left;
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.timeline-left .timeline-header {
    justify-content: flex-end;
    flex-direction: row;
}

.timeline-right .timeline-header {
    justify-content: flex-start;
    flex-direction: row;
}

.timeline-year {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    color: #f5f8fe;
}

.timeline-label {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #f5f8fe;
}

.timeline-text {
    font-family: 'Inter', sans-serif;
    font-size: 14.79px;
    font-weight: 400;
    line-height: 24px;
    color: #064a81;
}

.timeline-line {
    position: relative;
    width: 3px;
    height: 786px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    align-self: start;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-dark);
    border: 2px solid var(--color-primary);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-dot:nth-child(1) {
    top: 145px;
    border-color: #064a81;
}

.timeline-dot:nth-child(2) {
    top: 305px;
    border-color: var(--color-white);
}

.timeline-dot:nth-child(3) {
    top: 465px;
    border-color: var(--color-white);
}

.timeline-dot:nth-child(4) {
    top: 625px;
    border-color: var(--color-secondary);
}

.timeline-dot-red {
    border-color: var(--color-secondary);
}

/* Values Section */
.values-section {
    background: var(--color-white);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1140px;
    margin: 0 auto;
}

.value-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(228, 3, 46, 0.02) 0%, rgba(6, 74, 129, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px) scale(1.02);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 50px;
    height: 58px;
    background: none;
    border-radius: 0;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.value-card:hover .value-icon {
    transform: translateY(-4px) scale(1.1);
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-icon-path {
    transition: fill 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    color: var(--color-text);
    margin-bottom: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.value-card:hover .value-title {
    color: var(--color-secondary);
    transform: translateY(-2px);
}

.value-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 19px;
    color: var(--color-text);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.value-card:hover .value-text {
    transform: translateY(-2px);
}

/* Services Detail Page */
.services-detail {
    background: var(--color-dark);
    padding: 100px 0;
}

.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 568px 570px;
    gap: 0;
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    max-width: 1140px;
    margin: 0 auto;
}

.service-detail-card.service-detail-card-content-first {
    grid-template-columns: 570px 568px;
}

.service-detail-card-reverse {
    direction: rtl;
}

.service-detail-card-reverse > * {
    direction: ltr;
}

.service-detail-image {
    width: 568px;
    height: 540px;
    border-radius: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
}

.service-image-1 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.service-image-2 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.service-image-3 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.service-image-4 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.service-detail-content {
    background: #f5f8fe;
    padding: 132px 32px 132px 32px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 570px;
    height: 540px;
}

.service-detail-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 30.43px;
    color: #064a81;
    margin-bottom: 20px;
    text-align: left;
}

.service-detail-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 25px;
    color: #111827;
    margin-bottom: 16px;
    text-align: justify;
}

/* Contact Page Styles */
.contact-info {
    background: var(--color-bg-light);
    padding: 60px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1138px;
    margin: 0 auto;
}

.contact-info-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 40px;
}

.contact-icon {
    width: 28px;
    height: 28px;
    background: var(--color-bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.contact-icon img {
    width: 20px;
    height: 20px;
}

.contact-info-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    color: var(--color-text);
    margin-bottom: 8px;
}

.contact-info-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 19px;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.contact-info-value {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    color: var(--color-text);
}

.contact-form-section {
    background: var(--color-white);
    padding: 60px 0;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1140px;
    margin: 0 auto;
}

.contact-form-wrapper,
.contact-map-wrapper {
    display: flex;
    flex-direction: column;
}

.form-header,
.map-header {
    margin-bottom: 24px;
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    color: #e4052e !important;
    margin-bottom: 8px;
}

.form-title {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
    color: var(--color-text);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    color: #e4052e !important;
    margin-bottom: 8px;
}

.contact-form .form-group .form-label,
.form-group .form-label,
.contact-form-wrapper .form-label,
.contact-form-section .form-label {
    color: #e4052e !important;
}

.form-input,
.form-textarea,
select.form-input {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    background: var(--color-white);
    color: var(--color-text);
    box-shadow: 0 0 4px 0 rgba(17, 24, 39, 0.1);
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #D1D1D1;
    font-weight: 300;
    font-size: 12px;
    opacity: 1;
}

.form-textarea {
    resize: vertical;
    min-height: 200px;
}

.form-submit {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    background: #c00325;
}

/* Math Captcha Styles */
.math-captcha {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.math-question {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    background-color: var(--color-bg-light);
    padding: 12px 20px;
    border-radius: 8px;
    min-width: 120px;
    text-align: center;
}

.math-input {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
}

/* Success Message */
.form-success-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    display: none;
}

.form-success-message.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.map-container {
    width: 100%;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Section */
.faq-section {
    background: var(--color-white);
    padding: 60px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-badge {
    display: inline-block;
    border: 1px solid var(--color-text);
    border-radius: 10px;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--color-text);
}

.faq-list {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #8693AF;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--color-text);
}

.faq-question:hover {
    background: var(--color-bg-light);
}

.faq-icon {
    transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
    transform: rotate(0deg);
    filter: brightness(0) saturate(100%) invert(67%) sepia(7%) saturate(1234%) hue-rotate(195deg) brightness(95%) contrast(88%);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    filter: brightness(0) saturate(100%) invert(7%) sepia(4%) saturate(1818%) hue-rotate(169deg) brightness(95%) contrast(97%);
}

.faq-item.active .faq-icon[src*="add-square"] {
    display: none;
}

.faq-item:not(.active) .faq-icon[src*="minus-square"] {
    display: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 20px 20px;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 41px;
    color: var(--color-text);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.faq-item.active .faq-answer p {
    opacity: 1;
    transform: translateY(0);
}

/* Transport Page Styles */
.transport-hero {
    position: relative;
    height: 907px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transport-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0) 0%, rgba(17, 24, 39, 0.7) 100%);
}

.transport-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.transport-hero-text-left,
.transport-hero-text-right {
    text-align: center;
}

.transport-hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 42px;
    color: var(--color-white);
}

.transport-services {
    background: var(--color-bg-light);
    padding: 100px 0;
}

.transport-service-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.transport-service-image {
    width: 100%;
    height: 501px;
    border-radius: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
}

.transport-image-1 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.transport-image-2 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.transport-service-content {
    padding: 0px;
}

.transport-service-title {
    font-family: 'Rubik', sans-serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 31px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.transport-service-text {
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 38px;
    color: var(--color-primary);
    text-align: justify;
}

.transport-stats {
    background: var(--color-white);
    padding: 80px 0;
}

.transport-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1140px;
    margin: 0 auto;
}

.transport-stat-card {
    background: #f5f8fe;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    height: 321px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.transport-stat-icon {
    position: absolute;
    top: -39px;
    left: 50%;
    transform: translateX(-50%);
    width: 108px;
    height: 108px;
    background: #064A81;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.transport-stat-icon img {
    width: auto;
    height: auto;
    max-width: 60%;
    max-height: 60%;
    filter: brightness(0) invert(1);
}

.transport-stat-number {
    font-family: 'Roboto', sans-serif;
    font-size: 128px;
    font-weight: 600;
    line-height: 31px;
    color: #064A81;
    margin-top: 120px;
}

.stat-plus {
    font-size: 48px;
    vertical-align: top;
    color: #064A81;
}

.transport-stat-label {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 31px;
    color: #064A81;
    margin-top: auto;
}

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

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    display: block;
}

/* Responsive Updates for New Pages */
@media (max-width: 768px) {
    .page-hero:not(.services-hero) {
        height: 320px;
    }
    
    .page-hero.services-hero {
        position: relative;
        height: 300px !important;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: 20px;
    }
    
    .services-hero {
        position: relative;
        height: 300px !important;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: 20px;
    }
    
    .page-hero-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .services-hero-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .page-hero-title {
        font-size: 32px;
        line-height: 38px;
        text-align: center;
        margin-top: 40px;
        margin-bottom: 16px;
    }
    
    .page-hero-description {
        text-align: center;
        max-width: 100%;
        font-size: 16px;
        line-height: 22px;
    }
    
    .services-hero-title {
        color: #111827;
        font-size: 32px;
        line-height: 38px;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .services-hero-description {
        display: none;
    }
    
    .transport-hero {
        position: relative;
        height: 600px !important;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .contact-hero {
        height: 400px;
    }
    
    .contact-hero-content {
        text-align: center;
        /* padding: 0 150px; */
        margin-bottom: -20px;
    }
    
    .contact-hero-title {
        font-size: 32px;
        line-height: 38px;
    }
    
    .contact-hero-description {
        display: none;
    }
    
    .section-description {
        font-size: 15px;
        line-height: 22px;
    }
    
    .vision-mission-grid,
    .values-grid,
    .transport-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 100%;
    }
    
    .service-detail-card.service-detail-card-content-first {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card-reverse {
        direction: ltr;
    }
    
    .service-detail-image {
        width: 100%;
        height: 300px;
    }
    
    .service-detail-content {
        width: 100%;
        height: auto;
        padding: 40px 20px;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .service-detail-title {
        font-size: 20px;
        line-height: 26px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .service-detail-text {
        font-size: 16px;
        line-height: 22px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
    }
    
    .transport-service-card {
        grid-template-columns: 1fr;
    }
    
    .transport-service-image {
        height: 300px;
    }
    
    .transport-service-title {
        font-size: 28px;
        line-height: 32px;
    }
    
    .transport-service-text {
        font-size: 16px;
        line-height: 26px;
    }
    
    .transport-service-content .btn-outline {
        display: inline-flex;
        margin-top: 20px;
    }
    
    .contact-info-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .contact-form-section {
        padding: 40px 0;
    }
    
    .form-title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .history-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .history-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
        min-height: auto;
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-left,
    .timeline-right {
        padding-top: 0;
        align-items: flex-start;
        gap: 30px;
    }
    
    .timeline-item {
        text-align: left !important;
        width: 100%;
        margin: 0 !important;
        padding: 20px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border-left: 3px solid var(--color-primary);
    }
    
    .timeline-item[data-year="2004"] {
        border-left-color: #064a81;
    }
    
    .timeline-item[data-year="2010"],
    .timeline-item[data-year="2019"] {
        border-left-color: var(--color-white);
    }
    
    .timeline-item[data-year="2026"] {
        border-left-color: var(--color-secondary);
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .timeline-left .timeline-header,
    .timeline-right .timeline-header {
        justify-content: flex-start;
        flex-direction: column;
    }
    
    .timeline-year {
        font-size: 28px;
        line-height: 36px;
        order: 1;
    }
    
    .timeline-label {
        font-size: 16px;
        line-height: 22px;
        order: 2;
    }
    
    .timeline-text {
        font-size: 14px;
        line-height: 20px;
        margin-top: 8px;
    }
    
    .about-section {
        padding: 40px 0;
    }
    
    .about-text {
        font-size: 12px;
        line-height: 16px;
    }
    
    .vision-mission {
        padding: 60px 0;
    }
    
    .vision-content,
    .mission-content {
        padding: 20px;
    }
    
    .vision-title,
    .mission-title {
        font-size: 20px;
        line-height: 26px;
    }
    
    .vision-text,
    .mission-text {
        font-size: 16px;
        line-height: 22px;
    }
    
    .values-section {
        padding: 60px 0;
    }
    
    .value-card {
        padding: 30px 20px;
        min-height: 240px;
    }
    
    .value-title {
        font-size: 20px;
        line-height: 26px;
    }
    
    .value-text {
        font-size: 14px;
        line-height: 18px;
    }
    
    .history-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .transport-services {
        padding: 60px 0;
    }
    
    .transport-stats {
        padding: 60px 0;
    }
    
    .transport-stat-card {
        height: 280px;
        padding: 30px 15px;
    }
    
    .transport-stat-number {
        font-size: 96px;
        margin-top: 100px;
    }
    
    .stat-plus {
        font-size: 36px;
    }
    
    .transport-stat-label {
        font-size: 18px;
    }
    
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 16px;
    }
    
    .faq-answer p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .contact-info {
        padding: 40px 0;
    }
    
    .contact-info-title {
        font-size: 16px;
        line-height: 22px;
    }
    
    .contact-info-subtitle {
        font-size: 12px;
        line-height: 16px;
    }
    
    .contact-info-value {
        font-size: 14px;
        line-height: 20px;
    }
    
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .history-timeline {
        gap: 20px;
    }
    
    .timeline-left,
    .timeline-right {
        gap: 20px;
    }
    
    .timeline-item {
        padding: 16px;
    }
    
    .timeline-year {
        font-size: 24px;
        line-height: 30px;
    }
    
    .timeline-label {
        font-size: 14px;
        line-height: 20px;
    }
    
    .timeline-text {
        font-size: 13px;
        line-height: 18px;
    }
}

