/* style.css – modern logistics palette: navy, orange accents, light grey */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
}
body {
    background-color: #f8fafc;
    color: #1e2f3e;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main { flex: 1; }

/* navbar */
.navbar {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0,35,70,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: #0a3144;
}
.logo span {
    color: #e56b2b;
    font-weight: 400;
    margin-left: 0.3rem;
}
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-link {
    text-decoration: none;
    color: #1d3e55;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
}
.nav-link:hover, .nav-link.active {
    border-bottom-color: #e56b2b;
    color: #0a3144;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.bar {
    width: 25px;
    height: 3px;
    background: #0a3144;
    border-radius: 2px;
}

/* hero */
.hero {
    max-width: 1300px;
    margin: 2rem auto;
    padding: 3rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}
.hero-content { flex: 1 1 300px; }
.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 600;
    color: #0a3144;
}
.highlight {
    background: #ffe5d0;
    padding: 0 0.5rem;
    border-radius: 20px 0;
}
.hero-image {
    flex: 1 1 300px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 40px -12px #e56b2b80;
}
.hero-image img { width: 100%; display: block; }

/* cards */
.cards-section {
    max-width: 1300px;
    margin: 4rem auto;
    padding: 0 2rem;
}
.cards-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0a3144;
    margin-bottom: 3rem;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}
.card {
    background: white;
    border-radius: 28px;
    padding: 2rem 1.5rem;
    box-shadow: 0 15px 30px -10px rgba(10,49,68,0.1);
    transition: 0.25s ease;
    text-align: center;
    border: 1px solid #eaeef2;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 38px -12px #e56b2b;
}
.card i {
    font-size: 2.8rem;
    color: #e56b2b;
    margin-bottom: 1rem;
}

/* cta */
.cta-banner {
    background: #0a3144;
    color: #f7f2eb;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 48px 48px 0 0;
    margin-top: 4rem;
}
.cta-banner h3 { font-size: 2rem; margin-bottom: 1.5rem; }

/* buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
    border: 2px solid transparent;
    cursor: pointer;
}
.primary {
    background: #e56b2b;
    color: white;
    box-shadow: 0 8px 14px -6px #e56b2b;
}
.primary:hover {
    background: #c8551f;
    transform: scale(1.02);
}
.secondary {
    background: transparent;
    border: 2px solid #e56b2b;
    color: #0a3144;
}
.secondary:hover { background: #ffe5d0; }
.block { width: 100%; }

/* footer */
footer {
    background: linear-gradient(135deg, #0a3144 0%, #1a3a4a 50%, #132b38 100%);
    color: #c5cfd8;
    padding: 5rem 2rem 2rem;
    margin-top: 4rem;
    border-top: 4px solid #e56b2b;
}
.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-grid > div {
    padding: 1.5rem;
}
footer h4 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}
footer p {
    font-size: 0.9rem;
    line-height: 1.9;
    margin-bottom: 0.5rem;
    color: #c5cfd8;
}
footer a {
    color: #e56b2b;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}
footer a:hover {
    color: #ff8c5a;
    text-decoration: underline;
}
footer ul {
    list-style: none;
}
footer ul li {
    margin-bottom: 0.8rem;
}
footer i {
    font-size: 1.6rem;
    color: #e56b2b;
    transition: 0.3s;
    cursor: pointer;
    margin-right: 0.8rem;
}
footer i:hover {
    color: #ff8c5a;
    transform: translateY(-3px);
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #8a95a1;
    font-size: 0.85rem;
    padding-bottom: 1rem;
}

/* forms */
.page-form {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 2rem;
}
.form-card {
    background: white;
    max-width: 500px;
    width: 100%;
    padding: 2.5rem;
    border-radius: 32px;
    box-shadow: 0 30px 50px -20px #0a3144;
}
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}
.form-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 0.4rem;
    color: #0a3144;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1.5px solid #cbd5e1;
    border-radius: 30px;
    font-size: 1rem;
    background: #fafdff;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: #e56b2b;
    outline: none;
    box-shadow: 0 0 0 4px #ffd9c2;
}
.password-wrapper { position: relative; }
.toggle-pw {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #5d707f;
}
.error {
    color: #b13e3e;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: block;
}
.success {
    color: #1e7a5a;
    font-weight: 500;
    text-align: center;
    margin-top: 1rem;
}
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #0a3144;
    color: white;
    padding: 1rem 2rem;
    border-radius: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: 0.3s;
    z-index: 999;
}
.toast.hidden { opacity: 0; pointer-events: none; }

/* service cards */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(10,49,68,0.08);
    transition: 0.3s ease;
    border-left: 4px solid #e56b2b;
}
.service-card:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 35px rgba(229,107,43,0.15);
}
.service-card h3 {
    color: #0a3144;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}
.service-card p {
    color: #5d707f;
    font-size: 0.95rem;
}

/* checkbox styling */
.checkbox-group { margin-bottom: 1.5rem; }
.checkbox-label {
    display: flex;
    align-items: center;
    font-weight: 400;
    color: #5d707f;
    cursor: pointer;
    font-size: 0.95rem;
}
.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 0.8rem;
    cursor: pointer;
    accent-color: #e56b2b;
}
.checkbox-label a {
    color: #e56b2b;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.2s;
}
.checkbox-label a:hover {
    border-bottom-color: #e56b2b;
}

/* mobile */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        padding: 2rem 0;
        box-shadow: 0 20px 30px rgba(0,0,0,0.1);
        transition: 0.4s;
        gap: 1rem;
    }
    .nav-menu.active { left: 0; }
    .hamburger { display: flex; }
    .hero { flex-direction: column; text-align: center; }
    .hero-content h1 { font-size: 2.5rem; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}
