* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #eef3f5;
    overflow-x: hidden;
}

/* =========================
   HERO SECTION
========================= */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background-image: url("hero-banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* =========================
   NAVIGATION
========================= */

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 18px 7%;
    transition: all 0.3s ease;
}

.navbar {
    width: 100%;
    max-width: 1400px;
    height: 76px;
    margin: 0 auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(15, 32, 45, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition: all 0.3s ease;
}

.nav-wrapper.scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav-wrapper.scrolled .navbar {
    height: 68px;
    background: rgba(14, 32, 45, 0.82);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}


/* =========================
   LOGO
========================= */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    width: 43px;
    height: 43px;
    object-fit: contain;
}

.logo-text {
    color: #ffffff;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* =========================
   NAVIGATION LINKS
========================= */

.navlinks ul {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

/* =========================
   LOGIN BUTTON
========================= */

.login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 23px;
    border-radius: 13px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.25s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
}

/* =========================
   HERO CONTENT
========================= */

.hero-content {
    position: relative;
    z-index: 2;
    width: 50%;
    max-width: 750px;
    min-height: calc(100vh - 94px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 9%;
    padding-bottom: 70px;
}

/* =========================
   HERO BADGE
========================= */

.hero-badge {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    margin-bottom: 26px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #48d687;
    box-shadow: 0 0 0 4px rgba(72, 214, 135, 0.16);
}

/* =========================
   HERO HEADING
========================= */

.hero-content h1 {
    max-width: 700px;
    margin-bottom: 25px;
    color: #ffffff;
    font-size: clamp(3.5rem, 5vw, 5.8rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -3px;
}

.hero-content h1 span {
    display: block;
    color: #7ed8ed;
}

/* =========================
   HERO DESCRIPTION
========================= */

.hero-content p {
    max-width: 540px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.7;
}

/* =========================
   HERO BUTTONS
========================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-primary,
.hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 25px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.hero-primary {
    gap: 10px;
    background: #ffffff;
    color: #142434;
    border: 1px solid #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hero-primary:hover {
    transform: translateY(-3px);
    background: #eef9fc;
}

.hero-primary span {
    font-size: 20px;
    transition: transform 0.25s ease;
}

.hero-primary:hover span {
    transform: translateX(4px);
}

.hero-secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
}

/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-btn {
    display: none;
    width: 43px;
    height: 43px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.menu-btn span {
    width: 21px;
    height: 2px;
    border-radius: 5px;
    background: #ffffff;
}


.menu-btn span {
    transition:
        transform 0.25s ease,
        opacity 0.2s ease;
}

.menu-btn.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}



/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {
    .nav-wrapper {
        padding: 18px 5%;
    }

    .hero-content {
        width: 62%;
        padding-left: 8%;
    }

    .hero-content h1 {
        font-size: clamp(3.2rem, 6vw, 4.8rem);
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    .nav-wrapper {
        padding: 12px 4%;
    }

    .navbar {
        position: relative;
        height: 66px;
        padding: 0 16px;
        border-radius: 18px;
    }

    .logo img {
        width: 38px;
        height: 38px;
    }

    .logo-text {
        font-size: 20px;
    }

    .menu-btn {
        display: flex;
    }

    .navlinks {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        width: 100%;
        padding: 15px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 18px;
        background: rgba(10, 25, 40, 0.35);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .navlinks.active {
        display: block;
    }

    .navlinks ul {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .navlinks ul li {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 13px 15px;
    }

    .login-btn {
        width: 100%;
        margin-top: 5px;
        padding: 13px;
    }

    .hero {
        min-height: 100vh;
        background-position: 62% center;
    }

    .hero-content {
        width: 100%;
        min-height: calc(100vh - 90px);
        padding: 60px 8%;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 3.2rem;
        letter-spacing: -2px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-primary,
    .hero-secondary {
        width: 100%;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {
    .logo img {
        width: 34px;
        height: 34px;
    }

    .logo-text {
        font-size: 18px;
    }

    .hero-content {
        padding: 45px 7%;
    }

    .hero-content h1 {
        font-size: 2.7rem;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-badge {
        font-size: 12px;
    }
}

/* =========================
   HOW IT WORKS
========================= */

.how-it-works {
    width: 100%;
    padding: 120px 7%;
    background: #f4f7f8;
    color: #152536;
}

.how-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* SECTION HEADING */

.section-heading {
    max-width: 700px;
    margin-bottom: 70px;
}

.section-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #268f83;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-heading h2 {
    margin-bottom: 20px;
    color: #152536;
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -2px;
}

.section-heading h2 span {
    color: #268f83;
}

.section-heading p {
    max-width: 580px;
    color: #667481;
    font-size: 17px;
    line-height: 1.7;
}

/* STEPS */

.steps-container {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.step-card {
    position: relative;
    flex: 1;
    min-height: 320px;
    padding: 38px;
    background: #ffffff;
    border: 1px solid #e3e9eb;
    border-radius: 22px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(21, 37, 54, 0.1);
}

/* STEP NUMBER */

.step-number {
    margin-bottom: 35px;
    color: #aab6bd;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ICON */

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    margin-bottom: 28px;

    border-radius: 16px;

    background: #e7f4f1;
    color: #268f83;

    font-size: 25px;
    font-weight: 700;
}

/* CARD TEXT */

.step-card h3 {
    margin-bottom: 14px;
    color: #152536;
    font-size: 22px;
}

.step-card p {
    color: #687681;
    font-size: 15px;
    line-height: 1.7;
}

/* CONNECTING LINE */

.step-line {
    align-self: center;
    width: 45px;
    height: 1px;
    background: #b9c5ca;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .how-it-works {
        padding: 90px 6%;
    }

    .steps-container {
        flex-direction: column;
        gap: 20px;
    }

    .step-line {
        display: none;
    }

    .step-card {
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .how-it-works {
        padding: 75px 6%;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading h2 {
        font-size: 2.5rem;
    }

    .step-card {
        padding: 30px;
    }
}


/* =========================
   LIVE CITY IMPACT
========================= */

.city-impact {
    width: 100%;
    padding: 120px 7%;
    background: #ffffff;
}

.impact-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.impact-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 65px;
}

.impact-header > div {
    max-width: 700px;
}

.impact-header h2 {
    color: #152536;
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -2px;
}

.impact-header h2 span {
    color: #268f83;
}

.impact-header > p {
    max-width: 400px;
    color: #687681;
    font-size: 16px;
    line-height: 1.7;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.impact-card {
    min-height: 210px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #f5f8f8;
    border: 1px solid #e4eaeb;
    border-radius: 22px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(21, 37, 54, 0.08);
}

.impact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2f2ef;
    color: #268f83;
    border-radius: 14px;
    font-size: 24px;
    font-weight: 700;
}

.impact-data {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.impact-data span {
    color: #71808a;
    font-size: 14px;
    font-weight: 500;
}

.impact-data h3 {
    color: #152536;
    font-size: 2.8rem;
    line-height: 1;
    letter-spacing: -1.5px;
}

.highlight-card {
    background: #152f42;
    border-color: #152f42;
}

.highlight-card .impact-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #7ed8ed;
}

.highlight-card .impact-data span {
    color: rgba(255, 255, 255, 0.65);
}

.highlight-card .impact-data h3 {
    color: #ffffff;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-header {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .city-impact {
        padding: 80px 6%;
    }

    .impact-header {
        margin-bottom: 45px;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-card {
        min-height: 180px;
    }
}



/* =========================
   ISSUE CATEGORIES
========================= */

.issue-categories {
    width: 100%;
    padding: 120px 7%;
    background: #f4f7f8;
}

.categories-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.categories-heading {
    max-width: 750px;
    margin-bottom: 65px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.category-card {
    position: relative;
    min-height: 280px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e3e9eb;
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(21, 37, 54, 0.1);
}

.category-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #e5f3f1;
    color: #268f83;
    font-size: 25px;
    font-weight: 700;
}

.category-card h3 {
    margin-bottom: 13px;
    color: #152536;
    font-size: 20px;
}

.category-card p {
    color: #6c7982;
    font-size: 14px;
    line-height: 1.7;
}

.category-arrow {
    margin-top: auto;
    padding-top: 20px;
    color: #268f83;
    font-size: 24px;
    transition: transform 0.25s ease;
}

.category-card:hover .category-arrow {
    transform: translateX(7px);
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .issue-categories {
        padding: 90px 6%;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 230px;
    }
}



/* =========================
   CALL TO ACTION
========================= */

.cta-section {
    width: 100%;
    padding: 120px 7%;
    background: #ffffff;
}

.cta-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    min-height: 520px;
    margin: 0 auto;
    padding: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background: #152f42;
    border-radius: 32px;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.cta-label {
    display: inline-block;
    margin-bottom: 20px;
    color: #7ed8ed;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.cta-content h2 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 1.08;
    letter-spacing: -2.5px;
}

.cta-content h2 span {
    display: block;
    color: #7ed8ed;
}

.cta-content p {
    max-width: 570px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 17px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 25px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.cta-primary {
    gap: 10px;
    background: #ffffff;
    color: #152f42;
}

.cta-primary:hover {
    transform: translateY(-3px);
    background: #eaf7fa;
}

.cta-primary span {
    font-size: 20px;
}

.cta-secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.cta-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
}

/* CTA VISUAL */

.cta-visual {
    position: relative;
    width: 320px;
    height: 320px;
    flex-shrink: 0;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
}

.circle-one {
    width: 320px;
    height: 320px;
    top: 0;
    right: 0;
    border: 1px solid rgba(126, 216, 237, 0.2);
}

.circle-two {
    width: 230px;
    height: 230px;
    top: 45px;
    right: 45px;
    background: rgba(126, 216, 237, 0.08);
    border: 1px solid rgba(126, 216, 237, 0.15);
}

.cta-card {
    position: absolute;
    top: 105px;
    right: 0;
    width: 300px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cta-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 14px;
    background: #7ed8ed;
    color: #152f42;
    font-size: 23px;
    font-weight: 700;
}

.cta-card div:last-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cta-card span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

.cta-card strong {
    color: #ffffff;
    font-size: 16px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .cta-section {
        padding: 90px 6%;
    }

    .cta-container {
        min-height: auto;
        padding: 60px;
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-visual {
        align-self: center;
    }
}

@media (max-width: 600px) {
    .cta-section {
        padding: 75px 6%;
    }

    .cta-container {
        padding: 45px 28px;
        border-radius: 24px;
    }

    .cta-content h2 {
        font-size: 2.6rem;
    }

    .cta-buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
    }

    .cta-visual {
        width: 260px;
        height: 260px;
    }

    .circle-one {
        width: 260px;
        height: 260px;
    }

    .circle-two {
        width: 180px;
        height: 180px;
        top: 40px;
        right: 40px;
    }

    .cta-card {
        top: 85px;
        width: 250px;
    }
}


/* =========================
   FOOTER
========================= */

.footer {
    width: 100%;
    padding: 80px 7% 25px;
    background: #0e202d;
    color: #ffffff;
}

.footer-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 70px;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 100px;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.footer-logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.footer-logo span {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 15px;
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h3 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

.footer-column a {
    margin-bottom: 13px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease;
}

.footer-column a:hover {
    color: #7ed8ed;
}

.footer-text {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.7;
}

.footer-report-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #7ed8ed !important;
    font-weight: 600;
}

.footer-report-btn span {
    font-size: 18px;
    transition: transform 0.25s ease;
}

.footer-report-btn:hover span {
    transform: translateX(4px);
}

/* FOOTER BOTTOM */

.footer-bottom {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.42);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.42);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* =========================
   FOOTER RESPONSIVE
========================= */

@media (max-width: 1000px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .footer {
        padding: 65px 6% 25px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-logo img {
        width: 40px;
        height: 40px;
    }
}




/* =========================
   REPORT PAGE
========================= */

.report-nav-wrapper {
    background: #152f42;
}

.report-page {
    min-height: 100vh;
    background: #f4f7f8;
}

/* REPORT HEADER */

.report-header {
    padding: 190px 7% 100px;
    background: #152f42;
}

.report-header-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.report-header-content h1 {
    max-width: 750px;
    margin-bottom: 25px;
    color: #ffffff;
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: -3px;
}

.report-header-content h1 span {
    display: block;
    color: #7ed8ed;
}

.report-header-content p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .report-header {
        padding: 150px 7% 75px;
    }

    .report-header-content h1 {
        font-size: 3.2rem;
        letter-spacing: -2px;
    }
}



/* =========================
   REPORT FORM
========================= */

.report-form-section {
    padding: 90px 7% 120px;
    background: #f4f7f8;
}

.report-form-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.issue-form {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.8fr);
    gap: 30px;
    align-items: start;
}

/* LEFT FORM */

.form-main,
.sidebar-card {
    padding: 45px;
    background: #ffffff;
    border: 1px solid #e2e9eb;
    border-radius: 24px;
}

.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* FORM HEADER */

.form-section-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 35px;
}

.form-step {
    width: 42px;
    height: 42px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;
    background: #e5f3f1;
    color: #268f83;

    font-size: 13px;
    font-weight: 700;
}

.form-section-header h2 {
    margin-bottom: 6px;
    color: #152536;
    font-size: 22px;
}

.form-section-header p {
    color: #71808a;
    font-size: 14px;
    line-height: 1.5;
}

/* FORM FIELDS */

.form-group {
    margin-bottom: 28px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 10px;

    color: #263744;
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 17px;

    border: 1px solid #dce4e7;
    border-radius: 13px;

    outline: none;
    background: #fbfcfc;
    color: #263744;

    font-family: inherit;
    font-size: 15px;

    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #268f83;
    box-shadow: 0 0 0 4px rgba(38, 143, 131, 0.1);
}

.form-group textarea {
    min-height: 190px;
    resize: vertical;
    line-height: 1.6;
}

/* LOCATION BUTTON */

.location-btn {
    width: 100%;
    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border: 1px solid #cfe3df;
    border-radius: 13px;

    background: #f0f8f6;
    color: #268f83;

    font-size: 14px;
    font-weight: 600;
    cursor: pointer;

    transition: all 0.25s ease;
}

.location-btn:hover {
    background: #e2f2ef;
}

/* IMAGE UPLOAD */

.upload-area {
    width: 100%;
    min-height: 180px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 25px;

    border: 2px dashed #cfdadd;
    border-radius: 16px;

    background: #fafcfc;
    cursor: pointer;

    transition: all 0.25s ease;
}

.upload-area:hover {
    border-color: #268f83;
    background: #f3faf8;
}

.upload-area input {
    display: none;
}

.upload-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 12px;

    border-radius: 14px;

    background: #e5f3f1;
    color: #268f83;

    font-size: 25px;
    font-weight: 600;
}

.upload-area strong {
    margin-bottom: 6px;
    color: #263744;
    font-size: 15px;
}

.upload-area span {
    color: #84919a;
    font-size: 12px;
}

/* SUBMIT BUTTON */

.submit-issue-btn {
    width: 100%;
    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: none;
    border-radius: 15px;

    background: #152f42;
    color: #ffffff;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;
    transition: all 0.25s ease;
}

.submit-issue-btn:hover {
    transform: translateY(-3px);
    background: #1d4057;
    box-shadow: 0 12px 30px rgba(21, 47, 66, 0.2);
}

.submit-issue-btn span {
    font-size: 21px;
    transition: transform 0.25s ease;
}

.submit-issue-btn:hover span {
    transform: translateX(4px);
}

/* FORM NOTE */

.form-note {
    padding: 0 10px;
    color: #84919a;
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
}

/* =========================
   REPORT FORM RESPONSIVE
========================= */

@media (max-width: 900px) {
    .issue-form {
        grid-template-columns: 1fr;
    }

    .form-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .submit-issue-btn,
    .form-note {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .report-form-section {
        padding: 65px 6% 90px;
    }

    .form-main,
    .sidebar-card {
        padding: 30px 24px;
        border-radius: 20px;
    }

    .form-sidebar {
        display: flex;
    }

    .form-group textarea {
        min-height: 160px;
    }
}


/* =========================
   IMAGE PREVIEW
========================= */

.upload-area {
    position: relative;
    overflow: hidden;
}

.image-preview {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
}

.image-preview-name {
    max-width: 100%;
    overflow: hidden;
    color: #263744;
    font-size: 13px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.change-image-text {
    margin-top: 5px;
    color: #268f83 !important;
    font-size: 12px;
}



/* =========================
   TRACK ISSUE PAGE
========================= */

.track-page {
    position: relative;
    min-height: 100vh;
    padding: 150px 8% 100px;
    overflow: hidden;
}

.track-hero {
    max-width: 1200px;
    margin: 0 auto 70px;
    text-align: center;
}

.track-heading {
    max-width: 760px;
    margin: 0 auto 45px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    color: #b8c4d6;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.8);
}

.track-heading h1 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.08;
    letter-spacing: -2px;
}

.track-heading h1 span {
    color: #8fb5ff;
}

.track-heading p {
    max-width: 620px;
    margin: auto;
    color: #aeb8c8;
    font-size: 1.05rem;
    line-height: 1.7;
}


/* =========================
   TRACKING SEARCH CARD
========================= */

.tracking-card {
    max-width: 850px;
    margin: auto;
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.65);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(18px);
}

.tracking-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin: 0 auto 18px;
    border-radius: 16px;
    background: rgba(85, 130, 255, 0.12);
    font-size: 1.5rem;
}

.tracking-card h2 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 1.5rem;
}

.tracking-card > p {
    margin-bottom: 28px;
    color: #9da9bb;
}

.tracking-search {
    display: flex;
    gap: 12px;
}

.tracking-search input {
    flex: 1;
    min-width: 0;
    padding: 17px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: 0.25s ease;
}

.tracking-search input::placeholder {
    color: #64748b;
}

.tracking-search input:focus {
    border-color: #7097ff;
    box-shadow: 0 0 0 4px rgba(112, 151, 255, 0.1);
}

.tracking-search button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 26px;
    border: none;
    border-radius: 13px;
    background: #6d8eff;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
}

.tracking-search button:hover {
    transform: translateY(-2px);
    background: #7d9aff;
    box-shadow: 0 12px 30px rgba(109, 142, 255, 0.3);
}

.tracking-help {
    margin: 17px 0 0 !important;
    color: #718096 !important;
    font-size: 0.82rem;
}

.tracking-help strong {
    color: #9eb7ff;
}


/* =========================
   TRACK RESULT AREA
========================= */

.tracking-result {
    max-width: 1200px;
    margin: auto;
}

.track-empty,
.track-not-found,
.report-result-card {
    display: none;
}

.track-empty {
    max-width: 700px;
    margin: auto;
    padding: 80px 30px;
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.3);
}

.track-empty.show,
.track-not-found.show,
.report-result-card.show {
    display: block;
}

.empty-icon {
    margin-bottom: 20px;
    font-size: 3rem;
}

.track-empty h2,
.track-not-found h2 {
    margin-bottom: 12px;
    color: #ffffff;
}

.track-empty p,
.track-not-found p {
    color: #94a3b8;
    line-height: 1.7;
}


/* =========================
   REPORT RESULT CARD
========================= */

.report-result-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(18px);
}

.result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.result-label,
.detail-label {
    display: block;
    margin-bottom: 7px;
    color: #718096;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.result-header h2 {
    color: #ffffff;
    font-size: 1.45rem;
}

.status-badge {
    padding: 9px 17px;
    border-radius: 100px;
    background: rgba(96, 165, 250, 0.12);
    color: #93c5fd;
    font-size: 0.85rem;
    font-weight: 600;
}

.report-info-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 45px;
    padding: 38px 35px;
}

.report-details {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.detail-item strong {
    color: #e5e7eb;
    font-size: 1rem;
}

.detail-item p {
    margin: 0;
    color: #a8b2c2;
    line-height: 1.7;
}

.detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.report-evidence {
    display: flex;
    flex-direction: column;
}

.evidence-image-box {
    position: relative;
    flex: 1;
    min-height: 260px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.evidence-image-box img {
    display: none;
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.evidence-image-box img.show {
    display: block;
}

.no-image {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.9rem;
}


/* =========================
   STATUS TIMELINE
========================= */

.status-timeline-section {
    padding: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.status-timeline-section h3 {
    margin-bottom: 32px;
    color: #ffffff;
    font-size: 1.2rem;
}

.status-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.timeline-line {
    position: absolute;
    top: 19px;
    right: 10%;
    left: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.timeline-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto 14px;
    border: 2px solid #475569;
    border-radius: 50%;
    background: #172033;
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 700;
}

.timeline-step.active .timeline-circle {
    border-color: #6d8eff;
    background: #6d8eff;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(109, 142, 255, 0.45);
}

.timeline-content strong {
    display: block;
    margin-bottom: 5px;
    color: #dce3ee;
    font-size: 0.88rem;
}

.timeline-content span {
    color: #64748b;
    font-size: 0.76rem;
}


/* =========================
   NOT FOUND
========================= */

.track-not-found {
    max-width: 650px;
    margin: auto;
    padding: 60px 30px;
    text-align: center;
    border: 1px solid rgba(248, 113, 113, 0.2);
    border-radius: 24px;
    background: rgba(127, 29, 29, 0.08);
}

.not-found-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(248, 113, 113, 0.15);
    color: #fca5a5;
    font-size: 1.5rem;
    font-weight: 700;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .track-page {
        padding: 130px 5% 80px;
    }

    .report-info-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 650px) {

    .track-heading h1 {
        letter-spacing: -1px;
    }

    .tracking-card {
        padding: 27px 20px;
    }

    .tracking-search {
        flex-direction: column;
    }

    .tracking-search button {
        min-height: 54px;
    }

    .result-header {
        align-items: flex-start;
        flex-direction: column;
        padding: 25px 20px;
    }

    .report-info-grid {
        padding: 28px 20px;
    }

    .detail-row {
        grid-template-columns: 1fr;
    }

    .status-timeline-section {
        padding: 28px 15px;
    }

    .timeline-content strong {
        font-size: 0.72rem;
    }

    .timeline-content span {
        display: none;
    }

    .timeline-line {
        right: 12%;
        left: 12%;
    }

}




/* =========================
   ADMIN DASHBOARD
========================= */

.admin-page {
    position: relative;
    min-height: 100vh;
    padding: 150px 8% 100px;
}

.admin-header {
    max-width: 1200px;
    margin: 0 auto 50px;
}

.admin-header h1 {
    max-width: 800px;
    margin: 18px 0;
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4.3rem);
    line-height: 1.08;
    letter-spacing: -2px;
}

.admin-header h1 span {
    color: #8fb5ff;
}

.admin-header p {
    max-width: 650px;
    color: #aeb8c8;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* =========================
   DASHBOARD STATS
========================= */

.admin-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto 70px;
}

.admin-stat-card {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(15px);
    transition: 0.25s ease;
}

.admin-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(143, 181, 255, 0.35);
}

.admin-stat-card span {
    display: block;
    margin-bottom: 10px;
    color: #94a3b8;
    font-size: 0.82rem;
}

.admin-stat-card strong {
    color: #ffffff;
    font-size: 2rem;
}

/* =========================
   REPORTS SECTION
========================= */

.admin-reports-section {
    max-width: 1200px;
    margin: auto;
}

.admin-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 30px;
}

.admin-section-header h2 {
    margin-bottom: 7px;
    color: #ffffff;
    font-size: 1.6rem;
}

.admin-section-header p {
    color: #94a3b8;
}

.refresh-btn {
    padding: 12px 20px;
    border: 1px solid rgba(143, 181, 255, 0.25);
    border-radius: 10px;
    background: rgba(109, 142, 255, 0.1);
    color: #b9c9ff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
}

.refresh-btn:hover {
    background: rgba(109, 142, 255, 0.2);
    transform: translateY(-2px);
}

.admin-loading,
.admin-empty {
    display: none;
    padding: 70px 20px;
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.3);
    color: #94a3b8;
}

.admin-loading.show,
.admin-empty.show {
    display: block;
}

.admin-empty h2 {
    margin-bottom: 10px;
    color: #ffffff;
}

/* =========================
   ISSUE CARDS
========================= */

.admin-issues-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.admin-issue-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(16px);
}

.admin-issue-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.04);
}

.admin-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 220px;
    color: #64748b;
    background: rgba(255, 255, 255, 0.04);
}

.admin-issue-content {
    padding: 24px;
}

.admin-issue-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

.admin-issue-id {
    margin-bottom: 6px;
    color: #8fb5ff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.admin-issue-title {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.4;
}

.admin-current-status {
    flex-shrink: 0;
    padding: 7px 12px;
    border-radius: 100px;
    background: rgba(109, 142, 255, 0.12);
    color: #a9bdff;
    font-size: 0.75rem;
    font-weight: 600;
}

.admin-issue-info {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}

.admin-info-item span {
    display: block;
    margin-bottom: 5px;
    color: #64748b;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.admin-info-item p {
    margin: 0;
    color: #aeb8c8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.admin-status-control {
    display: flex;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-status-select {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 0.85rem;
}

.admin-status-select option {
    background: #172033;
    color: #ffffff;
}

.update-status-btn {
    padding: 0 17px;
    border: none;
    border-radius: 10px;
    background: #6d8eff;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
}

.update-status-btn:hover {
    background: #7d9aff;
    box-shadow: 0 8px 20px rgba(109, 142, 255, 0.25);
}

.update-status-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {
    .admin-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 750px) {
    .admin-page {
        padding: 130px 5% 80px;
    }

    .admin-issues-grid {
        grid-template-columns: 1fr;
    }

    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-section-header {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .admin-stats {
        grid-template-columns: 1fr;
    }

    .admin-header h1 {
        letter-spacing: -1px;
    }

    .admin-status-control {
        flex-direction: column;
    }

    .update-status-btn {
        min-height: 45px;
    }
}








/* =========================
   FINAL MOBILE FIXES
========================= */

@media (max-width: 768px) {

    /* REPORT PAGE */

    .report-header {
        padding: 140px 7% 70px;
    }

    .report-header-content h1 {
        font-size: clamp(2.5rem, 11vw, 4rem);
    }

    .report-form-section {
        padding: 60px 5%;
    }

    .issue-form {
        grid-template-columns: 1fr;
    }

    .form-main,
    .form-sidebar {
        width: 100%;
    }


    /* TRACK PAGE */

    .track-hero {
        padding: 130px 6% 60px;
    }

    .tracking-search {
        flex-direction: column;
    }

    .tracking-search input,
    .tracking-search button {
        width: 100%;
    }

    .issue-result {
        grid-template-columns: 1fr;
    }


    /* LOGIN PAGE */

    .login-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 120px 6% 70px;
    }

    .login-intro {
        max-width: 100%;
    }

    .auth-card {
        width: 100%;
    }


    /* ADMIN PAGE */

    .admin-page {
        padding-left: 5%;
        padding-right: 5%;
    }

    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-issues-grid {
        grid-template-columns: 1fr;
    }

    .admin-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

}


@media (max-width: 480px) {

    .admin-stats {
        grid-template-columns: 1fr;
    }

    .form-main,
    .form-sidebar,
    .auth-card {
        padding: 22px;
    }

    .tracking-card {
        padding: 28px 20px;
    }

}





/* =========================
   MOBILE NAVIGATION FIX
========================= */

@media (max-width: 768px) {

    .navbar {
        position: relative;
        z-index: 1000;
    }

    .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1002;
        cursor: pointer;
    }

    .navlinks {
        display: none;
    }

    .navlinks.active {
        display: flex;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;

        flex-direction: column;
        align-items: stretch;

        background: #10283a;

        padding: 20px;
        border-radius: 24px;

        border: 1px solid rgba(255, 255, 255, 0.12);

        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);

        z-index: 1001;
    }

    .navlinks.active li {
        width: 100%;
    }

    .navlinks.active a {
        display: block;
        width: 100%;

        padding: 15px 18px;

        border-radius: 12px;
    }

    .navlinks.active .login-btn,
    .navlinks.active .logout-btn {
        text-align: center;
        margin-top: 8px;
    }
}



/* =========================
   LOGIN PAGE
========================= */

.login-page {
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.login-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    min-height: 100vh;

    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 90px;

    padding: 150px 8% 100px;
}


/* =========================
   LOGIN INTRO
========================= */

.login-intro {
    max-width: 650px;
}

.login-intro h1 {
    margin-top: 24px;

    font-size: clamp(3.2rem, 5vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: -3px;

    color: #10283a;
}

.login-intro h1 span {
    color: #6d8eff;
}

.login-intro > p {
    margin-top: 28px;

    max-width: 600px;

    font-size: 1.05rem;
    line-height: 1.8;

    color: #62758a;
}


/* =========================
   PORTAL FEATURES
========================= */

.portal-features {
    display: flex;
    flex-direction: column;
    gap: 18px;

    margin-top: 45px;
}

.portal-feature {
    display: flex;
    align-items: center;
    gap: 18px;
}

.portal-feature-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 14px;

    background: rgba(109, 142, 255, 0.12);

    color: #6d8eff;

    font-weight: 700;
    font-size: 0.85rem;
}

.portal-feature strong {
    display: block;

    margin-bottom: 5px;

    color: #183247;

    font-size: 1rem;
}

.portal-feature span {
    color: #718196;

    font-size: 0.92rem;
}


/* =========================
   AUTH CARD
========================= */

.auth-card {
    width: 100%;

    padding: 45px;

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.82);

    border: 1px solid rgba(120, 140, 170, 0.18);

    box-shadow:
        0 25px 80px rgba(25, 50, 75, 0.12);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.auth-card-header {
    margin-bottom: 30px;
}

.auth-card-header h2 {
    margin-bottom: 10px;

    color: #163047;

    font-size: 2rem;
}

.auth-card-header p {
    color: #718196;

    line-height: 1.6;
}


/* =========================
   ROLE SELECTOR
========================= */

.role-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 10px;

    padding: 6px;

    margin-bottom: 28px;

    border-radius: 15px;

    background: #edf2f7;
}

.role-btn {
    border: none;

    padding: 13px 15px;

    border-radius: 11px;

    background: transparent;

    color: #62758a;

    font-size: 0.95rem;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.role-btn.active {
    background: #ffffff;

    color: #183247;

    box-shadow:
        0 5px 18px rgba(20, 45, 70, 0.1);
}


/* =========================
   AUTH FORM
========================= */

.auth-form {
    display: flex;
    flex-direction: column;

    gap: 20px;
}

.auth-field {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.auth-field label {
    color: #294157;

    font-size: 0.9rem;
    font-weight: 600;
}

.auth-field input {
    width: 100%;

    height: 54px;

    padding: 0 16px;

    border: 1px solid #d8e0e8;

    border-radius: 13px;

    outline: none;

    background: #ffffff;

    color: #183247;

    font-size: 0.95rem;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.auth-field input:focus {
    border-color: #6d8eff;

    box-shadow:
        0 0 0 4px rgba(109, 142, 255, 0.12);
}


/* =========================
   PASSWORD
========================= */

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 75px;
}

.toggle-password {
    position: absolute;

    top: 50%;
    right: 12px;

    transform: translateY(-50%);

    border: none;

    padding: 7px 10px;

    border-radius: 8px;

    background: transparent;

    color: #6d8eff;

    font-weight: 600;

    cursor: pointer;
}


/* =========================
   LOGIN BUTTON
========================= */

.auth-submit-btn {
    width: 100%;

    min-height: 56px;

    margin-top: 8px;

    border: none;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #6d8eff,
            #5275df
        );

    color: white;

    font-size: 1rem;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 12px 30px rgba(82, 117, 223, 0.25);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 35px rgba(82, 117, 223, 0.32);
}

.auth-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}


/* =========================
   AUTH SWITCH
========================= */

.auth-switch {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 24px;

    color: #718196;

    font-size: 0.9rem;
}

.auth-switch button {
    border: none;

    padding: 0;

    background: transparent;

    color: #5578e4;

    font-weight: 700;

    cursor: pointer;
}


/* =========================
   ADMIN NOTE
========================= */

.admin-login-note {
    display: none;

    margin-top: 22px;

    padding: 14px 16px;

    border-radius: 12px;

    background: rgba(109, 142, 255, 0.08);

    color: #62758a;

    font-size: 0.88rem;

    line-height: 1.5;

    text-align: center;
}