/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(30, 60, 114, 0.95);
    backdrop-filter: blur(25px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 2px;
}

.logo span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 300;
}

.nav {
    display: flex;
    gap: 25px;
}

.nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.nav a:hover::before {
    transform: scale(1);
}

.nav a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #3b82f6 100%);
    padding: 120px 20px 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.05"/></svg>');
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: slideInDown 0.8s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-features .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.hero-features span {
    font-size: 1rem;
    font-weight: 500;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #3b82f6, #2563eb);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.single-service-grid {
    display: flex;
    justify-content: center;
}

.single-service {
    max-width: 600px;
    width: 100%;
}

.two-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-box {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-box:hover::before {
    left: 100%;
}

.service-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.service-box.featured {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-color: #1d4ed8;
}

.service-box.featured .section-title {
    color: white;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ef4444;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: iconBounce 3s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.service-box h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e3c72;
}

.service-box.featured h3 {
    color: white;
}

.service-box p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.service-box.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
    color: #555;
}

.service-box.featured .service-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.service-box.featured .service-features li::before {
    color: #ffffff;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.single-pricing-grid {
    display: flex;
    justify-content: center;
}

.single-pricing {
    max-width: 500px;
    width: 100%;
}

.two-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.special-delivery {
    border-color: #f39c12 !important;
}

.special-delivery:hover {
    border-color: #e67e22 !important;
}

.special-pricing {
    border-color: #f39c12 !important;
}

.special-pricing:hover {
    border-color: #e67e22 !important;
}

.special-item {
    background: #fff8e1 !important;
}

.special-pricing .special-item:hover {
    background: #fff3c4 !important;
}

.special-note {
    text-align: center;
    margin-top: 15px;
    font-style: italic;
}

.special-note small {
    color: #666;
    font-size: 0.85rem;
}

.pricing-box {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.pricing-box.featured {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    transform: scale(1.05);
    border-color: #1d4ed8;
}

.pricing-box.featured:hover {
    transform: translateY(-5px) scale(1.05);
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #1e3c72;
}

.pricing-box.featured .pricing-header h3 {
    color: white;
}

.weight-ranges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.weight-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pricing-box.featured .weight-item {
    background: rgba(255, 255, 255, 0.1);
}

.weight-item:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.pricing-box.featured .weight-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.weight {
    font-weight: 500;
    color: #374151;
}

.pricing-box.featured .weight {
    color: rgba(255, 255, 255, 0.9);
}

.price {
    font-weight: 700;
    font-size: 1.2rem;
    color: #3b82f6;
}

.pricing-box.featured .price {
    color: #ffffff;
}

.pricing-notes {
    margin-top: 60px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Contact Banner - Professional Formal Design */
.contact-banner {
    margin: 60px auto 40px;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.contact-banner-content {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-banner-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.contact-banner-icon {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}

.contact-banner-icon svg {
    color: white;
    width: 24px;
    height: 24px;
}

.contact-banner-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.contact-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3c72;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.contact-phone:hover {
    color: #2a5298;
}


/* Optional glowing animation */
@keyframes glowBlue {
    from {
        box-shadow: 0 0 10px rgba(33, 150, 243, 0.3);
    }
    to {
        box-shadow: 0 0 25px rgba(33, 150, 243, 0.6);
    }
}



.pricing-notes h4 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 15px;
}

.pricing-notes ul {
    list-style: none;
}

.pricing-notes li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #555;
    border-bottom: 1px solid #eee;
}

.pricing-notes li:last-child {
    border-bottom: none;
}

.pricing-notes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* Tracking Section */
.tracking {
    padding: 100px 0;
    background: white;
}

.tracking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: center;
}

.tracking-form {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 40px;
    border-radius: 20px;
    color: white;
    text-align: center;
}

.tracking-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.input-group {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.input-group input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.input-group input::placeholder {
    color: #666;
}

.input-group button {
    background: #ef4444;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.tracking-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
}

.info-content h4 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.about-features h3 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 30px;
    font-weight: 700;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-features .feature-item {
    display: flex;
    gap: 20px;
    align-items: start;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-features .feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-features .feature-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.feature-content h4 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.routes-box {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.routes-box::before {
    content: '🚚';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    opacity: 0.3;
}

.routes-box strong {
    color: #ffffff;
    font-weight: 600;
}

.routes-box:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-8px);
}

/* Simple text line */
.simple-text {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-style: italic;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    color: #333;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.submit-btn {
    width: 100%;
    background: #ef4444;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Animations */
.animate-in {
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 1 !important;
    visibility: visible !important;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
        visibility: visible;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .services-grid,
    .pricing-grid,
    .two-service-grid,
    .two-pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-box.featured {
        transform: none;
    }
    
    .tracking-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nav {
        display: none;
    }
    
    .header .container {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 15px 60px;
    }
    
    .service-box,
    .pricing-box {
        padding: 30px 20px;
    }
    
    .tracking-form,
    .contact-form {
        padding: 30px 20px;
    }
    
    .about-features .feature-item {
        padding: 20px;
    }
}