:root {
    --dark-blue: #0A1931;
    --gold: #FFC947;
    --text-gray: #64748b;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Prompt', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%; 
    width: 100%;
}

/* Navbar */
.navbar {
    width: 100%;
    padding: 10px 4%; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.logo img { 
    height: 100px; 
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease; 
}

.nav-links ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1.0rem;
    transition: all 0.3s ease; 
    position: relative;
}
.nav-links a:hover {
    color: var(--gold);
}

.nav-links a.active {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}

.btn-contact {
    background: var(--gold);
    color: var(--dark-blue);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600 ;
}

.lang-select { color: white; cursor: pointer; }

/* Hero */
.hero {
    background: linear-gradient(rgba(10, 25, 49, 0.8), rgba(10, 25, 49, 0.2)), url('images/S__9469956.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    
}

.hero h1 { 
    font-size: 3.5rem; 
    line-height: 1.2; 
    margin-bottom: 20px; 
    max-width: 700px; 
}
.text-gold { color: var(--gold); }
.hero p { font-size: 1.1rem; max-width: 500px; margin-bottom: 30px; opacity: 0.9; }

.btn-gold {
    background: var(--gold);
    color: var(--dark-blue);
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    
}

/* Stats Bar */
.stats-container { margin-top: -60px; position: relative; z-index: 10; }
.stats-bar {
    background: var(--dark-blue);
    background: rgba(10, 25, 49, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
    padding: 30px;
    border-radius: 15px;
    color: #12acd3; 
    gap: 20px; 
}

.stat-item { 
    flex: 1; 
    min-width: 180px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 15px; 
}

.stat-item img {
    width: 2.5rem;      
    height: 2.5rem;      
    object-fit: contain;  
    flex-shrink: 0;       
    transform: scale(2.0); 
}

.stat-item i { font-size: 2.5rem; }
.stat-item h3 { font-size: 1.8rem; color: white; line-height: 1; }
.stat-item p { color: white; font-size: 0.9rem; opacity: 0.8; }
.divider { width: 1px; background: rgba(255,255,255,0.1); height: 50px; }

/* Experience Section */
.experience { 
    padding: 60px 0; 
    margin-top: -20px; 
    margin-bottom: -100px;
    
}
.experience .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.grid-2 { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
    align-items: center; 
    font-size: 1.1rem; 
}
.text-gold-lg { 
    color: var(--gold); 
    font-size: 2.8em; 
    font-weight: 700;
    text-shadow: 
        4px 4px 0 rgba(255, 201, 71, 0.6), 
        8px 8px 0 rgba(255, 201, 71, 0.3), 
        12px 12px 0 rgba(255, 201, 71, 0.1); 
}
.subtitle { color: var(--text-gray); margin: -10px 0 40px; }

/* feature */
.feature { 
    display: flex; 
    align-items: center;    
    gap: 20px; 
    margin-bottom: 25px;    
}

.feature-icon {
    width: 120px;           
    height: 120px;         
    flex-shrink: 0;         
    border-radius: 50%;
    display: flex;
    justify-content: center; 
    align-items: center;  
    overflow: hidden;
}

.feature-icon img {
    width: 100%;             
    height: auto;
    object-fit: contain;
}

.feature-body {
    display: flex;
    flex-direction: column;
    justify-content: center; 
}

.feature-body h4 { 
    color: var(--dark-blue); 
    margin-bottom: 5px; 
    font-size: 1.2rem;     
}

.feature-body p { 
    font-size: 1rem; 
    color: var(--text-gray); 
     
}

.exp-image img {
    width: 90%; 
    max-width: none;
}

/* Why FARFAR */
.why-farfar {
    padding: 60px 0; 
    background: url('images/truck on urban highway bridge.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin-top:0;
}
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #FFC947;
}
.title-underline {
    width: 120px;
    height: 6px;
    background-color: var(--gold);
}

.why-farfar .container {
    padding-left: 4% ; 
    margin: 0 auto ; 
    max-width: 1400px ;
}

.why-content {
    max-width: 800px; 

}
.why-item {
    display: flex;
    align-items: center;
}
.check-icon {
    width: 150px;         
    height: 150px;        
    border-radius: 50%;
    display: flex;
    justify-content: center; 
    align-items: center;  
    padding: 0;
    overflow: hidden;
}

.item-text h4 {
    font-size: 1.3rem; 
    color: #003366;
    font-weight: 700;
}

.item-text p {
    color: #FFC947;
    font-size: 1rem; 
}
.text-blue-dark {
    color: #003366;
}

/* Footer Adjustments */
.footer {
    background: #0A1931; 
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 2fr 1.5fr; 
    gap: 30px;
    align-items: start;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
    font-size: 1.1rem;
}

.footer-col h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 4px;
    height: 18px;
    background-color: #FFC947;
}

.footer-title-none::before {
    display: none; 
}

.company-sub {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: #FFC947;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-col i {
    color: #FFC947;
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    opacity: 0.6;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
}

.btn-contact {
    background: var(--gold);
    color: var(--dark-blue) !important;
    padding: 10px 25px !important; 
    border-radius: 50px !important; 
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    border: 2px solid var(--gold);
}

.btn-contact:hover {
    background: transparent !important; 
    color: var(--gold) !important; 
    transform: scale(1.05); 
}

/* ====================================================
   Language Select Dropdown (แก้ไขให้ใช้ Hover แทน JS)
==================================================== */
.lang-select {
    position: relative;
    list-style: none;
    display: flex;
    align-items: center;
}

.lang-current-minimal {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.lang-current-minimal:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--gold);
    color: var(--gold);
}

.lang-current-minimal i.fa-globe {
    font-size: 1.1rem;
    color: var(--gold);
}

.lang-dropdown-minimal {
    visibility: hidden ; 
    opacity: 0 ;         
    position: absolute;
    top: 100%; 
    margin-top: 15px; 
    right: 0; 
    left: auto;
    background: #ffffff;
    min-width: 140px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 8px 0;
    z-index: 9999;
    transition: all 0.3s ease; 
    pointer-events: none ; 
}

.lang-dropdown-minimal::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.lang-select:hover .lang-dropdown-minimal {
    visibility: visible ;  
    opacity: 1 ;           
    pointer-events: auto ;
    animation: fadeInDown 0.3s ease;
}

.lang-dropdown-minimal li {
    padding: 10px 20px;
    color: #333333 ;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-dropdown-minimal li:hover {
    background: #f8f9fa;
    color: var(--gold) ;
    padding-left: 24px; 
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

img {
    max-width: 100%;
    height: auto;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
}

@media (max-width: 1100px) {
    .nav-links ul { gap: 15px; }
}

@media (max-width: 992px) {
    .logo img { height: 120px; }
    .experience .container, .why-farfar .container { padding-left: 4% ; }
    .stats-container { margin-top: -30px; }
    .stats-bar { flex-wrap: wrap; gap: 20px; }
    .stat-item { width: 45%; justify-content: center; }
    .divider { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {

    .navbar { 
        position: fixed; 
        width: 100%;
        padding: 15px 4%; 
        background-color: var(--dark-blue);
        z-index: 1000;
        top: 0;
    }
    
    .navbar .container { 
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center; 
    }
    
    .logo img { height: 60px; }

    .menu-toggle { 
        display: block; 
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-blue);
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        display: none; 
    }

    .nav-links.active {
        display: block; 
    }

    .nav-links ul { 
        flex-direction: column;
        align-items: center; 
        gap: 20px; 
    }
    
    .nav-links ul li a { font-size: 1.1rem; }

    .lang-select { justify-content: center; }
    .btn-contact { margin-top: 10px; display: inline-block; }
    .grid-2 { grid-template-columns: 1fr; }
    .why-image { order: 2; }
    .why-content { order: 1; }
    .stat-item { width: 100%; }
    .feature { flex-direction: column; text-align: center; }
    .feature-icon { margin: 0 auto; }
    .why-item { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
    .hero, .heroa { margin-top: 80px; padding-top: 40px; }
    .hero h1, .heroa h1 { font-size: 2.5rem; margin-right: 0; text-align: center; }
    .hero p, .heroa p { text-align: center; margin: 0 auto 30px; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 3rem; } 
}

/* =========================================
   Our Journey Section (About Us Page)
========================================= */
.heroa {
    background: linear-gradient(rgba(10, 25, 49, 0.8), rgba(10, 25, 49, 0.2)), url('images/S__9469956.jpg');
    background-size: cover;
    background-position: center;
    height: 45vh;
    display: flex;
    align-items: center;
    color: white;
    
}

.heroa {
    background: linear-gradient(rgba(10, 25, 49, 0.8), rgba(10, 25, 49, 0.2)), url('images/S__9469956.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    
}

.heroa h1 { 
    font-size: 3.5rem; 
    line-height: 1.2; 
    margin-bottom: 20px; 
    max-width: 700px; 
}
.heroa p { font-size: 1.1rem; max-width: 500px; margin-bottom: 30px; opacity: 0.9; }
.btn-gold {
    background: var(--gold);
    color: var(--dark-blue);
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    
}

.journey {
    padding: 80px 0;
    background-color: var(--white);
    margin-bottom: -200px;
}

.journey-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 50px;
}

.journey-text-left {
    flex: 1;
}

.tag-journey {
    color: #004085;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.journey-text-left h2 {
    font-size: 1.8rem;
    color: #003366;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 700;
}

.journey-text-left p, .journey-text-right p {
    font-size: 1rem;
    color: #003366;
    line-height: 1.6;
    font-weight: 400;
}

.journey-img-right {
    flex: 1;
    position: relative;
}

.journey-img-right img, .journey-img-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.yellow-box {
    position: absolute;
    bottom: -20px;
    left: -40px;
    background-color: var(--gold);
    padding: 30px;
    width: 240px;
    z-index: 10;
}

.yellow-box h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    line-height: 1;
}

.yellow-box p {
    font-size: 0.9rem;
    color: #000;
    line-height: 1.5;
    font-weight: 500;
}

.journey-row.reverse {
    align-items: flex-start;
}

.journey-img-left {
    flex: 1;
}

.journey-text-right {
    flex: 1;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .journey-row {
        flex-direction: column;
    }
    .journey-row.reverse {
        flex-direction: column-reverse;
    }
    .yellow-box {
        left: 0;
        bottom: 0;
        width: 100%;
        position: relative;
    }
}


/* =========================================
   Company Timeline Section (About Us)
========================================= */
.company-timeline {
    position: relative;
    padding: 100px 0; 
    background-color: #ffffff;
    overflow: hidden;
    margin-bottom: 50px;
}

.timeline-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;     /* บังคับให้ฝั่งซ้าย (รูป) และขวา (เนื้อหา) มีความสูงเท่ากัน */
    justify-content: center;
    gap: 60px;
    margin: 0 auto;
    max-width: 1400px;
    width: 100%;
}

.timeline-gallery {
    flex: 1;               
    display: flex;
}

.timeline-gallery img {
    width: 100%;
    height: 100%;             /* ดึงรูปให้ยืดเต็มความสูงของเส้น Timeline */
    object-fit: cover;        /* ป้องกันรูปเบี้ยวหรือผิดสัดส่วนเวลาถูกยืด */
    border-radius: 8px;       /* เพิ่มมุมมนเล็กน้อยให้รูปภาพดูกลืนกับดีไซน์รวม (ปรับออกได้ครับ) */
}

.timeline-content {
    flex: 1;               
    display: flex;
    align-items: center;
}

.timeline-track {
    border-left: 3px solid var(--gold);
    padding-left: 30px;
    position: relative;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-tick {
    position: absolute;
    left: -33px; 
    top: 14px;
    width: 15px;
    height: 3px;
    background-color: var(--gold);
}

.timeline-text h3 {
    margin-bottom: 12px;
}

.timeline-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-text ul li {
    margin-bottom: 6px;
}

.timeline-text .highlight {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--dark-blue);
    padding: 2px 8px;
    font-weight: 500;
    line-height: 1.6;
    display: inline;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    border-radius: 2px;
}

.timeline-text h3 .highlight {
    font-size: 1.4rem;
    font-weight: 700;
}

.timeline-text ul li .highlight {
    font-size: 1.05rem;
}

@media (max-width: 992px) {
    .company-timeline::before {
        width: 100%;
        opacity: 0.3;
    }
    .timeline-container {
        flex-direction: column;
        gap: 40px;
    }
    .timeline-gallery {
        order: 2; 
        justify-content: center;
    }
    .timeline-gallery img {
        height: auto;
        max-height: 500px; 
    }
    .timeline-content {
        padding: 0 20px;
        order: 1; 
    }
}
/* =========================================
   ASEAN Routes Section
========================================= */
.asean-routes {
    padding: 80px 0;
    background: linear-gradient(rgba(10, 25, 49, 0.85), rgba(10, 25, 49, 0.95)), url('images/S__9469956.jpg') no-repeat center center/cover;
    color: white;
}

.routes-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.routes-text {
    flex: 1;
}

.routes-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
    line-height: 1.2;
}

.routes-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--gold);
}

.route-item {
    margin-bottom: 20px;
}

.route-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.route-item p {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.5;
    color: #e0e0e0;
}

.routes-map {
    flex: 1;
    display: flex;
    justify-content: center;
}

.routes-map img {
    width: 100%;
    max-width: 600px;
    height: auto;
    background-color: white; 
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@media (max-width: 992px) {
    .routes-container {
        flex-direction: column;
    }
    .routes-map {
        width: 100%;
        margin-top: 30px;
    }
}

/* =========================================
   Modern Services Dropdown Menu (Premium)
========================================= */
.nav-links ul li.nav-dropdown {
    position: relative;
    padding-bottom: 25px; 
    margin-bottom: -25px;
}

.nav-dropdown-toggle {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.dropdown-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff; 
    min-width: 360px; 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); 
    border-radius: 12px;
    padding: 10px 0;
    z-index: 9999;
    transform: translateY(15px); 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
    border: 1px solid rgba(0,0,0,0.05);
    flex-direction: column;
    gap: 0 ;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.nav-links ul li.nav-dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.nav-links ul li.nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu li {
    width: 100%;
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: var(--dark-blue) ;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: normal;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0 ;
    position: relative;
    transition: all 0.3s ease;
}

.dropdown-menu li:last-child a {
    border-bottom: none ;
}

.dropdown-menu li a:hover {
    background-color: #f8f9fa;
    color: var(--gold);
    padding-left: 35px;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--gold);
    opacity: 0;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover::before {
    opacity: 1;
}

.services-grid-main {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.services-grid-sub {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.service-card-custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 250px;
}

.img-icon-wrapper {
    width: 140px;          
    height: 140px;
    background-color: transparent; 
    border-radius: 50%;    
    overflow: hidden;      
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    border: none; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
}

.img-icon-wrapper img {
    width: 100%;           
    height: 100%;          
    object-fit: cover;  
    object-position: center; 
}

.service-card-custom h4 {
    font-size: 0.95rem;
    color: #0066cc; 
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 45px;
}

.gold-line-small {
    width: 40px;
    height: 4px;
    background-color: var(--gold);
    margin-bottom: 15px;
}

.service-card-custom p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

.header-image-divider {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0 25px 0;
}

.header-image-divider img {
    max-width: 120px; 
    height: auto;
    display: block;
}

.header-line-custom, 
.header-line-custom::after, 
.header-divider, 
.header-divider .dot {
    display: none; 
}

@media (max-width: 1024px) {
    .services-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid-sub {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
}

.service-detail-card {
    background-color: #f1f4f6;
    border-radius: 20px;
    padding: 40px 50px;
    margin: 40px auto; 
    max-width: 1200px; 
    text-align: left;
}

.service-detail-card h2 {
    color: #0A1931;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-detail-card .yellow-line {
    width: 60px;
    height: 5px;
    background-color: #FFC947;
    margin-bottom: 25px;
}

.service-detail-card p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px auto; 
    max-width: 1200px; 
}

.type-card {
    background-color: #f1f4f6;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    height: 250px;
    align-items: stretch;
}

.type-image {
    flex: 1;
    min-width: 140px;
}

.type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.type-content {
    flex: 1.2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}

.type-content h3 {
    color: #0A1931;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.type-content p {
    color: #333;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .service-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-types-grid {
        grid-template-columns: 1fr;
    }
    .type-card {
        height: auto;
        min-height: 200px;
    }
}

.truck-fleet-section {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

.truck-fleet-section img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-detail-card.sea-freight {
    background-color: #f1f4f6;
    border-radius: 20px;
    padding: 40px 50px;
    margin: 40px auto; 
    max-width: 1200px;
    text-align: left;
}

.sea-fleet-section {
    width: 100%;
    max-width: 1200px; 
    margin: 40px auto; 
    padding: 0 15px;
}

.sea-fleet-section img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
}

.air-fleet-section {
    width: 100%;
    max-width: 1200px; 
    margin: 40px auto; 
    padding: 0 15px;
}

.air-fleet-section img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
}

.heros {
    background: linear-gradient(rgba(10, 25, 49, 0.8), rgba(10, 25, 49, 0.2)), url('images/S__9469956.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    
}

.heros h1 { 
    font-size: 3.5rem; 
    line-height: 1.2; 
    margin-bottom: 20px; 
    max-width: 700px; 
}
.heros p { font-size: 1.1rem; max-width: 500px; margin-bottom: 30px; opacity: 0.9; }

