* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1c2e52;
    --primary-dark: #152341;
    --accent: #f2a900;
    --accent-light: #ffc933;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--gray-200);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

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

.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
}

.login-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.login-btn svg {
    width: 18px;
    height: 18px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: 15px 0;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-nav-link.login {
    color: var(--primary);
    font-weight: 600;
}

/* Hero Section */
.hero {
    padding: 140px 20px 80px;
    background: var(--white);
    text-align: center;
}

/* Video Hero for Home Page */
.video-hero-home {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    overflow: hidden;
}

.video-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: blur(8px);
    transform: scale(1.1);
    transition: opacity 2s ease-in-out, filter 2s ease-in-out, transform 2s ease-in-out;
}

.hero-video-bg.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

.hero-overlay-home {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 46, 82, 0.85) 0%, rgba(28, 46, 82, 0.7) 100%);
    z-index: 2;
}

.video-hero-home .hero-content,
.video-hero-home .hero-stats {
    position: relative;
    z-index: 3;
}

.video-hero-home .hero-content {
    max-width: 900px;
    margin: 0 auto 60px;
}

.video-hero-home .btn-secondary {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.video-hero-home .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.video-hero-home .stat-number {
    color: var(--accent);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.video-hero-home .stat-label {
    color: rgba(255, 255, 255, 0.85);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 50px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Video Hero overrides - must come after generic .hero styles */
.video-hero-home h1 {
    color: var(--white) !important;
    font-size: 52px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.video-hero-home h1 .highlight {
    color: var(--accent) !important;
}

.video-hero-home .hero-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 22px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(28, 46, 82, 0.3);
}

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

.btn-secondary:hover {
    background: var(--gray-50);
}

.btn-full {
    width: 100%;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

/* Sections */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: var(--gray-50);
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.category {
    display: block;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    cursor: pointer;
}

.category:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(28, 46, 82, 0.1);
}

.category:hover .category-link {
    color: var(--primary);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.category-image {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.category:hover .category-image img {
    transform: scale(1.05);
}

.category h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
}

.category ul {
    list-style: none;
    color: var(--gray-600);
    font-size: 14px;
}

.category ul li {
    padding: 5px 0;
}

.category-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 35px;
    transition: all 0.3s;
}

.service-card:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(28, 46, 82, 0.2);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover li {
    color: var(--white);
}

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

.service-icon-img {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-icon-img svg {
    width: 100%;
    height: 100%;
}

.service-card:hover .service-icon-img {
    color: var(--white);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 15px;
    transition: color 0.3s;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 20px;
    transition: color 0.3s;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    color: var(--gray-700);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.service-features li::before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
}

.service-card:hover .service-features li::before {
    color: var(--accent);
}

.tracking-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.tracking-content h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 8px;
}

.tracking-content p {
    color: rgba(255, 255, 255, 0.8);
}

.tracking-cta .btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.tracking-cta .btn-primary:hover {
    background: var(--accent-light);
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: var(--gray-50);
}

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

.feature {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.feature h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
}

.feature p {
    color: var(--gray-600);
    font-size: 14px;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 30px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 24px;
}

.contact-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 3px;
}

.contact-item a,
.contact-item span {
    color: var(--gray-600);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-form-container {
    background: var(--gray-50);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid var(--gray-200);
}

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

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

.form-group label {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

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

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 0;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 5px 0;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* Section Tag */
.section-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* About Intro Section */
.about-intro {
    padding: 100px 20px;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-lead {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-content > p {
    color: var(--gray-600);
    margin-bottom: 30px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    color: var(--primary);
}

.highlight-item strong {
    display: block;
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 2px;
}

.highlight-item span {
    color: var(--gray-600);
    font-size: 14px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(28, 46, 82, 0.3);
}

.badge-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
}

.badge-text {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* What We Do Section */
.what-we-do {
    padding: 100px 20px;
    background: var(--gray-50);
}

.services-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-overview-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.service-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.service-overview-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-overview-icon svg {
    color: var(--white);
}

.service-overview-card h3 {
    font-size: 20px;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.service-overview-card p {
    color: var(--gray-600);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.service-link:hover {
    color: var(--accent);
}

/* Specialization Section */
.specialization {
    padding: 100px 20px;
    background: var(--white);
}

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.spec-content h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.spec-content > p {
    color: var(--gray-600);
    margin-bottom: 15px;
    line-height: 1.7;
}

.spec-features {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.spec-feature svg {
    color: var(--accent);
    flex-shrink: 0;
}

.spec-feature span {
    color: var(--gray-700);
    font-weight: 500;
}

.spec-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.spec-product-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
}

.spec-product-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.spec-product-item:hover img {
    transform: scale(1.05);
}

.spec-product-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(28, 46, 82, 0.9));
    color: var(--white);
    padding: 30px 15px 15px;
    font-weight: 600;
    font-size: 15px;
}

/* Logistics Highlight Section */
.logistics-highlight {
    padding: 100px 20px;
    background: var(--primary);
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-header.light .section-tag {
    color: var(--accent);
}

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

.logistics-feature {
    text-align: center;
    padding: 30px 20px;
}

.logistics-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.logistics-icon svg {
    color: var(--accent);
}

.logistics-feature h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 10px;
}

.logistics-feature p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.tracking-cta-centered {
    text-align: center;
    margin-top: 50px;
}

.btn-accent {
    background: var(--accent);
    color: var(--primary);
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.btn-accent:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

/* Updated Why Us Section */
.why-us .feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.why-us .feature-icon svg {
    color: var(--primary);
}

/* Updated Contact Section */
.contact .section-tag {
    color: var(--accent);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    color: var(--primary);
}

/* Form Select */
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s;
    background: var(--white);
    cursor: pointer;
}

.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Logistics Main Section */
.logistics-main {
    padding: 100px 20px;
    background: var(--white);
}

.logistics-modes {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
}

.logistics-mode-card {
    display: flex;
    gap: 40px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.logistics-mode-card:hover {
    box-shadow: 0 10px 40px rgba(28, 46, 82, 0.15);
    transform: translateY(-3px);
}

.mode-icon {
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mode-icon.maritime {
    background: linear-gradient(135deg, #1c2e52 0%, #2d4a7c 100%);
    color: var(--white);
}

.mode-icon.aerial {
    background: linear-gradient(135deg, #f2a900 0%, #ffc933 100%);
    color: var(--white);
}

.mode-icon.ground {
    background: linear-gradient(135deg, #1c2e52 0%, #3d5a80 100%);
    color: var(--white);
}

.mode-content h3 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 12px;
}

.mode-description {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.mode-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.mode-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-700);
}

.mode-feature-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.mode-stats {
    display: flex;
    gap: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.mode-stat {
    display: flex;
    flex-direction: column;
}

.mode-stat .stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
}

.mode-stat .stat-desc {
    font-size: 13px;
    color: var(--gray-500);
}

/* Logistics Services Section */
.logistics-services {
    padding: 100px 20px;
    background: var(--primary);
    color: var(--white);
}

.logistics-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.logistics-services-content .section-tag.light {
    color: var(--accent);
    border-color: var(--accent);
}

.logistics-services-content h2 {
    font-size: 36px;
    color: var(--white);
    margin: 15px 0 20px;
}

.logistics-services-content > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.cold-chain-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cold-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    min-width: 50px;
}

.step-content h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 5px;
}

.step-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.logistics-services-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.temp-ranges {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
}

.temp-ranges h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--white);
}

.temp-range {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.temp-range:last-child {
    margin-bottom: 0;
}

.temp-bar {
    width: 8px;
    height: 40px;
    border-radius: 4px;
}

.temp-range.frozen .temp-bar {
    background: linear-gradient(to bottom, #00bcd4, #006064);
}

.temp-range.chilled .temp-bar {
    background: linear-gradient(to bottom, #4fc3f7, #0288d1);
}

.temp-range.fresh .temp-bar {
    background: linear-gradient(to bottom, #81c784, #388e3c);
}

.temp-range.controlled .temp-bar {
    background: linear-gradient(to bottom, #ffb74d, #f57c00);
}

.temp-info {
    display: flex;
    flex-direction: column;
}

.temp-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.temp-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.certifications-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
}

.certifications-box h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.cert-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.cert-item svg {
    color: var(--accent);
}

/* Logistics Tracking Section */
.logistics-tracking {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #2d4a7c 100%);
    color: var(--white);
}

.logistics-tracking .section-header.light .section-tag {
    color: var(--accent);
    border-color: var(--accent);
}

.logistics-tracking .section-header.light h2 {
    color: var(--white);
}

.logistics-tracking .section-header.light p {
    color: rgba(255, 255, 255, 0.8);
}

.tracking-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
    margin-bottom: 50px;
}

.tracking-feature-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.tracking-feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.tracking-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.tracking-feature-card h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
}

.tracking-feature-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.tracking-cta-centered {
    text-align: center;
    margin-top: 40px;
}

/* Logistics Routes Section */
.logistics-routes {
    padding: 100px 20px;
    background: var(--gray-50);
}

.routes-header {
    margin-bottom: 50px;
}

.routes-info .section-tag {
    display: inline-block;
}

.routes-info h2 {
    font-size: 36px;
    color: var(--primary);
    margin: 15px 0;
}

.routes-info p {
    font-size: 16px;
    color: var(--gray-600);
    max-width: 700px;
    line-height: 1.7;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.route-region {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.region-header {
    padding: 20px;
    color: var(--white);
}

.region-header.asia {
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
}

.region-header.europe {
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
}

.region-header.middle-east {
    background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
}

.region-header.americas {
    background: linear-gradient(135deg, #f2a900 0%, #e6a200 100%);
}

.region-header h4 {
    font-size: 18px;
    font-weight: 600;
}

.destinations-list {
    list-style: none;
    padding: 20px;
}

.destinations-list li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.destinations-list li:last-child {
    border-bottom: none;
}

.origin-ports {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--primary);
}

.origin-ports h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 20px;
}

.origin-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.origin-port {
    padding: 12px 25px;
    background: var(--primary);
    color: var(--white);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .services-overview {
        grid-template-columns: repeat(2, 1fr);
    }

    .spec-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .logistics-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .logistics-mode-card {
        flex-direction: column;
        gap: 25px;
        padding: 30px;
    }

    .mode-icon {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }

    .mode-features {
        grid-template-columns: 1fr;
    }

    .logistics-services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tracking-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-intro,
    .what-we-do,
    .specialization,
    .logistics-highlight,
    .logistics-main,
    .logistics-services,
    .logistics-tracking,
    .logistics-routes {
        padding: 60px 20px;
    }

    .logistics-mode-card {
        padding: 25px;
    }

    .mode-content h3 {
        font-size: 22px;
    }

    .mode-stats {
        flex-direction: column;
        gap: 15px;
    }

    .tracking-features-grid {
        grid-template-columns: 1fr;
    }

    .routes-grid {
        grid-template-columns: 1fr;
    }

    .logistics-services-content h2,
    .routes-info h2 {
        font-size: 28px;
    }

    .origin-list {
        flex-direction: column;
        align-items: center;
    }

    .about-content h2,
    .spec-content h2 {
        font-size: 28px;
    }

    .services-overview {
        grid-template-columns: 1fr;
    }

    .logistics-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .spec-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .spec-product-item img {
        height: 140px;
    }

    .about-image-badge {
        bottom: -10px;
        left: 10px;
        padding: 15px 20px;
    }

    .badge-number {
        font-size: 22px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .login-btn span {
        display: none;
    }

    .login-btn {
        padding: 10px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 120px 20px 60px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: none;
    }

    .tracking-cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .product-categories {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
