/* =========================
   BASE RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: #1f2937;
    letter-spacing: 0.2px;

    /* soft maritime grey-blue base */
    background: linear-gradient(
        180deg,
        #d9e6f2 0%,
        #eef3f8 50%,
        #ffffff 100%
    );
}

/* =========================
   NAVBAR
========================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;

    background: #0b1b3a; /* navy */
    color: white;
}

.navbar a {
    color: #ffd700;
    margin-left: 15px;
    text-decoration: none;
    font-weight: 500;
}

.navbar a:hover {
    color: white;
}

/* =========================
   HERO (MARITIME COVER)
========================= */
.hero {
    position: relative;
    min-height: 650px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 80px 60px;

    /* 👇 IMAGE FIRST */
    background-image: url("../images/container-ship.JPG");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
}

/* 👇 DARK MARITIME OVERLAY (35% like you wanted) */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(11, 27, 58, 0.35);

    z-index: 1;
}

/* KEEP TEXT ABOVE OVERLAY */
.hero-text,
.hero-card {
    position: relative;
    z-index: 2;
}
.hero h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    max-width: 700px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 650px;
    margin-top: 10px;
}

/* HERO BUTTONS */
.hero-buttons a {
    display: inline-block;
    margin-right: 10px;
    margin-top: 15px;

    padding: 10px 15px;
    border-radius: 6px;

    background: #ff7a00;
    color: white;

    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

.hero-buttons a:hover {
    background: #e96d00;
}

/* HERO IMAGES */
.hero-card img {
    width: 140px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* =========================
   SECTIONS (CLEAN FLOW)
========================= */
.section {
    padding: 100px 60px;
}

/* alternating background */
.section:nth-of-type(odd) {
    background: rgba(11,27,58,0.05);
}

.section:nth-of-type(even) {
    background: #ffffff;
}

/* headings */
h2 {
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
}

h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #0b1b3a;
    margin-top: 8px;
}

/* =========================
   GRID + CARDS
========================= */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.card {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;

    border: 1px solid rgba(140,150,165,0.2);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);

    transition: 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.card p {
    line-height: 1.6;
}

/* =========================
   BUTTONS (GLOBAL)
========================= */
button {
    padding: 10px 14px;
    border: none;
    cursor: pointer;
    border-radius: 6px;

    background: #ff7a00;
    color: white;

    font-weight: bold;
    text-transform: uppercase;
}

button:hover {
    background: #e96d00;
}

/* =========================
   INPUTS
========================= */
input, textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;

    border: 1px solid #ccc;
    border-radius: 6px;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #0b1b3a;
    box-shadow: 0 0 0 3px rgba(11,27,58,0.15);
}

/* =========================
   TRACK + CONTACT SECTIONS
========================= */
#track,
#contact {
    background: #2f3947;
    color: white;
    padding: 80px 60px;
}

#track h2,
#contact h2 {
    color: white;
}

/* inputs in dark sections */
#track input,
#contact input,
#contact textarea {
    background: #3b4656;
    color: white;
    border: 1px solid #566175;
}

#track input::placeholder,
#contact input::placeholder,
#contact textarea::placeholder {
    color: #cbd5e1;
}

/* =========================
   VIBER
========================= */
.viber a {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 12px;
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

/* =========================
   STATS SECTION
========================= */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-box {
    padding: 30px;
    background: white;
    border-radius: 12px;
}

.stat-box h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* =========================
   FOOTER
========================= */
footer {
    background: #0b1b3a;
    color: white;

    text-align: center;
    padding: 30px 20px;

    border-top: 4px solid #ffd700;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }
}
.timeline-step {
    padding: 12px;
    margin: 10px 0;
    border-left: 4px solid #007bff;
    padding-left: 14px;
    background: #f2f4f8;   /* light grey background */
    border-radius: 8px;
    color: #111;           /* dark text so it's visible */
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.timeline-step strong {
    color: #000;
}
.timeline-step:hover {
    transform: translateX(3px);
    transition: 0.2s ease;
    border-left-color: #28a745;
}
#trackResult {
    font-family: Arial, sans-serif;
    color: #111;
}

#trackResult h3 {
    margin-bottom: 5px;
}

.timeline-step {
    padding: 12px;
    margin: 10px 0;
    border-left: 5px solid #007bff;
    background: #f4f6f9;
    border-radius: 8px;
    color: #111;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.timeline-step strong {
    color: #000;
}

.timeline-step small {
    color: #555;
}
/* ===============================
   TRACKING RESULT STYLING
=============================== */

#trackResult {
    font-family: Arial, sans-serif;
    color: #111;
    margin-top: 20px;
    line-height: 1.5;
}

/* Status header */
#trackResult h3 {
    margin-bottom: 10px;
    color: #0b3d91;
}

/* Timeline container */
.timeline-step {
    padding: 14px 16px;
    margin: 12px 0;
    border-left: 5px solid #0b3d91;
    background: #f4f6fa;
    border-radius: 10px;
    color: #111;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}

.timeline-step:hover {
    transform: translateX(5px);
}

/* Timeline text */
.timeline-step strong {
    display: block;
    font-size: 15px;
    color: #000;
}

.timeline-step small {
    color: #555;
    font-size: 12px;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #0b1f3a;
    color: white;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.navbar nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

.navbar nav a:hover {
    color: #00b4ff;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
}

.card {
    padding: 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.card p {
    line-height: 1.5;
    color: #555;
}
.footer {
    text-align: center;
    padding: 25px;
    background: #0b1f3a;
    color: white;
    font-size: 14px;
    letter-spacing: 0.5px;
}