﻿
:root {
    --brand: #0d6efd;
    --brand2: #0aa2c0;
    --ink: #0b1220;
    --muted: #475569;
    --soft: #f5f7fb;
    --card: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 10px 28px rgba(2,6,23,.08);
    --radius: 18px;
}

body {
    margin: 0;
    padding-top: 72px;
    background: var(--soft);
    color: var(--ink);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* ================= NAV ================= */
.nav-glass {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.brand-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    letter-spacing: .04em;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    box-shadow: 0 10px 22px rgba(13,110,253,.25);
    flex: 0 0 auto;
}

.navbar-brand {
    font-weight: 900;
    letter-spacing: .02em;
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar-brand span{
    border:2px solid #000000;
    text-transform:uppercase;
    padding:5px;
}

.navbar-nav .nav-link {
    font-weight: 700;
    color: var(--ink) !important;
    font-size:12px;
}

.pill-cta {
    border-radius: 999px;
    padding: .55rem 1rem;
    font-weight: 900;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    background: radial-gradient(900px 400px at 10% 20%, rgba(13,110,253,.35), transparent 55%), radial-gradient(900px 400px at 90% 20%, rgba(10,162,192,.35), transparent 55%), linear-gradient(180deg, #0b1220 0%, #0b1220 45%, transparent 45%);
}

.hero-inner {
    padding: 44px 0 28px;
}

.hero-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 24px;
    padding: 26px;
    color: #fff;
    box-shadow: 0 18px 50px rgba(0,0,0,.25);
}

.hero h1 {
    font-weight: 950;
    letter-spacing: -.02em;
    line-height: 1.05;
    margin: 0 0 10px;
}

.hero p {
    margin: 0 0 14px;
    color: rgba(255,255,255,.82);
    font-weight: 600;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    white-space: nowrap;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.btn-hero {
    border-radius: 14px;
    font-weight: 900;
    padding: 12px 16px;
    box-shadow: 0 12px 30px rgba(13,110,253,.25);
}

.btn-ghost {
    border-radius: 14px;
    font-weight: 900;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.06);
    color: #fff;
}

.hero-image {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 18px 50px rgba(0,0,0,.25);
    background: #111827;
    min-height: 280px;
    /* background-image:url("images/packers.jpg"); */
    background-size: cover;
    background-position: center;
    position: relative;
}

    .hero-image:after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(11,18,32,.75), rgba(11,18,32,.15));
    }

/* ================= SECTIONS ================= */
.section {
    padding: 16px 0;
}

.section-title {
    font-weight: 950;
    letter-spacing: -.01em;
    margin: 0 0 8px;
}

.section-sub {
    color: var(--muted);
    font-weight: 650;
    margin: 0 0 18px;
}

.card-soft {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
    height: 100%;
}

.icon-bubble {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(13,110,253,.12), rgba(10,162,192,.12));
    border: 1px solid rgba(13,110,253,.18);
    font-weight: 950;
    color: var(--ink);
}

.service-title {
    font-weight: 900;
    margin: 12px 0 6px;
}

.mini {
    color: var(--muted);
    font-weight: 650;
    margin: 0;
}

.hr-soft {
    border-top: 1px solid var(--border);
    opacity: 1;
}

.step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.step-num {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    color: #fff;
    font-weight: 950;
    box-shadow: 0 10px 20px rgba(13,110,253,.25);
    flex: 0 0 auto;
}

.quote {
    background: linear-gradient(90deg, rgba(13,110,253,.10), rgba(10,162,192,.10));
    border: 1px solid rgba(13,110,253,.15);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

    .quote h4 {
        margin: 0 0 4px;
        font-weight: 950;
    }

    .quote p {
        margin: 0;
        color: var(--muted);
        font-weight: 700;
    }

.footer {
    margin-top: 24px;
    background: #0b1220;
    color: #fff;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
}

    .footer a {
        color: #fff;
        text-decoration: none;
        font-weight: 700;
    }

        .footer a:hover {
            text-decoration: underline;
        }

.small-muted {
    color: rgba(255,255,255,.75);
    font-weight: 650;
}

@media(max-width:576px) {
    body {
        padding-top: 68px;
    }

    .hero-inner {
        padding: 34px 0 18px;
    }

    .hero h1 {
        font-size: 28px;
    }
}

/* ================= SERVICE STRIP (3 TILES) ================= */
.service-strip {
    background: linear-gradient(90deg, #0d6efd, #0aa2c0);
    border-radius: 22px;
    padding: 28px 22px;
    box-shadow: 0 18px 45px rgba(2,6,23,.10);
    overflow: hidden;
}

.service-tile {
    border-radius: 18px;
    padding: 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(2,6,23,.08);
    box-shadow: 0 12px 28px rgba(2,6,23,.08);
}

    .service-tile.light {
        background: #fde68a;
    }

    .service-tile.dark {
        background: #334b8a;
        color: #fff;
        border-color: rgba(255,255,255,.12);
    }

    .service-tile h3 {
        margin: 0 0 14px;
        font-weight: 950;
        letter-spacing: -0.01em;
    }

    .service-tile .btn {
        width: fit-content;
        border-radius: 12px;
        font-weight: 900;
        padding: 10px 14px;
    }

@media(max-width:576px) {
    .service-strip {
        padding: 18px 14px;
    }

    .service-tile {
        padding: 18px;
    }

        .service-tile h3 {
            font-size: 20px;
        }
}
/* ================= HERO BANNER ================= */
.hero-banner {
    position: relative;
    background: url("images/advertisement_Test.html") center center / cover no-repeat;
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    overflow: hidden;
}

    .hero-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.55);
    }

.hero-banner-content {
    position: relative;
    z-index: 2;
    background: rgba(30,20,18,0.90);
    padding: 40px 50px;
    border-radius: 12px;
    text-align: center;
    width: 90%;
    max-width: 520px;
    color: #ffffff;
}

.hero-book-btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    background: #5dade2;
    border-radius: 12px;
    text-decoration: none;
    transition: transform .2s ease, opacity .2s ease;
}

    .hero-book-btn:hover {
        opacity: .95;
        transform: translateY(-2px);
    }

/* Mobile hero */
@media(max-width:576px) {
    .hero-banner {
        min-height: 320px;
    }

    .hero-banner-content {
        padding: 28px 24px;
    }

        .hero-banner-content h1 {
            font-size: 22px;
        }
}
/* ================= FLAG SECTION ================= */
.flag-section {
    display: flex;
    justify-content: center;
    margin: 24px 0 10px;
}

    .flag-section img {
        width: 100%;
        max-width: 1200px;
        controls banner width height: auto;
        border-radius: 2px;
        box-shadow: 0 18px 40px rgba(2,6,23,.15);
        object-fit: cover;
    }

/* Mobile adjustment */
@media(max-width:576px) {
    .flag-section img {
        height: 90px;
    }
}


.services-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.section-title {
    font-weight: 700;
    font-size: 32px;
}

.section-subtitle {
    color: #6c757d;
}

.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }

.dark-card {
    background: linear-gradient(135deg, #212529, #343a40);
    color: #ffffff;
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    margin-bottom: 20px;
    color: inherit;
}


.how-section {
    padding: 70px 0;
    background: #f9fafc;
}

.section-title {
    font-weight: 700;
    font-size: 32px;
}

.section-sub {
    color: #6c757d;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: auto;
}

    .timeline::before {
        content: "";
        position: absolute;
        left: 20px;
        top: 0;
        height: 100%;
        width: 3px;
        background: #0d6efd;
    }

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.timeline-icon {
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

    .timeline-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

.cta-box {
    background: linear-gradient(135deg, #0d6efd, #0056d2);
    color: #fff;
    padding: 35px;
    border-radius: 16px;
}

    .cta-box p {
        opacity: 0.9;
    }


.packing-section {
    padding: 70px 0;
    background: #f4f7fb;
}

.section-title {
    font-weight: 700;
    font-size: 32px;
}

.section-sub {
    color: #6c757d;
    max-width: 600px;
    margin: auto;
}

.packing-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

    .packing-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    }

.packing-icon {
    font-size: 42px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #0d6efd, #0056d2);
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.packing-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.packing-card p {
    font-size: 14px;
    color: #666;
}

.packing-card ul {
    text-align: left;
    margin-top: 15px;
    padding-left: 18px;
    font-size: 14px;
}

    .packing-card ul li {
        margin-bottom: 6px;
    }

.packing-cta {
    background: linear-gradient(135deg, #0d6efd, #003d99);
    color: #fff;
    padding: 40px;
    border-radius: 20px;
}

    .packing-cta p {
        opacity: 0.9;
    }





/* Rosmerta box */
.rosmerta-box {
    border: 1.5px solid #ccc;
    border-radius: 4px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 7px;
}

    .rosmerta-box .r-circle {
        width: 28px;
        height: 28px;
        background: #c0392b;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: 800;
        font-size: 13px;
    }

    .rosmerta-box .r-texts .r-name {
        font-size: 12px;
        font-weight: 800;
        color: #c0392b;
        line-height: 1.2;
    }

    .rosmerta-box .r-texts .r-sub {
        font-size: 7px;
        color: #777;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

.footer-logos {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    padding: 16px 30px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.fl-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.fl-name {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.fl-sub {
    font-size: 8px;
    color: #777;
    letter-spacing: 1px;
    text-transform: uppercase;
}
