* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
    background-color: #E5E4E2;
    color: #333;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    font-weight: 300;
}

body.menu-open {
    overflow: hidden;
}

#menuOverlay {
    position: fixed;
    inset: 0;
    background: rgba(9, 14, 24, 0.24);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
}

#menuOverlay.active {
    opacity: 1;
    pointer-events: auto;
}

nav {
    background-color: transparent;
    box-shadow: none;
    padding: 0.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
    width: 100%;
    will-change: transform, background-color, box-shadow;
}

nav.scrolled {
    background-color: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.navbar-logo {
    height: clamp(140px, 14vw, 220px);
    width: auto;
    display: flex;
    align-items: center;
    transition: height 0.25s ease;
    flex-shrink: 0;
    text-decoration: none;
}

nav.scrolled .navbar-logo {
    height: clamp(100px, 10vw, 160px);
}

.navbar-logo img {
    height: 100%;
    width: auto;
    max-width: 100%;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.nav-links a,
.footer-links a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after,
.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #333;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.footer-links a:hover::after {
    width: 100%;
}

.nav-buttons,
.mobile-bottom {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.mobile-bottom {
    display: none;
}

.nav-btn {
    padding: 0.7rem 1.5rem;
    border: 1px solid #333;
    border-radius: 24px;
    background: transparent;
    color: #333;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 108px;
}

.nav-btn.btn-primary {
    background: #006AC2;
    border-color: #006AC2;
    color: #ffffff;
}

.nav-btn.btn-primary:hover {
    background: #00579a;
    border-color: #00579a;
    box-shadow: 0 8px 20px rgba(0, 106, 194, 0.2);
    color: #ffffff;
}

.nav-btn.btn-secondary {
    background: #002660;
    border-color: #002660;
    color: #ffffff;
}

.nav-btn.btn-secondary:hover {
    background: #001d4d;
    border-color: #000a1e;
    box-shadow: 0 8px 20px rgba(0, 38, 96, 0.2);
    color: #ffffff;
}

.nav-buttons a[href="login.html"],
.mobile-bottom a[href="login.html"] {
    background: #006AC2;
    border-color: #006AC2;
    color: #ffffff;
}

.nav-buttons a[href="register.html"],
.mobile-bottom a[href="register.html"] {
    background: #002660;
    border-color: #002660;
    color: #ffffff;
}

.nav-buttons a[href="login.html"]:hover,
.mobile-bottom a[href="login.html"]:hover,
.nav-buttons a[href="register.html"]:hover,
.mobile-bottom a[href="register.html"]:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hamburger {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.page-container {
    flex: 1;
    width: 100%;
    max-width: 1000px;
    padding: 60px 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.booking-page {
    align-items: stretch;
}

.booking-hero {
    width: 100%;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(51, 51, 51, 0.16);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(0, 106, 194, 0.1);
    color: #006AC2;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.booking-copy .page-title {
    margin-bottom: 1rem;
    align-self: stretch;
    font-size: 24px;
    letter-spacing: -0.02em;
    color: #333;
    font-weight: 700;
}

.booking-description {
    margin: 0 0 1.5rem;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 700px;
}

.booking-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-title {
    align-self: flex-start;
    font-size: 24px;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
    color: #333;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.access-warning {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(51, 51, 51, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.access-warning p {
    margin: 0;
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
}

.access-warning a {
    color: #1f3c88;
    font-weight: 600;
    text-decoration: none;
}

.under-construction {
    font-size: 1.2rem;
    margin: auto 0;
    color: #666;
    font-weight: 700;
    letter-spacing: 0.05em;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    text-align: center;
}

.company-page {
    align-items: stretch;
    gap: 1.5rem;
}

.company-hero {
    width: 100%;
    padding: 2.25rem;
    border-radius: 24px;
    border: 1px solid rgba(51, 51, 51, 0.14);
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
}

.company-subtitle {
    margin: 0.8rem 0 1rem;
    color: #444;
    font-size: 1.16rem;
    font-weight: 600;
    line-height: 1.6;
}

.company-lead {
    margin: 0 0 1.5rem;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.9;
    font-weight: 300;
}

.company-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.highlight-card {
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 106, 194, 0.12), rgba(1, 16, 53, 0.08));
    border: 1px solid rgba(0, 106, 194, 0.15);
}

.highlight-card h3 {
    margin-bottom: 0.35rem;
    font-size: 1rem;
    color: #333;
}

.highlight-card p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.company-card {
    padding: 1.35rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(51, 51, 51, 0.12);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.company-card h2 {
    margin-bottom: 0.7rem;
    color: #333;
    font-size: 1.12rem;
    font-weight: 700;
}

.company-card p,
.company-card li {
    color: #555;
    font-size: 0.97rem;
    line-height: 1.75;
}

.company-card ul {
    margin: 0.75rem 0 0;
    padding-left: 1.1rem;
}

.company-card li + li {
    margin-top: 0.45rem;
}

.company-quote {
    padding: 1.3rem 1.4rem;
    border-left: 4px solid #006AC2;
    border-radius: 16px;
    background: rgba(0, 106, 194, 0.07);
    color: #333;
    font-size: 1rem;
    line-height: 1.8;
}

.policy-page {
    align-items: stretch;
}

.policy-page .page-title {
    margin-bottom: 1.5rem;
}

.policy-content {
    width: 100%;
    color: #555;
    font-size: 0.98rem;
    line-height: 1.75;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.policy-content p + p {
    margin-top: 1rem;
}

.policy-effective-date {
    color: #333;
    font-weight: 600;
}

.policy-section {
    margin-top: 2rem;
}

.policy-section h2,
.policy-section h3 {
    color: #333;
    font-weight: 700;
    line-height: 1.35;
}

.policy-section h2 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.policy-section h3 {
    margin: 1.25rem 0 0.5rem;
    font-size: 1rem;
}

.policy-section ul {
    margin: 1rem 0 0;
    padding-left: 1.25rem;
}

.policy-section li {
    margin-bottom: 0.75rem;
}

.whistleblower-page {
    align-items: stretch;
    gap: 2rem;
}

.whistleblower-intro .page-title {
    margin-bottom: 1rem;
}

.whistleblower-intro p,
.whistleblower-info p,
.method-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

.whistleblower-intro p + p,
.whistleblower-info p + p {
    margin-top: 0.85rem;
}

.whistleblower-note {
    font-weight: 500;
}

.whistleblower-methods h2,
.whistleblower-info h2,
.whistleblower-form h2 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.15rem;
    font-weight: 700;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.method-card {
    border: 1px solid rgba(51, 51, 51, 0.18);
    border-radius: 8px;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.28);
}

.method-card h3 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1rem;
    font-weight: 700;
}

.whistleblower-form {
    width: 100%;
    border: 1px solid rgba(51, 51, 51, 0.18);
    border-radius: 8px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.38);
}

.full-field {
    margin-top: 1.2rem;
}

.form-field textarea {
    width: 100%;
    min-height: 130px;
    resize: vertical;
    border: 1px solid rgba(51, 51, 51, 0.35);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.72);
    color: #333;
    font: inherit;
    padding: 0.7rem 0.85rem;
}

.form-field textarea:focus {
    border-color: #333;
    box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.12);
    outline: 0;
}

.form-field textarea::placeholder {
    color: rgba(51, 51, 51, 0.58);
    opacity: 1;
}

.reporter-fieldset {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(51, 51, 51, 0.18);
    border-radius: 8px;
}

.reporter-fieldset legend {
    padding: 0 0.35rem;
    color: #333;
    font-size: 1rem;
    font-weight: 700;
}

.reporter-fieldset .checkbox-field {
    margin-top: 0;
}

.schedules-page {
    align-items: stretch;
    gap: 1.75rem;
}

.schedules-intro .page-title {
    margin-bottom: 1rem;
}

.schedules-intro p,
.schedule-form-header p,
.schedule-results-header p,
.tool-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

.schedule-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(51, 51, 51, 0.18);
    overflow-x: auto;
}

.schedule-tab {
    padding: 0.85rem 1rem;
    color: #555;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.schedule-tab.active,
.schedule-tab:hover {
    color: #333;
    border-bottom-color: #333;
}

.schedule-search-form,
.schedule-results {
    width: 100%;
    border: 1px solid rgba(51, 51, 51, 0.18);
    border-radius: 8px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.38);
}

.schedule-form-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.schedule-form-header h2,
.schedule-tools h2,
.schedule-results-header h2 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.15rem;
    font-weight: 700;
}

.schedule-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1.5rem;
}

.schedule-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

..secondary-action {
    min-height: 48px;
    padding: 0.8rem 1.6rem;
    border: 1px solid #002660;
    border-radius: 24px;
    background: #002660;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.secondary-action:hover {
    background: #001d4d;
    box-shadow: 0 8px 18px rgba(0, 38, 96, 0.22);
    transform: translateY(-1px);
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.tool-card {
    border: 1px solid rgba(51, 51, 51, 0.18);
    border-radius: 8px;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.28);
}

.tool-card h3 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1rem;
    font-weight: 700;
}

.tool-card .form-field {
    margin-top: 1rem;
}

.schedule-table-wrap {
    width: 100%;
    margin-top: 1.25rem;
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    color: #333;
    font-size: 0.92rem;
}

.schedule-table th,
.schedule-table td {
    padding: 0.9rem;
    border-bottom: 1px solid rgba(51, 51, 51, 0.14);
    text-align: left;
    vertical-align: top;
}

.schedule-table th {
    background: rgba(255, 255, 255, 0.45);
    font-weight: 700;
}

.schedule-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.28);
}

.tracking-page {
    align-items: stretch;
    gap: 1.75rem;
}

.tracking-intro .page-title {
    margin-bottom: 1rem;
}

.tracking-intro p,
.tracking-form-header p,
.tracking-result-header p,
.tracking-help-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

.tracking-search-form,
.tracking-result {
    width: 100%;
    border: 1px solid rgba(51, 51, 51, 0.18);
    border-radius: 8px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.38);
}

.tracking-form-header {
    margin-bottom: 1.5rem;
}

/* Cookie consent banner */
.cookie-banner {
    position: fixed;
    z-index: 1200;
    right: 24px;
    left: auto;
    bottom: 24px;
    width: auto;
    max-width: 420px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(51,51,51,0.12);
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
    border-radius: 999px;
    padding: 0.6rem 0.9rem;
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.cookie-banner .cookie-copy {
    display: none;
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    margin-left: 0;
}

.cookie-btn {
    min-width: 130px;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cookie-btn.reject {
    background: transparent;
    color: #333;
    border: 1px solid rgba(51,51,51,0.12);
}

.cookie-btn.accept-primary {
    background: #006AC2;
    border-color: #006AC2;
    color: #fff;
}

.cookie-btn.accept-secondary {
    background: #002660;
    border-color: #002660;
    color: #fff;
}

.cookie-banner a.cookie-learn {
    display: inline-block;
    margin-top: 0.75rem;
    color: #1f3c88;
    text-decoration: underline;
    font-weight: 600;
}

@media (max-width: 600px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: calc(100% - 24px);
        border-radius: 10px;
        padding: 0.85rem;
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner .cookie-copy {
        display: block;
    }

    .cookie-actions {
        justify-content: space-between;
        margin-left: 0;
        flex-wrap: wrap;
    }

    .cookie-btn { width: 48%; }
    .cookie-btn.reject { width: 48%; }
}

/* Mobile menu bottom logo */
.mobile-menu-logo-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 0 0;
        width: 100%;
    }

.mobile-menu-logo {
        height: 44px;
        width: auto;
        display: block;
    }

@media (max-width: 900px) {
    .mobile-menu-logo-wrap { display: flex; }
    .navbar-logo { height: clamp(72px, 12vw, 120px); }
}

/* Ensure injected logo stays at bottom of the mobile menu */
.nav-links .mobile-menu-logo-wrap {
    margin-top: auto;
    padding-bottom: 12px;
}



.tracking-form-header h2,
.tracking-help h2,
.tracking-result-header h2 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.15rem;
    font-weight: 700;
}

.tracking-type-fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

.tracking-type-fieldset legend {
    margin-bottom: 0.75rem;
    color: #333;
    font-size: 0.95rem;
    font-weight: 600;
}

.tracking-type-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.tracking-type-option {
    position: relative;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 106, 194, 0.35);
    border-radius: 999px;
    background: rgba(0, 106, 194, 0.08);
    color: #002660;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tracking-type-option:hover {
    background: rgba(0, 106, 194, 0.18);
}

.tracking-type-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tracking-type-option:has(input:checked) {
    border-color: #002660;
    background: #002660;
    color: #ffffff;
}

.tracking-filter-grid {
    margin-top: 1.2rem;
}

.tracking-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.tracking-help-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.tracking-help-card {
    border: 1px solid rgba(51, 51, 51, 0.18);
    border-radius: 8px;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.28);
}

.tracking-help-card h3 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1rem;
    font-weight: 700;
}

.tracking-result-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tracking-status {
    flex: 0 0 auto;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: #333;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.tracking-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.tracking-summary div {
    border: 1px solid rgba(51, 51, 51, 0.14);
    border-radius: 8px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.3);
}

.tracking-summary span {
    display: block;
    margin-bottom: 0.35rem;
    color: #666;
    font-size: 0.8rem;
    font-weight: 500;
}

.tracking-summary strong {
    color: #333;
    font-size: 0.95rem;
    font-weight: 700;
}

.tracking-timeline {
    list-style: none;
}

.tracking-timeline li {
    position: relative;
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 0.8rem;
    padding-bottom: 1.25rem;
}

.tracking-timeline li::before {
    content: '';
    position: absolute;
    top: 15px;
    bottom: -2px;
    left: 7px;
    width: 2px;
    background: rgba(51, 51, 51, 0.18);
}

.tracking-timeline li:last-child {
    padding-bottom: 0;
}

.tracking-timeline li:last-child::before {
    display: none;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    margin-top: 0.2rem;
    border: 2px solid rgba(51, 51, 51, 0.35);
    border-radius: 50%;
    background: #E5E4E2;
    z-index: 1;
}

.tracking-timeline li.completed .timeline-dot,
.tracking-timeline li.active .timeline-dot {
    border-color: #333;
    background: #333;
}

.tracking-timeline h3 {
    margin-bottom: 0.25rem;
    color: #333;
    font-size: 1rem;
    font-weight: 700;
}

.tracking-timeline p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.products-page {
    align-items: stretch;
    gap: 2rem;
}

.products-hero .page-title {
    max-width: 760px;
    margin-bottom: 1rem;
}

.products-eyebrow {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.products-hero p:not(.products-eyebrow),
.quote-panel p,
.product-card p,
.benefit-item p,
.value-services p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

.products-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.products-primary-action,
.products-secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.8rem 1.8rem;
    border-radius: 24px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.products-primary-action {
    background: #006AC2;
    border: 1px solid #006AC2;
    color: #ffffff;
}

.products-primary-action:hover {
    background: #00579a;
    box-shadow: 0 10px 22px rgba(0, 106, 194, 0.2);
    transform: translateY(-1px);
}

.products-secondary-action {
    background: #002660;
    border: 1px solid #002660;
    color: #ffffff;
}

.products-secondary-action:hover {
    background: #001d4d;
    box-shadow: 0 10px 22px rgba(0, 38, 96, 0.22);
    transform: translateY(-1px);
}

.quote-panel,
.value-services {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
    gap: 1.5rem;
    align-items: center;
    border: 1px solid rgba(51, 51, 51, 0.18);
    border-radius: 8px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.38);
}

.quote-panel h2,
.product-services h2,
.product-benefits h2,
.value-services h2 {
    margin-bottom: 0.6rem;
    color: #333;
    font-size: 1.15rem;
    font-weight: 700;
}

.quote-mode-list,
.value-service-list {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.quote-mode-list a,
.value-service-list span {
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(51, 51, 51, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.quote-mode-list a:hover {
    background: #333;
    color: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.product-card,
.benefit-item {
    border: 1px solid rgba(51, 51, 51, 0.18);
    border-radius: 8px;
    padding: 1.35rem;
    background: rgba(255, 255, 255, 0.28);
}

.product-card span {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: #777;
    font-size: 0.85rem;
    font-weight: 700;
}

.product-card h3,
.benefit-item h3 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.05rem;
    font-weight: 700;
}

.product-card ul {
    margin-top: 1rem;
    padding-left: 1.1rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-card li {
    margin-bottom: 0.35rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.register-page {
    align-items: stretch;
    gap: 2rem;
}

.register-intro {
    width: 100%;
}

.register-intro .page-title {
    margin-bottom: 1rem;
}

.register-copy,
.register-login,
.required-note {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

.register-login {
    margin-top: 0.5rem;
}

.register-login a,
.checkbox-field a {
    color: #333;
    font-weight: 600;
}

.register-form {
    width: 100%;
    border: 1px solid rgba(51, 51, 51, 0.18);
    border-radius: 8px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.38);
}

.required-note {
    margin-bottom: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-field input,
.form-field select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(51, 51, 51, 0.35);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.72);
    color: #333;
    font: inherit;
    padding: 0.7rem 0.85rem;
}

.form-field input:focus,
.form-field select:focus {
    border-color: #333;
    box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.12);
    outline: 0;
}

.form-field input::placeholder {
    color: rgba(51, 51, 51, 0.58);
    opacity: 1;
}

.documents-section {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(51, 51, 51, 0.14);
}

.documents-section h2 {
    margin-bottom: 0.6rem;
    color: #333;
    font-size: 1.1rem;
    font-weight: 700;
}

.documents-section p {
    margin-bottom: 1.2rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

.form-field input[type="file"] {
    padding: 0.6rem 0.85rem;
}

.form-field input[type="file"]::file-selector-button {
    margin-right: 0.8rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid #333;
    border-radius: 20px;
    background: transparent;
    color: #333;
    cursor: pointer;
    font: inherit;
    font-size: 0.85rem;
}

.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.5rem 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.checkbox-field input {
    width: 18px;
    height: 18px;
    margin-top: 0.25rem;
    accent-color: #333;
    flex: 0 0 auto;
}

.submit-btn {
    min-height: 48px;
    padding: 0.8rem 1.8rem;
    border: 1px solid #006AC2;
    border-radius: 24px;
    background: #006AC2;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
    background: #00579a;
    color: #fff;
    box-shadow: 0 8px 18px rgba(0, 106, 194, 0.22);
    transform: translateY(-1px);
}

.auth-page {
    align-items: center;
}

.auth-panel {
    width: 100%;
    max-width: 560px;
}

.auth-panel .page-title {
    margin-bottom: 1rem;
}

.auth-copy {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.auth-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.remember-field {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #555;
    font-size: 0.95rem;
}

.remember-field input {
    width: 18px;
    height: 18px;
    accent-color: #333;
}

.forgot-link {
    color: #333;
    font-size: 0.95rem;
    font-weight: 600;
}

.auth-submit {
    width: 100%;
}

.auth-register {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(51, 51, 51, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.24);
}

.auth-register h2 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.1rem;
    font-weight: 700;
}

.auth-register p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.secondary-btn {
    min-height: 44px;
    padding: 0.7rem 1.5rem;
    border: 1px solid #333;
    border-radius: 24px;
    color: #333;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    padding: 20px;
    background-color: transparent;
    color: #666;
    font-size: 0.9rem;
    font-weight: 300;
}

footer p {
    margin: 0 auto 0.8rem;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.form-submit-success {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    background: rgba(2,108,194,0.08);
    color: #03366b;
    border: 1px solid rgba(2,108,194,0.12);
    border-radius: 8px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .navbar-container {
        padding: 1rem 1.5rem;
    }

    .navbar-logo {
        height: 220px;
    }

    nav.scrolled .navbar-logo {
        height: 160px;
    }

    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0.8rem 1.2rem;
        flex-wrap: nowrap;
    }

    .navbar-logo {
        height: 120px;
        min-width: fit-content;
    }

    nav.scrolled .navbar-logo {
        height: 100px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(88vw, 320px);
        min-height: 100dvh;
        background: rgba(255, 255, 255, 0.86);
        backdrop-filter: blur(16px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0.75rem;
        padding: 92px 20px 160px;
        transition: right 0.35s ease;
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
        border-left: 1px solid rgba(17, 24, 39, 0.08);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        font-size: 1rem;
        display: block;
        padding: 0.7rem 0;
    }

    .nav-buttons {
        display: none;
    }

    .mobile-bottom {
        display: flex;
        width: 100%;
        margin-top: 0.8rem;
        padding-top: 0.5rem;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-bottom .nav-btn {
        width: 100%;
    }

    /* mobile menu bottom logo */
    .mobile-menu-logo-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 0 0;
        width: 100%;
    }

    .mobile-menu-logo-link {
        display: inline-block;
        padding: 6px;
    }

    .mobile-menu-logo {
        height: 110px;
        width: auto;
        display: block;
        max-width: 180px;
    }

    .page-container {
        padding: 35px 15px;
    }

    .page-title {
        font-size: 20px;
    }

    .under-construction {
        font-size: 1rem;
    }

    .register-form {
        padding: 1.5rem;
    }

    .method-grid {
        grid-template-columns: 1fr;
    }

    .whistleblower-form {
        padding: 1.5rem;
    }

    .schedule-search-form,
    .schedule-results {
        padding: 1.5rem;
    }

    .schedule-options,
    .tool-grid {
        grid-template-columns: 1fr;
    }

    .tracking-search-form,
    .tracking-result {
        padding: 1.5rem;
    }

    .tracking-type-options,
    .tracking-help-grid,
    .tracking-summary {
        grid-template-columns: 1fr;
    }

    .tracking-result-header {
        flex-direction: column;
    }

    .quote-panel,
    .value-services,
    .product-grid,
    .benefit-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .navbar-container {
        padding: 0.6rem 1rem;
    }

    .navbar-logo {
        height: 96px;
    }

    nav.scrolled .navbar-logo {
        height: 78px;
    }

    .page-container {
        padding: 25px 12px;
    }

    .page-title {
        font-size: 18px;
    }

    .under-construction {
        font-size: 0.95rem;
    }

    .register-page {
        gap: 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .register-form {
        padding: 1.2rem;
    }

    .whistleblower-page {
        gap: 1.5rem;
    }

    .whistleblower-form,
    .reporter-fieldset {
        padding: 1.2rem;
    }

    .schedules-page {
        gap: 1.5rem;
    }

    .schedule-search-form,
    .schedule-results {
        padding: 1.2rem;
    }

    .schedule-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .secondary-action {
        width: 100%;
    }

    .tracking-page {
        gap: 1.5rem;
    }

    .tracking-search-form,
    .tracking-result {
        padding: 1.2rem;
    }

    .tracking-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .products-page {
        gap: 1.5rem;
    }

    .products-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .products-secondary-action {
        width: 100%;
    }

    .quote-panel,
    .value-services {
        padding: 1.2rem;
    }

    .submit-btn {
        width: 100%;
    }
}

@media (max-width: 380px) {
    .navbar-container {
        padding: 0.5rem 0.8rem;
    }

    .navbar-logo {
        height: 84px;
    }

    nav.scrolled .navbar-logo {
        height: 70px;
    }

    .page-container {
        padding: 20px 10px;
    }

    .page-title {
        font-size: 16px;
    }

    .under-construction {
        font-size: 0.9rem;
    }

    .register-copy,
    .register-login,
    .required-note,
    .auth-copy,
    .remember-field,
    .forgot-link,
    .auth-register p,
    .form-field,
    .checkbox-field,
    .whistleblower-intro p,
    .whistleblower-info p,
    .method-card p,
    .schedules-intro p,
    .schedule-form-header p,
    .schedule-results-header p,
    .tool-card p,
    .tracking-intro p,
    .tracking-form-header p,
    .tracking-result-header p,
    .tracking-help-card p,
    .tracking-timeline p,
    .products-hero p:not(.products-eyebrow),
    .quote-panel p,
    .product-card p,
    .benefit-item p,
    .value-services p {
        font-size: 0.9rem;
    }
}

/* Company page - mobile stacking and z-index fixes */
@media (max-width: 768px) {
    .company-highlights {
        grid-template-columns: 1fr;
        gap: 0.9rem;
        margin-top: 1rem;
    }

    .highlight-card {
        position: relative;
        z-index: 2;
        padding: 1rem;
        overflow: visible;
        word-break: break-word;
        -webkit-font-smoothing: antialiased;
    }

    .company-hero {
        position: relative;
        z-index: 1;
        overflow: visible;
    }

    .company-quote {
        margin-top: 1rem;
    }
}
