/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Scrolling Banner */
.scrolling-banner {
    width: 100%;
    height: 36px;
    background-color: #701028; /* Dark red color from the design */
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.banner-content {
    display: inline-flex;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

.banner-content span {
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-right: 60px; /* Space between repeated text */
    display: inline-block;
    line-height: 36px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Header Navbar */
.header {
    width: 100%;
    height: 65px;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #CCCCCC;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1272px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo {
    width: 72px;
    height: 72px;
    background-color: #f0f0f000;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -1px;
}

.logo-placeholder {
    font-size: 32px;
}

.company-name {
    font-size: 12px;
    font-weight: 600;
    color: #1A1A1A;
    white-space: nowrap;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #4D4D4D;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 9px 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1A1A1A;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    border-radius: 6px;
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    gap: 4px;
}

.menu-toggle:hover {
    background-color: #f5f5f5;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background-color: #1A1A1A;
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* Hamburger Animation */
.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.order-now-btn {
    background-color: #701028;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.order-now-btn:hover {
    background-color: #5a0d20;
    transform: translateY(-1px);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.15),
        0 3px 6px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
    width: 100%;
    height: 100vh; /* Full viewport height */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-headline {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.highlight-text {
    color: #701028;
}

.hero-subheading {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.9;
}

.hero-cta-button {
    background-color: #701028;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 6px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hero-cta-button:hover {
    background-color: #5a0d20;
    transform: translateY(-2px);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.25),
        0 8px 16px rgba(0, 0, 0, 0.2);
}

.hero-review {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.stars {
    display: flex;
    gap: 2px;
    align-items: center;
}

.star-emoji {
    font-size: 20px;
    line-height: 1;
    display: block;
    flex-shrink: 0;
}

.review-text {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    opacity: 0.9;
    line-height: 1;
    display: flex;
    align-items: center;
}

/* By The Numbers Section */
.numbers-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.numbers-header {
    text-align: center;
    margin-bottom: 40px;
}

.numbers-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #701028;
    margin-bottom: 16px;
    line-height: 1.2;
}

.numbers-subtitle {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #4D4D4D;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

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

.stat-card {
    background-color: #FAFAFA;
    border: 1px solid #CCCCCC;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 10px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 8px 12px rgba(0, 0, 0, 0.15),
        0 20px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 56px;
    height: 56px;
    background-color: #D9D9D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: background-color 0.3s ease;
}

.stat-card:hover .stat-icon {
    background-color: #701028;
}

.stat-emoji {
    font-size: 24px;
    line-height: 1;
    transition: filter 0.3s ease;
}

.stat-card:hover .stat-emoji {
    filter: brightness(0) invert(1);
}

.stat-number {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
    line-height: 1.2;
}

.stat-label {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4D4D4D;
    line-height: 1.4;
}

/* Our Network Section */
.network-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.network-header {
    text-align: center;
    margin-bottom: 40px;
}

.network-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #701028;
    margin-bottom: 16px;
    line-height: 1.2;
}

.network-subtitle {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #4D4D4D;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.location-card {
    background-color: #FAFAFA;
    border: 1px solid #CCCCCC;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 10px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 8px 12px rgba(0, 0, 0, 0.15),
        0 20px 30px rgba(0, 0, 0, 0.15);
}

.location-icon {
    width: 56px;
    height: 56px;
    background-color: #D9D9D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: background-color 0.3s ease;
}

.location-card:hover .location-icon {
    background-color: #701028;
}

.location-emoji {
    font-size: 24px;
    line-height: 1;
    transition: filter 0.3s ease;
}

.location-card:hover .location-emoji {
    filter: brightness(0) invert(1);
}

.location-name {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.location-details {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #4D4D4D;
    margin: 0;
    line-height: 1.4;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #701028;
    margin-bottom: 16px;
}

.services-subtitle {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #4D4D4D;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

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

.service-card {
    background-color: #FAFAFA;
    border: 1px solid #CCCCCC;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.12),
        0 6px 12px rgba(0, 0, 0, 0.12);
}

.service-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.service-description {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #4D4D4D;
    margin-bottom: 16px;
    line-height: 1.4;
}

.service-price {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item svg {
    flex-shrink: 0;
}

.feature-item span {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #1A1A1A;
}

.service-button {
    width: 100%;
    background-color: #ffffff;
    color: #701028;
    border: 1px solid #701028;
    border-radius: 6px;
    padding: 9px 16px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-button:hover {
    background-color: #701028;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Vehicle Showcase Section */
.vehicle-showcase {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.showcase-header {
    text-align: center;
    margin-bottom: 40px;
}

.showcase-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #701028;
    margin-bottom: 16px;
}

.showcase-subtitle {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #4D4D4D;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.5;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: #ffffff;
    color: #1A1A1A;
    border: 1px solid #CCCCCC;
    border-radius: 9999px;
    padding: 8px 16px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.filter-btn.active {
    background-color: #701028;
    color: #ffffff;
    border-color: #701028;
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover:not(.active) {
    background-color: #f5f5f5;
    border-color: #999999;
}

.vehicle-gallery {
    margin-top: 40px;
}

.gallery-card {
    background-color: #FAFAFA;
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.gallery-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.icon-container {
    width: 48px;
    height: 48px;
    background-color: #D9D9D9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gallery-emoji {
    font-size: 20px;
    line-height: 1;
}

.gallery-info h3 {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 4px 0;
}

.gallery-count {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #4D4D4D;
    margin: 0;
}

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

.vehicle-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.vehicle-item:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.15),
        0 6px 12px rgba(0, 0, 0, 0.15);
}

.vehicle-image {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.vehicle-image.bmw-x5 {
    background-image: url('assests/kevin-carter-vU5_sB3jqRA-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.vehicle-image.mercedes-s-class {
    background-image: url('assests/mercedes-s-class.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.vehicle-image.audi-a8 {
    background-image: url('assests/audi-a8.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.vehicle-image.lexus-ls {
    background-image: url('assests/2024-lexus-ls-jdm.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* SUVs & Trucks */
.vehicle-image.ford-f150 {
    background-image: url('assests/sergio-rota-5saApcjtoaI-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.vehicle-image.chevy-silverado {
    background-image: url('assests/chevrolet-tahoe.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.vehicle-image.toyota-tacoma {
    background-image: url('assests/toyota-4runner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.vehicle-image.ram-1500 {
    background-image: url('assests/jeep-wrangler.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Electric Vehicles */
.vehicle-image.tesla-model-s {
    background-image: url('assests/daniel-shapiro-G9MNjujk8Tg-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.vehicle-image.tesla-model-3 {
    background-image: url('assests/tesla-model-3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.vehicle-image.bmw-i3 {
    background-image: url('assests/toyota-prius.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.vehicle-image.nissan-leaf {
    background-image: url('assests/nissan-leaf.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.vehicle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    padding: 12px;
    display: flex;
    align-items: flex-end;
}

.vehicle-name {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1A1A1A;
    margin: 0;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.why-choose-container {
    max-width: 1272px;
    margin: 0 auto;
    padding: 0 24px;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #701028;
    margin-bottom: 16px;
}

.why-choose-subtitle {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #4D4D4D;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

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

.feature-card {
    background-color: #FAFAFA;
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.1),
        0 6px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background-color: #D9D9D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.feature-emoji {
    font-size: 24px;
    line-height: 1;
}

.feature-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.feature-description {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #4D4D4D;
    line-height: 1.4;
    margin: 0;
}

.why-choose-cta {
    text-align: center;
}

.why-choose-button {
    background-color: #701028;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 9px 32px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.why-choose-button:hover {
    background-color: #5a0d20;
    transform: translateY(-1px);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.15),
        0 3px 6px rgba(0, 0, 0, 0.15);
}

/* Recent Shipments Section */
.recent-shipments-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.shipments-header {
    text-align: center;
    margin-bottom: 40px;
}

.shipments-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #701028;
    margin-bottom: 16px;
}

.shipments-subtitle {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #4D4D4D;
    margin: 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: #ffffff;
    color: #701028;
    border: 1px solid #701028;
    border-radius: 9999px;
    padding: 8px 16px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.filter-btn.active {
    background-color: #701028;
    color: #ffffff;
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover:not(.active) {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.shipments-table-container {
    background-color: #FAFAFA;
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.shipments-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', Arial, sans-serif;
}

.shipments-table thead {
    background-color: rgba(112, 16, 40, 0.4);
}

.shipments-table th {
    padding: 12px 24px;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 600;
    color: #701028;
    border: none;
}

.shipments-table tbody tr {
    border-bottom: 1px solid #CCCCCC;
    transition: background-color 0.2s ease;
}

.shipments-table tbody tr:last-child {
    border-bottom: none;
}

.shipments-table tbody tr:hover {
    background-color: #f8f9fa;
}

.shipments-table td {
    padding: 16px 24px;
    vertical-align: middle;
    border: none;
}

.vehicle-cell {
    width: 40%;
}

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

.vehicle-icon {
    width: 32px;
    height: 32px;
    background-color: #D9D9D9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vehicle-emoji {
    font-size: 16px;
    line-height: 1;
}

/* Vehicle name in Recent Shipments section - Black text */
.shipments-table .vehicle-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1A1A1A;
}

/* Vehicle name in Vehicle Showcase section - White text */
.vehicle-showcase .vehicle-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.route-cell {
    width: 30%;
}

.route-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.route-emoji {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.route-text {
    font-size: 0.875rem;
    font-weight: 400;
    color: #4D4D4D;
}

.price-cell {
    width: 30%;
    text-align: right;
}

.price-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.price-emoji {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.price-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1A1A1A;
}

/* Transport Options Section */
.transport-options-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.transport-header {
    text-align: center;
    margin-bottom: 40px;
}

.transport-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #701028;
    margin-bottom: 16px;
}

.transport-subtitle {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #4D4D4D;
    margin: 0;
}

.transport-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.transport-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
    border: none;
}

.transport-btn.active {
    background-color: #701028;
    color: #ffffff;
}

.transport-btn:not(.active) {
    background-color: #ffffff;
    color: #701028;
    border: 1px solid #701028;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.transport-btn:hover:not(.active) {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.transport-btn-emoji {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.transport-content {
    background-color: #FAFAFA;
    border: 1px solid #CCCCCC;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
}

.transport-card {
    display: none !important;
    min-height: 520px;
}

.transport-card.active {
    display: flex !important;
}

.transport-card-emoji {
    font-size: 24px;
    line-height: 1;
}

.feature-check-emoji {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.card-content {
    flex: 0 0 50%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.transport-icon {
    width: 48px;
    height: 48px;
    background-color: #D9D9D9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transport-icon svg {
    width: 24px;
    height: 24px;
}

.transport-info h3 {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 8px 0;
}

.transport-price {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #701028;
    margin: 0;
}

.transport-description {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #4D4D4D;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.features-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 16px 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.feature-item span {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #4D4D4D;
}

.card-footer {
    border-top: 1px solid #CCCCCC;
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.best-for {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #4D4D4D;
    margin: 0;
}

.transport-cta {
    background-color: #701028;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 9px 16px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    align-self: flex-start;
    text-align: left;
    margin-right: auto;
}

.transport-cta:hover {
    background-color: #5a0d20;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.15);
}

.transport-card .card-image {
    flex: 0 0 50%;
    background-color: #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    width: 100%;
}

.transport-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    min-height: 200px;
}

.image-placeholder {
    text-align: center;
    color: #4D4D4D;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

/* Customer Experiences Section */
.customer-experiences-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.experiences-container {
    max-width: 1272px;
    margin: 0 auto;
    padding: 0 32px;
}

.experiences-header {
    text-align: center;
    margin-bottom: 64px;
}

.experiences-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #701028;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.experiences-subtitle {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #4D4D4D;
    margin: 0;
    line-height: 1.4;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.testimonial-card {
    background-color: #FAFAFA;
    border: 1px solid #CCCCCC;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 34px;
}

.stars svg {
    width: 16px;
    height: 16px;
}

.testimonial-text {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #4D4D4D;
    line-height: 1.5;
    margin: 0 0 34px 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid #CCCCCC;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background-color: #D9D9D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-text {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #701028;
    text-align: center;
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.author-details {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #4D4D4D;
    margin: 0;
    line-height: 1.3;
}

.read-more-link {
    text-align: center;
}

.read-more-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #701028;
    text-decoration: none;
    transition: color 0.2s ease;
}

.read-more-link a:hover {
    color: #5a0d20;
}

.arrow-emoji {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

/* ========================================
   Footer Section
   ======================================== */

.footer-section {
    background-color: #ffffff;
    border-top: 1px solid #E6E8EB;
    padding: 80px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

/* Company Info Section */
.footer-company {
    grid-column: span 2;
}

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

.logo-image {
    width: 75px;
    height: 75px;
    border-radius: 6px;
    overflow: hidden;
    background: transparent;
    mix-blend-mode: multiply;
}

.logo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: transparent;
    mix-blend-mode: multiply;
    filter: contrast(1.2) brightness(1.1);
}

.company-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.2;
}

.company-description {
    font-size: 1rem;
    color: #4B5563;
    margin-bottom: 24px;
    line-height: 1.5;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #4B5563;
}

.contact-icon {
    font-size: 16px;
    flex-shrink: 0;
    line-height: 1;
}

/* Footer Section Columns */
.footer-section-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link {
    font-size: 1rem;
    color: #4B5563;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.footer-link:hover {
    color: #701028;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #E6E8EB;
    padding: 32px 0;
    background-color: #ffffff;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 1rem;
    color: #6B7280;
    margin: 0;
}

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

.social-link {
    width: 36px;
    height: 36px;
    background-color: #D9D9D9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #701028;
}

.social-icon {
    font-size: 16px;
    line-height: 1;
}

.social-link:hover .social-icon {
    filter: brightness(0) invert(1);
}

/* Call-to-Action Section */
.cta-section {
    background-color: #701028;
    padding: 80px 0;
}

.cta-container {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.cta-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.cta-subtitle {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 44px 0;
    line-height: 1.4;
}

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

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    height: 36px;
}

.cta-button.primary {
    background-color: #ffffff;
    color: #701028;
}

.cta-button.primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary {
    background-color: #ffffff;
    color: #701028;
    border: 1px solid #ffffff;
}

.cta-button.secondary:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.15);
}

.cta-emoji {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.button-text {
    white-space: nowrap;
}

/* About Section */
.about-section {
    width: 100%;
    height: 336px;
    background-color: #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
}

.about-container {
    max-width: 1272px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.about-content {
    text-align: center;
    max-width: 693px;
    margin: 0 auto;
}

.about-heading {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 3.3rem;
    font-weight: 740;
    color: #1A1A1A;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.about-subtitle {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #4D4D4D;
    margin: 0;
    line-height: 1.4;
}

/* Company History Section */
.company-history-section {
    width: 100%;
    height: 560px;
    background-color: #ffffff;
    padding: 80px 0;
}

.company-history-container {
    max-width: 1272px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.company-history-content {
    display: flex;
    align-items: center;
    gap: 48px;
    height: 100%;
}

.company-history-text {
    flex: 1;
    max-width: 552px;
}

.company-history-heading {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #701028;
    margin: 0 0 26px 0;
    line-height: 1.2;
}

.company-history-description {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #4D4D4D;
    margin: 0 0 21px 0;
    line-height: 1.4;
}

.company-history-description:last-child {
    margin-bottom: 0;
}

.company-history-image {
    flex: 1;
    max-width: 580px;
    height: 400px;
}

.image-overlay {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 10px 15px rgba(0, 0, 0, 0.1);
}

.image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Mission and Values Section */
.mission-values-section {
    width: 100%;
    height: 704px;
    background-color: rgba(217, 217, 217, 0.5);
    padding: 80px 0;
}

.mission-values-container {
    max-width: 1272px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.mission-values-content {
    display: flex;
    gap: 48px;
    height: 100%;
}

.mission-card,
.values-card {
    flex: 1;
    max-width: 580px;
    height: 544px;
    background-color: #FAFAFA;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 10px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mission-card .card-image,
.values-card .card-image {
    width: 100%;
    height: 256px;
    overflow: hidden;
}

.mission-card .card-image img,
.values-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-content {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-heading {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #701028;
    margin: 0 0 26px 0;
    line-height: 1.2;
}

.card-description {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #4D4D4D;
    margin: 0 0 32px 0;
    line-height: 1.4;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: #D9D9D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-text {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #4D4D4D;
    line-height: 1.5;
    text-align: left;
}

/* Main content area */
main {
    min-height: 50vh;
    padding: 2rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .scrolling-banner {
        height: 32px;
    }
    
    .banner-content span {
        font-size: 12px;
        margin-right: 40px;
        line-height: 32px;
    }
    
    .header {
        height: 60px;
    }
    
    .header-container {
        padding: 0 16px;
    }
    
    .menu-toggle {
        display: flex; /* Show hamburger button on mobile */
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        text-align: center;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .company-name {
        font-size: 10px;
    }
    
    .logo {
        width: 60px;
        height: 60px;
    }
    
    .logo-placeholder {
        font-size: 28px;
    }
    
    .hero {
        height: calc(100vh - 32px - 60px); /* Adjust for banner and header height */
    }
    
    .hero-video {
        object-fit: cover;
        object-position: center;
    }
    
    .hero-content {
        padding: 0 16px;
        max-width: 90%;
    }
    
    .hero-headline {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.1;
    }
    
    .hero-subheading {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-cta-button {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-review {
        margin-top: 1rem;
        flex-direction: column;
        gap: 6px;
    }
    
    /* About Section - Tablet */
    .about-section {
        height: 280px;
        margin-top: 60px;
    }
    
    .about-container {
        padding: 0 20px;
    }
    
    .about-heading {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .about-subtitle {
        font-size: 1.125rem;
    }
    
    /* Company History Section - Tablet */
    .company-history-section {
        height: auto;
        padding: 60px 0;
    }
    
    .company-history-container {
        padding: 0 20px;
    }
    
    .company-history-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .company-history-text {
        max-width: 100%;
    }
    
    .company-history-heading {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .company-history-description {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .company-history-image {
        max-width: 100%;
        height: 300px;
    }
    
    /* Mission and Values Section - Tablet */
    .mission-values-section {
        height: auto;
        padding: 60px 0;
    }
    
    .mission-values-container {
        padding: 0 20px;
    }
    
    .mission-values-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .mission-card,
    .values-card {
        max-width: 100%;
        height: auto;
    }
    
    .card-content {
        padding: 24px;
    }
    
    .card-heading {
        font-size: 1.375rem;
        margin-bottom: 20px;
    }
    
    .card-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .feature-list {
        gap: 12px;
    }
    
    .feature-item {
        gap: 12px;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
    }
    
    .feature-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
    
    .star-emoji {
        font-size: 18px;
    }
    
    .review-text {
        font-size: 0.8rem;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .services-container {
        padding: 0 16px;
    }
    
    .services-header {
        margin-bottom: 40px;
    }
    
    .services-title {
        font-size: 1.875rem;
        margin-bottom: 12px;
    }
    
    .services-subtitle {
        font-size: 0.9rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .service-price {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }
    
    .vehicle-showcase {
        padding: 60px 0;
    }
    
    .showcase-container {
        padding: 0 16px;
    }
    
    .showcase-header {
        margin-bottom: 32px;
    }
    
    .showcase-title {
        font-size: 1.875rem;
        margin-bottom: 12px;
    }
    
    .showcase-subtitle {
        font-size: 0.9rem;
    }
    
    .filter-buttons {
        gap: 12px;
        margin-bottom: 32px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .gallery-card {
        padding: 20px;
    }
    
    .gallery-header {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .icon-container {
        width: 40px;
        height: 40px;
    }
    
    .gallery-emoji {
        font-size: 18px;
    }
    
    .gallery-info h3 {
        font-size: 1.5rem;
    }
    
    .gallery-count {
        font-size: 0.9rem;
    }
    
    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .vehicle-image {
        height: 140px;
    }
    
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-container {
        padding: 0 16px;
    }
    
    .why-choose-header {
        margin-bottom: 40px;
    }
    
    .why-choose-title {
        font-size: 1.875rem;
        margin-bottom: 12px;
    }
    
    .why-choose-subtitle {
        font-size: 0.9rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 32px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }
    
    .feature-emoji {
        font-size: 20px;
    }
    
    .feature-title {
        font-size: 1.125rem;
        margin-bottom: 6px;
    }
    
    .feature-description {
        font-size: 0.8rem;
    }
    
    .recent-shipments-section {
        padding: 60px 0;
    }
    
    .shipments-container {
        padding: 0 16px;
    }
    
    .shipments-header {
        margin-bottom: 32px;
    }
    
    .shipments-title {
        font-size: 1.875rem;
        margin-bottom: 12px;
    }
    
    .shipments-subtitle {
        font-size: 0.9rem;
    }
    
    .filter-buttons {
        gap: 8px;
        margin-bottom: 32px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .shipments-table th {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .shipments-table td {
        padding: 12px 16px;
    }
    
    .vehicle-info {
        gap: 8px;
    }
    
    .vehicle-icon {
        width: 28px;
        height: 28px;
    }
    
    .vehicle-emoji {
        font-size: 14px;
    }
    
    .vehicle-name {
        font-size: 0.9rem;
    }
    
    .route-info {
        gap: 6px;
    }
    
    .route-emoji {
        font-size: 14px;
    }
    
    .route-text {
        font-size: 0.8rem;
    }
    
    .price-info {
        gap: 6px;
    }
    
    .price-emoji {
        font-size: 14px;
    }
    
    .price-text {
        font-size: 0.8rem;
    }
    
    .transport-options-section {
        padding: 60px 0;
    }
    
    .transport-container {
        padding: 0 16px;
    }
    
    .transport-header {
        margin-bottom: 32px;
    }
    
    .transport-title {
        font-size: 1.875rem;
        margin-bottom: 12px;
    }
    
    .transport-subtitle {
        font-size: 0.9rem;
    }
    
    .transport-buttons {
        gap: 8px;
        margin-bottom: 32px;
    }
    
    .transport-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .transport-btn-emoji {
        font-size: 14px;
    }
    
    .transport-card-emoji {
        font-size: 20px;
    }
    
    .feature-check-emoji {
        font-size: 14px;
    }
    
    .transport-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .card-content {
        padding: 24px;
    }
    
    .card-header {
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .transport-icon {
        width: 40px;
        height: 40px;
    }
    
    .transport-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .transport-info h3 {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
    
    .transport-price {
        font-size: 1.25rem;
    }
    
    .transport-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .features-title {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .feature-item {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .feature-item svg {
        width: 18px;
        height: 18px;
    }
    
    .feature-item span {
        font-size: 0.8rem;
    }
    
    .card-footer {
        padding-top: 16px;
        gap: 12px;
    }
    
    .best-for {
        font-size: 0.8rem;
    }
    
    .transport-cta {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .transport-card .card-image {
        height: 200px;
        flex: none;
    }
    
    .transport-image {
        border-radius: 0;
    }
    
    /* Customer Experiences Section - Tablet */
    .customer-experiences-section {
        padding: 60px 0;
    }
    
    .experiences-container {
        padding: 0 24px;
    }
    
    .experiences-header {
        margin-bottom: 48px;
    }
    
    .experiences-title {
        font-size: 2rem;
    }
    
    .experiences-subtitle {
        font-size: 1.25rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .stars {
        margin-bottom: 24px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }
    
    .author-avatar {
        width: 36px;
        height: 36px;
    }
    
    .avatar-text {
        font-size: 0.8rem;
    }
    
    .author-name {
        font-size: 0.9rem;
    }
    
    .author-details {
        font-size: 0.8rem;
    }
    
    .read-more-link a {
        font-size: 0.9rem;
    }
    
    /* Footer Section - Tablet */
    .footer-container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
        padding: 0 20px;
    }

    .footer-company {
        grid-column: span 3;
        margin-bottom: 24px;
    }

    .company-logo {
        gap: 10px;
        margin-bottom: 12px;
    }

    .logo-image {
        width: 60px;
        height: 60px;
    }

    .company-name {
        font-size: 1rem;
    }

    .company-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .contact-info {
        gap: 12px;
    }

    .contact-item {
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .contact-icon {
        font-size: 14px;
    }

    .footer-title {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .footer-bottom-content {
        padding: 0 20px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .social-links {
        gap: 8px;
    }

    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .social-icon {
        font-size: 14px;
    }

    .social-link svg {
        width: 14px;
        height: 14px;
    }

    /* Call-to-Action Section - Tablet */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-container {
        padding: 0 20px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.25rem;
        margin-bottom: 36px;
    }
    
    .cta-buttons {
        gap: 12px;
    }
    
    .cta-button {
        padding: 8px 14px;
        font-size: 0.9rem;
        min-width: 120px;
        height: 32px;
    }
    
    main {
        padding: 1rem;
    }
    
    /* By The Numbers Section - Tablet */
    .numbers-section {
        padding: 40px 0;
    }
    
    .numbers-container {
        padding: 0 24px;
    }
    
    .numbers-header {
        margin-bottom: 32px;
    }
    
    .numbers-title {
        font-size: 2rem;
    }
    
    .numbers-subtitle {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 20px 16px;
    }
    
    .stat-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }
    
    .stat-emoji {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Our Network Section - Tablet */
    .network-section {
        padding: 40px 0;
    }
    
    .network-container {
        padding: 0 24px;
    }
    
    .network-header {
        margin-bottom: 32px;
    }
    
    .network-title {
        font-size: 2rem;
    }
    
    .network-subtitle {
        font-size: 1rem;
    }
    
    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
    
    .location-card {
        padding: 20px 16px;
    }
    
    .location-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }
    
    .location-emoji {
        font-size: 20px;
    }
    
    .location-name {
        font-size: 1.125rem;
    }
    
    .location-details {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .banner-content span {
        font-size: 11px;
        margin-right: 30px;
    }
    
    .header-container {
        padding: 0 12px;
    }
    
    .company-name {
        font-size: 9px;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .logo-placeholder {
        font-size: 24px;
    }
    
    .order-now-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .hero-content {
        padding: 0 12px;
        max-width: 95%;
    }
    
    .hero-headline {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.1;
    }
    
    .hero-subheading {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.3;
    }
    
    .hero-cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 260px;
    }
    
    .hero-review {
        margin-top: 0.8rem;
        flex-direction: column;
        gap: 4px;
    }
    
    .star-emoji {
        font-size: 16px;
    }
    
    .review-text {
        font-size: 0.75rem;
    }
    
    /* About Section - Mobile */
    .about-section {
        height: 240px;
        margin-top: 50px;
    }
    
    .about-container {
        padding: 0 16px;
    }
    
    .about-heading {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    /* Company History Section - Mobile */
    .company-history-section {
        height: auto;
        padding: 40px 0;
    }
    
    .company-history-container {
        padding: 0 16px;
    }
    
    .company-history-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .company-history-text {
        max-width: 100%;
    }
    
    .company-history-heading {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }
    
    .company-history-description {
        font-size: 0.9rem;
        margin-bottom: 14px;
    }
    
    .company-history-image {
        max-width: 100%;
        height: 250px;
    }
    
    /* Mission and Values Section - Mobile */
    .mission-values-section {
        height: auto;
        padding: 40px 0;
    }
    
    .mission-values-container {
        padding: 0 16px;
    }
    
    .mission-values-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .mission-card,
    .values-card {
        max-width: 100%;
        height: auto;
    }
    
    .transport-card .card-image {
        height: 200px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-heading {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }
    
    .card-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .feature-list {
        gap: 10px;
    }
    
    .feature-item {
        gap: 10px;
    }
    
    .feature-icon {
        width: 32px;
        height: 32px;
    }
    
    .feature-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .feature-text {
        font-size: 0.85rem;
    }
    
    .services-section {
        padding: 40px 0;
    }
    
    .services-container {
        padding: 0 12px;
    }
    
    .services-header {
        margin-bottom: 32px;
    }
    
    .services-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .services-subtitle {
        font-size: 0.85rem;
    }
    
    .services-grid {
        gap: 20px;
    }
    
    .service-card {
        padding: 16px;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .service-description {
        font-size: 0.8rem;
    }
    
    .service-price {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    
    .feature-item span {
        font-size: 0.8rem;
    }
    
    .service-button {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .vehicle-showcase {
        padding: 40px 0;
    }
    
    .showcase-container {
        padding: 0 12px;
    }
    
    .showcase-header {
        margin-bottom: 24px;
    }
    
    .showcase-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .showcase-subtitle {
        font-size: 0.85rem;
    }
    
    .filter-buttons {
        gap: 8px;
        margin-bottom: 24px;
    }
    
    .filter-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .gallery-card {
        padding: 16px;
    }
    
    .gallery-header {
        gap: 10px;
        margin-bottom: 16px;
    }
    
    .icon-container {
        width: 36px;
        height: 36px;
    }
    
    .gallery-emoji {
        font-size: 16px;
    }
    
    .gallery-info h3 {
        font-size: 1.25rem;
    }
    
    .gallery-count {
        font-size: 0.8rem;
    }
    
    .vehicle-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .vehicle-image {
        height: 120px;
    }
    
    .why-choose-section {
        padding: 40px 0;
    }
    
    .why-choose-container {
        padding: 0 12px;
    }
    
    .why-choose-header {
        margin-bottom: 32px;
    }
    
    .why-choose-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .why-choose-subtitle {
        font-size: 0.85rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .feature-card {
        padding: 16px;
    }
    
    .feature-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 10px;
    }
    
    .feature-emoji {
        font-size: 18px;
    }
    
    .feature-title {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .feature-description {
        font-size: 0.75rem;
    }
    
    .recent-shipments-section {
        padding: 40px 0;
    }
    
    .shipments-container {
        padding: 0 12px;
    }
    
    .shipments-header {
        margin-bottom: 24px;
    }
    
    .shipments-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .shipments-subtitle {
        font-size: 0.85rem;
    }
    
    .filter-buttons {
        gap: 6px;
        margin-bottom: 24px;
    }
    
    .filter-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .shipments-table-container {
        overflow-x: auto;
    }
    
    .shipments-table {
        min-width: 600px;
    }
    
    .shipments-table th {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .shipments-table td {
        padding: 10px 12px;
    }
    
    .vehicle-info {
        gap: 6px;
    }
    
    .vehicle-icon {
        width: 24px;
        height: 24px;
    }
    
    .vehicle-emoji {
        font-size: 12px;
    }
    
    .vehicle-name {
        font-size: 0.8rem;
    }
    
    .route-info {
        gap: 4px;
    }
    
    .route-emoji {
        font-size: 12px;
    }
    
    .route-text {
        font-size: 0.75rem;
    }
    
    .price-info {
        gap: 4px;
    }
    
    .price-emoji {
        font-size: 12px;
    }
    
    .price-text {
        font-size: 0.75rem;
    }
    
    .transport-options-section {
        padding: 40px 0;
    }
    
    .transport-container {
        padding: 0 12px;
    }
    
    .transport-header {
        margin-bottom: 24px;
    }
    
    .transport-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .transport-subtitle {
        font-size: 0.85rem;
    }
    
    .transport-buttons {
        gap: 6px;
        margin-bottom: 24px;
        flex-direction: column;
        align-items: center;
    }
    
    .transport-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
        width: 100%;
        max-width: 280px;
    }
    
    .transport-btn-emoji {
        font-size: 12px;
    }
    
    .transport-card-emoji {
        font-size: 18px;
    }
    
    .feature-check-emoji {
        font-size: 12px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-header {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .transport-icon {
        width: 36px;
        height: 36px;
    }
    
    .transport-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .transport-info h3 {
        font-size: 1.25rem;
        margin-bottom: 4px;
    }
    
    .transport-price {
        font-size: 1.125rem;
    }
    
    .transport-description {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }
    
    .features-title {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .feature-item {
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .feature-item svg {
        width: 16px;
        height: 16px;
    }
    
    .feature-item span {
        font-size: 0.75rem;
    }
    
    .card-footer {
        padding-top: 14px;
        gap: 10px;
    }
    
    .best-for {
        font-size: 0.75rem;
    }
    
    .transport-cta {
        padding: 7px 12px;
        font-size: 0.75rem;
        width: 100%;
    }
    
    .transport-card .card-image {
        height: 150px;
    }
    
    .transport-image {
        border-radius: 0;
    }
    
    /* Customer Experiences Section - Mobile */
    .customer-experiences-section {
        padding: 40px 0;
    }
    
    .experiences-container {
        padding: 0 16px;
    }
    
    .experiences-header {
        margin-bottom: 32px;
    }
    
    .experiences-title {
        font-size: 1.75rem;
    }
    
    .experiences-subtitle {
        font-size: 1.125rem;
    }
    
    .testimonials-grid {
        gap: 20px;
        margin-bottom: 32px;
    }
    
    .testimonial-card {
        padding: 16px;
    }
    
    .stars {
        margin-bottom: 20px;
        gap: 2px;
    }
    
    .star-emoji {
        font-size: 14px;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .testimonial-author {
        gap: 12px;
        padding-top: 16px;
    }
    
    .author-avatar {
        width: 32px;
        height: 32px;
    }
    
    .avatar-text {
        font-size: 0.75rem;
    }
    
    .author-name {
        font-size: 0.85rem;
    }
    
    .author-details {
        font-size: 0.75rem;
    }
    
    .read-more-link a {
        font-size: 0.85rem;
    }
    
    .arrow-emoji {
        font-size: 14px;
    }
    
    /* Footer Section - Mobile */
    .footer-section {
        padding: 60px 0 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
        margin-bottom: 32px;
    }

    .footer-company {
        grid-column: span 1;
        margin-bottom: 0;
        text-align: center;
    }

    .company-logo {
        justify-content: center;
        gap: 8px;
        margin-bottom: 10px;
    }

    .logo-image {
        width: 50px;
        height: 50px;
    }

    .company-name {
        font-size: 0.9rem;
    }

    .company-description {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .contact-info {
        gap: 10px;
    }

    .contact-item {
        font-size: 0.85rem;
        gap: 8px;
        justify-content: center;
    }
    
    .contact-icon {
        font-size: 12px;
    }

    .footer-section-column {
        text-align: center;
    }

    .footer-title {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-link {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding: 24px 0;
    }

    .footer-bottom-content {
        padding: 0 16px;
        gap: 16px;
    }

    .copyright {
        font-size: 0.85rem;
    }

    .social-links {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-link {
        width: 28px;
        height: 28px;
    }

    .social-icon {
        font-size: 12px;
    }

    /* Call-to-Action Section - Mobile */
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-container {
        padding: 0 16px;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-subtitle {
        font-size: 1.125rem;
        margin-bottom: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        height: 40px;
    }
    
    .cta-emoji {
        font-size: 14px;
    }
}

@media (max-width: 320px) {
    .hero-content {
        padding: 0 8px;
        max-width: 98%;
    }
    
    .hero-headline {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-subheading {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .hero-cta-button {
        padding: 10px 20px;
        font-size: 0.85rem;
        max-width: 240px;
    }
    
    .hero-review {
        margin-top: 0.6rem;
    }
    
    .star-emoji {
        font-size: 14px;
    }
    
    .review-text {
        font-size: 0.7rem;
    }
    
    /* About Section - Small Mobile */
    .about-section {
        height: 200px;
        margin-top: 40px;
    }
    
    .about-container {
        padding: 0 12px;
    }
    
    .about-heading {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .about-subtitle {
        font-size: 0.9rem;
    }
    
    /* Company History Section - Small Mobile */
    .company-history-section {
        height: auto;
        padding: 32px 0;
    }
    
    .company-history-container {
        padding: 0 12px;
    }
    
    .company-history-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .company-history-text {
        max-width: 100%;
    }
    
    .company-history-heading {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .company-history-description {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .company-history-image {
        max-width: 100%;
        height: 200px;
    }
    
    /* Mission and Values Section - Small Mobile */
    .mission-values-section {
        height: auto;
        padding: 32px 0;
    }
    
    .mission-values-container {
        padding: 0 12px;
    }
    
    .mission-values-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .mission-card,
    .values-card {
        max-width: 100%;
        height: auto;
    }
    
    .transport-card .card-image {
        height: 180px;
    }
    
    .card-content {
        padding: 16px;
    }
    
    .card-heading {
        font-size: 1.125rem;
        margin-bottom: 12px;
    }
    
    .card-description {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }
    
    .feature-list {
        gap: 8px;
    }
    
    .feature-item {
        gap: 8px;
    }
    
    .feature-icon {
        width: 28px;
        height: 28px;
    }
    
    .feature-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .feature-text {
        font-size: 0.8rem;
    }
    
    .services-section {
        padding: 32px 0;
    }
    
    .services-container {
        padding: 0 8px;
    }
    
    .services-title {
        font-size: 1.375rem;
    }
    
    .services-subtitle {
        font-size: 0.8rem;
    }
    
    .service-card {
        padding: 12px;
    }
    
    .service-title {
        font-size: 1.125rem;
    }
    
    .service-description {
        font-size: 0.75rem;
    }
    
    .service-price {
        font-size: 1.375rem;
        margin-bottom: 12px;
    }
    
    .feature-item span {
        font-size: 0.75rem;
    }
    
    .service-button {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .vehicle-showcase {
        padding: 32px 0;
    }
    
    .showcase-container {
        padding: 0 8px;
    }
    
    .showcase-title {
        font-size: 1.375rem;
    }
    
    .showcase-subtitle {
        font-size: 0.8rem;
    }
    
    .filter-buttons {
        gap: 6px;
        margin-bottom: 20px;
    }
    
    .filter-btn {
        padding: 5px 8px;
        font-size: 0.7rem;
    }
    
    .gallery-card {
        padding: 12px;
    }
    
    .gallery-header {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .icon-container {
        width: 32px;
        height: 32px;
    }
    
    .gallery-emoji {
        font-size: 14px;
    }
    
    .gallery-info h3 {
        font-size: 1.125rem;
    }
    
    .gallery-count {
        font-size: 0.75rem;
    }
    
    .vehicle-image {
        height: 100px;
    }
    
    .why-choose-section {
        padding: 32px 0;
    }
    
    .why-choose-container {
        padding: 0 8px;
    }
    
    .why-choose-title {
        font-size: 1.375rem;
    }
    
    .why-choose-subtitle {
        font-size: 0.8rem;
    }
    
    .features-grid {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .feature-card {
        padding: 12px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    
    .feature-emoji {
        font-size: 16px;
    }
    
    .feature-title {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    
    .feature-description {
        font-size: 0.7rem;
    }
    
    .recent-shipments-section {
        padding: 32px 0;
    }
    
    .shipments-container {
        padding: 0 8px;
    }
    
    .shipments-title {
        font-size: 1.375rem;
    }
    
    .shipments-subtitle {
        font-size: 0.8rem;
    }
    
    .filter-buttons {
        gap: 4px;
        margin-bottom: 20px;
    }
    
    .filter-btn {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    
    .shipments-table th {
        padding: 6px 8px;
        font-size: 0.7rem;
    }
    
    .shipments-table td {
        padding: 8px;
    }
    
    .vehicle-info {
        gap: 4px;
    }
    
    .vehicle-icon {
        width: 20px;
        height: 20px;
    }
    
    .vehicle-emoji {
        font-size: 10px;
    }
    
    .vehicle-name {
        font-size: 0.75rem;
    }
    
    .route-info {
        gap: 3px;
    }
    
    .route-emoji {
        font-size: 10px;
    }
    
    .route-text {
        font-size: 0.7rem;
    }
    
    .price-info {
        gap: 3px;
    }
    
    .price-emoji {
        font-size: 10px;
    }
    
    .price-text {
        font-size: 0.7rem;
    }
    
    .transport-options-section {
        padding: 32px 0;
    }
    
    .transport-container {
        padding: 0 8px;
    }
    
    .transport-title {
        font-size: 1.375rem;
    }
    
    .transport-subtitle {
        font-size: 0.8rem;
    }
    
    .transport-buttons {
        gap: 4px;
        margin-bottom: 20px;
    }
    
    .transport-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
        max-width: 240px;
    }
    
    .transport-btn-emoji {
        font-size: 10px;
    }
    
    .transport-card-emoji {
        font-size: 16px;
    }
    
    .feature-check-emoji {
        font-size: 10px;
    }
    
    .card-content {
        padding: 16px;
    }
    
    .card-header {
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .transport-icon {
        width: 32px;
        height: 32px;
    }
    
    .transport-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .transport-info h3 {
        font-size: 1.125rem;
        margin-bottom: 4px;
    }
    
    .transport-price {
        font-size: 1rem;
    }
    
    .transport-description {
        font-size: 0.8rem;
        margin-bottom: 14px;
    }
    
    .features-title {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .feature-item {
        gap: 6px;
        margin-bottom: 6px;
    }
    
    .feature-item svg {
        width: 14px;
        height: 14px;
    }
    
    .feature-item span {
        font-size: 0.7rem;
    }
    
    .card-footer {
        padding-top: 12px;
        gap: 8px;
    }
    
    .best-for {
        font-size: 0.7rem;
    }
    
    .transport-cta {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
    
    .transport-card .card-image {
        height: 120px;
    }
    
    .transport-image {
        border-radius: 0;
    }
    
    /* Customer Experiences Section - Small Mobile */
    .customer-experiences-section {
        padding: 32px 0;
    }
    
    .experiences-container {
        padding: 0 12px;
    }
    
    .experiences-header {
        margin-bottom: 24px;
    }
    
    .experiences-title {
        font-size: 1.5rem;
    }
    
    .experiences-subtitle {
        font-size: 1rem;
    }
    
    .testimonials-grid {
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .testimonial-card {
        padding: 12px;
    }
    
    .stars {
        margin-bottom: 16px;
        gap: 1px;
    }
    
    .star-emoji {
        font-size: 12px;
    }
    
    .testimonial-text {
        font-size: 0.8rem;
        margin-bottom: 16px;
    }
    
    .testimonial-author {
        gap: 8px;
        padding-top: 12px;
    }
    
    .author-avatar {
        width: 28px;
        height: 28px;
    }
    
    .avatar-text {
        font-size: 0.7rem;
    }
    
    .author-name {
        font-size: 0.8rem;
    }
    
    .author-details {
        font-size: 0.7rem;
    }
    
    .read-more-link a {
        font-size: 0.8rem;
    }
    
    .arrow-emoji {
        font-size: 12px;
    }
    
    /* Footer Section - Small Mobile */
    .footer-section {
        padding: 40px 0 0;
    }

    .footer-container {
        gap: 20px;
        padding: 0 12px;
        margin-bottom: 24px;
    }

    .company-logo {
        gap: 6px;
        margin-bottom: 8px;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    .company-name {
        font-size: 0.8rem;
    }

    .company-description {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .contact-info {
        gap: 8px;
    }

    .contact-item {
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .contact-icon {
        font-size: 10px;
    }

    .footer-title {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .footer-links {
        gap: 8px;
    }

    .footer-link {
        font-size: 0.8rem;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom-content {
        padding: 0 12px;
        gap: 12px;
    }

    .copyright {
        font-size: 0.8rem;
    }

    .social-links {
        gap: 4px;
    }

    .social-link {
        width: 24px;
        height: 24px;
    }

    .social-link svg {
        width: 10px;
        height: 10px;
    }

    /* Call-to-Action Section - Small Mobile */
    .cta-section {
        padding: 32px 0;
    }
    
    .cta-container {
        padding: 0 12px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .cta-buttons {
        gap: 8px;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
        max-width: 240px;
        height: 36px;
    }
    
    .cta-emoji {
        font-size: 12px;
    }
    
    /* By The Numbers Section - Mobile */
    .numbers-section {
        padding: 32px 0;
    }
    
    .numbers-container {
        padding: 0 20px;
    }
    
    .numbers-header {
        margin-bottom: 24px;
    }
    
    .numbers-title {
        font-size: 1.75rem;
    }
    
    .numbers-subtitle {
        font-size: 0.95rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-card {
        padding: 16px 12px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    
    .stat-emoji {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 1.125rem;
        margin-bottom: 6px;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Our Network Section - Mobile */
    .network-section {
        padding: 32px 0;
    }
    
    .network-container {
        padding: 0 20px;
    }
    
    .network-header {
        margin-bottom: 24px;
    }
    
    .network-title {
        font-size: 1.75rem;
    }
    
    .network-subtitle {
        font-size: 0.95rem;
    }
    
    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 16px;
    }
    
    .location-card {
        padding: 16px 12px;
    }
    
    .location-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .location-emoji {
        font-size: 16px;
    }
    
    .location-name {
        font-size: 1rem;
    }
    
    .location-details {
        font-size: 0.8rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 320px) {
    .banner-content span {
        font-size: 10px;
        margin-right: 20px;
    }
    
    .header-container {
        padding: 0 8px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .nav-menu {
        gap: 16px;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 100px;
        height: 28px;
    }
    
    main {
        padding: 0.5rem;
    }
    
    /* By The Numbers Section - Small Mobile */
    .numbers-section {
        padding: 40px 0;
    }
    
    .numbers-container {
        padding: 0 16px;
    }
    
    .numbers-header {
        margin-bottom: 32px;
    }
    
    .numbers-title {
        font-size: 1.5rem;
    }
    
    .numbers-subtitle {
        font-size: 0.9rem;
    }
    
    .stats-grid {
        gap: 16px;
    }
    
    .stat-card {
        padding: 16px 12px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    
    .stat-emoji {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    /* Our Network Section - Small Mobile */
    .network-section {
        padding: 24px 0;
    }
    
    .network-container {
        padding: 0 16px;
    }
    
    .network-header {
        margin-bottom: 20px;
    }
    
    .network-title {
        font-size: 1.5rem;
    }
    
    .network-subtitle {
        font-size: 0.9rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .location-card {
        padding: 12px 10px;
    }
    
    .location-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 8px;
    }
    
    .location-emoji {
        font-size: 14px;
    }
    
    .location-name {
        font-size: 0.9rem;
    }
    
    .location-details {
        font-size: 0.75rem;
    }
}

/* Services Hero Section */
.services-hero-section {
    background-color: #D9D9D9;
    padding: 80px 0;
    text-align: center;
}

.services-hero-container {
    max-width: 1272px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-hero-content {
    max-width: 684px;
    margin: 0 auto;
}

.services-hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.services-hero-subtitle {
    font-size: 1.75rem;
    font-weight: 400;
    color: #4D4D4D;
    margin: 0;
    line-height: 1.4;
}

/* Services Hero Section - Responsive */
@media (max-width: 1200px) {
    .services-hero-container {
        max-width: 100%;
        padding: 0 40px;
    }
    
    .services-hero-title {
        font-size: 3.25rem;
    }
    
    .services-hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-hero-section {
        padding: 60px 0;
    }
    
    .services-hero-container {
        padding: 0 20px;
    }
    
    .services-hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .services-hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .services-hero-section {
        padding: 40px 0;
    }
    
    .services-hero-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .services-hero-subtitle {
        font-size: 1rem;
    }
}

/* Transport Options Section */
.transport-options-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.transport-options-container {
    max-width: 1272px;
    margin: 0 auto;
    padding: 0 20px;
}

.transport-options-header {
    text-align: center;
    margin-bottom: 60px;
}

.transport-options-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #701028;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.transport-options-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #4D4D4D;
    margin: 0;
    line-height: 1.4;
}

/* Services Page Transport Cards Grid */
.transport-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.services-page .transport-card {
    display: flex !important;
    background-color: #FAFAFA;
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    flex-direction: column;
}

.services-page .transport-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15), 0 20px 25px rgba(0, 0, 0, 0.15);
}

.card-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.icon-background {
    width: 48px;
    height: 48px;
    background-color: #F8F9FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #E9ECEF;
}

.card-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2D2D2D;
    margin: 0 0 8px 0;
    text-align: center;
}

.card-description {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.9rem;
    color: #4D4D4D;
    margin: 0 0 16px 0;
    text-align: center;
    line-height: 1.4;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    flex: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.8rem;
    color: #4D4D4D;
}

.feature-bullet {
    width: 6px;
    height: 6px;
    background-color: #701028;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.card-price {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #701028;
}

.card-button {
    background-color: #701028;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.card-button:hover {
    background-color: #5a0d20;
}

/* Services Page Responsive Styles */
@media (max-width: 1024px) {
    .transport-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-page .transport-card {
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .transport-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .services-page .transport-card {
        padding: 14px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-description {
        font-size: 0.85rem;
    }
    
    .service-emoji {
        font-size: 20px;
    }
    
    .contact-emoji {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .services-page .transport-card {
        padding: 12px;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .card-description {
        font-size: 0.8rem;
    }
    
    .card-button {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .service-emoji {
        font-size: 18px;
    }
    
    .contact-emoji {
        font-size: 12px;
    }
}

.service-emoji {
    font-size: 24px;
    line-height: 1;
    display: block;
}

.contact-emoji {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.icon-background {
    width: 64px;
    height: 64px;
    background-color: rgba(112, 16, 40, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.card-description {
    font-size: 0.9rem;
    font-weight: 400;
    color: #4D4D4D;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-bullet {
    width: 8px;
    height: 8px;
    background-color: #701028;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.875rem;
    font-weight: 400;
    color: #4D4D4D;
    line-height: 1.4;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #701028;
    line-height: 1.2;
}

.card-button {
    background-color: #701028;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card-button:hover {
    background-color: #5A0E2A;
    transform: translateY(-1px);
}

.card-button:active {
    transform: translateY(0);
}

/* Transport Options Section - Responsive */
@media (max-width: 1200px) {
    .transport-options-container {
        max-width: 100%;
        padding: 0 40px;
    }
    
    /* Removed conflicting transport card grid styles */
    
    .transport-options-title {
        font-size: 2rem;
    }
    
    .transport-options-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .transport-options-section {
        padding: 60px 0;
    }
    
    .transport-options-container {
        padding: 0 20px;
    }
    
    .transport-options-header {
        margin-bottom: 40px;
    }
    
    /* Removed conflicting transport card grid styles */
    
    .transport-options-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .transport-options-subtitle {
        font-size: 1.125rem;
    }
    
    .card-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    
    .card-description {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }
    
    .feature-item {
        margin-bottom: 10px;
    }
    
    .feature-item span {
        font-size: 0.8rem;
    }
    
    .card-price {
        font-size: 1.25rem;
    }
    
    .card-button {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .transport-options-section {
        padding: 40px 0;
    }
    
    .transport-options-header {
        margin-bottom: 30px;
    }
    
    .transport-card {
        padding: 16px;
    }
    
    .transport-options-title {
        font-size: 1.5rem;
    }
    
    .transport-options-subtitle {
        font-size: 1rem;
    }
    
    .card-title {
        font-size: 1.125rem;
    }
    
    .card-description {
        font-size: 0.8rem;
    }
    
    .feature-item span {
        font-size: 0.75rem;
    }
    
    .card-price {
        font-size: 1.125rem;
    }
    
    .card-button {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .card-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .card-button {
        width: 100%;
        text-align: center;
    }
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: #D9D9D9;
}

.process-container {
    max-width: 1272px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #701028;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.process-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #4D4D4D;
    margin: 0;
    line-height: 1.4;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.process-step {
    flex: 1;
    text-align: center;
    max-width: 180px;
}

.step-number {
    width: 56px;
    height: 56px;
    background-color: #701028;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.step-digit {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.step-description {
    font-size: 0.875rem;
    font-weight: 400;
    color: #4D4D4D;
    margin: 0;
    line-height: 1.5;
}

/* Process Section - Responsive */
@media (max-width: 1200px) {
    .process-container {
        max-width: 100%;
        padding: 0 40px;
    }
    
    .process-steps {
        gap: 16px;
    }
    
    .process-step {
        max-width: 160px;
    }
    
    .process-title {
        font-size: 2rem;
    }
    
    .process-subtitle {
        font-size: 1.25rem;
    }
    
    .step-title {
        font-size: 1.125rem;
    }
    
    .step-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 60px 0;
    }
    
    .process-container {
        padding: 0 20px;
    }
    
    .process-header {
        margin-bottom: 40px;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
    
    .process-step {
        max-width: 280px;
        width: 100%;
    }
    
    .process-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .process-subtitle {
        font-size: 1.125rem;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }
    
    .step-digit {
        font-size: 1.25rem;
    }
    
    .step-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .step-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 40px 0;
    }
    
    .process-header {
        margin-bottom: 30px;
    }
    
    .process-steps {
        gap: 24px;
    }
    
    .process-step {
        max-width: 260px;
    }
    
    .process-title {
        font-size: 1.5rem;
    }
    
    .process-subtitle {
        font-size: 1rem;
    }
    
    .step-number {
        width: 44px;
        height: 44px;
        margin-bottom: 10px;
    }
    
    .step-digit {
        font-size: 1.125rem;
    }
    
    .step-title {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    
    .step-description {
        font-size: 0.75rem;
    }
}

/* Ready to Ship Section */
.ready-to-ship-section {
    background-color: #701028;
    padding: 80px 0;
    text-align: center;
}

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

.ready-to-ship-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.ready-to-ship-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 40px 0;
    line-height: 1.4;
}

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

.ready-to-ship-button {
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-width: 180px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ready-to-ship-button.primary {
    background-color: #FFFFFF;
    color: #701028;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.ready-to-ship-button.primary:hover {
    background-color: #F5F5F5;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.15);
}

.ready-to-ship-button.secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.ready-to-ship-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* FAQ Questions Section */
.faq-questions-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-questions-container {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-questions-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-questions-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.faq-questions-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: #4D4D4D;
    line-height: 1.6;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    background-color: #FAFAFA;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #F5F5F5;
}

.faq-question-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.4;
    flex: 1;
    margin-right: 16px;
}

.faq-icon {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4D4D4D;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #FFFFFF;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: #4D4D4D;
    line-height: 1.6;
    margin: 0;
}

/* Help Section */
.help-section {
    padding: 80px 0;
    background-color: #701028;
}

.help-container {
    max-width: 1272px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.help-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.help-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 28px 0;
}

.help-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 6px;
    color: #701028;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.help-button:hover {
    background-color: #F5F5F5;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.help-button svg {
    flex-shrink: 0;
}

/* Contact Page Specific Styles */
.contact-hero-section {
    padding: 80px 0;
    background-color: #D9D9D9;
}

.contact-hero-container {
    max-width: 1272px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 28px 0;
    line-height: 1.1;
}

.contact-hero-subtitle {
    font-size: 1.75rem;
    font-weight: 400;
    color: #4D4D4D;
    line-height: 1.4;
    margin: 0;
}

/* Contact Methods Section */
.contact-methods-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-methods-container {
    max-width: 1272px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-method-card {
    background-color: #FAFAFA;
    border: 1px solid #CCCCCC;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 10px 15px rgba(0, 0, 0, 0.1);
}

.contact-method-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15), 0 20px 25px rgba(0, 0, 0, 0.15);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(112, 16, 40, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    font-size: 24px;
    line-height: 1;
}

.contact-method-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.contact-method-detail {
    font-size: 1.125rem;
    font-weight: 600;
    color: #701028;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.contact-method-desc {
    font-size: 0.95rem;
    font-weight: 400;
    color: #4D4D4D;
    margin: 0;
    line-height: 1.4;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Form Status Messages */
.form-status {
    margin-top: 16px;
    padding: 12px;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
}

.success-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.error-message {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.contact-form-container {
    max-width: 1272px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper {
    background-color: #FAFAFA;
    border: 1px solid #CCCCCC;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 10px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

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

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

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

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.4;
}

.form-input,
.form-textarea {
    padding: 10px 12px;
    border: 1px solid #CCCCCC;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 400;
    color: #1A1A1A;
    background-color: #FFFFFF;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #701028;
    box-shadow: 0 0 0 3px rgba(112, 16, 40, 0.1);
}

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

.form-submit-btn {
    padding: 10px 20px;
    background-color: #701028;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-submit-btn:hover {
    background-color: #5A0E2A;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Office Locations */
.office-locations-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.office-locations-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.office-card {
    background-color: #FAFAFA;
    border: 1px solid #CCCCCC;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 10px 15px rgba(0, 0, 0, 0.1);
}

.office-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.office-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.office-address,
.office-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 400;
    color: #4D4D4D;
    line-height: 1.4;
}

.office-icon {
    font-size: 16px;
    flex-shrink: 0;
    line-height: 1;
}

/* Urgent Help Section */
.urgent-help-section {
    padding: 80px 0;
    background-color: #701028;
}

.urgent-help-container {
    max-width: 1272px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.urgent-help-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.urgent-help-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 24px 0;
    line-height: 1.4;
}

.urgent-help-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.urgent-help-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.urgent-help-btn.primary {
    background-color: #FFFFFF;
    color: #701028;
}

.urgent-help-btn.primary:hover {
    background-color: #F5F5F5;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.urgent-help-btn.secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.urgent-help-btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* FAQ Topics Section */
.faq-topics-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-topics-container {
    max-width: 1272px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-topics-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-topics-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #701028;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.faq-topics-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: #4D4D4D;
    line-height: 1.6;
}

.faq-topics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.faq-topic-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #FAFAFA;
    border: 1px solid #CCCCCC;
    border-radius: 12px;
    padding: 24px 16px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1), 0 10px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-topic-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15), 0 20px 25px rgba(0,0,0,0.15);
}

.faq-topic-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 12px 0;
}

.faq-topic-desc {
    font-size: 0.85rem;
    color: #4D4D4D;
    line-height: 1.4;
    margin: 0 0 16px 0;
    max-width: 220px;
}

.faq-topic-articles {
    font-size: 0.85rem;
    font-weight: 600;
    color: #701028;
}

/* FAQ Topics Section - Responsive */
@media (max-width: 1200px) {
    .faq-topics-container {
        padding: 0 40px;
    }
    .faq-topics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .faq-topics-section {
        padding: 60px 0;
    }
    .faq-topics-container {
        padding: 0 20px;
    }
    .faq-topics-title {
        font-size: 1.875rem;
        margin-bottom: 12px;
    }
    .faq-topics-subtitle {
        font-size: 1rem;
    }
    .faq-topics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* FAQ Questions Responsive Styles */
@media (max-width: 768px) {
    .faq-questions-section {
        padding: 60px 0;
    }
    .faq-questions-container {
        padding: 0 20px;
    }
    .faq-questions-title {
        font-size: 1.875rem;
    }
    .faq-questions-subtitle {
        font-size: 1rem;
    }
    .faq-question {
        padding: 16px 20px;
    }
    .faq-question-text {
        font-size: 0.95rem;
    }
    .faq-item.active .faq-answer {
        padding: 0 20px 16px 20px;
    }
    .faq-answer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-questions-section {
        padding: 40px 0;
    }
    .faq-questions-container {
        padding: 0 16px;
    }
    .faq-questions-title {
        font-size: 1.5rem;
    }
    .faq-questions-subtitle {
        font-size: 0.95rem;
    }
    .faq-question {
        padding: 14px 16px;
    }
    .faq-question-text {
        font-size: 0.9rem;
        margin-right: 12px;
    }
    .faq-icon {
        font-size: 1.125rem;
    }
    .faq-item.active .faq-answer {
        padding: 0 16px 14px 16px;
    }
    .faq-answer p {
        font-size: 0.85rem;
    }
}

/* Help Section Responsive Styles */
@media (max-width: 768px) {
    .help-section {
        padding: 60px 0;
    }
    .help-container {
        padding: 0 20px;
    }
    .help-title {
        font-size: 1.875rem;
    }
    .help-subtitle {
        font-size: 1rem;
    }
    .help-button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .help-section {
        padding: 40px 0;
    }
    .help-container {
        padding: 0 16px;
    }
    .help-title {
        font-size: 1.5rem;
    }
    .help-subtitle {
        font-size: 0.95rem;
    }
    .help-button {
        padding: 10px 16px;
        font-size: 0.9rem;
        gap: 6px;
    }
    .help-button svg {
        width: 14px;
        height: 14px;
    }
}

/* Contact Hero Responsive Styles */
@media (max-width: 768px) {
    .contact-hero-section {
        padding: 60px 0;
    }
    .contact-hero-container {
        padding: 0 20px;
    }
    .contact-hero-title {
        font-size: 2.5rem;
    }
    .contact-hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-section {
        padding: 40px 0;
    }
    .contact-hero-container {
        padding: 0 16px;
    }
    .contact-hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    .contact-hero-subtitle {
        font-size: 1.125rem;
    }
}

/* Contact Methods Responsive Styles */
@media (max-width: 1200px) {
    .contact-methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-methods-section {
        padding: 60px 0;
    }
    .contact-methods-container {
        padding: 0 20px;
    }
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .contact-method-card {
        padding: 20px 16px;
    }
    .contact-method-title {
        font-size: 1.125rem;
    }
    .contact-method-detail {
        font-size: 1rem;
    }
    .contact-method-desc {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .contact-methods-section {
        padding: 40px 0;
    }
    .contact-methods-container {
        padding: 0 16px;
    }
    .contact-method-card {
        padding: 16px 12px;
    }
    .contact-method-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
        font-size: 20px;
    }
    .contact-method-title {
        font-size: 1rem;
    }
    .contact-method-detail {
        font-size: 0.875rem;
    }
    .contact-method-desc {
        font-size: 0.8rem;
    }
}

/* Contact Form Responsive Styles */
@media (max-width: 1024px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 0;
    }
    .contact-form-container {
        padding: 0 20px;
        gap: 32px;
    }
    .contact-form-wrapper {
        padding: 32px;
    }
    .contact-form-title {
        font-size: 1.375rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-form {
        gap: 20px;
    }
    .office-locations-title {
        font-size: 1.375rem;
    }
    .office-card {
        padding: 16px;
    }
    .office-title {
        font-size: 1.125rem;
    }
    .office-address,
    .office-phone {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 40px 0;
    }
    .contact-form-container {
        padding: 0 16px;
        gap: 24px;
    }
    .contact-form-wrapper {
        padding: 28px;
    }
    .contact-form-title {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }
    .contact-form {
        gap: 18px;
    }
    .form-label {
        font-size: 0.8rem;
    }
    .form-input,
    .form-textarea {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    .form-submit-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    .office-locations-title {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }
    .office-card {
        padding: 14px;
    }
    .office-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    .office-info {
        gap: 10px;
    }
    .office-address,
    .office-phone {
        font-size: 0.8rem;
        gap: 6px;
    }
    .office-icon {
        font-size: 14px;
    }
}

/* Urgent Help Responsive Styles */
@media (max-width: 768px) {
    .urgent-help-section {
        padding: 60px 0;
    }
    .urgent-help-container {
        padding: 0 20px;
    }
    .urgent-help-title {
        font-size: 1.5rem;
    }
    .urgent-help-subtitle {
        font-size: 1rem;
    }
    .urgent-help-buttons {
        gap: 10px;
    }
    .urgent-help-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .urgent-help-section {
        padding: 40px 0;
    }
    .urgent-help-container {
        padding: 0 16px;
    }
    .urgent-help-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    .urgent-help-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    .urgent-help-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .urgent-help-btn {
        width: 100%;
        max-width: 280px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .faq-topics-section {
        padding: 40px 0;
    }
    .faq-topics-container {
        padding: 0 16px;
    }
    .faq-topics-title {
        font-size: 1.5rem;
    }
    .faq-topic-title {
        font-size: 1.125rem;
    }
    .faq-topic-desc {
        font-size: 0.8rem;
        max-width: 260px;
    }
}

/* Ready to Ship Section - Responsive */
@media (max-width: 1200px) {
    .ready-to-ship-container {
        max-width: 100%;
        padding: 0 40px;
    }
    
    .ready-to-ship-title {
        font-size: 2rem;
    }
    
    .ready-to-ship-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .ready-to-ship-section {
        padding: 60px 0;
    }
    
    .ready-to-ship-container {
        padding: 0 20px;
    }
    
    .ready-to-ship-title {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }
    
    .ready-to-ship-subtitle {
        font-size: 1.125rem;
        margin-bottom: 32px;
    }
    
    .ready-to-ship-buttons {
        gap: 16px;
    }
    
    .ready-to-ship-button {
        min-width: 160px;
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .ready-to-ship-section {
        padding: 40px 0;
    }
    
    .ready-to-ship-container {
        padding: 0 16px;
    }
    
    .ready-to-ship-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .ready-to-ship-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .ready-to-ship-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .ready-to-ship-button {
        width: 100%;
        max-width: 280px;
        min-width: auto;
        padding: 12px 20px;
        font-size: 0.875rem;
    }
}

/* WhatsApp Widget Styles */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Inter', Arial, sans-serif;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg {
    color: white;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover svg {
    transform: rotate(10deg);
}

.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.whatsapp-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-popup-header {
    background: #701028;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.whatsapp-popup-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-popup-avatar svg {
    color: white;
}

.whatsapp-popup-info {
    flex: 1;
    min-width: 0;
}

.whatsapp-popup-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: white;
}

.whatsapp-popup-info p {
    font-size: 12px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 4px;
}

.whatsapp-popup-info p::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    display: inline-block;
}

.whatsapp-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.whatsapp-popup-body {
    padding: 20px;
}

.whatsapp-message {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    position: relative;
}

.whatsapp-message::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #f8f9fa;
}

.whatsapp-message p {
    margin: 0;
    font-size: 14px;
    color: #374151;
    line-height: 1.4;
}

.whatsapp-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.whatsapp-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.whatsapp-action-btn:hover {
    background: #128C7E;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-action-btn svg {
    color: white;
}

/* Pulse animation for the button */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-button.pulse {
    animation: whatsapp-pulse 2s infinite;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button {
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-popup {
        width: 280px;
        bottom: 76px;
        right: -10px;
    }
    
    .whatsapp-popup-header {
        padding: 14px;
    }
    
    .whatsapp-popup-body {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .whatsapp-popup {
        width: calc(100vw - 30px);
        right: 15px;
        left: 15px;
    }
}
