/* ==========================================
   Chenxin Cargo - International Freight Forwarding
   Brand Colors: Navy Blue #0B1D3A + Gold #C9A84C
   Professional, Refined & Visually Striking
   Complete Responsive Styles
   ========================================== */

/* ========== CSS Variables ========== */
:root {
    --navy: #0B1D3A;
    --navy-light: #152744;
    --navy-dark: #061228;
    --gold: #C9A84C;
    --gold-light: #D4B96A;
    --gold-dark: #B8973D;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --text-dark: #1A1A2E;
    --text-light: #6C757D;
    --sea-blue: #1E88E5;
    --rail-green: #43A047;
    --truck-orange: #FB8C00;
    --shadow: 0 4px 20px rgba(11, 29, 58, 0.15);
    --shadow-hover: 0 8px 30px rgba(11, 29, 58, 0.25);
    --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.4);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== Typography ========== */
h1, h2, h3, h4 {
    color: var(--navy);
    line-height: 1.3;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 16px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-title-light {
    color: var(--white);
}

.section-title-light::after {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.section-subtitle-light {
    color: rgba(255, 255, 255, 0.8);
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-glow {
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-glow:hover {
    box-shadow: 0 6px 30px rgba(201, 168, 76, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

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

.btn-large {
    padding: 18px 48px;
    font-size: 1.15rem;
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

.btn-telegram {
    background: #0088cc;
    color: var(--white);
    border-color: #0088cc;
}

.btn-telegram:hover {
    background: #0077b3;
    border-color: #0077b3;
    transform: translateY(-3px);
}

/* ========== Header ========== */
.header {
    background: var(--navy);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(201, 168, 76, 0.3);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

/* Desktop Navigation */
.nav {
    display: flex;
    gap: 36px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

/* Language Switcher */
.lang-switch {
    display: flex;
    gap: 6px;
}

.lang-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 8px;
}

/* ========== Hero Section ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--navy-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero-freight.jpg') center/cover no-repeat;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 18, 40, 0.95) 0%, rgba(11, 29, 58, 0.85) 50%, rgba(21, 39, 68, 0.9) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 40%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23C9A84C" opacity="0.15"/></svg>');
    background-size: 100% 100%, 100% 100%, 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== Hero Fullscreen - Maersk Style ========== */
.hero-fullscreen {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 29, 58, 0.85) 0%, rgba(11, 29, 58, 0.7) 50%, rgba(11, 29, 58, 0.8) 100%);
    z-index: 2;
}

.hero-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(201, 168, 76, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(201, 168, 76, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(201, 168, 76, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(201, 168, 76, 0.03) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    z-index: 3;
}

.hero-fullscreen-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge-new {
    display: inline-block;
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title-new {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-new {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-btns-new {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary-new {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-secondary-new:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    margin: 12px auto 0;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========== Stats Section ========== */
.stats-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-box {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stats Bar Overlay */
.stats-bar-overlay {
    background: linear-gradient(180deg, rgba(11, 29, 58, 0.95) 0%, rgba(11, 29, 58, 1) 100%);
    padding: 50px 0;
    position: relative;
    z-index: 20;
    margin-top: -60px;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-bar-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(201, 168, 76, 0.2);
}

.stat-bar-item:last-child {
    border-right: none;
}

.stat-bar-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-bar-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== Routes Section ========== */
.routes {
    padding: 100px 0;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.route-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.route-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.route-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.route-card:nth-child(1) .route-image {
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1) 0%, rgba(30, 136, 229, 0.2) 100%);
}

.route-card:nth-child(2) .route-image {
    background: linear-gradient(135deg, rgba(67, 160, 71, 0.1) 0%, rgba(67, 160, 71, 0.2) 100%);
}

.route-card:nth-child(3) .route-image {
    background: linear-gradient(135deg, rgba(251, 140, 0, 0.1) 0%, rgba(251, 140, 0, 0.2) 100%);
}

.route-info {
    padding: 28px;
}

.route-info h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.route-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Routes Showcase - DB Schenker Style */
.routes-showcase-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.routes-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.route-card-large {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.route-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.route-card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.route-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(11, 29, 58, 0.7) 100%);
}

.route-country-flag {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 2.5rem;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.route-card-body {
    padding: 28px;
}

.route-card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--navy);
}

.route-methods-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.route-method-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.route-method-tag.sea {
    background: rgba(30, 136, 229, 0.15);
    color: #1E88E5;
}

.route-method-tag.rail {
    background: rgba(67, 160, 71, 0.15);
    color: #43A047;
}

.route-method-tag.truck {
    background: rgba(251, 140, 0, 0.15);
    color: #FB8C00;
}

.route-card-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    border-radius: var(--radius);
    transition: var(--transition);
}

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

/* ========== Services Showcase ========== */
.services-showcase {
    padding: 100px 0;
    background: var(--white);
}

.service-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 60px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--gold);
}

.service-showcase-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.service-showcase-item.reverse {
    direction: rtl;
}

.service-showcase-item.reverse > * {
    direction: ltr;
}

.service-image-wrap {
    position: relative;
    min-height: 400px;
    height: 100%;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-showcase-item:hover .service-image {
    transform: scale(1.05);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 50%, rgba(11, 29, 58, 0.1) 100%);
}

.service-content-wrap {
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-showcase-item.reverse .service-content-wrap {
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-icon-badge {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: inline-block;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    padding: 10px 14px;
    border-radius: var(--radius);
}

.service-content-wrap h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--navy);
}

.service-content-wrap p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-features-list {
    margin-bottom: 28px;
}

.service-features-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* ========== Services Overview ========== */
.services-overview {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-item {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-item:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========== Why Us Showcase ========== */
.why-us-showcase {
    padding: 100px 0;
    background: var(--white);
}

.why-us-items {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.why-us-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.why-us-item.reverse {
    direction: rtl;
}

.why-us-item.reverse > * {
    direction: ltr;
}

.why-us-image {
    position: relative;
    min-height: 300px;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-us-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201, 168, 76, 0.1);
}

.why-us-content {
    padding: 20px 0;
}

.why-us-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.why-us-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--navy);
}

.why-us-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-stat {
    display: inline-block;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--gold);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ========== How It Works ========== */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.2);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--navy);
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ========== Features Grid ========== */
.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}


/* Company Stats - About Page */
.company-stats {
    background: linear-gradient(180deg, rgba(11, 29, 58, 0.95) 0%, rgba(11, 29, 58, 1) 100%);
    padding: 50px 0;
    position: relative;
}

.company-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 16px;
}

.stat-item .stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== About Page ========== */
.about-content {
    padding: 0;
}

.about-intro {
    text-align: center;
    padding: 80px 0;
    background: var(--white);
}

.about-intro .about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-intro .about-content h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 24px;
    position: relative;
}

.about-intro .about-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 16px auto 0;
    border-radius: 2px;
}

.about-intro .about-content p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.about-intro .about-content p:last-child {
    margin-bottom: 0;
}

.page-header {
    padding: 140px 0 70px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(201, 168, 76, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(201, 168, 76, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(201, 168, 76, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(201, 168, 76, 0.03) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

/* Company Timeline */
.company-timeline {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold) 0%, rgba(201, 168, 76, 0.3) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -48px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--gold);
}

.timeline-year {
    position: absolute;
    left: -60px;
    width: 50px;
    text-align: right;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
}

.timeline-content {
    background: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 15px;
    width: 14px;
    height: 14px;
    background: var(--white);
    transform: rotate(45deg);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Certifications */
.certifications {
    padding: 80px 0;
    background: var(--white);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cert-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cert-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.cert-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cert-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.cert-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Global Network */
.global-network {
    padding: 80px 0;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.network-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.network-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.network-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.network-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.network-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--gold);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.network-hq {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
}

.network-hq h3 {
    color: var(--white);
}

.network-hq p {
    color: rgba(255, 255, 255, 0.8);
}

.network-hq .network-badge {
    background: rgba(201, 168, 76, 0.2);
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mission-card {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.mission-card:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
    transform: translateY(-6px);
}

.mission-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: rgba(201, 168, 76, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    line-height: 1;
}

.mission-icon svg {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    max-width: 32px;
    max-height: 32px;
    color: var(--gold);
    fill: var(--gold);
}

.mission-card h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
}

/* Strengths Section */
.strengths {
    padding: 80px 0;
    background: var(--white);
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.strength-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.strength-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
    opacity: 0.08;
}

.strength-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.strength-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* About CTA */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    text-align: center;
}

.about-cta h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

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

/* ========== CTA New Style ========== */
.cta-new {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 29, 58, 0.92) 0%, rgba(11, 29, 58, 0.85) 100%);
}

.cta-new-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-new-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-new-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
}

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

/* ========== Quote Form ========== */
.quote-form-wrapper {
    padding: 50px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius);
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

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

/* Route Detail Card */
.route-detail-card {
    padding: 50px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

/* ========== Footer ========== */
.footer {
    background: var(--navy-dark);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
}

.footer-logo .logo-text {
    font-size: 1.3rem;
}

.footer-brand p {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: var(--navy);
}

.footer-section h4 {
    color: var(--gold);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(201, 168, 76, 0.4);
}

.footer-section ul li {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 0.95rem;
}

.footer-section ul li a {
    color: var(--white);
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Contact section specific styling */
.footer-section:last-child h4 {
    position: relative;
    padding-bottom: 16px;
}

.footer-section:last-child h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-section:last-child p {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-section:last-child p:last-child {
    border-bottom: none;
}

.footer-section p strong,
.footer-section p b {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}


/* About CTA */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    text-align: center;
}

.about-cta h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== Responsive - 1024px ========== */
@media (max-width: 1024px) {
    .stats-grid,
    .features-grid,
    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .cert-grid,
    .network-grid,
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .routes-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-year {
        position: static;
        width: auto;
        text-align: left;
        margin-bottom: 8px;
    }
    
    .timeline {
        padding-left: 0;
    }
    
    .timeline::before {
        left: 0;
    }
    
    .timeline-item {
        padding-left: 30px;
    }
    
    .timeline-item::before {
        left: -30px;
    }
    
    .timeline-content::before {
        left: -14px;
    }
    
    .service-showcase-item,
    .service-showcase-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .service-image-wrap {
        height: 280px;
    }
    
    .service-content-wrap,
    .service-showcase-item.reverse .service-content-wrap {
        padding: 35px 30px;
    }
    
    .why-us-item,
    .why-us-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .hero-title-new {
        font-size: 2.8rem;
    }
    
    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-bar-item {
        border-right: none;
        border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    }
    
    .stat-bar-item:nth-child(3),
    .stat-bar-item:nth-child(4) {
        border-bottom: none;
    }
}

/* ========== Responsive - 768px (Mobile Navigation) ========== */
@media (max-width: 768px) {
    /* Mobile Menu Button */
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
        transition: transform 0.3s ease;
    }
    
    .mobile-menu-btn.menu-open {
        transform: rotate(90deg);
    }
    
    /* Desktop Navigation - Hidden by default on mobile */
    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 90px 30px 40px;
        gap: 0;
        z-index: 1000;
        overflow-y: auto;
    }
    
    /* Mobile Navigation - Active state */
    .nav.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .nav-link {
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.15rem;
        font-weight: 500;
    }
    
    .nav-link:last-of-type {
        border-bottom: none;
    }
    
    /* Language Switcher - inside nav on mobile */
    .nav .lang-switch {
        display: flex;
        gap: 10px;
        margin-left: 0;
        margin-top: 30px;
        padding-top: 24px;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        justify-content: center;
    }
    
    .lang-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
        min-width: 70px;
        text-align: center;
    }
    
    /* Hero Fullscreen */
    .hero-fullscreen {
        min-height: 600px;
    }
    
    .hero-title-new {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-new {
        font-size: 1.1rem;
    }
    
    .hero-scroll-hint {
        display: none;
    }
    
    /* Stats Bar */
    .stats-bar-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Routes */
    .routes-card-grid {
        grid-template-columns: 1fr;
    }
    
    /* Why Us */
    .why-us-image {
        height: 250px;
    }
    
    /* Process Steps */
    .process-steps-grid {
        grid-template-columns: 1fr;
    }
    
    /* CTA */
    .cta-new-content h2 {
        font-size: 2.2rem;
    }
    
    /* Page Header */
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    /* About Content */
    .about-content {
        padding: 120px 0 60px;
    }
    
    /* Mission Grid */
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    /* Certifications Grid */
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    /* Network Grid */
    .network-grid {
        grid-template-columns: 1fr;
    }
    
    /* Strengths Grid */
    .strengths-grid {
        grid-template-columns: 1fr;
    }
    
    /* Stats Row */
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Quote Form */
    .quote-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Route Detail Card */
    .route-detail-card {
        padding: 30px 20px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
    
    /* Timeline Mobile */
    .timeline {
        padding-left: 0;
    }
    
    .timeline::before {
        left: 0;
    }
    
    .timeline-item {
        padding-left: 30px;
    }
    
    .timeline-item::before {
        left: -30px;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-year {
        position: static;
        width: auto;
        text-align: left;
        margin-bottom: 8px;
    }
}

/* ========== Responsive - 480px (Small Mobile) ========== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title-new {
        font-size: 1.8rem;
    }
    
    .hero-btns-new {
        flex-direction: column;
    }
    
    .stats-bar-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .cta-buttons-row {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .stat-item .stat-number {
        font-size: 2.5rem;
    }
    
    .service-content-wrap {
        padding: 30px 20px;
    }
    
    .why-us-content h3 {
        font-size: 1.5rem;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .cert-card,
    .network-card,
    .strength-card {
        padding: 28px 20px;
    }
    
    .mission-card {
        padding: 30px 20px;
    }
    
    .about-cta h2 {
        font-size: 1.8rem;
    }
    
    .cta-new-content h2 {
        font-size: 1.8rem;
    }
}
