/* =========================================================
   css/style.css - Main Stylesheet
   Unity Riders Association
   ========================================================= */

/* =========================================================
   ROOT VARIABLES - Premium
========================================================= */
:root {
    /* Primary Colors - #7393B3 */
    --navy: #071d45;
    --navy-deep: #04152f;
    --navy-light: #0a2a5a;
    --red: #e3222b;
    --red-dark: #c41e26;
    --red-glow: rgba(227, 34, 43, 0.25);
    --teal: #12a996;
    --teal-light: #1bc4af;
    --text: #162033;
    --muted: #596273;
    --white: #fff;
    --gray-light: #f5f7fa;
    --gray: #8a9bb5;
    --shadow-sm: 0 2px 8px rgba(7, 29, 69, .06);
    --shadow-md: 0 8px 32px rgba(7, 29, 69, .10);
    --shadow-lg: 0 16px 60px rgba(7, 29, 69, .14);
    --shadow-xl: 0 24px 80px rgba(7, 29, 69, .18);
    --transition: all .4s cubic-bezier(.25, .46, .45, .94);
    --radius: 10px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================================
   SCROLLBAR
========================================================= */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* =========================================================
   SCROLL TO TOP
========================================================= */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 8px 30px var(--red-glow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--red-dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--red-glow);
}

/* =========================================================
   HEADER
========================================================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 8px clamp(16px, 3vw, 70px);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(7, 29, 69, .04);
    transition: var(--transition);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow-sm);
    padding: 4px clamp(16px, 3vw, 70px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    transition: var(--transition);
}

.brand:hover {
    transform: scale(1.01);
}

.brand-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex: 0 0 auto;
    filter: drop-shadow(0 2px 8px rgba(7, 29, 69, .06));
    transition: var(--transition);
}

.brand:hover .brand-logo {
    filter: drop-shadow(0 4px 16px rgba(7, 29, 69, .12));
}

.brand-copy {
    line-height: 1;
}

.brand-name {
    color: var(--navy);
    font-size: clamp(16px, 1.5vw, 24px);
    font-weight: 900;
    letter-spacing: 1px;
}

.brand-association {
    color: var(--red);
    font-size: clamp(8px, .8vw, 12px);
    font-weight: 800;
    letter-spacing: 3px;
    margin-top: 1px;
}

/* =========================================================
   NAVIGATION
========================================================= */
.nav {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.2vw, 20px);
    flex: 1 1 auto;
    justify-content: flex-end;
}

.nav-link {
    position: relative;
    padding: 8px 0;
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--navy);
}

.nav-link.active {
    color: var(--navy);
}

.nav-join {
    position: relative;
    overflow: hidden;
    color: #fff !important;
    background: var(--red);
    padding: 8px 18px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 9px;
    letter-spacing: .8px;
    box-shadow: 0 4px 20px var(--red-glow);
    transition: var(--transition);
}

.nav-join::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .3), transparent);
    transform: skewX(-25deg);
    transition: left .7s ease;
}

.nav-join:hover::before {
    left: 150%;
}

.nav-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--red-glow);
    color: #fff !important;
}

.mobile-toggle {
    display: none;
    border: 0;
    background: var(--navy);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: var(--navy-deep);
    transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: rgba(7, 29, 69, .96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 80px 30px 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    color: rgba(255, 255, 255, .7);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    padding: 8px 0;
}

.mobile-menu a:hover {
    color: #fff;
    transform: translateX(4px);
}

.mobile-menu .nav-join {
    margin-top: 10px;
    font-size: 13px;
    padding: 14px 40px;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-close:hover {
    transform: rotate(90deg);
    color: var(--red);
}

/* =========================================================
   HERO
========================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #fff;
    padding-top: 70px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 70px);
    width: 100%;
}

.hero-content {
    display: flex;
    align-items: center;
    padding: 60px clamp(22px, 5vw, 70px);
    background: #fff;
    position: relative;
    z-index: 2;
}

.hero-content-inner {
    max-width: 580px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(227, 34, 43, .08);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(227, 34, 43, .08);
}

.hero-badge i {
    font-size: 12px;
}

.hero-title {
    color: var(--navy);
    font-size: clamp(44px, 5.5vw, 72px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.hero-title .highlight-red {
    color: var(--red);
}

.hero-title .highlight-teal {
    color: var(--teal);
}

.hero-title .line {
    display: block;
}

.hero-description {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .25), transparent);
    transform: skewX(-25deg);
    transition: left .7s ease;
}

.btn:hover::before {
    left: 150%;
}

.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 4px 25px var(--red-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px var(--red-glow);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid rgba(7, 29, 69, .12);
}

.btn-secondary:hover {
    border-color: var(--navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--navy);
}

.btn i {
    font-size: 14px;
}

/* Hero Metrics */
.hero-metrics {
    display: flex;
    gap: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(7, 29, 69, .06);
    flex-wrap: wrap;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.metric-number {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.metric-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.metric-active .metric-number {
    color: #2ecc71;
}
.metric-inactive .metric-number {
    color: var(--red);
}
.metric-pending .metric-number {
    color: #f39c12;
}

/* =========================================================
   HERO IMAGE
========================================================= */
.hero-image-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--navy-deep);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.95) 6%,
            rgba(255, 255, 255, 0.75) 16%,
            rgba(255, 255, 255, 0.4) 30%,
            rgba(255, 255, 255, 0.1) 48%,
            transparent 65%);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 1.2s cubic-bezier(.25, .46, .45, .94);
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            rgba(0, 0, 0, 0.02) 6%,
            rgba(0, 0, 0, 0.08) 14%,
            rgba(0, 0, 0, 0.2) 24%,
            rgba(0, 0, 0, 0.5) 36%,
            #000 50%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            rgba(0, 0, 0, 0.02) 6%,
            rgba(0, 0, 0, 0.08) 14%,
            rgba(0, 0, 0, 0.2) 24%,
            rgba(0, 0, 0, 0.5) 36%,
            #000 50%);
}

.hero-image-wrapper:hover img {
    transform: scale(1.04);
}

.float-element {
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, .3);
}

.float-element .icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.float-element .icon.green {
    background: rgba(18, 169, 150, .12);
    color: var(--teal);
}

.float-element .icon.red {
    background: rgba(227, 34, 43, .12);
    color: var(--red);
}

.float-element .icon.gold {
    background: rgba(255, 193, 7, .15);
    color: #f59f00;
}

.float-element .text {
    line-height: 1.2;
}

.float-element .text strong {
    display: block;
    font-size: 11px;
    color: var(--navy);
}

.float-element .text span {
    font-size: 10px;
    color: var(--muted);
}

.float-1 {
    top: 12%;
    right: 8%;
    animation-delay: 0s;
}

.float-2 {
    bottom: 18%;
    left: 6%;
    animation-delay: 2s;
}

.float-3 {
    top: 45%;
    right: 2%;
    animation-delay: 4s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* =========================================================
   SECTION HEADERS
========================================================= */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: var(--red);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background: rgba(227, 34, 43, .08);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(30px, 3.2vw, 42px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.section-header h2 span {
    color: var(--red);
}

.section-header p {
    color: var(--muted);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* =========================================================
   ABOUT SECTION
========================================================= */
.about-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content h2 {
    font-size: clamp(28px, 2.8vw, 38px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.about-content h2 span {
    color: var(--red);
}

.about-content p {
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 15px;
}

/* About Metrics */
.about-metrics {
    display: flex;
    gap: 30px;
    margin: 24px 0 30px;
    flex-wrap: wrap;
}

.about-metrics .metric-item {
    align-items: flex-start;
}

.about-metrics .metric-number {
    font-size: 22px;
}

.about-metrics .metric-label {
    font-size: 10px;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--red);
    font-size: 14px;
    transition: var(--transition);
}

.btn-about:hover {
    color: var(--red-dark);
    gap: 14px;
}

/* =========================================================
   VERIFICATION SECTION
========================================================= */
.verification-section {
    padding: 80px 0;
    background: #fff;
}

.verification-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.verification-content h2 {
    font-size: clamp(28px, 2.8vw, 38px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.verification-content h2 span {
    color: var(--red);
}

.verification-content p {
    color: var(--muted);
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 15px;
}

.search-wrapper {
    display: flex;
    background: #fff;
    border: 2px solid #e8eaed;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.search-wrapper:focus-within {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(227, 34, 43, .06);
}

.search-wrapper input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    font-size: 14px;
    outline: none;
    font-family: var(--font);
    background: transparent;
    color: var(--text);
}

.search-wrapper input::placeholder {
    color: #9aa0ab;
}

.btn-verify {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 16px 28px;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    text-transform: uppercase;
}

.btn-verify:hover {
    background: var(--red-dark);
}

.verification-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.btn-scan {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 11px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.btn-scan:hover {
    background: var(--navy-deep);
    transform: scale(1.02);
}

.btn-scan i {
    font-size: 15px;
}

.hint-text {
    color: var(--muted);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hint-text i {
    color: var(--teal);
}

.verify-detail-heading {
    margin-top: 12px;
    padding: 9px 0 5px;
    border-bottom: 2px solid rgba(227, 34, 43, .18);
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.motorcycle-detail .value {
    line-height: 1.8;
    text-align: right;
    overflow-wrap: anywhere;
}

.motorcycle-detail .motorcycle-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    gap: 10px 18px;
    text-align: left;
    line-height: 1.3;
}

.motorcycle-field {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 8px 10px;
    border: 1px solid rgba(7, 29, 69, .08);
    border-radius: 7px;
    background: rgba(245, 247, 250, .72);
}

.motorcycle-field strong {
    color: var(--muted);
    font-size: 10px;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.motorcycle-field span {
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 600px) {
    .motorcycle-detail .motorcycle-fields {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

.motorcycle-detail .value strong {
    color: var(--muted);
    font-size: 11px;
}

.verify-input-notice {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    padding: 12px 14px;
    border-left: 4px solid var(--red);
    border-radius: 8px;
    background: #fff1f2;
    color: #9f1d28;
    font-size: 13px;
    font-weight: 700;
}

.verify-input-notice i {
    color: var(--red);
}

.motorcycle-detail .value small {
    color: var(--muted);
    font-weight: 500;
}

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

.document-card {
    min-width: 0;
    padding: 16px;
    border: 1px solid rgba(7, 29, 69, .1);
    border-radius: 12px;
    background: linear-gradient(145deg, #fff, #f7f9fc);
}

.document-card legend {
    padding: 0 6px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
}

.document-entry-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-items: end;
}

.document-entry-grid .btn-add-document {
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    background: var(--navy);
    color: #fff;
    font: 800 11px var(--font);
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
}

.document-entry-grid .btn-add-document:hover {
    background: var(--red);
}

.documents-table-wrap {
    margin-top: 18px;
    overflow-x: auto;
    border: 1px solid rgba(7, 29, 69, .1);
    border-radius: 10px;
}

.documents-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    font-size: 12px;
}

.documents-table th,
.documents-table td {
    padding: 11px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(7, 29, 69, .07);
    vertical-align: middle;
}

.documents-table th {
    background: #f5f7fa;
    color: var(--navy);
    font-size: 10px;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.documents-table tr:last-child td {
    border-bottom: 0;
}

.remove-document {
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    background: rgba(227, 34, 43, .1);
    color: var(--red);
    cursor: pointer;
}

.remove-document:hover {
    background: var(--red);
    color: #fff;
}

.document-file-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.document-empty {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.document-card .form-group + .form-group {
    margin-top: 10px;
}

.qr-reader-panel {
    margin-top: 18px;
    padding: 14px;
    background: #f7f9fc;
    border: 1px solid rgba(7, 29, 69, .1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.qr-reader-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.qr-reader-toolbar span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qr-reader-toolbar i {
    color: var(--teal);
}

.qr-reader-close {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(7, 29, 69, .08);
    color: var(--navy);
    cursor: pointer;
}

.qr-reader-close:hover {
    background: var(--red);
    color: #fff;
}

#qr-reader {
    width: 100%;
    max-width: 420px;
    min-height: 250px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    background: #071d45;
}

#qr-reader video {
    width: 100% !important;
    height: auto !important;
    display: block;
    border-radius: 12px;
}

.qr-reader-status {
    margin: 10px 0 0;
    text-align: center;
    color: var(--muted);
    font-size: 12px;
}

.verification-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 350px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.verification-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

.verification-image:hover img {
    transform: scale(1.03);
}

/* =========================================================
   LEADERSHIP SECTION
========================================================= */
.leadership-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.leader-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 30px 35px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(227, 34, 43, .08);
}

.leader-image {
    width: 110px;
    height: 110px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    box-shadow: 0 8px 30px rgba(7, 29, 69, .12);
    transition: var(--transition);
}

.leader-card:hover .leader-image {
    box-shadow: 0 12px 40px rgba(7, 29, 69, .2);
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, .5);
    font-size: 48px;
}

.leader-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.leader-role {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 8px;
    letter-spacing: .5px;
}

.leader-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* =========================================================
   NEWS SECTION
========================================================= */
.news-section {
    padding: 80px 0;
    background: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(7, 29, 69, .04);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(227, 34, 43, .06);
}

.news-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, .4);
    font-size: 48px;
}

.news-date {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
}

.news-content {
    padding: 24px;
}

.news-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.news-content p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 12px;
    line-height: 1.7;
}

.read-more {
    font-weight: 700;
    color: var(--red);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--red-dark);
    gap: 10px;
}

/* =========================================================
   MEMBERSHIP SECTION
========================================================= */
.membership-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.membership-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.membership-content h2 {
    font-size: clamp(28px, 2.8vw, 38px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.membership-content h2 span {
    color: var(--red);
}

.membership-content p {
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 15px;
}

.membership-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 30px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    padding: 6px 0;
}

.benefit i {
    color: var(--teal);
    font-size: 18px;
    flex-shrink: 0;
}

.btn-join-large {
    display: inline-block;
    padding: 16px 48px;
    background: var(--red);
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1.5px;
    border-radius: var(--radius);
    transition: var(--transition);
    text-transform: uppercase;
    box-shadow: 0 4px 25px var(--red-glow);
}

.btn-join-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px var(--red-glow);
    background: var(--red-dark);
    color: #fff;
}

.membership-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.membership-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.membership-image:hover img {
    transform: scale(1.03);
}

/* =========================================================
   CONTACT SECTION
========================================================= */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: var(--gray-light);
    border-radius: var(--radius);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.contact-item:hover {
    border-left-color: var(--red);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.contact-item i {
    width: 44px;
    height: 44px;
    background: rgba(227, 34, 43, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 17px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover i {
    background: var(--red);
    color: #fff;
    transform: scale(1.05);
}

.contact-item strong {
    display: block;
    font-size: 12px;
    color: var(--navy);
    font-weight: 700;
    letter-spacing: .5px;
}

.contact-item span {
    color: var(--muted);
    font-size: 14px;
}

.contact-form {
    background: var(--gray-light);
    padding: 35px;
    border-radius: var(--radius-lg);
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font);
    transition: var(--transition);
    background: #fff;
    color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(227, 34, 43, .06);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-submit:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--red-glow);
}

/* =========================================================
   FOOTER
========================================================= */
.main-footer {
    background: var(--navy-deep);
    color: #8a9bb5;
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-brand p {
    color: #8a9bb5;
    font-size: 14px;
    opacity: .7;
    line-height: 1.8;
    margin-top: 8px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-col h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: .5px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #8a9bb5;
    font-size: 13px;
    transition: var(--transition);
    opacity: .7;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 4px;
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a9bb5;
    transition: var(--transition);
    font-size: 15px;
}

.social-links a:hover {
    background: var(--red);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--red-glow);
}

.footer-newsletter p {
    font-size: 12px;
    margin-bottom: 8px;
    color: #8a9bb5;
    opacity: .7;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .04);
    color: #fff;
    font-size: 13px;
    font-family: var(--font);
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: #8a9bb5;
    opacity: .5;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(255, 255, 255, .06);
}

.newsletter-form button {
    padding: 10px 16px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px var(--red-glow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .04);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #8a9bb5;
    opacity: .6;
}

.footer-bottom i {
    color: var(--red);
    margin: 0 2px;
}

.footer-bottom a {
    color: #fff;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: var(--red);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    opacity: 1;
    transition: var(--transition);
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
    color: #fff;
    text-decoration-color: #fff;
    outline: 2px solid var(--red);
    outline-offset: 4px;
}

/* =========================================================
   REGISTRATION MODAL
========================================================= */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-container {
    background: #fff;
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    min-height: 0;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(7, 29, 69, .08);
    position: sticky;
    top: 0;
    background: #fff;
    border-radius: 16px 16px 0 0;
    z-index: 1;
}

.modal-header h2 {
    font-size: 20px;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h2 i {
    color: var(--red);
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--muted);
    cursor: pointer;
    transition: var(--transition);
    padding: 0 8px;
}

.modal-close:hover {
    color: var(--red);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.modal-subtitle {
    color: var(--muted);
    margin-bottom: 25px;
    font-size: 14px;
}

/* Form Sections */
.form-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(7, 29, 69, .06);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section h4 i {
    color: var(--red);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 12px;
}

.form-row .form-group:full-width {
    grid-column: 1 / -1;
}

.form-row > .form-group {
    min-width: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
}

.form-group.is-required label {
    color: var(--red);
}

.form-group.is-required label::after {
    content: ' *';
    color: var(--red);
    font-weight: 900;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 14px;
    border: 2px solid #e8eaed;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font);
    transition: var(--transition);
    background: #fff;
    color: var(--text);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(227, 34, 43, .06);
}

.form-group small {
    font-size: 11px;
    color: var(--muted);
}

.form-group input[type="file"] {
    padding: 8px;
    border: 2px dashed #e8eaed;
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 14px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(7, 29, 69, .06);
}

.btn-cancel {
    padding: 12px 30px;
    background: var(--gray-light);
    color: var(--muted);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    flex: 1;
}

.btn-cancel:hover {
    background: #e8eaed;
}

.btn-submit-register {
    padding: 12px 30px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit-register:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--red-glow);
}

/* =========================================================
   VERIFICATION RESULT MODAL
========================================================= */
.verify-result-container {
    max-width: 550px;
}

.verify-result-container .modal-header h2 i {
    color: #2ecc71;
}

.verify-loading {
    text-align: center;
    padding: 40px 20px;
    color: var(--muted);
}

.verify-loading i {
    font-size: 40px;
    color: var(--primary);
    display: block;
    margin-bottom: 16px;
}

.verify-result {
    padding: 10px 0;
}

.verify-result .rider-profile {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(7, 29, 69, .06);
}

.verify-result .rider-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gray-light);
    border: 3px solid var(--primary);
}

.verify-result .rider-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.verify-result .rider-photo .no-photo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--gray);
}

.verify-result .rider-info h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 2px;
}

.verify-result .rider-info .rider-number {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

.verify-result .rider-info .rider-status-badge {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 4px;
}

.verify-result .rider-info .status-active {
    background: #d4edda;
    color: #155724;
}

.verify-result .rider-info .status-suspended {
    background: #fff3cd;
    color: #856404;
}

.verify-result .rider-info .status-expired {
    background: #f8d7da;
    color: #721c24;
}

.verify-result .rider-info .status-deactivated {
    background: #e2e3e5;
    color: #383d41;
}

.verify-result .rider-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.verify-result .rider-details .detail-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(7, 29, 69, .04);
    font-size: 14px;
}

.verify-result .rider-details .detail-item .label {
    color: var(--muted);
    font-weight: 500;
}

.verify-result .rider-details .detail-item .value {
    color: var(--text);
    font-weight: 600;
}

.verified-document {
    display: block;
    line-height: 1.7;
}

.verified-document a {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.verify-result .verify-not-found {
    text-align: center;
    padding: 40px 20px;
    color: var(--muted);
}

.verify-result .verify-not-found i {
    font-size: 60px;
    color: #f39c12;
    display: block;
    margin-bottom: 16px;
}

.verify-result .verify-not-found h3 {
    color: var(--navy);
    margin-bottom: 8px;
}

.verify-result .verify-not-found p {
    font-size: 14px;
}

.verify-result .verify-error {
    text-align: center;
    padding: 40px 20px;
    color: var(--muted);
}

.verify-result .verify-error i {
    font-size: 60px;
    color: var(--red);
    display: block;
    margin-bottom: 16px;
}

.verify-result .verify-error h3 {
    color: var(--navy);
    margin-bottom: 8px;
}

.verify-result .verify-error p {
    font-size: 14px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

/* Tablet */
@media (max-width: 1024px) {
    .hero {
        min-height: calc(100svh - 8px);
        padding-top: 70px;
        background: var(--navy-deep);
    }

    .hero-container {
        display: block;
        min-height: calc(100svh - 70px);
        position: relative;
    }

    .hero-image-wrapper {
        position: absolute;
        inset: 0;
        min-height: 100%;
        z-index: 0;
    }

    .hero-image-wrapper::before {
        background: linear-gradient(90deg, rgba(4, 21, 47, .96) 0%, rgba(4, 21, 47, .82) 38%, rgba(4, 21, 47, .24) 72%, rgba(4, 21, 47, .42) 100%), linear-gradient(0deg, rgba(4, 21, 47, .62), transparent 45%);
    }

    .hero-image-wrapper img {
        -webkit-mask-image: none;
        mask-image: none;
        object-position: center;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        min-height: calc(100svh - 70px);
        padding: clamp(52px, 8vh, 100px) clamp(28px, 6vw, 74px) 52px;
        align-items: center;
        background: transparent;
    }

    .hero-content-inner {
        max-width: 620px;
    }

    .hero-badge {
        background: rgba(227, 34, 43, .16);
        border-color: rgba(255, 255, 255, .18);
        color: #fff;
    }

    .hero-title,
    .hero-description,
    .hero-metrics .metric-label {
        color: #fff;
    }

    .hero-description { color: rgba(255, 255, 255, .78); }
    .hero-metrics { border-color: rgba(255, 255, 255, .2); }

    .btn-secondary { color: #fff; border-color: rgba(255, 255, 255, .28); }

    .float-element {
        display: none;
    }

    .about-wrapper,
    .verification-wrapper,
    .membership-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-metrics {
        gap: 20px;
    }

    .about-metrics {
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 900px) {
    .nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .main-header {
        padding: 8px 16px;
        gap: 10px;
    }

    .brand-logo {
        width: 38px;
        height: 38px;
    }

    .brand-name {
        font-size: 14px;
        letter-spacing: .5px;
    }

    .brand-association {
        font-size: 7px;
        letter-spacing: 2px;
    }

    /* HERO - Full screen with image background */
    .hero {
        padding-top: 62px;
        min-height: 100vh;
        position: relative;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        min-height: calc(100vh - 62px);
        position: relative;
    }

    .hero-image-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        min-height: 100%;
        z-index: 0;
    }

    .hero-image-wrapper::before {
        background: linear-gradient(180deg,
                rgba(10, 22, 40, 0.3) 0%,
                rgba(10, 22, 40, 0.5) 30%,
                rgba(10, 22, 40, 0.7) 60%,
                rgba(10, 22, 40, 0.85) 100%);
        z-index: 2;
    }

    .hero-image-wrapper img {
        -webkit-mask-image: none;
        mask-image: none;
        object-position: center 30%;
    }

    .hero-content {
        position: relative;
        z-index: 3;
        padding: 120px 24px 40px;
        min-height: 100vh;
        background: transparent;
        display: flex;
        align-items: flex-end;
        width: 100%;
    }

    .hero-content-inner {
        max-width: 100%;
        padding-bottom: 20px;
    }

    .hero-badge {
        background: rgba(255, 255, 255, .12);
        border-color: rgba(255, 255, 255, .15);
        color: #fff;
        backdrop-filter: blur(10px);
    }

    .hero-title {
        font-size: clamp(32px, 8vw, 44px);
        letter-spacing: -1px;
        color: #fff;
    }

    .hero-title .highlight-red {
        color: #ff6b6b;
    }

    .hero-title .highlight-teal {
        color: #4dd0e1;
    }

    .hero-description {
        font-size: 14px;
        max-width: 100%;
        color: rgba(255, 255, 255, 0.8);
    }

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

    .btn {
        justify-content: center;
        padding: 12px 24px;
        font-size: 10px;
    }

    .btn-secondary {
        border-color: rgba(255, 255, 255, 0.3);
        color: #fff;
    }

    .btn-secondary:hover {
        border-color: #fff;
        background: rgba(255, 255, 255, 0.05);
    }

    /* Hero Metrics on mobile - White text */
    .hero-metrics {
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        gap: 16px;
        justify-content: center;
        padding-top: 20px;
    }

    .hero-metrics .metric-number {
        font-size: 18px;
        color: #fff;
    }

    .hero-metrics .metric-label {
        font-size: 8px;
        color: rgba(255, 255, 255, 0.6);
    }

    .hero-metrics .metric-active .metric-number {
        color: #4dd0e1;
    }

    .hero-metrics .metric-inactive .metric-number {
        color: #ff6b6b;
    }

    .hero-metrics .metric-pending .metric-number {
        color: #ffd93d;
    }

    /* Floating elements hidden on mobile */
    .float-element {
        display: none;
    }

    /* About Section - Mobile */
    .about-section {
        padding: 50px 0;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        min-height: 250px;
    }

    .about-image img {
        min-height: 250px;
    }

    .about-content h2 {
        font-size: 26px;
    }

    .about-content p {
        font-size: 14px;
    }

    .about-metrics {
        gap: 16px;
        justify-content: center;
    }

    .about-metrics .metric-number {
        font-size: 18px;
    }

    .about-metrics .metric-label {
        font-size: 8px;
    }

    /* Verification Section - Mobile */
    .verification-section {
        padding: 50px 0;
    }

    .verification-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .verification-content h2 {
        font-size: 26px;
    }

    .verification-content p {
        font-size: 14px;
    }

    .verification-image {
        min-height: 250px;
    }

    .verification-image img {
        min-height: 250px;
    }

    .search-wrapper {
        flex-direction: column;
    }

    .search-wrapper input {
        border-radius: var(--radius) var(--radius) 0 0;
        padding: 14px 16px;
    }

    .btn-verify {
        border-radius: 0 0 var(--radius) var(--radius);
        width: 100%;
        justify-content: center;
    }

    .verification-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .document-entry-grid {
        grid-template-columns: 1fr 1fr;
    }

    .document-entry-grid .form-group:first-child,
    .document-entry-grid .form-group:nth-child(6),
    .document-entry-grid .btn-add-document {
        grid-column: 1 / -1;
    }

    .qr-reader-panel {
        padding: 10px;
    }

    .qr-reader-toolbar {
        align-items: flex-start;
    }

    #qr-reader {
        min-height: 210px;
    }

    /* Leadership - Mobile */
    .leadership-section {
        padding: 50px 0;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
        gap: 20px;
    }

    .leader-card {
        padding: 30px 20px 25px;
    }

    .leader-image {
        width: 90px;
        height: 90px;
    }

    .leader-card h3 {
        font-size: 16px;
    }

    /* News - Mobile */
    .news-section {
        padding: 50px 0;
    }

    .news-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
        gap: 20px;
    }

    .news-image {
        height: 180px;
    }

    .news-content {
        padding: 16px;
    }

    .news-content h3 {
        font-size: 16px;
    }

    /* Membership - Mobile */
    .membership-section {
        padding: 50px 0;
    }

    .membership-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .membership-content h2 {
        font-size: 26px;
    }

    .membership-content p {
        font-size: 14px;
    }

    .membership-benefits {
        grid-template-columns: 1fr;
    }

    .membership-image {
        min-height: 250px;
    }

    .membership-image img {
        min-height: 250px;
    }

    .btn-join-large {
        padding: 14px 32px;
        font-size: 11px;
        width: 100%;
        text-align: center;
    }

    /* Contact - Mobile */
    .contact-section {
        padding: 50px 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-item {
        padding: 14px 16px;
    }

    .contact-form {
        padding: 20px;
    }

    /* Section Headers - Mobile */
    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 14px;
    }

    .section-tag {
        font-size: 9px;
        padding: 4px 14px;
    }

    /* Footer - Mobile */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Scroll Top */
    .scroll-top {
        width: 44px;
        height: 44px;
        font-size: 17px;
        bottom: 20px;
        right: 20px;
    }

    /* Mobile Menu */
    .mobile-menu a {
        font-size: 16px;
    }

    .about-stats {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    /* Modals Mobile */
    .modal-container {
        max-width: 100%;
        width: calc(100vw - 20px);
        max-height: calc(100dvh - 20px);
        margin: 10px;
        border-radius: 12px;
    }

    .modal-header {
        padding: 16px 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-cancel,
    .btn-submit-register {
        flex: 1;
        width: 100%;
    }

    /* Verification Result Mobile */
    .verify-result .rider-profile {
        flex-direction: column;
        text-align: center;
    }

    .verify-result .rider-details {
        grid-template-columns: 1fr;
    }

    .verify-result .rider-details .detail-item {
        justify-content: space-between;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .main-header {
        padding: 6px 12px;
    }

    .brand-logo {
        width: 32px;
        height: 32px;
    }

    .brand-name {
        font-size: 12px;
        letter-spacing: .3px;
    }

    .brand-association {
        font-size: 6px;
        letter-spacing: 1.5px;
    }

    .hero {
        padding-top: 56px;
    }

    .hero-content {
        padding: 100px 16px 30px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .document-entry-grid {
        grid-template-columns: 1fr;
    }

    .document-entry-grid .form-group:first-child,
    .document-entry-grid .form-group:nth-child(6),
    .document-entry-grid .btn-add-document {
        grid-column: auto;
    }

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

    .btn-scan {
        justify-content: center;
        width: 100%;
    }

    .hint-text {
        justify-content: center;
    }

    .qr-reader-toolbar span {
        line-height: 1.4;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-badge {
        font-size: 9px;
        padding: 4px 14px;
    }

    .hero-metrics {
        gap: 12px;
    }

    .hero-metrics .metric-number {
        font-size: 15px;
    }

    .hero-metrics .metric-label {
        font-size: 7px;
    }

    .about-metrics {
        gap: 12px;
    }

    .about-metrics .metric-number {
        font-size: 15px;
    }

    .about-metrics .metric-label {
        font-size: 7px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .contact-form {
        padding: 16px;
    }

    .btn-scan {
        width: 100%;
        justify-content: center;
    }

    .hint-text {
        font-size: 11px;
        justify-content: center;
        width: 100%;
    }

    .news-image {
        height: 160px;
    }

    .leader-image {
        width: 80px;
        height: 80px;
    }

    .modal-header h2 {
        font-size: 17px;
    }
}