/* ========================================
   Cathrich No.13cc - Website Styles
   Purple Theme with Montserrat Font
   ======================================== */

/* CSS Variables - PURPLE THEME */
:root {
    --primary: #4a093c;           /* Deep purple/magenta */
    --primary-dark: #3c0a3d;      /* Darker purple */
    --primary-light: #6b1158;     /* Lighter purple */
    --secondary: #d7afd1;         /* Light lavender */
    --secondary-light: #e8cfe4;   /* Lighter lavender */
    --secondary-dark: #c494bd;    /* Darker lavender */
    --accent: #8b2d6b;            /* Mid purple accent */
    --text: #2d2d2d;
    --text-light: #555555;
    --text-muted: #777777;
    --white: #ffffff;
    --gray-50: #faf8fa;           /* Purple tinted gray */
    --gray-100: #f3eff2;
    --gray-200: #e8e2e7;
    --gray-800: #3d3d3d;
    --success: #6b8e6b;
    --shadow-sm: 0 1px 3px rgba(74,9,60,0.08);
    --shadow: 0 4px 12px rgba(74,9,60,0.12);
    --shadow-lg: 0 10px 30px rgba(74,9,60,0.18);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

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

a:hover {
    color: var(--accent);
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--secondary-light);
    color: var(--primary-dark);
    border-color: var(--secondary-light);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Nav button specifically */
.nav-links .btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.nav-links .btn-primary:hover {
    background: var(--secondary);
    color: var(--primary-dark);
    border-color: var(--secondary);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--primary-dark);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
}

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

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

.btn-lg {
    padding: 18px 40px;
    font-size: 15px;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(74,9,60,0.45) 0%, rgba(60,10,61,0.55) 100%),
                url('../assets/hero-warehouse.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-content {
    position: relative;
    max-width: 750px;
    padding-top: 100px;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 400;
}

.hero-subtitle strong {
    color: var(--secondary);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========================================
   Stats Bar
   ======================================== */
.stats-bar {
    background: var(--primary-dark);
    padding: 50px 0;
}

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

.stat-item {
    padding: 15px;
}

.stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ========================================
   Sections
   ======================================== */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--gray-50);
}

/* Services section with subtle background */
.services.section-alt {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--gray-100) 100%);
    position: relative;
}

.services.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
}

.section-purple {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.section-purple h2,
.section-purple h3 {
    color: var(--white);
}

.section-purple p {
    color: rgba(255,255,255,0.9);
}

/* Decorative accent line */
.section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    margin: 25px auto 0;
    border-radius: 2px;
}

.section-purple .section-header::after {
    background: linear-gradient(90deg, var(--secondary) 0%, var(--white) 100%);
}

.section-purple .section-header h2 {
    color: var(--secondary);
}

.section-purple .section-header p {
    color: var(--secondary-light);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 70px;
}

.section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 18px;
    color: var(--primary);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

/* ========================================
   About Section
   ======================================== */
.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: start;
}

.about-content .lead {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 28px;
    font-weight: 500;
    line-height: 1.7;
}

.about-content p {
    margin-bottom: 18px;
    color: var(--text-light);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.service-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--primary);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 14px;
    color: var(--primary);
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   Industries Section
   ======================================== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.industry-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--secondary);
    transform: translateY(-3px);
}

.section-purple .industry-item {
    background: rgba(255,255,255,0.95);
    border-color: transparent;
}

.section-purple .industry-item:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.industry-icon {
    width: 44px;
    height: 44px;
    background: var(--secondary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.industry-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--primary);
}

.industry-item span:last-child {
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
}

/* ========================================
   Logistics Section
   ======================================== */
.logistics-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 60px;
}

.logistics-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.logistics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    margin-bottom: 70px;
}

.logistics-content .lead {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 28px;
    font-weight: 500;
}

.logistics-list {
    list-style: none;
}

.logistics-list li {
    padding: 16px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid var(--gray-200);
    font-size: 15px;
}

.logistics-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--secondary);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234a093c'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.fleet-cards h3 {
    font-size: 1.6rem;
    margin-bottom: 28px;
    color: var(--primary);
}

.fleet-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fleet-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.fleet-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fleet-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

.fleet-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
}

.coverage-section {
    text-align: center;
    padding-top: 50px;
    border-top: 2px solid var(--gray-200);
}

.coverage-section h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.coverage-countries {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.country-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    color: #3c0a3d !important;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
}

.country-tag:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255,255,255,0.8);
}

/* South Africa - 35% opacity */
.country-tag.za {
    background: linear-gradient(135deg, rgba(0,119,73,0.35) 0%, rgba(0,119,73,0.35) 33%, rgba(255,184,28,0.35) 33%, rgba(255,184,28,0.35) 50%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.3) 67%, rgba(222,56,49,0.35) 67%, rgba(222,56,49,0.35) 100%);
}

/* Mozambique */
.country-tag.mz {
    background: linear-gradient(180deg, rgba(0,150,57,0.35) 0%, rgba(0,150,57,0.35) 33%, rgba(0,0,0,0.3) 33%, rgba(0,0,0,0.3) 40%, rgba(252,227,0,0.35) 40%, rgba(252,227,0,0.35) 60%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.3) 67%, rgba(210,16,52,0.35) 67%, rgba(210,16,52,0.35) 100%);
}

/* Botswana */
.country-tag.bw {
    background: linear-gradient(180deg, rgba(117,170,219,0.35) 0%, rgba(117,170,219,0.35) 35%, rgba(200,200,200,0.25) 35%, rgba(200,200,200,0.25) 40%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.3) 60%, rgba(200,200,200,0.25) 60%, rgba(200,200,200,0.25) 65%, rgba(117,170,219,0.35) 65%, rgba(117,170,219,0.35) 100%);
}

/* Namibia */
.country-tag.na {
    background: linear-gradient(135deg, rgba(0,53,128,0.35) 0%, rgba(0,53,128,0.35) 40%, rgba(200,200,200,0.25) 40%, rgba(200,200,200,0.25) 45%, rgba(210,16,52,0.35) 45%, rgba(210,16,52,0.35) 55%, rgba(200,200,200,0.25) 55%, rgba(200,200,200,0.25) 60%, rgba(0,149,67,0.35) 60%, rgba(0,149,67,0.35) 100%);
}

/* Tanzania */
.country-tag.tz {
    background: linear-gradient(135deg, rgba(30,181,58,0.35) 0%, rgba(30,181,58,0.35) 40%, rgba(252,209,22,0.3) 40%, rgba(252,209,22,0.3) 45%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,0.3) 55%, rgba(252,209,22,0.3) 55%, rgba(252,209,22,0.3) 60%, rgba(0,163,221,0.35) 60%, rgba(0,163,221,0.35) 100%);
}

/* Zimbabwe */
.country-tag.zw {
    background: linear-gradient(180deg, rgba(49,146,8,0.35) 0%, rgba(49,146,8,0.35) 14%, rgba(255,210,0,0.3) 14%, rgba(255,210,0,0.3) 28%, rgba(222,32,16,0.35) 28%, rgba(222,32,16,0.35) 42%, rgba(0,0,0,0.3) 42%, rgba(0,0,0,0.3) 58%, rgba(222,32,16,0.35) 58%, rgba(222,32,16,0.35) 72%, rgba(255,210,0,0.3) 72%, rgba(255,210,0,0.3) 86%, rgba(49,146,8,0.35) 86%, rgba(49,146,8,0.35) 100%);
}

/* ========================================
   Contact Section
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 70px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    padding: 28px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.contact-card h3 {
    font-size: 0.9rem;
    margin-bottom: 14px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

.contact-card a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.contact-card a:hover {
    color: var(--accent);
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-form-wrapper {
    background: var(--primary);
    padding: 50px;
    border-radius: var(--radius-lg);
}

.contact-form-wrapper h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 30px;
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    font-size: 13px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 16px 18px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 15px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255,255,255,0.15);
}

.contact-form button {
    grid-column: 1 / -1;
    margin-top: 10px;
    background: var(--secondary);
    color: var(--primary-dark);
    border-color: var(--secondary);
}

.contact-form button:hover {
    background: var(--white);
    border-color: var(--white);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    padding: 80px 0 30px;
}

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

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

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
}

.footer h4 {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--secondary);
}

.footer-contact p {
    margin-bottom: 14px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    fill: var(--secondary);
}

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

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

/* ========================================
   Responsive Styles
   ======================================== */
/* Hero logo */
.hero-logo {
    margin-bottom: 30px;
}

.hero-logo img {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Image accent cards */
.accent-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.accent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, var(--primary-dark) 100%);
    z-index: 1;
}

.accent-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.accent-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    color: var(--white);
}

/* Gradient text accent */
.gradient-text {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Feature boxes with gradient border */
.feature-box {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: var(--shadow);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .logo img {
        height: 70px;
    }
    
    .hero-logo img {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 94px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 18px 0;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .logistics-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image img,
    .logistics-image img {
        height: 250px;
    }
    
    .services-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .logo img {
        height: 60px;
    }
    
    .hero-logo img {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .coverage-countries {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}
/* Updated: Thu Feb 12 09:19:10 UTC 2026 */
