/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #FFCC00;
    color: #333;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #e6b800;
}

.btn-outline {
    background: transparent;
    border: 2px solid #D40511;
    color: #D40511;
}

.btn-outline:hover {
    background: #D40511;
    color: white;
}

/* Header Styles */
header {
    background-color: #FFCC00;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-container {
    width: 100%;
    text-align: center;
    background-color: #FFCC00;
    padding: 15px 0;
    margin: 0;
    border: none;
}

.logo {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.search-bar {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 4px;
    padding: 5px 10px;
    width: 300px;
}

.search-bar input {
    border: none;
    outline: none;
    padding: 8px;
    width: 100%;
}

.search-bar i {
    color: #666;
}

.header-actions {
    display: flex;
    gap: 20px;
}

.header-actions a {
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.tracking-form {
    background: white;
    padding: 25px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.tracking-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 16px;
}

.tracking-form button {
    background: #D40511;
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s;
}

.tracking-form button:hover {
    background: #b0040e;
}

/* Quick Actions Section */
.quick-actions {
    padding: 60px 0;
    background: white;
}

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

.action-card {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-top: 4px solid #D40511;
}

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

.action-icon {
    font-size: 50px;
    color: #D40511;
    margin-bottom: 20px;
}

.action-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #D40511;
}

.action-card p {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
}

/* New Sections */
.shipping-options {
    padding: 80px 0;
    background: #f5f5f5;
}

.shipping-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.shipping-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.shipping-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.shipping-content {
    padding: 30px;
}

.shipping-content h2 {
    font-size: 28px;
    color: #D40511;
    margin-bottom: 10px;
}

.shipping-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 5px;
}

.divider {
    width: 50px;
    height: 3px;
    background: #FFCC00;
    margin: 15px 0;
}

.shipping-content p {
    margin-bottom: 20px;
    color: #555;
}

.shipping-content h3 {
    font-size: 18px;
    color: #D40511;
    margin: 25px 0 15px;
}

.service-list {
    margin-bottom: 25px;
}

.service-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-list li:before {
    content: "•";
    color: #D40511;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.updates-section {
    padding: 60px 0;
    background: white;
}

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

.updates-title {
    font-size: 32px;
    color: #D40511;
    text-align: center;
    margin-bottom: 40px;
}

.update-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #FFCC00;
}

.update-card h3 {
    font-size: 20px;
    color: #D40511;
    margin-bottom: 10px;
}

.update-card p {
    color: #666;
}

.feature-sections {
    padding: 80px 0;
    background: #f5f5f5;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.feature-card {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.feature-image {
    width: 40%;
    object-fit: cover;
}

.feature-content {
    padding: 30px;
    width: 60%;
}

.feature-content h2 {
    font-size: 24px;
    color: #D40511;
    margin-bottom: 15px;
}

.feature-content p {
    color: #555;
    line-height: 1.7;
}

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: #D40511;
}

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

.service-card {
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-icon {
    background: #D40511;
    color: white;
    padding: 30px;
    text-align: center;
    font-size: 40px;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-bottom: 15px;
    color: #D40511;
    font-size: 22px;
}

.service-content p {
    margin-bottom: 20px;
    color: #666;
}

/* Tools Section */
.tools {
    padding: 80px 0;
    background: #f5f5f5;
}

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

.tool-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    border-left: 5px solid #FFCC00;
    transition: transform 0.3s;
}

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

.tool-card i {
    font-size: 50px;
    color: #D40511;
    margin-bottom: 25px;
}

.tool-card h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.tool-card p {
    margin-bottom: 25px;
    color: #666;
}

/* Industries Section */
.industries {
    padding: 80px 0;
    background: white;
}

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

.industry-item {
    background: #f9f9f9;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.industry-item i {
    font-size: 40px;
    color: #D40511;
    margin-bottom: 20px;
}

.industry-item h4 {
    font-size: 18px;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 70px 0 20px;
}

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

.footer-column h3 {
    margin-bottom: 25px;
    font-size: 20px;
    color: #FFCC00;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #FFCC00;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #555;
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
}

.social-links a:hover {
    background: #FFCC00;
    color: #333;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #555;
    font-size: 14px;
    color: #ccc;
}

/* Status Styles for Tracking Results */
.package-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.status-pending { background: #fff3cd; color: #856404; }
.status-shipped { background: #cce7ff; color: #004085; }
.status-in-transit { background: #d1ecf1; color: #0c5460; }
.status-on-hold { background: #f8d7da; color: #721c24; }
.status-out-for-delivery { background: #d4edda; color: #155724; }
.status-delivered { background: #28a745; color: white; }

/* Responsive Styles */
@media (max-width: 768px) {
    .top-header {
        flex-direction: column;
        gap: 15px;
        padding: 10px 0;
    }

    .search-bar {
        width: 100%;
        max-width: 400px;
    }

    .logo-container {
        padding: 10px 0;
    }

    .hero {
        padding: 70px 0;
    }

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

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

    .tracking-form {
        flex-direction: column;
        padding: 20px;
    }

    .tracking-form input {
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .tracking-form button {
        border-radius: 4px;
        padding: 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .shipping-grid, .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        flex-direction: column;
    }
    
    .feature-image, .feature-content {
        width: 100%;
    }
    
    .feature-image {
        height: 200px;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .services-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
