/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-placeholder {
    display: flex;
    align-items: center;
}

.logo {
    height: 70px;
    width: auto;
    transition: transform 0.4s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #FF6B35;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #FF6B35;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #333;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.primary-btn {
    background-color: #FF6B35;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.primary-btn:hover {
    background-color: #E55A2B;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.secondary-btn {
    background-color: transparent;
    color: #FF6B35;
    border: 2px solid #FF6B35;
    margin-left: 15px;
}

.secondary-btn:hover {
    background-color: #FF6B35;
    color: white;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('098.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.1) 0%, rgba(255, 255, 255, 0) 20%);
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: #FF6B35;
    border-radius: 3px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 20px auto 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #FF6B35;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('098.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0 100px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #333;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Company Story */
.company-story {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('098.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #333;
    position: relative;
    display: inline-block;
}

.story-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: #FF6B35;
    border-radius: 3px;
}

.story-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background-color: #fff;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mv-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.15);
}

.mv-icon {
    margin-bottom: 20px;
    color: #FF6B35;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.mv-card p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.15);
}

.member-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #333;
}

.position {
    color: #FF6B35;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.member-info p {
    color: #666;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.15);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #FF6B35;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #FF6B35;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

/* Tracking Section */
.tracking-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 200px);
}

.tracking-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.tracking-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tracking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-header {
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: white;
    padding: 35px;
}

.card-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-header h2 i {
    font-size: 1.8rem;
}

.card-header p {
    opacity: 0.9;
    font-size: 1.1rem;
    margin: 0;
    max-width: 600px;
}

.card-body {
    padding: 35px;
}

.tracking-form .form-group {
    margin-bottom: 30px;
}

.tracking-form label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    color: #333;
    font-size: 1.1rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #FF6B35;
    font-size: 1.3rem;
}

.tracking-form input {
    width: 100%;
    padding: 18px 20px 18px 60px;
    border: 2px solid #e1e5eb;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.tracking-form input:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.track-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 12px;
}

/* Contact Form Styles */
.contact-form .form-group {
    margin-bottom: 30px;
}

.contact-form label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    color: #333;
    font-size: 1.1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e1e5eb;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    padding-right: 50px;
}

.contact-form .btn {
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.result-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 40px;
}

.result-card .card-header {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
    padding: 30px 35px;
}

.result-card .card-header h2 {
    font-size: 1.8rem;
}

.status-overview {
    margin-bottom: 40px;
}

.tracking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #FF6B35;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.label {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value {
    font-size: 1.3rem;
    color: #343a40;
    font-weight: 600;
}

.value.highlight {
    color: #FF6B35;
    font-size: 1.4rem;
}

.status-badge {
    background-color: #FF6B35;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1.1rem;
    display: inline-block;
    font-weight: 500;
}

.shipment-progress {
    margin: 40px 0;
}

.shipment-progress h3 {
    font-size: 1.6rem;
    margin-bottom: 35px;
    color: #333;
    position: relative;
    display: inline-block;
}

.shipment-progress h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #FF6B35;
    border-radius: 2px;
}

.progress-tracker {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    padding: 0 20px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 100px;
    text-align: center;
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f1f3f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #a0aec0;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    border: 4px solid #e2e8f0;
}

.step-label {
    font-size: 1rem;
    color: #718096;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-time {
    font-size: 0.85rem;
    color: #a0aec0;
    font-weight: 500;
}

.progress-step.completed .step-icon {
    background: #FF6B35;
    color: white;
    border-color: #FF6B35;
    transform: scale(1.1);
}

.progress-step.completed .step-label {
    color: #333;
}

.progress-step.completed .step-time {
    color: #666;
}

.progress-step.active .step-icon {
    background: #2c3e50;
    color: white;
    border-color: #2c3e50;
    animation: pulseGentle 2s infinite;
}

.progress-step.active .step-label {
    color: #2c3e50;
    font-weight: 700;
}

.progress-step.active .step-time {
    color: #495057;
}

.progress-connector {
    height: 4px;
    background: #e2e8f0;
    flex: 1;
    max-width: 80px;
    margin: 35px 0;
    position: relative;
}

.progress-connector.completed {
    background: #FF6B35;
}

.shipment-details {
    margin-top: 30px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.detail-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.detail-icon {
    font-size: 1.8rem;
    color: #FF6B35;
    width: 50px;
    text-align: center;
}

.detail-content {
    flex: 1;
}

.detail-label {
    display: block;
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 1.1rem;
    color: #343a40;
    font-weight: 600;
}

@media (max-width: 992px) {
    .progress-tracker {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
    }
    
    .progress-step {
        flex-direction: row;
        max-width: none;
        width: 100%;
        gap: 20px;
        justify-content: flex-start;
        text-align: left;
        margin-bottom: 25px;
    }
    
    .step-icon {
        margin-bottom: 0;
    }
    
    .step-label {
        margin-bottom: 0;
        font-size: 1.1rem;
    }
    
    .progress-connector {
        width: 4px;
        height: 40px;
        max-width: none;
        margin: 0 35px 0 32px;
        align-self: flex-start;
    }
    
    .tracking-info {
        grid-template-columns: 1fr;
    }
    
    .details-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .card-header, .card-body, .result-card .card-header {
        padding: 25px;
    }
    
    .card-header h2 {
        font-size: 1.6rem;
    }
    
    .tracking-form input {
        padding: 15px 15px 15px 50px;
        font-size: 1rem;
    }
    
    .input-with-icon i {
        font-size: 1.1rem;
        left: 15px;
    }
    
    .track-btn {
        padding: 16px;
        font-size: 1.1rem;
    }
    
    .tracking-info {
        padding: 20px;
    }
    
    .value {
        font-size: 1.1rem;
    }
    
    .value.highlight {
        font-size: 1.2rem;
    }
    
    /* Contact Form Responsive Styles */
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 15px;
        font-size: 1rem;
    }
    
    .contact-form select {
        background-position: right 12px center;
        background-size: 16px;
        padding-right: 40px;
    }
    
    .contact-form .btn {
        padding: 16px;
        font-size: 1.1rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tracking-section {
        padding: 80px 0;
    }
    
    .card-header, .card-body, .result-card .card-header {
        padding: 20px;
    }
    
    .card-header h2 {
        font-size: 1.4rem;
        gap: 10px;
    }
    
    .card-header h2 i {
        font-size: 1.4rem;
    }
    
    .card-header p {
        font-size: 1rem;
    }
    
    .tracking-form input {
        padding: 12px 12px 12px 45px;
    }
    
    .track-btn {
        padding: 14px;
    }
    
    .shipment-progress h3 {
        font-size: 1.4rem;
    }
    
    .detail-card {
        padding: 20px;
        gap: 15px;
    }
    
    .detail-icon {
        font-size: 1.5rem;
        width: 40px;
    }
    
    .detail-value {
        font-size: 1rem;
    }
    
    /* Contact Form Small Screen Styles */
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 12px;
    }
    
    .contact-form select {
        background-position: right 10px center;
        background-size: 14px;
        padding-right: 35px;
    }
    
    .contact-form .btn {
        padding: 14px;
        font-size: 1rem;
    }
}
/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #FF6B35;
}

.footer-col p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #444;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #FF6B35;
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-col ul li a:hover {
    color: #FF6B35;
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 10px;
    color: #FF6B35;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding: 20px 0;
    text-align: center;
    color: #bbb;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseGentle {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes floatGentle {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.float-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.float-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

.delay-5 {
    transition-delay: 1s;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.pulse {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pulse.visible {
    opacity: 1;
    transform: scale(1);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

.bounce-in {
    animation: bounceIn 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in-simple {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.slide-in-up {
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
}

.slide-in-down {
    animation: slideInDown 0.6s ease-out forwards;
    opacity: 0;
}

.slide-in-left-simple {
    animation: slideInLeft 0.6s ease-out forwards;
    opacity: 0;
}

.slide-in-right-simple {
    animation: slideInRight 0.6s ease-out forwards;
    opacity: 0;
}

.pulse-gentle {
    animation: pulseGentle 3s ease-in-out infinite;
}

.float-gentle {
    animation: floatGentle 4s ease-in-out infinite;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .story-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .secondary-btn {
        margin-left: 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 576px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .features,
    .stats,
    .company-story,
    .mission-vision,
    .team-section,
    .values-section,
    .services-section,
    .contact-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 120px 0 80px;
    }

    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Delivery Actions */
.delivery-actions h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.delivery-actions p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
}

.delivery-actions .btn {
    padding: 15px 25px;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.delivery-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.delivery-actions .btn i {
    margin-right: 10px;
}
