@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Logo Colors - RIO PANJETA TRUCKING */
    --logo-red: #DC143C; /* PANJETA vibrant red */
    --logo-blue: #003366; /* Truck and flag blue */
    --logo-silver: #C0C0C0; /* RIO metallic silver */
    --logo-black: #000000; /* Background black */
    --logo-white: #FFFFFF; /* White accents */
    
    /* Primary Colors based on Logo */
    --primary: #003366; /* Logo blue */
    --primary-dark: #001F3F;
    --secondary: #DC143C; /* Logo red */
    --accent: #DC143C; /* Logo red as accent */
    --accent-silver: #C0C0C0; /* Logo silver */
    --text-dark: #1a1a2e;
    --text-light: #555;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    /* Logo-inspired background with red, blue, and silver accents */
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05) 0%, rgba(0, 51, 102, 0.08) 25%, rgba(192, 192, 192, 0.06) 50%, rgba(220, 20, 60, 0.08) 75%, rgba(0, 51, 102, 0.05) 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Logo colors: red, blue, silver */
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 20, 60, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 51, 102, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(192, 192, 192, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundPulse 8s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Logo colors: red, blue, silver */
    background: 
        radial-gradient(circle at 60% 20%, rgba(220, 20, 60, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 30% 80%, rgba(0, 51, 102, 0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundMove 12s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes backgroundMove {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(20px, -20px) rotate(2deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(-2deg);
    }
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95); /* White navigation */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98); /* Slightly more opaque on scroll */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
}

nav {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
}

.logo img {
    height: 80px;
    width: auto;
    max-width: 320px;
    min-width: 200px;
    object-fit: contain;
    filter: none;
    transition: all 0.3s ease;
    background: transparent;
    mix-blend-mode: normal;
}

.logo img:hover {
    transform: scale(1.05);
    filter: none;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    background: transparent;
}

.logo a img {
    background: transparent !important;
    mix-blend-mode: normal !important;
}

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

.nav-menu>li {
    position: relative;
}

.nav-menu a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
    font-weight: 600;
}

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

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background: rgba(255, 255, 255, 0.98); /* White matching header */
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1;
    top: 100%;
    left: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 10px;
    border-radius: 12px;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    color: #1a1a2e;
    padding: 8px 20px;
    display: block;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.2s;
}

.dropdown-content a:hover {
    background: rgba(220, 20, 60, 0.2);
    color: var(--secondary);
    padding-left: 25px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 50vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: 100px; /* Account for fixed header */
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9) 0%, rgba(220, 20, 60, 0.8) 100%); /* Fallback background */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: scale(1.1);
    /* Prepared for parallax */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.7) 0%, rgba(220, 20, 60, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 20px;
}

.hero-tagline {
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero h2 {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.5;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary); /* Logo red */
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

.btn-primary:hover {
    background: #B01030; /* Darker red */
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.6);
}

/* Sections */
.section {
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.section-white {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    position: relative;
}

.section-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(220, 20, 60, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 51, 102, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: sectionGlow 6s ease-in-out infinite;
}

@keyframes sectionGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.section-gray {
    background: rgba(26, 26, 46, 0.7);
    color: white;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-gray::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 20, 60, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 51, 102, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: graySectionGlow 8s ease-in-out infinite;
}

@keyframes graySectionGlow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.section-gray .section-title {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(220, 20, 60, 0.3);
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 15px;
}

.section-gray .section-subtitle {
    color: #ffffff;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 25px;
}

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

.section-gray .btn-primary {
    background: linear-gradient(90deg, var(--secondary) 0%, #B01030 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 206, 209, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.section-gray .btn-primary:hover {
    background: linear-gradient(90deg, #008B8B 0%, #00CED1 100%);
    box-shadow: 0 6px 20px rgba(0, 206, 209, 0.6);
    transform: translateY(-3px) scale(1.05);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.section-white .section-title {
    color: #1a1a2e;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 500;
}

.section-white .section-subtitle {
    color: #444;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: center;
    margin-top: 30px;
    position: relative;
    padding: 20px 0;
}

.about-content > div:last-child {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.08) 0%, rgba(0, 51, 102, 0.04) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.about-content:hover::before {
    opacity: 1;
}

.about-text {
    font-size: 16px;
    line-height: 1.7;
    color: #1a1a2e;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.section-white .about-text {
    color: #1a1a2e;
}

.section-gray .about-text {
    color: #ffffff;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.section-white .about-text p {
    color: #333;
    text-shadow: none;
}

.section-gray .about-text p {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.about-text p:last-of-type {
    margin-bottom: 30px;
}

.section-gray .about-content .carriers-icon {
    font-size: 200px;
    text-align: center;
    opacity: 0.6;
    color: rgba(220, 20, 60, 0.8);
    filter: drop-shadow(0 0 30px rgba(220, 20, 60, 0.6)) drop-shadow(0 0 60px rgba(220, 20, 60, 0.4));
    position: relative;
    z-index: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 250px;
}

.about-content:hover .carriers-icon {
    opacity: 0.9;
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 0 40px rgba(220, 20, 60, 0.8)) drop-shadow(0 0 80px rgba(220, 20, 60, 0.6));
}

.btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    margin-top: 20px;
    font-size: 14px;
}

.section-gray .btn-secondary {
    background: transparent;
    color: #00CED1;
    border: 2px solid #00CED1;
    box-shadow: 0 0 15px rgba(0, 206, 209, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.section-gray .btn-secondary:hover {
    background: linear-gradient(90deg, #00CED1 0%, #008B8B 100%);
    color: white;
    border-color: #00CED1;
    box-shadow: 0 0 25px rgba(0, 206, 209, 0.6), 0 4px 15px rgba(0, 206, 209, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 206, 209, 0.3);
}

/* Awards Section */
.awards-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
}

.award-item {
    text-align: center;
    padding: 25px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 240, 0.9) 100%);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(220, 20, 60, 0.2);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.1), 0 0 20px rgba(220, 20, 60, 0.05);
    position: relative;
    overflow: hidden;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.award-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.award-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.25), 0 0 40px rgba(220, 20, 60, 0.15);
    border-color: rgba(220, 20, 60, 0.4);
}

.award-item:hover::before {
    opacity: 1;
}

.award-item .award-placeholder {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, rgba(0, 51, 102, 0.15) 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    border: 2px solid rgba(220, 20, 60, 0.3);
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.2);
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.award-item:hover .award-placeholder {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 25px rgba(220, 20, 60, 0.4);
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.3) 0%, rgba(0, 51, 102, 0.25) 100%);
}

.award-item p {
    font-size: 17px;
    color: #1a1a2e;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.award-item:hover p {
    color: var(--secondary);
}

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

.service-card {
    background: #1a1a2e;
    border-radius: 12px;
    padding: 25px 20px;
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    border: 2px solid #00CED1;
    min-height: 160px;
    z-index: 1;
    background-image: 
        linear-gradient(135deg, rgba(0, 206, 209, 0.05) 0%, transparent 100%);
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.service-card::after {
    content: '↗';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 22px;
    color: #00CED1;
    opacity: 1;
    transition: all 0.3s;
    font-weight: 300;
    text-shadow: 0 0 10px rgba(0, 206, 209, 0.8);
    z-index: 3;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #00CED1;
    box-shadow: 0 10px 35px rgba(0, 206, 209, 0.5);
    background-color: #1f1f3a;
    border-width: 2px;
}

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

.service-card:hover::after {
    opacity: 1;
    transform: translate(3px, -3px);
    color: var(--primary);
}

.service-card-icon {
    font-size: 56px;
    margin-bottom: 20px;
    color: #00CED1;
    display: block;
    transition: all 0.3s;
    line-height: 1;
    text-shadow: 0 0 15px rgba(0, 206, 209, 0.8);
    filter: brightness(1.2);
}

.service-card:hover .service-card-icon {
    transform: scale(1.15);
    text-shadow: 0 0 15px rgba(0, 206, 209, 0.8);
}

.service-card h3 {
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 2;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.service-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 12px;
    position: relative;
    z-index: 2;
    display: block;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Special styling for Intermodal card */
.service-card.intermodal {
    border-color: var(--accent);
}

.service-card.intermodal .service-card-icon {
    color: var(--secondary);
    text-shadow: 0 0 15px rgba(220, 20, 60, 0.8);
    filter: brightness(1.2);
}

.service-card.intermodal h3 {
    color: var(--secondary);
    text-shadow: 0 2px 8px rgba(220, 20, 60, 0.5);
}

.service-card.intermodal:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 35px rgba(220, 20, 60, 0.5);
}

.service-card.intermodal:hover .service-card-icon {
    text-shadow: 0 0 20px rgba(220, 20, 60, 1);
    transform: scale(1.15);
}

/* Industries Slider */
.industries-slider-container {
    position: relative;
    margin-top: 30px;
    padding: 0 40px;
}

.industries-slider-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.industries-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    width: fit-content;
}

.industry-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 16px;
    padding: 25px 20px;
    min-width: 160px;
    max-width: 160px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(220, 20, 60, 0.1);
    cursor: pointer;
    flex-shrink: 0;
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    text-decoration: none;
    color: inherit;
}

.industry-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(220, 20, 60, 0.6);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(220, 20, 60, 0.3);
}

.industry-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s;
}

.industry-card:hover .industry-icon {
    transform: scale(1.2) rotate(5deg);
}

.industry-card h3 {
    font-size: 16px;
    color: white !important;
    margin: 0;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.3px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(220, 20, 60, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 28px;
    color: var(--secondary);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(220, 20, 60, 0.9);
    color: white;
    border-color: rgba(220, 20, 60, 0.8);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dots[style*="display: none"] {
    display: none !important;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(220, 20, 60, 0.3);
    border: 2px solid rgba(220, 20, 60, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: rgba(220, 20, 60, 0.9);
    border-color: rgba(220, 20, 60, 1);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.6);
}

/* Carriers Section */
.carriers-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
    position: relative;
}

@media (max-width: 768px) {
    .carriers-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .carriers-icon {
        font-size: 120px;
        min-height: 150px;
    }
    
    .carriers-text {
        font-size: 18px;
    }
    
    .carriers-text p {
        font-size: 18px;
    }
}

.carriers-text {
    font-size: 20px;
    line-height: 1.8;
    color: #ffffff;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.carriers-text p {
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    font-size: 20px;
    line-height: 1.8;
}

.carriers-text p:last-of-type {
    margin-bottom: 30px;
}

.carriers-icon {
    font-size: 200px;
    text-align: center;
    opacity: 0.6;
    color: rgba(255, 140, 0, 0.8);
    filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.6)) drop-shadow(0 0 60px rgba(255, 140, 0, 0.4));
    position: relative;
    z-index: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 250px;
}

.carriers-content:hover .carriers-icon {
    opacity: 0.9;
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 40px rgba(255, 140, 0, 0.8)) drop-shadow(0 0 80px rgba(255, 140, 0, 0.6));
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 30px;
    justify-items: center;
}

.tech-card {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.9) 0%, rgba(0, 51, 102, 0.85) 100%);
    border-radius: 40px;
    padding: 18px 15px;
    box-shadow: 
        0 4px 20px rgba(220, 20, 60, 0.3),
        0 0 30px rgba(220, 20, 60, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(220, 20, 60, 0.5);
    position: relative;
    overflow: hidden;
    min-width: 120px;
    max-width: 140px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 1;
    transform: translateY(0);
    will-change: transform;
}

.tech-card.visible {
    animation: techCardEntrance 0.6s ease-out forwards;
}

@keyframes techCardEntrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.tech-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.tech-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.8), rgba(255, 69, 0, 0.6), rgba(255, 140, 0, 0.8));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.tech-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(255, 140, 0, 0.4),
        0 0 40px rgba(255, 140, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 215, 0, 0.8);
    background: linear-gradient(135deg, rgba(255, 215, 0, 1) 0%, rgba(255, 140, 0, 0.95) 100%);
}

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

.tech-card:hover::after {
    opacity: 0.8;
}

.tech-icon {
    font-size: 50px;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    transform-origin: center;
}

.tech-card:hover .tech-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9));
}

.tech-card h4 {
    font-size: 14px;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
    position: relative;
    z-index: 2;
    letter-spacing: 0.3px;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.tech-card:hover h4 {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 140, 0, 0.6);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #1a1a1a; /* Off-black matching header */
    color: white;
    padding: 50px 40px 25px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: all 0.3s;
    font-size: 13px;
}

.footer-section a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-section p {
    color: #ccc;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
    color: #999;
    font-size: 12px;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.news-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 20px rgba(220, 20, 60, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(220, 20, 60, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, rgba(0, 206, 209, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 0;
}

.news-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 40px rgba(255, 140, 0, 0.15);
    border-color: rgba(255, 140, 0, 0.3);
}

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

.news-card-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.9) 0%, rgba(0, 139, 139, 0.85) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.news-card:nth-child(1) .news-card-image {
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.9) 0%, rgba(0, 139, 139, 0.85) 100%);
}

.news-card:nth-child(2) .news-card-image {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.9) 0%, rgba(255, 69, 0, 0.85) 100%);
}

.news-card:nth-child(3) .news-card-image {
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.9) 0%, rgba(0, 139, 139, 0.85) 100%);
}

.news-icon {
    font-size: 80px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    transition: all 0.4s ease;
}

.news-card:hover .news-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
}

.news-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    opacity: 0.6;
    transition: opacity 0.4s;
}

.news-card:hover .news-image-overlay {
    opacity: 0.8;
}

.news-card-content {
    padding: 35px;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
}

.news-date {
    color: #999;
    font-size: 13px;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.news-card h3 {
    font-size: 22px;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.news-card p {
    color: #444;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 400;
}

.news-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    transition: all 0.3s;
    margin-top: 10px;
    position: relative;
}

.news-card a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.news-card a:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.news-card a:hover::after {
    width: 100%;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.12) 0%, rgba(0, 51, 102, 0.1) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.2) 0%, transparent 70%);
    animation: ctaGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(30px, 30px) scale(1.2);
        opacity: 0.5;
    }
}

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

.cta-section .section-title {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 140, 0, 0.5);
    font-weight: 700;
    font-size: 48px;
}

.cta-section .section-subtitle {
    color: #ffffff;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-icon {
    font-size: 100px;
    margin-bottom: 30px;
    opacity: 0.7;
    filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.6)) drop-shadow(0 0 40px rgba(255, 140, 0, 0.4));
    animation: iconFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

.cta-section .btn-primary {
    background: linear-gradient(90deg, #00CED1 0%, #008B8B 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 206, 209, 0.5), 0 0 30px rgba(0, 206, 209, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary:hover {
    background: linear-gradient(90deg, #008B8B 0%, #00CED1 100%);
    box-shadow: 0 6px 25px rgba(0, 206, 209, 0.7), 0 0 40px rgba(0, 206, 209, 0.5);
    transform: translateY(-5px) scale(1.05);
}

/* Utilities for Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-slider-container {
        padding: 0 40px;
    }
    
    .industry-card {
        min-width: 140px;
        max-width: 140px;
        height: 160px;
        padding: 20px 15px;
    }
    
    .industry-icon {
        font-size: 40px;
    }
    
    .industry-card h3 {
        font-size: 14px;
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

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

    .hero h2 {
        font-size: 18px;
    }

    .section {
        padding: 60px 30px;
    }
    
    .cta-section {
        padding: 60px 30px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-content,
    .carriers-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-gray .about-content .carriers-icon {
        font-size: 120px;
        min-height: 150px;
    }
    
    .about-text {
        font-size: 18px;
    }
    
    .about-text p {
        font-size: 18px;
    }

    .services-grid,
    .industries-slider-container {
        padding: 0 50px;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .prev-btn {
        left: 5px;
    }
    
    .next-btn {
        right: 5px;
    }
    
    .industry-card {
        min-width: 120px;
        max-width: 120px;
        height: 150px;
        padding: 15px 10px;
    }
    
    .industry-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .industry-card h3 {
        font-size: 13px;
    }
    
    .tech-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a2e;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    nav {
        padding: 0 30px;
    }
    
    .nav-menu {
        gap: 30px;
    }
    
    .container {
        padding: 40px 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navigation Mobile */
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav {
        padding: 0 20px;
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active,
    .nav-links.active {
        right: 0;
    }
    
    /* Overlay when menu is open */
    .nav-menu.active::before,
    .nav-links.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    /* nav-links mobile styles */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
        list-style: none;
    }
    
    .nav-links > li {
        width: 100%;
    }
    
    .nav-links a {
        font-size: 16px;
        padding: 12px 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu > li {
        width: 100%;
    }
    
    .nav-menu a {
        font-size: 16px;
        padding: 12px 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .dropdown-content {
        position: static;
        visibility: visible;
        opacity: 1;
        display: none;
        background: rgba(220, 20, 60, 0.05);
        box-shadow: none;
        margin-top: 10px;
        margin-left: 20px;
        border: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 10px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .logo img {
        height: 60px;
        max-width: 200px;
        min-width: 150px;
    }
    
    /* Hero Section */
    .hero {
        height: 60vh;
        min-height: 450px;
        margin-top: 80px;
    }

    .hero h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero h2 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .hero-tagline {
        font-size: 12px;
    }
    
    .btn-primary {
        padding: 10px 25px;
        font-size: 13px;
    }

    /* Sections */
    .section {
        padding: 40px 20px;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .container {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }

    /* Content Grids */
    .about-content,
    .carriers-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-gray .about-content .carriers-icon {
        font-size: 100px;
        min-height: 120px;
    }
    
    .about-text {
        font-size: 16px;
    }
    
    .about-text p {
        font-size: 16px;
        margin-bottom: 12px;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 20px 15px;
        min-height: 140px;
    }
    
    .service-card-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .service-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .service-card p {
        font-size: 14px;
    }

    /* Industries Slider */
    .industries-slider-container {
        padding: 0 20px;
        margin: 30px 0;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .prev-btn {
        left: 0;
    }
    
    .next-btn {
        right: 0;
    }
    
    .industry-card {
        min-width: 140px;
        max-width: 140px;
        height: 160px;
        padding: 15px 10px;
    }
    
    .industry-icon {
        font-size: 32px;
        margin-bottom: 8px;
    }
    
    .industry-card h3 {
        font-size: 14px;
        padding: 5px 10px;
    }

    /* Awards Grid */
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .award-item {
        padding: 20px 15px;
    }
    
    .award-placeholder {
        width: 60px;
        height: 60px;
        font-size: 11px;
    }
    
    .award-item p {
        font-size: 15px;
    }

    /* Tech Grid */
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tech-card {
        padding: 25px 20px;
    }
    
    .tech-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .tech-card h4 {
        font-size: 18px;
    }

    /* News Grid */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .news-card {
        margin-bottom: 20px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 20px;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 13px;
    }

    /* Buttons */
    .btn-secondary {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    /* Carriers */
    .carriers-icon {
        font-size: 100px;
        min-height: 120px;
    }
    
    .carriers-text {
        font-size: 16px;
    }
    
    .carriers-text p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0 15px;
    }
    
    .logo img {
        height: 50px;
        max-width: 180px;
        min-width: 120px;
    }
    
    .hero {
        height: 50vh;
        min-height: 350px;
        margin-top: 70px;
        padding: 20px 15px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero h2 {
        font-size: 14px;
    }
    
    .hero-tagline {
        font-size: 11px;
    }
    
    .section {
        padding: 30px 15px;
    }
    
    .container {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .services-grid {
        gap: 12px;
        padding: 0 5px;
    }
    
    .service-card {
        padding: 15px 12px;
        min-height: 120px;
    }
    
    .service-card-icon {
        font-size: 28px;
    }
    
    .service-card h3 {
        font-size: 16px;
    }
    
    .service-card p {
        font-size: 13px;
    }
    
    .industry-card {
        min-width: 120px;
        max-width: 120px;
        height: 140px;
        padding: 12px 8px;
    }
    
    .industry-icon {
        font-size: 28px;
    }
    
    .industry-card h3 {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .nav-menu {
        width: 85%;
        padding: 80px 20px 20px;
    }
    
    .footer-content {
        padding: 30px 15px;
    }
    
    .footer-section h3 {
        font-size: 16px;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 13px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    /* Contact Page Specific */
    .contact-info-hero p {
        font-size: 14px;
    }
    
    .form-container {
        padding: 25px 15px;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-card {
        padding: 20px 15px;
    }
    
    .contact-icon {
        font-size: 32px;
    }
}

/* Additional Responsive Utilities */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-menu {
        gap: 25px;
    }
    
    .nav-menu a {
        font-size: 13px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 400px;
        height: 70vh;
    }
    
    .nav-menu {
        padding: 80px 30px 30px;
    }
}

/* Print Styles */
@media print {
    header,
    footer,
    .btn-primary,
    .btn-secondary,
    .mobile-menu-toggle {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
}