:root {
    --primary: #0b3a5c;
    --accent: #1f9cff;
    --light: #f4f6f8;
    --dark: #1f2933;
    --white: #ffffff;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.header {
    background: var(--white);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
}

nav a:hover::after {
    width: 100%;
}

/* BUTTONS */
.btn {
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(31,156,255,0.4);
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--primary), #09283f);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 40px;
    animation: fadeDown 0.8s ease forwards;
}

.hero-content p {
    margin-top: 12px;
    animation: fadeDown 1s ease forwards;
}

.tracking-box {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    animation: fadeUp 1.2s ease forwards;
}

.tracking-box input {
    padding: 14px;
    width: 280px;
    border-radius: 6px;
    border: none;
}

.tracking-box input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(31,156,255,0.25);
}

.tracking-box button {
    padding: 14px 24px;
    border-radius: 6px;
    border: none;
    background: var(--accent);
    color: var(--white);
    cursor: pointer;
}

.tracking-box button:hover {
    transform: translateY(-2px);
}

/* SECTIONS */
.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.light {
    background: var(--light);
}

/* Header logo */
.logo img {
    height: 80px;
    width: auto;
}

/* Footer logo */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    height: 80px;
    width: auto;
}


/* MAP */
.map-placeholder {
    margin-top: 40px;
    text-align: center;
}

.map-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.map-placeholder::after {
    content: "";
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    animation: pulse 2s infinite;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

/* CARDS */
.card {
    background: var(--white);
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    margin-bottom: 16px;
}


.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

.card:hover::before {
    width: 100%;
}

.card:hover {
    transform: translateY(-8px);
}

/* TESTIMONIALS */
.testimonial {
    background: var(--white);
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.testimonial:hover {
    transform: scale(1.03);
}

.stars {
    color: gold;
    margin-bottom: 10px;
}

/* FAQ */
.faq p {
    margin-bottom: 16px;
}

/* FAQ Accordion */
.faq {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: #c62828;
}


.faq-answer p {
    padding: 0 0 20px;
    color: #555;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

.icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}


/* CTA */
.cta {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

/* FOOTER */
.footer {
    background: #0f172a;
    color: var(--white);
    text-align: center;
    padding: 30px 0;
}

/* ANIMATIONS */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(31,156,255,0.6); }
    70% { box-shadow: 0 0 0 20px rgba(31,156,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(31,156,255,0); }
}
