@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap'); :root { --navy: #0a1628; --navy2: #162540; --red: #b91c1c; --red2: #dc2626; --gold: #d4a843; --white: #ffffff; --light: #f0f4f8; --text: #0f1f30; --muted: #5a6e82; --border: #dde4ed; --shadow-sm: 0 1px 4px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05); --shadow: 0 6px 28px rgba(0,0,0,0.11); --shadow-lg: 0 16px 48px rgba(0,0,0,0.16); --radius: 16px; --radius-sm: 10px; --transition: all 0.22s ease; } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } a { text-decoration: none !important; } a:hover { text-decoration: none !important; } body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--light); color: var(--text); -webkit-font-smoothing: antialiased; line-height: 1.6; } /* ── NAVBAR ── */ .navbar { background: rgba(8,16,28,0.97) !important; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 0; min-height: 68px; transition: var(--transition); position: relative; } /* Brand */ .navbar-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; padding: 0; } .brand-icon { width: 34px; height: 34px; background: var(--red); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 2px 8px rgba(192,57,43,0.4); } .brand-icon .fa { color: #fff; font-size: 0.9rem; } .brand-text { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.85); letter-spacing: -0.1px; white-space: nowrap; } .brand-text strong { font-weight: 800; color: #fff; } /* Nav links — centered */ .navbar-nav.mx-auto { gap: 2px; } .nav-link { font-size: 0.85rem !important; font-weight: 500 !important; color: rgba(255,255,255,0.7) !important; padding: 0.45rem 0.9rem !important; border-radius: 6px; transition: var(--transition); letter-spacing: 0.1px; } .nav-link:hover { color: #fff !important; background: rgba(255,255,255,0.08) !important; } .nav-link .fa { opacity: 0.7; margin-right: 4px; } /* Right group */ .navbar-right-group { display: flex; align-items: center; gap: 8px; } /* Nav buttons (Login / Join / Admin) */ .nav-btn { display: inline-flex; align-items: center; gap: 6px; padding: 0.42rem 1rem; border-radius: 6px; font-size: 0.82rem; font-weight: 600; text-decoration: none; transition: var(--transition); white-space: nowrap; cursor: pointer; border: none; } .nav-btn-outline { background: transparent; border: 1.5px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.8) !important; } .nav-btn-outline:hover { border-color: rgba(255,255,255,0.6); color: #fff !important; background: rgba(255,255,255,0.06); } .nav-btn-green { background: #16a34a; color: #fff !important; } .nav-btn-green:hover { background: #15803d; transform: translateY(-1px); box-shadow: 0 3px 10px rgba(22,163,74,0.35); } .nav-btn-amber { background: #d97706; color: #fff !important; } .nav-btn-amber:hover { background: #b45309; } /* Account toggle */ .nav-account { position: relative; } .nav-account-toggle { display: flex; align-items: center; gap: 7px; padding: 5px 10px 5px 5px; border-radius: 50px; background: rgba(255,255,255,0.07); border: 1.5px solid rgba(255,255,255,0.12); text-decoration: none; transition: var(--transition); cursor: pointer; } .nav-account-toggle:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); } .nav-avatar { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.2); display: block; } .nav-account-name { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.9); max-width: 90px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .nav-account-caret { font-size: 0.65rem; color: rgba(255,255,255,0.45); } /* Account dropdown */ .nav-dropdown { border: none !important; border-radius: 14px !important; box-shadow: 0 8px 40px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.06) !important; padding: 0 !important; min-width: 220px; overflow: hidden; margin-top: 8px !important; } .nav-dropdown-header { background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%); padding: 1.2rem 1rem; text-align: center; } .nav-dropdown-avatar { width: 60px; height: 60px; border-radius: 50%; border: 3px solid rgba(255,255,255,0.2); object-fit: cover; margin-bottom: 0.5rem; } .nav-dropdown-name { font-weight: 700; font-size: 0.9rem; color: #fff; margin-bottom: 4px; } .nav-dropdown-role { } .role-badge { display: inline-block; padding: 2px 10px; border-radius: 50px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; } .role-member { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); } .role-admin { background: #d97706; color: #fff; } .role-disabled { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); } .nav-dropdown-body { padding: 0.4rem; } .nav-dropdown-item { display: flex; align-items: center; gap: 9px; padding: 0.55rem 0.8rem; border-radius: 8px; font-size: 0.85rem; font-weight: 500; color: var(--text); text-decoration: none; transition: var(--transition); } .nav-dropdown-item:hover { background: var(--light); color: var(--navy); } .nav-dropdown-item-danger { color: var(--red); } .nav-dropdown-item-danger:hover { background: #fee2e2; color: #991b1b; } /* Help button */ .btn-help-nav { background: var(--red); color: #fff !important; font-weight: 700; font-size: 0.82rem; padding: 0.48rem 1.1rem; border-radius: 6px; border: none; cursor: pointer; transition: var(--transition); white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; letter-spacing: 0.1px; } .btn-help-nav:hover { background: var(--red2); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(192,57,43,0.4); } .btn-help-nav-sm { padding: 0.45rem 0.7rem; border-radius: 6px; } /* Toggler */ .navbar-toggler { border: 1.5px solid rgba(255,255,255,0.2); padding: 0.3rem 0.5rem; } .navbar-toggler-icon { filter: invert(1); width: 18px; height: 18px; } /* Dropdown (Bootstrap override) */ .dropdown-menu { border: none !important; border-radius: var(--radius) !important; box-shadow: var(--shadow-lg) !important; padding: 0.4rem !important; } .dropdown-item { border-radius: var(--radius-sm); font-size: 0.875rem; font-weight: 500; padding: 0.5rem 0.85rem; transition: var(--transition); } .dropdown-item:hover { background: var(--light); } /* ── HERO / CAROUSEL ── */ #heroCarousel { background: var(--navy); } .carousel-fade .carousel-item { opacity: 0; transition: opacity 0.9s ease !important; transform: none !important; } .carousel-fade .carousel-item.active { opacity: 1; } .carousel-fade .carousel-item-next.carousel-item-left, .carousel-fade .carousel-item-prev.carousel-item-right { opacity: 1; } .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right { opacity: 0; } .carousel-fade .carousel-item-next, .carousel-fade .carousel-item-prev, .carousel-fade .carousel-item.active, .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right { transform: translateX(0) !important; } .carousel-item { height: 92vh; min-height: 520px; background: no-repeat center center; background-size: cover; position: relative; } .carousel-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(8,16,28,0.38) 0%, rgba(8,16,28,0.78) 100%); } .hero-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: #fff; width: 85%; max-width: 820px; z-index: 3; } .carousel-item.active .hero-content { animation: heroIn 0.8s ease forwards; } @keyframes heroIn { from { opacity: 0; transform: translate(-50%, calc(-50% + 18px)); } to { opacity: 1; transform: translate(-50%, -50%); } } .hero-content h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; text-shadow: 0 3px 24px rgba(0,0,0,0.35); margin-bottom: 1.1rem; } .hero-content p { font-size: clamp(1rem, 2vw, 1.22rem); font-weight: 300; opacity: 0.9; line-height: 1.75; margin-bottom: 2rem; text-shadow: 0 1px 10px rgba(0,0,0,0.25); } .hero-divider { width: 50px; height: 4px; background: var(--red); margin: 0 auto 1.3rem; border-radius: 2px; opacity: 0.9; } .carousel-caption { z-index: 4; bottom: 2.5rem; } .carousel-indicators { z-index: 4; bottom: 1.5rem; } .carousel-indicators li { width: 8px; height: 8px; border-radius: 50%; margin: 0 4px; background: rgba(255,255,255,0.45); border: none; transition: var(--transition); } .carousel-indicators li.active { background: #fff; width: 28px; border-radius: 4px; } .carousel-control-prev, .carousel-control-next { z-index: 4; width: 5%; opacity: 0.6; } .carousel-control-prev:hover, .carousel-control-next:hover { opacity: 1; } /* ── STATS BAR ── */ .stats-bar { background: linear-gradient(90deg, var(--navy) 0%, var(--navy2) 100%); padding: 1.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); box-shadow: 0 4px 20px rgba(0,0,0,0.18); } .stats-bar .stat-item { text-align: center; color: #fff; padding: 0.4rem 1.2rem; border-right: 1px solid rgba(255,255,255,0.09); } .stats-bar .stat-item:last-child { border-right: none; } .stats-bar .stat-num { font-size: 1.55rem; font-weight: 800; color: var(--gold); display: block; line-height: 1.2; letter-spacing: -0.5px; } .stats-bar .stat-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: 0.6; margin-top: 2px; } /* ── SECTION TITLES ── */ .section-title { font-size: 1.9rem; font-weight: 800; color: var(--navy); letter-spacing: -0.7px; margin-bottom: 0.5rem; line-height: 1.2; } .section-sub { color: var(--muted); font-size: 1rem; margin-bottom: 2rem; line-height: 1.6; } .section-accent { width: 44px; height: 4px; background: var(--red); border-radius: 2px; margin-bottom: 1rem; } /* ── CARDS ── */ .card { border: 1px solid var(--border) !important; border-radius: var(--radius) !important; box-shadow: var(--shadow-sm) !important; transition: var(--transition); background: #fff; overflow: hidden; } .card:hover { box-shadow: var(--shadow) !important; transform: translateY(-4px); border-color: rgba(185,28,28,0.18) !important; } .card-header { background: #fff !important; border-bottom: 1px solid var(--border) !important; padding: 1.15rem 1.5rem !important; font-weight: 700 !important; font-size: 1rem !important; color: var(--navy) !important; display: flex; align-items: center; gap: 8px; } .card-header .fa { color: var(--red); } .card-body { padding: 1.6rem !important; } .card-footer { background: #f8fafc !important; border-top: 1px solid var(--border) !important; padding: 1rem 1.5rem !important; } .card-text { color: var(--muted); font-size: 0.92rem; line-height: 1.7; } /* Feature cards */ .feature-card { border: 1px solid var(--border) !important; border-radius: var(--radius) !important; background: #fff; padding: 2.2rem 1.8rem; height: 100%; transition: var(--transition); position: relative; overflow: hidden; box-shadow: var(--shadow-sm); } .feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--red2)); transform: scaleX(0); transform-origin: left; transition: var(--transition); } .feature-card:hover::before { transform: scaleX(1); } .feature-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); border-color: rgba(185,28,28,0.15) !important; } .feature-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, rgba(185,28,28,0.1), rgba(185,28,28,0.05)); display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem; border: 1px solid rgba(185,28,28,0.1); } .feature-icon .fa { font-size: 1.4rem; color: var(--red); } .feature-card h4 { font-size: 1.08rem; font-weight: 700; color: var(--navy); margin-bottom: 0.65rem; letter-spacing: -0.2px; } .feature-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.4rem; } /* ── BUTTONS ── */ .btn { font-family: 'Inter', sans-serif; font-weight: 600; border-radius: var(--radius-sm); transition: var(--transition); font-size: 0.875rem; letter-spacing: 0.1px; } .btn-primary { background: var(--navy) !important; border: none !important; color: #fff !important; padding: 0.55rem 1.3rem; } .btn-primary:hover { background: var(--navy2) !important; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(13,27,42,0.3) !important; } .btn-danger, .btn-red { background: var(--red) !important; border: none !important; color: #fff !important; } .btn-danger:hover { background: var(--red2) !important; transform: translateY(-1px); } .btn-success { background: #16a34a !important; border: none !important; color: #fff !important; } .btn-success:hover { background: #15803d !important; transform: translateY(-1px); } .btn-secondary { background: #f1f5f9 !important; border: 1px solid var(--border) !important; color: var(--text) !important; } .btn-secondary:hover { background: #e2e8f0 !important; } .btn-outline-light { border: 2px solid rgba(255,255,255,0.6) !important; color: #fff !important; background: transparent !important; } .btn-outline-light:hover { background: rgba(255,255,255,0.12) !important; border-color: #fff !important; } .btn-pill { border-radius: 50px !important; padding: 0.65rem 1.8rem !important; font-size: 0.95rem !important; } .btn-default { background: var(--light); border: 1px solid var(--border); color: var(--text); } /* ── FORMS ── */ .form-control { border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 0.6rem 0.9rem; font-size: 0.9rem; font-family: 'Inter', sans-serif; color: var(--text); background: #fff; transition: var(--transition); } .form-control:focus { border-color: var(--navy2); box-shadow: 0 0 0 3px rgba(27,45,66,0.12); outline: none; } .form-label { font-size: 0.82rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.35rem; display: block; } .form-hint { font-size: 0.78rem; color: var(--muted); margin-top: 0.3rem; } .input-group .form-control { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; } .input-group-btn .btn, .input-group .btn { border-radius: var(--radius-sm) 0 0 var(--radius-sm); } select.form-control { appearance: auto; } textarea.form-control { border-radius: var(--radius-sm); resize: vertical; } /* ── PAGE WRAPPER ── */ .page-wrapper { background: var(--light); min-height: calc(100vh - 68px); padding-top: 68px; } .page-content { padding: 2.5rem 0 3.5rem; } /* ── PAGE HEADER BANNER ── */ .page-banner { background: linear-gradient(135deg, var(--navy) 0%, #1a3050 100%); padding: 3.2rem 0 2.8rem; margin-bottom: 2rem; position: relative; overflow: hidden; } .page-banner::before { content: ''; position: absolute; left: -80px; bottom: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(212,168,67,0.04); } .page-banner::after { content: ''; position: absolute; right: -60px; top: -60px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.025); } .page-banner h1 { color: #fff; font-size: 2rem; font-weight: 800; letter-spacing: -0.6px; margin-bottom: 0.35rem; line-height: 1.2; } .page-banner p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin: 0; } .page-banner .fa { color: var(--gold); margin-right: 8px; } /* ── MODALS ── */ .modal-content { border: none !important; border-radius: var(--radius) !important; box-shadow: 0 25px 60px rgba(0,0,0,0.18) !important; overflow: hidden; } .modal-header { background: var(--navy); color: #fff; border-bottom: none !important; padding: 1.2rem 1.5rem !important; } .modal-header .modal-title { font-weight: 700; font-size: 1.05rem; color: #fff; } .modal-header .close { color: rgba(255,255,255,0.7); text-shadow: none; opacity: 1; } .modal-header .close:hover { color: #fff; } .modal-body { padding: 1.8rem !important; } .modal-footer { border-top: 1px solid var(--border) !important; padding: 1rem 1.5rem !important; } /* Help modal special */ .help-modal-header { background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%); padding: 2rem 1.5rem 1.5rem; text-align: center; color: #fff; } .help-modal-header h4 { font-weight: 800; font-size: 1.3rem; margin-bottom: 0.3rem; } .help-modal-header p { opacity: 0.75; font-size: 0.9rem; margin: 0; } /* ── ALERTS ── */ .alert { border: none !important; border-radius: var(--radius-sm) !important; font-size: 0.9rem; font-weight: 500; padding: 0.85rem 1.1rem !important; } .alert-success { background: #dcfce7 !important; color: #15803d !important; } .alert-warning { background: #fef9c3 !important; color: #854d0e !important; } .alert-danger { background: #fee2e2 !important; color: #991b1b !important; } .alert-info { background: #dbeafe !important; color: #1e40af !important; } /* ── FOOTER ── */ .site-footer { background: linear-gradient(180deg, var(--navy2) 0%, var(--navy) 100%); border-top: 1px solid rgba(255,255,255,0.05); padding: 3.5rem 0 1.5rem; color: rgba(255,255,255,0.7); } .footer-brand { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 7px; } .footer-brand .fa-star { color: var(--red); } .footer-desc { font-size: 0.85rem; line-height: 1.7; opacity: 0.65; max-width: 280px; } .footer-stat { text-align: center; } .footer-stat-num { font-size: 1.6rem; font-weight: 800; color: var(--gold); display: block; line-height: 1.2; } .footer-stat-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.8px; opacity: 0.6; } .footer-divider { border-color: rgba(255,255,255,0.08); margin: 2rem 0 1.2rem; } .footer-bottom { font-size: 0.78rem; opacity: 0.5; text-align: center; } .footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: none; } .footer-bottom a:hover { color: #fff; } /* ── MOBILE HELP BAR ── */ #mobile-get-help { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9999; } #mobile-get-help .mhb-inner { background: var(--red); padding: 0.85rem 1rem; display: flex; align-items: center; justify-content: center; gap: 8px; color: #fff; font-weight: 700; font-size: 0.9rem; cursor: pointer; box-shadow: 0 -4px 20px rgba(192,57,43,0.4); } #mobile-get-help .mhb-close { position: absolute; right: 14px; background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1.1rem; cursor: pointer; padding: 0; } /* ── PULSE ── */ .pulse { animation: ves-pulse 2s infinite alternate ease-in-out; display: block; margin: 1.5rem auto 0; cursor: pointer; } @keyframes ves-pulse { 0% { transform: scale(1); } 100% { transform: scale(1.12); } } /* ── UTILITY ── */ .green-color { color: #16a34a; } .disable-color { color: #94a3b8; } .text-navy { color: var(--navy); } .text-red { color: var(--red); } .text-gold { color: var(--gold); } .bg-navy { background: var(--navy); } .divider-red { width: 40px; height: 3px; background: var(--red); border-radius: 2px; margin: 0.6rem 0 1rem; } /* ── MAP PAGE ── */ .map-hero { position: relative; display: flex; align-items: center; overflow: hidden; } .map-hero-bg { position: absolute; inset: 0; background: url('images/bg/background_security-dark.jpg') center center / cover no-repeat; transform: scale(1.04); filter: brightness(0.35) saturate(0.7); } .map-hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(8,16,28,0.95) 0%, rgba(8,16,28,0.7) 60%, rgba(100,10,10,0.4) 100%); } .map-hero-content { position: relative; z-index: 2; padding-top: 2rem; padding-bottom: 3rem; } .map-hero-content h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; color: #fff; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 1rem; text-shadow: 0 4px 28px rgba(0,0,0,0.4); } .map-hero-content h1 span { color: var(--gold); } .map-hero-content > p { font-size: 1.05rem; color: rgba(255,255,255,0.7); font-weight: 300; max-width: 480px; line-height: 1.7; margin-bottom: 2rem; } .map-hero-stats { display: flex; align-items: center; gap: 1.5rem; } .map-hero-stat { text-align: center; } .map-hero-stat-num { display: block; font-size: 1.6rem; font-weight: 800; color: var(--gold); letter-spacing: -0.5px; line-height: 1.1; } .map-hero-stat-label { display: block; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.45); margin-top: 3px; } .map-hero-stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.15); } .map-outer { background: var(--light); padding: 1.8rem 0 2.5rem; } .map-frame-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); margin-bottom: 1.5rem; } .map-how { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; } .map-how-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem 1.2rem; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); } .map-how-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); } .map-how-card .fa { font-size: 1.5rem; color: var(--red); display: block; margin-bottom: 0.7rem; } .map-how-title { font-weight: 700; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.3rem; } .map-how-text { font-size: 0.8rem; color: var(--muted); line-height: 1.6; } @media (max-width: 768px) { .map-how { grid-template-columns: 1fr; } .map-hero-content h1 { font-size: 2rem; } .map-hero-content { padding-top: 1.5rem; } } /* ── ABOUT PAGE ── */ .about-hero { position: relative; display: flex; align-items: center; overflow: hidden; } .about-hero-bg { position: absolute; inset: 0; background: url('images/bg/american-flag.jpg') center 40% / cover no-repeat; transform: scale(1.04); filter: brightness(0.38) saturate(0.8); } .about-hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(8,16,28,0.92) 0%, rgba(8,16,28,0.65) 60%, rgba(100,10,10,0.45) 100%); } .about-hero-ribbon { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--gold), var(--red)); } .about-hero-content { position: relative; z-index: 2; padding-top: 2rem; padding-bottom: 3.5rem; } .about-hero-eyebrow { display: inline-flex; align-items: center; gap: 7px; background: rgba(185,28,28,0.18); border: 1px solid rgba(185,28,28,0.35); color: var(--gold); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; padding: 5px 14px; border-radius: 50px; margin-bottom: 1.2rem; } .about-hero-content h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; color: #fff; letter-spacing: -2px; line-height: 1.08; margin-bottom: 1.1rem; text-shadow: 0 4px 28px rgba(0,0,0,0.4); } .about-hero-content h1 span { color: var(--gold); } .about-hero-content > p { font-size: 1.1rem; color: rgba(255,255,255,0.72); font-weight: 300; max-width: 520px; line-height: 1.7; margin-bottom: 2rem; } .about-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; } /* Mission */ .about-mission { padding: 5rem 0; background: #fff; } .about-mission-img { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); } .about-mission-img img { width: 100%; height: 420px; object-fit: cover; display: block; } .about-mission-badge { position: absolute; bottom: 1.2rem; left: 1.2rem; background: var(--navy); color: var(--gold); border-radius: 10px; padding: 0.6rem 1rem; display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.85rem; box-shadow: 0 4px 16px rgba(0,0,0,0.3); } .about-body-text { color: var(--muted); font-size: 0.95rem; line-height: 1.85; margin-bottom: 1.1rem; } .about-mission-quote { margin-top: 1.8rem; padding: 1.1rem 1.4rem; border-left: 4px solid var(--red); background: rgba(185,28,28,0.04); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; display: flex; gap: 10px; align-items: flex-start; } .about-mission-quote .fa { color: var(--red); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; } .about-mission-quote span { font-size: 0.95rem; font-weight: 600; color: var(--navy); font-style: italic; line-height: 1.6; } /* Stats strip */ .about-stats-strip { background: linear-gradient(90deg, var(--navy) 0%, var(--navy2) 100%); padding: 2.8rem 0; box-shadow: 0 4px 24px rgba(0,0,0,0.18); } .about-stat { padding: 0.8rem 1rem; } .about-stat-num { font-size: 2.2rem; font-weight: 800; color: var(--gold); letter-spacing: -1px; line-height: 1.1; } .about-stat-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-top: 4px; } /* How it works */ .about-how { padding: 5rem 0; background: var(--light); } .how-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2.2rem 1.8rem 2rem; height: 100%; position: relative; transition: var(--transition); box-shadow: var(--shadow-sm); overflow: hidden; } .how-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); } .how-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--red2)); transform: scaleX(0); transform-origin: left; transition: var(--transition); } .how-card:hover::before { transform: scaleX(1); } .how-step { font-size: 3.5rem; font-weight: 800; color: rgba(185,28,28,0.08); line-height: 1; position: absolute; top: 1rem; right: 1.2rem; letter-spacing: -2px; } .how-icon { width: 58px; height: 58px; border-radius: 14px; background: linear-gradient(135deg, rgba(185,28,28,0.1), rgba(185,28,28,0.05)); border: 1px solid rgba(185,28,28,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem; } .how-icon .fa { font-size: 1.4rem; color: var(--red); } .how-icon-gold { background: linear-gradient(135deg, rgba(212,168,67,0.12), rgba(212,168,67,0.05)) !important; border-color: rgba(212,168,67,0.2) !important; } .how-icon-gold .fa { color: var(--gold) !important; } .how-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.65rem; } .how-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.75; margin: 0; } .how-connector { position: absolute; top: 50%; right: -20px; width: 20px; height: 2px; background: var(--border); z-index: 1; } @media (max-width: 991px) { .how-connector { display: none; } } /* Privacy */ .about-privacy { padding: 3rem 0; background: #fff; } .about-privacy-inner { background: linear-gradient(135deg, #f0f4f8 0%, #e8edf4 100%); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 2.2rem; border-left: 5px solid var(--navy); } .privacy-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; margin: 0 auto; box-shadow: 0 4px 16px rgba(10,22,40,0.25); } .privacy-icon .fa { font-size: 1.5rem; color: var(--gold); } .about-privacy-inner h4 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; } .about-privacy-inner p { color: var(--muted); font-size: 0.9rem; line-height: 1.75; margin: 0; } /* Mendleton */ .about-mendleton { padding: 5rem 0; background: linear-gradient(135deg, var(--navy) 0%, #1a3050 100%); position: relative; overflow: hidden; } .about-mendleton::before { content: ''; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.02); } .about-mendleton-logo { width: 160px; height: auto; opacity: 0.92; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4)); } /* CTA */ .about-cta { padding: 5rem 0; background: var(--light); } .about-cta-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; box-shadow: 0 6px 24px rgba(185,28,28,0.4); animation: vpl-pulse 2s ease-in-out infinite; } .about-cta-icon .fa { font-size: 1.7rem; color: #fff; } .about-cta h2 { font-size: 2rem; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; margin-bottom: 0.6rem; } .about-cta p { color: var(--muted); font-size: 1rem; max-width: 500px; margin: 0 auto 2rem; line-height: 1.7; } /* ── SCROLLBAR ── */ ::-webkit-scrollbar { width: 7px; } ::-webkit-scrollbar-track { background: var(--light); } ::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; } ::-webkit-scrollbar-thumb:hover { background: #94a3b8; } /* ── RESPONSIVE ── */ @media (max-width: 991px) { .carousel-item { height: 68vh; min-height: 380px; } .hero-content h1 { font-size: 2.1rem; } .stats-bar .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); } .feature-card { padding: 1.8rem 1.5rem; } /* hide site banner on mobile — navbar only */ .site-banner-top { display: none !important; } .page-wrapper { padding-top: 68px; } .about-hero-content { padding-top: 1.5rem; padding-bottom: 3rem; } .brand-support { display: none; } .navbar-brand { margin-left: 1rem; } .d-flex.d-lg-none { margin-right: 1rem; } /* dropdown opens below navbar without shifting its height */ #navMain { position: absolute; top: 100%; left: 0; right: 0; z-index: 1000; border-radius: 0 0 14px 14px; margin: 0; } /* fix white hamburger icon */ .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important; filter: none !important; } /* ── Mobile navbar ── */ .navbar-collapse { background: rgba(8,16,28,0.98); border-top: 1px solid rgba(255,255,255,0.07); border-radius: 0 0 14px 14px; padding: 0.6rem 0.5rem 1rem; margin: 0 -15px; box-shadow: 0 12px 32px rgba(0,0,0,0.35); } .navbar-nav { gap: 2px; } .navbar-nav .nav-item { background: none !important; border: none !important; padding: 0 !important; } .navbar-nav .nav-link { font-size: 0.9rem !important; padding: 0.6rem 0.9rem !important; border-radius: 8px; color: rgba(255,255,255,0.75) !important; } .navbar-nav .nav-link:hover { background: rgba(255,255,255,0.07) !important; color: #fff !important; } .navbar-right-group { flex-direction: column; align-items: stretch; gap: 6px; padding: 0.6rem 0.4rem 0; border-top: 1px solid rgba(255,255,255,0.07); margin-top: 0.4rem; } .nav-btn { justify-content: center; padding: 0.55rem 1rem; font-size: 0.85rem; border-radius: 8px !important; } .nav-account-toggle { justify-content: flex-start; border-radius: 8px; padding: 0.5rem 0.8rem; } .nav-account-name { max-width: none; } .btn-help-nav { justify-content: center; border-radius: 8px !important; margin: 0 !important; padding: 0.55rem 1rem; } .nav-dropdown { position: static !important; width: 100%; margin-top: 4px !important; border-radius: 10px !important; } } @media (max-width: 576px) { .carousel-item { height: 58vh; } .page-banner h1 { font-size: 1.6rem; } .section-title { font-size: 1.6rem; } .hero-content .btn { display: block; width: 100%; margin-right: 0 !important; margin-bottom: 0.6rem; } .hero-content .btn:last-child { margin-bottom: 0; } } 