* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Buttons */
.btn {
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    background: #fff;
    color: #0077ff;
    font-weight: bold;
}

.btn-primary {
    background: #0077ff;
    color: #fff;
}

/* Hero */
.hero {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d") center/cover no-repeat;
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.hero-content {
    max-width: 1100px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
}

.hero-content {
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.hero-content h1 {
    margin-bottom: 20px;
}

.hero-content p {
    margin-bottom: 35px;
    font-size: 1.1rem;
}


/* Features */
.features {
    padding: 90px 20px;
    background: linear-gradient(180deg, #f4f7ff, #ffffff);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature::before {
    content: "🚚";
    width: 60px;
    height: 60px;
    background: #fff;
    color: #fff;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.feature:nth-child(1)::before {
    content: "🚚";
}

.feature:nth-child(2)::before {
    content: "🔒";
}

.feature:nth-child(3)::before {
    content: "📍";
}

.feature h3 {
    margin-top: 45px;
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.feature p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.15);
}


/* Services */
.services {
    padding: 90px 20px;
    background: #0f172a;
    color: #ffffff;
    text-align: center;
}

.services h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.services ul {
    list-style: none;
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.services li {
    background: rgba(255,255,255,0.08);
    padding: 22px 25px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    position: relative;
    padding-left: 55px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.services li::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
}

.services li:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-6px);
}

.services li:nth-child(1)::before {
    content: "⚡"; /* Same-Day */
}

.services li:nth-child(2)::before {
    content: "🚚"; /* Express & Standard */
}

.services li:nth-child(3)::before {
    content: "📄"; /* Documents */
}

.services li:nth-child(4)::before {
    content: "🛒"; /* E-commerce */
}

.services li:nth-child(5)::before {
    content: "🌍"; /* International */
}


/* Steps */
.steps {
    background: linear-gradient(135deg, #0077ff, #005bcc);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.steps h2 {
    font-size: 2.2rem;
    margin-bottom: 60px;
}

.step-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step {
    background: rgba(255,255,255,0.15);
    padding: 35px 25px;
    border-radius: 18px;
    font-size: 1.05rem;
    font-weight: 600;
    position: relative;
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.step::before {
    content: attr(data-step);
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #0077ff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.25);
}



/* Contact */
.contact {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff, #f4f7ff);
    text-align: center;
}

.contact h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.contact p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 520px;
    margin: auto;
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fafafa;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Focus state */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0077ff;
    box-shadow: 0 0 0 3px rgba(0,119,255,0.15);
    background: #ffffff;
}

/* Placeholder */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

/* Button */
.contact-form button {
    margin-top: 10px;
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    background: linear-gradient(135deg, #0077ff, #005bcc);
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,119,255,0.35);
}

/* Mobile */
@media (max-width: 600px) {
    .contact-form {
        padding: 30px 25px;
    }
}

/* Footer */
.footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
}

/* Responsive */
@media (hover: hover) {
    .feature:hover,
    .services li:hover,
    .step:hover {
        cursor: pointer;
    }
}

@media (max-width: 600px) {
    .features,
    .services,
    .steps {
        padding: 70px 20px;
    }
}


.field {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.field label i {
    color: #0077ff;
    font-size: 0.95rem;
}

.field input,
.field textarea {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
}


/* Form message */
.form-message {
    margin-top: 15px;
    font-size: 0.95rem;
    min-height: 22px;
}

.form-message.success {
    color: #28a745;
}

.form-message.error {
    color: #dc3545;
}

/* Success animation */
.form-message.success::before {
    content: "✔ ";
    font-weight: bold;
}

/* Spinner + disabled */
button.loading {
    cursor: not-allowed;
    opacity: 0.9;
}

button:disabled {
    opacity: 0.7;
}
