:root {
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #60A5FA;
    --accent: #0F766E;
    --accent-dark: #0D5C55;
    --accent-light: #14B8A6;
    --background: #F1F5F9;
    --dark-text: #0F172A;
    --light-text: #64748B;
    --white: #FFFFFF;
    --gold: #F59E0B;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--dark-text);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Premium Navigation */
.premium-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    font-size: 1.5rem;
    color: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link i {
    margin-right: 0.5rem;
    color: var(--primary);
    font-size: 0.9rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Update the quote-btn to work as a link */
.quote-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    color: white;
    text-decoration: none;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Video Hero Section - Fixed */
.video-hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 14, 16, 0.85), rgba(79, 83, 91, 0.75));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 2rem;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #60A5FA, #14B8A6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: nowrap;
}

.btn-primary-hero {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-secondary-hero {
    background: transparent;
    border: 2px solid white;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
}

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

/* Hero Stats - Fixed Grid */
.hero-stats {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    border-radius: 60px;
    width: auto;
    min-width: 280px;
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Services Section - Relaxed Layout */
.services-section {
    padding: 5rem 2rem;
    background: var(--white);
    position: relative;
    z-index: 2;
}

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

.section-header {
    text-align: left;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-subtitle {
    color: var(--light-text);
    max-width: 700px;
    font-size: 1rem;
    line-height: 1.6;
}

.accent-text {
    color: var(--accent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s;
    border: 1px solid #E2E8F0;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(15, 118, 110, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--light-text);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 0.8rem;
}

/* Why Us Section - Relaxed */
.why-us-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #F8FAFE, #F1F5F9);
    position: relative;
    z-index: 2;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.why-us-content {
    padding-right: 2rem;
}

.advantage-list {
    margin-top: 2rem;
}

.advantage-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.advantage-icon i {
    font-size: 1.5rem;
    color: white;
}

.advantage-item h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.advantage-item p {
    color: var(--light-text);
    line-height: 1.5;
}

.why-us-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stats-card {
    background: white;
    padding: 2rem;
    text-align: center;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stat-circle {
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-unit {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    position: relative;
    z-index: 2;
}

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

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-cta {
    background: white;
    color: var(--primary);
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary-cta {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Footer */
.premium-footer {
    background: #0F172A;
    color: #94A3B8;
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 2;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-desc {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.contact-info li i {
    color: var(--primary);
    width: 20px;
}

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

.separator {
    margin: 0 0.5rem;
}

/* Tracking Page Styles */
.tracking-hero-section {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #667EEA, #764BA2);
    color: white;
    min-height: 400px;
    position: relative;
    z-index: 2;
}

.tracking-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tracking-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.tracking-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tracking-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.tracking-form {
    background: white;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 20px;
    color: var(--primary);
    font-size: 1.1rem;
}

.input-group input {
    flex: 1;
    padding: 1.2rem 1.5rem 1.2rem 3rem;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: inherit;
}

.track-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    padding: 0 2rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    height: 100%;
}

.track-btn:hover {
    opacity: 0.9;
}

.tracking-examples {
    text-align: center;
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.example-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.example-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.tracking-results-section {
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
}

.tracking-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.tracking-summary {
    animation: fadeIn 0.5s ease;
}

.tracking-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tracking-label {
    font-size: 0.8rem;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tracking-number {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.status-badge {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.tracking-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--background);
    border-radius: 16px;
}

.detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.detail-item i {
    font-size: 1.2rem;
    color: var(--primary);
}

.detail-item label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--light-text);
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.detail-item span {
    font-weight: 600;
    color: var(--dark-text);
}

.timeline-container {
    margin-top: 2rem;
}

.timeline-title-section {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    position: relative;
    border-bottom: 1px solid #E2E8F0;
}

.timeline-step:last-child {
    border-bottom: none;
}

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

.timeline-step.completed .timeline-icon {
    background: var(--accent);
    color: white;
}

.timeline-step.active .timeline-icon {
    background: var(--primary);
    color: white;
    animation: pulse 1.5s infinite;
}

.timeline-content {
    flex: 1;
}

.timeline-title {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.timeline-date {
    font-size: 0.75rem;
    color: var(--light-text);
    margin-bottom: 0.3rem;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--light-text);
}

.tracking-info-section {
    padding: 3rem 2rem;
    background: var(--background);
    position: relative;
    z-index: 2;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    transition: all 0.3s;
}

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

.info-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.info-card h3 {
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--light-text);
    line-height: 1.6;
}

.error-message {
    text-align: center;
    padding: 2rem;
}

.error-message i {
    font-size: 3rem;
    color: #EF4444;
    margin-bottom: 1rem;
}

.try-again-btn {
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

/* ============================================ */
/* RESPONSIVE DESIGN - COMPLETE FIXES */
/* ============================================ */

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        padding: 1rem 1.5rem;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 0.8rem 1rem;
        width: 100%;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-actions {
        gap: 1rem;
    }
    
    .quote-btn span {
        display: none;
    }
    
    .quote-btn i {
        margin: 0;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-wrap: nowrap;
        gap: 0.8rem;
        justify-content: center;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    /* Hero Stats - Grid 2x2 on mobile */
    .hero-stats {
        bottom: 1rem;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
        border-radius: 20px;
        width: 90%;
        min-width: auto;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    /* Why Us Section */
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-us-content {
        padding-right: 0;
    }
    
    .why-us-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stats-card {
        padding: 1.2rem;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
    
    /* Tracking Page */
    .tracking-header h1 {
        font-size: 1.8rem;
    }
    
    .tracking-form {
        border-radius: 16px;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .input-group i {
        top: 18px;
        left: 15px;
    }
    
    .input-group input {
        width: 100%;
        padding: 1rem 1rem 1rem 2.5rem;
    }
    
    .track-btn {
        width: 100%;
        padding: 0.8rem;
        border-radius: 0 0 16px 16px;
    }
    
    .tracking-header-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-step {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
    }
}

/* Mobile Landscape (480px) */
@media (max-width: 480px) {
    .nav-container {
        padding: 0.8rem 1rem;
    }
    
    .logo-main {
        font-size: 1rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-icon i {
        font-size: 1rem;
    }
    
    .logo-sub {
        font-size: 0.55rem;
    }
    
    /* Hero adjustments */
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.3rem 1rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .btn-primary-hero i,
    .btn-secondary-hero i {
        font-size: 0.7rem;
    }
    
    /* Hero Stats */
    .hero-stats {
        gap: 0.8rem;
        padding: 0.8rem;
        width: 95%;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    /* Sections */
    .services-section,
    .why-us-section,
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .why-us-stats {
        grid-template-columns: 1fr;
    }
    
    .tracking-details-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
}

/* Small Mobile (320px) */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        justify-content: center;
        white-space: normal;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
}

/* Ensure no overlap between sections */
section {
    position: relative;
    z-index: 2;
}

main {
    position: relative;
    z-index: 1;
}