/*styles.css*/
:root {
    /* Color Palette */
    --primary: #112442;
    --primary-rgb: 17, 36, 66;
    --accent: #E60012;
    --accent-rgb: 230, 0, 18;
    
    /* Surface & Background */
    --surface: #FFFFFF;
    --surface-container: #F8FAFC;
    --on-surface: #001F3F;
    --on-surface-variant: #475569;
    --outline: #E2E8F0;
    
    /* Typography */
    --font-headline: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Scaling */
    --radius-default: 0.25rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --max-width: 1536px;
    --content-width: 80rem;
}

.text-accent {
    color: var(--accent) !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-headline);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--on-surface-variant);
    overflow-x: hidden;
    background-color: var(--surface);
}

::selection {
    background-color: var(--primary);
    color: white;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--on-surface);
    font-weight: 700;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
    font-family: var(--font-headline);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Language Switcher */
.nav-item-lang {
    list-style: none;
    margin-left: 1rem;
}

.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.7rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.lang-btn .arrow {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    min-width: 160px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(17, 36, 66, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1001;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    color: var(--on-surface-variant);
}

.lang-option:hover {
    background: var(--surface-container);
    color: var(--accent);
}

.lang-option.active {
    background: rgba(var(--accent-rgb), 0.05);
    color: var(--accent);
    font-weight: 700;
}

#google_translate_element, 
.goog-te-banner-frame, 
.goog-te-banner,
.goog-te-menu-frame,
.goog-te-gadget-icon,
.goog-te-menu-value span:nth-child(2),
.goog-te-gadget-simple img,
#goog-gt-tt,
.goog-te-balloon-frame,
.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
    position: static !important;
}

html {
    top: 0px !important;
}

/* Prevent translation of the language switcher itself */
.notranslate {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: -20px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    top: 100%;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
    margin-top: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--outline);
    transition: all 0.3s ease;
    color: var(--on-surface-variant);
    text-decoration: none;
    font-weight: 500;
}

.dropdown-content a:hover {
    background: rgba(var(--accent-rgb), 0.04);
    color: var(--accent);
    padding-left: 2rem;
}

/* Layout Helpers */
.container {
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    height: 90vh;
    background: linear-gradient(135deg, var(--primary) 0%, #0a1628 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 0, 18, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #E60012;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 0, 18, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(230, 0, 18, 0.6);
    background: #ff1a2e;
}

/*Info Hero Section*/
.infohero {
    position: relative;
    padding: 12rem 0 8rem;
    overflow: hidden;
    background-color: var(--surface);
    text-align: center;
}

.infohero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 31, 63, 0.05), transparent, transparent);
    pointer-events: none;
}

.badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-default);
    background-color: rgba(0, 31, 63, 0.05);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.infohero h1 {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: clamp(3rem, 10vw, 6rem);
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--primary);
}

.infohero h1 span {
    color: var(--accent);
}

.infohero p {
    max-width: 48rem;
    margin: 0 auto;
    color: var(--on-surface-variant);
    font-size: 1.125rem;
    line-height: 1.625;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #E60012;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-bottom-color: var(--accent);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--accent-rgb), 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #E60012;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Stats Section */
.stats {
    background: #1a1a2e;
    color: white;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(230, 0, 18, 0.03) 10px,
            rgba(230, 0, 18, 0.03) 20px);
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.stats .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: #E60012;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Story Section */
.story {
    padding: 8rem 0;
    background-color: var(--surface-container);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.story-image-wrapper {
    position: relative;
}

.story-image-bg {
    position: absolute;
    inset: -1rem;
    background: rgba(0, 31, 63, 0.05);
    border-radius: var(--radius-default);
    filter: blur(24px);
    transition: all 0.5s;
}

.story-image-wrapper:hover .story-image-bg {
    background: rgba(0, 31, 63, 0.1);
}

.story-img {
    position: relative;
    border-radius: var(--radius-default);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.7s;
}

.story-img:hover {
    filter: grayscale(0%);
}

.story-content h2 {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -0.025em;
    color: var(--primary);
    margin-bottom: 2rem;
}

.accent-bar {
    width: 5rem;
    height: 0.375rem;
    background-color: var(--accent);
    margin-bottom: 2rem;
}

.story-content p {
    color: var(--on-surface-variant);
    font-size: 1.125rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.btn-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem 0;
    font-size: 1rem;
}

.btn-text span {
    transition: transform 0.3s;
}

.btn-text:hover span {
    transform: translateX(4px);
}

/* Mission Vision Section */
.mission-vision {
    padding: 8rem 0;
    background-color: var(--primary);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.mission-card {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Subtle gradient overlay that intensifies on hover */
.mission-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(230, 0, 18, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-12px);
    border-color: rgba(230, 0, 18, 0.6);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(230, 0, 18, 0.2);
}

.mission-card:hover::before {
    opacity: 1;
}

.icon-box {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-default);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.icon-box-primary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.mission-card:hover .icon-box-primary {
    background-color: rgba(230, 0, 18, 0.9);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(230, 0, 18, 0.3);
}

.icon-box-accent {
    background-color: rgba(230, 0, 18, 0.2);
    color: var(--accent);
}

.mission-card:hover .icon-box-accent {
    background-color: rgba(230, 0, 18, 0.9);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(230, 0, 18, 0.3);
}

.mission-card h3 {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.mission-card:hover h3 {
    transform: translateX(8px);
}

.mission-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    line-height: 1.625;
    position: relative;
    z-index: 1;
}

/* Partners Section */
.partners {
    padding: 6rem 0;
    text-align: center;
}

.partners h2 {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 4rem;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 160px;
    max-height: 80px;
    object-fit: contain;
}

/* Values Section */
.values {
    padding: 8rem 0;
    background-color: var(--surface-container);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -0.025em;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.section-header p {
    color: var(--on-surface-variant);
    max-width: 42rem;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--surface-container);
    border-radius: var(--radius-default);
    transition: box-shadow 0.3s;
}

.value-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.value-icon {
    display: inline-flex;
    padding: 1rem;
    border-radius: var(--radius-default);
    margin-bottom: 1.5rem;
}

.value-icon.primary {
    background: rgba(0, 31, 63, 0.05);
    color: var(--primary);
}

.value-icon.accent {
    background: rgba(182, 23, 30, 0.05);
    color: var(--accent);
}

.value-card h4 {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--on-surface-variant);
    font-size: 0.875rem;
    line-height: 1.625;
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    background-color: var(--surface);
}

.cta-banner {
    position: relative;
    background-color: var(--primary);
    border-radius: var(--radius-xl);
    padding: 6rem 2rem;
    overflow: hidden;
    text-align: center;
    color: white;
}

@media (min-width: 768px) {
    .cta-banner {
        padding: 6rem;
    }
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom left, rgba(182, 23, 30, 0.2), transparent, transparent);
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta h2 {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .cta-actions {
        flex-direction: row;
    }
}

.btn-cta-primary {
    width: 100%;
    background-color: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-default);
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .btn-cta-primary {
        width: auto;
    }
}
.btn-cta-primary:hover {
    background-color: white;
    color: var(--primary);
}

.btn-cta-outline {
    width: 100%;
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-default);
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 1.125rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

@media (min-width: 640px) {
    .btn-cta-outline {
        width: auto;
    }
}

.btn-cta-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.partner-logos {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 160px;
    max-height: 80px;
    object-fit: contain;
}

/* Values Section */
.values {
    padding: 8rem 0;
    background-color: var(--surface-container);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -0.025em;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.section-header p {
    color: var(--on-surface-variant);
    max-width: 42rem;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--surface-container);
    border-radius: var(--radius-default);
    transition: box-shadow 0.3s;
}

.value-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.value-icon {
    display: inline-flex;
    padding: 1rem;
    border-radius: var(--radius-default);
    margin-bottom: 1.5rem;
}

.value-icon.primary {
    background: rgba(0, 31, 63, 0.05);
    color: var(--primary);
}

.value-icon.accent {
    background: rgba(182, 23, 30, 0.05);
    color: var(--accent);
}

.value-card h4 {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--on-surface-variant);
    font-size: 0.875rem;
    line-height: 1.625;
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    background-color: var(--surface);
}

.cta-banner {
    position: relative;
    background-color: var(--primary);
    border-radius: var(--radius-xl);
    padding: 6rem 2rem;
    overflow: hidden;
    text-align: center;
    color: white;
}

@media (min-width: 768px) {
    .cta-banner {
        padding: 6rem;
    }
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom left, rgba(182, 23, 30, 0.2), transparent, transparent);
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta h2 {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .cta-actions {
        flex-direction: row;
    }
}

.btn-cta-primary {
    width: 100%;
    background-color: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-default);
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .btn-cta-primary {
        width: auto;
    }
}

.btn-cta-primary:hover {
    background-color: white;
    color: var(--primary);
}

.btn-cta-outline {
    width: 100%;
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-default);
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 1.125rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

@media (min-width: 640px) {
    .btn-cta-outline {
        width: auto;
    }
}

.btn-cta-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 10000;
    pointer-events: none;
}

.toast-content {
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    pointer-events: auto;
    animation: toastIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: var(--font-body);
    font-weight: 500;
}

.toast-content button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0;
    line-height: 1;
}

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

/* Footer */
footer {
    background: #0f0f1e;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #E60012;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* Contact Page */
.contact-hero {
    margin-top: 80px;
    height: 400px;
    background-color: #1a1a2e;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-hero-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.contact-hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #FFD700;
}

.contact-hero p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 0;
    background: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    min-height: 600px;
}

/* Form Area */
.contact-form-wrapper {
    padding: 4rem 5rem;
    background: #ffffff;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E60012;
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: #E60012;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #ff1a2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 0, 18, 0.3);
}

/* Right Side - Info Panel */
.contact-info-panel {
    background: #001264;
    padding: 4rem 3rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-panel h3 {
    font-size: 1.9 rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.phone-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
}

/* Map Section */
.map-section {
    background: #ffffff;
    padding: 4rem 2rem;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-container:hover iframe {
    filter: grayscale(0);
}

/* Active Nav Link */
.nav-links a.active {
    color: #E60012;
}

.nav-links a.active::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 968px) {
    .mobile-menu-btn {
        display: block !important;
    }

    .nav-links {
        display: none !important;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 2rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        text-align: center;
        gap: 2rem;
        z-index: 9999;
        border-top: 1px solid #f0f0f0;
    }

    .nav-links.active {
        display: flex !important;
    }

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

    .nav-links a {
        display: block;
        padding: 10px 20px;
        font-size: 1.2rem;
        color: #1a1a2e !important;
        font-weight: 600;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        background: #f8f9fa;
        margin-top: 10px;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }
}

/* Services & Layout Components */
.service-hero {
    padding: 6rem 0;
    overflow: hidden;
}

.service-hero-light {
    background-color: var(--surface-container);
}

.service-hero-dark {
    background-color: var(--primary);
    color: white;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-hero-grid-reverse {
    direction: rtl;
}

.service-hero-grid-reverse > * {
    direction: ltr;
}

@media (max-width: 968px) {
    .service-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.service-hero-content h1 {
    font-weight: 800;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    color: var(--primary);
    margin: 1.5rem 0;
}

.service-hero-dark .service-hero-content h1 {
    color: white;
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-default);
}

.service-badge-red {
    background: var(--accent);
}

.btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    background: var(--accent);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: var(--radius-default);
    transition: all 0.3s ease;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: var(--radius-default);
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.btn-outline-light {
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: white !important;
    color: var(--primary) !important;
    border-color: white !important;
}

.service-hero-image {
    position: relative;
    height: 600px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.stats-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    min-width: 200px;
}

.stats-number {
    font-weight: 800;
    font-size: 3rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-label {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--accent);
    letter-spacing: 0.05em;
}

.service-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.service-header-centered h1 {
    font-weight: 800;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    color: var(--primary);
    margin: 1.5rem 0;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2.5rem;
    margin-top: 4rem;
    align-items: stretch;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--outline);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card-dark {
    background: var(--primary);
    color: white;
}

.feature-card-dark h3,
.feature-card-dark p {
    color: white !important;
}

.feature-icon-box-red {
    background: var(--accent) !important;
    color: white !important;
}

.feature-link-light {
    color: white !important;
    opacity: 0.9;
}

.feature-link-light:hover {
    opacity: 1;
}

.feature-icon-box {
    width: 4rem;
    height: 4rem;
    background: rgba(17, 36, 66, 0.1);
    color: var(--accent);
    border-radius: var(--radius-default);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.feature-link:hover {
    gap: 0.75rem;
}

/* Bento Grid & Step Layouts (Powerbank Service) */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .bento-span-2 {
        grid-column: span 2;
    }
}

.step-card {
    position: relative;
    padding: 3rem 2rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--outline);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.05;
    line-height: 1;
}

/* Powerbank Map & Photo 2 Aesthetic Upgrade */
.hero-diagonal-cinematic {
    position: relative;
    min-height: 100vh;
    padding-top: 140px; /* Header space + breathing room */
    display: flex;
    align-items: flex-start; /* Ensure top of content is always visible */
    overflow: hidden;
    background: linear-gradient(135deg, #000613 0%, #112442 100%);
}

.hero-diagonal-cinematic::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1449156001437-3a1661642945?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.hero-diagonal-cinematic .container {
    position: relative;
    z-index: 2;
}

.floating-product {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    animation: floating 6s ease-in-out infinite;
}

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

/* Feature Card V2 (Photo 2 Alignment) */
.feature-card-v2 {
    background: #F8FAFC;
    padding: 4rem 2rem 2.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
}

.feature-card-v2:hover {
    background: white;
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(17, 36, 66, 0.05);
}

.feature-card-v2 .feature-icon-box {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    background: none;
    padding: 0;
    width: auto;
    height: auto;
}

.feature-card-v2 h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Map Section */
.map-container {
    height: 600px;
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(17, 36, 66, 0.15);
}

#map {
    height: 100%;
    width: 100%;
    z-index: 1;
}

.map-ui-overlay {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    z-index: 10;
    width: fit-content;
    max-width: calc(100% - 2rem);
}

.search-box {
    background: var(--primary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-height: fit-content;
    width: 320px;
    display: flex;
    flex-direction: column;
}

.search-box input {
    flex: 1;
    min-width: 151px;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-default);
    color: white;
}

.map-legend {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: var(--radius-default);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Station Details Side Panel */
/* Station Details Side Panel (Refined Light Theme) */
.station-details-panel {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    bottom: 1rem;
    width: 380px;
    background: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    z-index: 1000;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.1);
    color: #333333;
}

.station-details-panel.show {
    transform: translateX(0);
}

.panel-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #F0F2F5;
    border: none;
    color: #111111;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.panel-close:hover {
    background: #FF2E2E;
}

#panel-content {
    padding: 2.5rem 1.5rem;
    overflow-y: auto;
    height: 100%;
}

.station-details-panel .pb-popup-title {
    font-size: 1.5rem;
    color: #111111 !important;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.station-details-panel .pb-popup-terms {
    background: #F8F9FB !important;
    border-radius: 12px;
    padding: 1.2rem;
    margin: 1.5rem 0;
    border: 1px solid #EEEEEE;
    color: #555555 !important;
}

.station-details-panel .pb-nav-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    background: #111111;
    color: white !important;
    margin-top: 1.5rem;
    border-radius: 12px;
}

.station-details-panel .pb-icon-box {
    background: #F0F4F8;
    color: #112442;
}

.station-details-panel .pb-info-col h5 {
    color: #111111 !important;
    font-weight: 700;
}

.station-details-panel .pb-info-col p {
    color: #777777 !important;
}

/* Mobile Responsive for Panel */
@media (max-width: 768px) {
    .station-details-panel {
        top: auto;
        right: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 60vh;
        transform: translateY(100%);
        border-radius: 24px 24px 0 0;
    }
    
    .station-details-panel.show {
        transform: translateY(0);
    }

    /* Hide search box when panel is open on mobile */
    .map-container.panel-open .map-ui-overlay {
        display: none !important;
    }
}

/* High-Contrast Battery Meter for Side Panel */
.station-details-panel .battery-meter {
    display: flex;
    gap: 4px;
}

.station-details-panel .meter-bar {
    width: 25px;
    height: 8px;
    background: #E2E8F0;
    border-radius: 4px;
}

.station-details-panel .meter-bar.active {
    background: #22c55e;
    box-shadow: none;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* Marker Colors */
.color-available { background-color: #22c55e; }
.color-empty { background-color: #ef4444; }
.color-planned { background-color: #94a3b8; }



/* E-Bikes Page Styles */

/* ========== Hero Slideshow ========== */
.ebike-hero {
    margin-top: 80px;
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: var(--primary);
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(17, 36, 66, 0.85) 0%,
        rgba(17, 36, 66, 0.6) 40%,
        rgba(17, 36, 66, 0.2) 70%,
        transparent 100%
    );
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    max-width: 600px;
    margin-left: 10%;
}

.slide-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(230, 0, 18, 0.9);
    color: white;
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: var(--radius-default);
    margin-bottom: 1.5rem;
    width: fit-content;
}

.slide-badge.badge-light {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.slide-content h1 {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.slide-content h1 .text-accent {
    color: var(--accent);
}

.slide-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

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

/* Slideshow Navigation */
.slideshow-nav {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    max-width: var(--content-width);
    margin: 0 auto;
}

.slide-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

.slide-arrows {
    display: flex;
    gap: 0.75rem;
}

.slide-arrows .arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slide-arrows .arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.arrow svg {
    width: 20px;
    height: 20px;
}

/* ========== Bike Showcase Section ========== */
.bike-showcase {
    padding: 6rem 0;
    background: var(--surface);
}

.bike-showcase .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.bike-showcase .section-header h2 {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.bike-showcase .section-header p {
    color: var(--on-surface-variant);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.bikes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

@media (max-width: 968px) {
    .bikes-grid {
        grid-template-columns: 1fr;
    }
}

.bike-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--outline);
}

.bike-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.bike-image {
    height: 320px;
    overflow: hidden;
}

.bike-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.bike-info {
    padding: 2rem;
}

.bike-category {
    display: inline-block;
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.bike-info h3 {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.bike-info p {
    color: var(--on-surface-variant);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.bike-specs {
    border-top: 1px solid var(--outline);
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--outline);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--on-surface-variant);
    font-size: 0.875rem;
}

.spec-value {
    font-family: var(--font-headline);
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

.btn-configure {
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius-default);
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-configure:hover {
    background: var(--primary);
    color: white;
}

/* ========== Technical Comparison Section ========== */
.tech-comparison {
    padding: 6rem 0;
    background: var(--surface-container);
}

.tech-comparison .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tech-comparison .section-header h2 {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.tech-comparison .section-header p {
    color: var(--on-surface-variant);
    font-size: 1rem;
}

.comparison-table-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: var(--primary);
}

.comparison-table th {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: white;
    padding: 1.25rem 1.5rem;
    text-align: left;
}

.comparison-table th:first-child {
    width: 35%;
}

.comparison-table th:not(:first-child) {
    width: 32.5%;
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--outline);
    font-size: 0.95rem;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--primary);
}

.comparison-table td:not(:first-child) {
    color: var(--on-surface-variant);
}

.comparison-table tbody tr:hover {
    background: rgba(0, 31, 63, 0.02);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Responsive Table */
@media (max-width: 768px) {
    .comparison-table-wrapper {
        overflow-x: auto;
    }
    
    .comparison-table {
        min-width: 600px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
        font-size: 0.875rem;
    }
}

/* ========== Responsive Adjustments ========== */
@media (max-width: 968px) {
    .ebike-hero {
        min-height: 600px;
    }
    
    .slide-content {
        margin-left: 5%;
        margin-right: 5%;
        max-width: none;
        padding: 0 1.5rem;
    }
    
    .slide-overlay {
        background: linear-gradient(
            90deg,
            rgba(17, 36, 66, 0.95) 0%,
            rgba(17, 36, 66, 0.85) 60%,
            rgba(17, 36, 66, 0.6) 100%
        );
    }
    
    .slideshow-nav {
        padding: 0 1.5rem;
        bottom: 2rem;
    }
    
    .slide-arrows {
        display: none;
    }
}

@media (max-width: 640px) {
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    .search-box.collapsed .search-toggle {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        color: white;
        font-size: 1.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    
    .slide-actions {
        flex-direction: column;
    }
    
    .slide-actions .btn-solid,
    .slide-actions .btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .bike-image {
        height: 250px;
    }
    
    .bike-info {
        padding: 1.5rem;
    }
}
/* --- Powerbank Rental Page Styles --- */
.pb-rental-page {
    /* Scoped Leaflet Overrides */
}

.pb-rental-page .custom-marker {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pb-rental-page .marker-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center center;
}

.pb-rental-page .custom-marker:hover .marker-dot {
    transform: scale(1.4);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.pb-rental-page .leaflet-popup-content-wrapper {
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.pb-rental-page .leaflet-popup-content {
    margin: 0 !important;
    width: 320px !important;
}

.pb-rental-page .pb-popup {
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    word-wrap: break-word;
}

.pb-rental-page .pb-popup-header {
    padding: 20px 20px 15px;
}

.pb-rental-page .pb-popup-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
    line-height: 1.2;
}

.pb-rental-page .pb-popup-terms {
    background: #f8f9fa;
    margin: 0 15px 15px;
    padding: 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: #777;
    line-height: 1.6;
}

.pb-rental-page .pb-popup-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.pb-rental-page .pb-nav-btn {
    background: #1a1a1a;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
}

.pb-rental-page .pb-status-section {
    padding: 15px 20px 20px;
}

.pb-rental-page .pb-status-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.pb-rental-page .pb-status-row:last-child { margin-bottom: 0; }

.pb-rental-page .pb-icon-box {
    width: 44px;
    height: 44px;
    background: #f0f4f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.pb-rental-page .pb-info-col h5 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
}

.pb-rental-page .pb-info-col p {
    margin: 2px 0 0;
    font-size: 0.75rem;
    color: #999;
    line-height: normal;
}

.pb-rental-page .battery-meter {
    display: flex;
    gap: 3px;
    margin-top: 5px;
}

.pb-rental-page .meter-bar {
    width: 12px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 2px;
}

.pb-rental-page .meter-bar.active { background: #22c55e; }

.pb-rental-page .search-box {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.pb-rental-page .search-box.collapsed {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    background: #FF2E2E !important;
    border-radius: 12px;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255, 46, 46, 0.3);
    flex-shrink: 0;
    overflow: hidden;
}

.pb-rental-page .search-box.collapsed * {
    display: none !important;
}

.pb-rental-page .search-box.collapsed button.search-toggle,
.pb-rental-page .search-box.collapsed button.search-toggle span {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.pb-rental-page .search-box.collapsed h3, 
.pb-rental-page .search-box.collapsed .search-input-group,
.pb-rental-page .search-box.collapsed #search-status {
    display: none;
}

.pb-rental-page .search-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    z-index: 10;
}

.pb-rental-page .search-box.collapsed .search-toggle {
    position: absolute !important;
    inset: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #FFFFFF !important;
    font-size: 1.8rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 50px !important;
    height: 50px !important;
    font-weight: 700;
    opacity: 1 !important;
    background: transparent !important;
}

/* Scoped Utility Classes for Powerbank Page */
.pb-rental-page .text-white { color: white !important; }
.pb-rental-page .text-accent-red { color: #FF2E2E !important; }
.pb-rental-page .text-dim { color: rgba(255,255,255,0.5) !important; }
.pb-rental-page .text-dim-white { color: rgba(255,255,255,0.7) !important; }

.pb-rental-page .bg-accent-red { background-color: #FF2E2E !important; }
.pb-rental-page .bg-white { background-color: white !important; }
.pb-rental-page .bg-primary-dark { background-color: var(--primary) !important; }
.pb-rental-page .bg-transparent-white { background-color: rgba(255,255,255,0.1) !important; }
.pb-rental-page .bg-surface-variant { background-color: var(--surface-container) !important; }

.pb-rental-page .py-10rem { padding-top: 10rem !important; padding-bottom: 10rem !important; }
.pb-rental-page .mb-6rem { margin-bottom: 6rem !important; }
.pb-rental-page .mb-5rem { margin-bottom: 5rem !important; }
.pb-rental-page .mb-3rem { margin-bottom: 3rem !important; }
.pb-rental-page .mb-1rem { margin-bottom: 1rem !important; }

.pb-rental-page [id] { scroll-margin-top: 100px; }
.pb-rental-page .text-center { text-align: center !important; }

.pb-rental-page .title-large { font-size: clamp(3.5rem, 8vw, 6rem); line-height: 1.25; font-weight: 900; max-width: 900px; margin-inline: auto !important; text-align: center !important; }
.pb-rental-page .title-medium { font-size: 3.5rem; font-weight: 900; line-height: 1.2; text-align: center; }
.pb-rental-page .title-xl { font-size: 4rem; font-weight: 900; line-height: 1.1; margin-inline: auto !important; text-align: center !important; }
.pb-rental-page .title-step { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }

.pb-rental-page .text-uppercase-small { 
    font-weight: 700; 
    letter-spacing: 0.1em; 
    text-transform: uppercase; 
    font-size: 0.8rem; 
}

.pb-rental-page .text-uppercase-large {
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pb-rental-page .hero-desc { font-size: 1.2rem; }
.pb-rental-page .desc-centered { font-size: 1.1rem; max-width: 700px; margin: 0 auto; }

.pb-rental-page .flex-center { display: flex; align-items: center; justify-content: center; }
.pb-rental-page .flex-gap-1-5rem { display: flex; gap: 1.5rem; }
.pb-rental-page .grid-2col { display: grid; grid-template-columns: repeat(2, 1fr) !important; gap: 2.5rem; }
.pb-rental-page .grid-gap-3rem { display: grid; gap: 3rem; }

.pb-rental-page .w-full { width: 100% !important; }
.pb-rental-page .max-w-500 { max-width: 500px !important; }
.pb-rental-page .h-auto { height: auto !important; }
.pb-rental-page .h-600 { height: 600px !important; }

.pb-rental-page .rounded-sm { border-radius: 4px !important; }
.pb-rental-page .rounded-8px { border-radius: 8px !important; }

.pb-rental-page .shadow-xl { box-shadow: 0 40px 80px rgba(0,0,0,0.4) !important; }
.pb-rental-page .shadow-step { box-shadow: 0 10px 30px rgba(17, 36, 66, 0.05) !important; }

.pb-rental-page .opacity-08 { opacity: 0.08 !important; }

.pb-rental-page .map-wrapper { position: relative; overflow: hidden; height: 500px; }
.pb-rental-page .search-input-group { position: relative; display: flex; gap: 0.5rem; }
.pb-rental-page .search-btn-custom { padding: 0 1.25rem; font-size: 1.2rem; border-radius: var(--radius-default); }

.pb-rental-page .icon-box-sm { 
    width: 50px; 
    height: 50px; 
    background: rgba(255,255,255,0.05); 
    border-radius: 8px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.pb-rental-page .gradient-overlay { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(to top, var(--primary), transparent); 
}

.pb-rental-page .img-cover { object-fit: cover; }
.pb-rental-page .text-primary { color: var(--primary) !important; }
.pb-rental-page .icon-large { font-size: 2.5rem !important; }
.pb-rental-page .icon-xl { font-size: 3rem !important; }
.pb-rental-page .mb-0 { margin-bottom: 0 !important; }
.pb-rental-page .mt-1-5rem { margin-top: 1.5rem !important; }
.pb-rental-page .mt-2rem { margin-top: 2rem !important; }
.pb-rental-page .mt-3rem { margin-top: 3rem !important; }
.pb-rental-page .p-0 { padding: 0 !important; }
.pb-rental-page .h-full { height: 100% !important; }
.pb-rental-page .search-status-text { color: rgba(255,255,255,0.6) !important; font-size: 0.75rem !important; margin-top: 0.75rem !important; }
.pb-rental-page .mb-2rem { margin-bottom: 2rem !important; }
.pb-rental-page .mt-2rem { margin-top: 2rem !important; }
.pb-rental-page .footer-desc { color: #aaa !important; line-height: 1.8 !important; }
.pb-rental-page .footer-link-white { color: #fff !important; text-decoration: none !important; }

/* ==========================================================================
   Powerbank Rental Page Scoped Styles & Utilities
   ========================================================================== */

/* Utility Classes */
.pb-rental-page .py-10rem { padding: 10rem 0 !important; }
.pb-rental-page .mb-1rem { margin-bottom: 1rem !important; }
.pb-rental-page .mb-5rem { margin-bottom: 5rem !important; }
.pb-rental-page .mb-6rem { margin-bottom: 6rem !important; }
.pb-rental-page .mb-3rem { margin-bottom: 3rem !important; }
.pb-rental-page .mt-2rem { margin-top: 2rem !important; }
.pb-rental-page .mb-2rem { margin-bottom: 2rem !important; }
.pb-rental-page .text-white { color: white !important; }
.pb-rental-page .text-primary { color: var(--primary) !important; }
.pb-rental-page .text-accent-red { color: #FF2E2E !important; }
.pb-rental-page .bg-accent-red { background: #FF2E2E !important; }
.pb-rental-page .bg-surface-variant { background: var(--surface-container) !important; }
.pb-rental-page .bg-primary-dark { background: var(--primary) !important; }
.pb-rental-page .text-dim-white { color: rgba(255,255,255,0.7) !important; }
.pb-rental-page .text-dim { color: rgba(255,255,255,0.5) !important; }
.pb-rental-page .flex-center { display: flex !important; align-items: center !important; justify-content: center !important; }
.pb-rental-page .h-auto { height: auto !important; }
.pb-rental-page .h-600 { height: 600px !important; }
.pb-rental-page .w-full { width: 100% !important; }
.pb-rental-page .h-full { height: 100% !important; }
.pb-rental-page .max-w-500 { max-width: 500px !important; }
.pb-rental-page .rounded-sm { border-radius: 4px !important; }
.pb-rental-page .rounded-8px { border-radius: 8px !important; }
.pb-rental-page .shadow-xl { box-shadow: 0 40px 80px rgba(0,0,0,0.4) !important; }
.pb-rental-page .img-cover { object-fit: cover !important; }
.pb-rental-page .text-uppercase-small { font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.8rem; }
.pb-rental-page .text-uppercase-large { font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.pb-rental-page .title-xl { font-size: 4rem; font-weight: 900; line-height: 1.1; }
.pb-rental-page .title-large { font-size: clamp(3.5rem, 8vw, 6rem); line-height: 1.05; }
.pb-rental-page .title-medium { font-size: 3.5rem; font-weight: 900; }
.pb-rental-page .title-step { font-weight: 800; font-size: 1.5rem; }
.pb-rental-page .desc-centered { color: var(--on-surface-variant); font-size: 1.1rem; max-width: 700px; margin: 0 auto; }
.pb-rental-page .hero-desc { font-size: 1.2rem; }
.pb-rental-page .grid-2col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.pb-rental-page .grid-gap-3rem { display: grid; gap: 3rem; }
.pb-rental-page .flex-gap-1-5rem { display: flex; gap: 1.5rem; }
.pb-rental-page .icon-large { font-size: 2.5rem !important; }
.pb-rental-page .icon-box-sm { width: 50px; height: 50px; background: rgba(255,255,255,0.05); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.pb-rental-page .h4-bold-lg { font-weight: 700; font-size: 1.3rem; }
.pb-rental-page .badge-accent { background: var(--accent); border: none; }
.pb-rental-page .badge-transparent { background: rgba(255,255,255,0.1); }
.pb-rental-page .gradient-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--primary), transparent); }
.pb-rental-page .shadow-step { box-shadow: 0 10px 30px rgba(17, 36, 66, 0.05); }
.pb-rental-page .opacity-08 { opacity: 0.08 !important; }
.pb-rental-page .footer-desc { color: #aaa !important; line-height: 1.8 !important; }
.pb-rental-page .footer-link-white { color: #fff !important; text-decoration: none !important; }

/* Page Specific Components */
.pb-rental-page .map-wrapper { position: relative; overflow: hidden; height: 500px; }
.pb-rental-page .search-btn-custom { padding: 0 1.25rem !important; font-size: 1.2rem !important; border-radius: var(--radius-default) !important; }
.pb-rental-page .search-status-text { color: rgba(255,255,255,0.6) !important; font-size: 0.75rem !important; margin-top: 0.75rem !important; }

/* Scoped Marker Stablization */
.pb-rental-page .custom-marker { display: flex; align-items: center; justify-content: center; }
.pb-rental-page .marker-dot { width: 20px; height: 20px; border-radius: 50%; border: 3px solid white; box-shadow: 0 4px 12px rgba(0,0,0,0.25); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); transform-origin: center center; }
.pb-rental-page .custom-marker:hover .marker-dot { transform: scale(1.4); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }

/* High-Fidelity Popup Styles (Standard Light Mode) */
.pb-rental-page .leaflet-popup-content-wrapper { 
    background: #FFFFFF !important; 
    border-radius: 16px; 
    padding: 0; 
    overflow: hidden; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.15); 
}
.pb-rental-page .leaflet-popup-content { margin: 0 !important; width: 320px !important; }

.pb-rental-page .pb-popup { 
    font-family: 'Inter', sans-serif; 
    overflow: hidden; 
    word-wrap: break-word; 
    color: #333333; /* Base text color */
}

.pb-rental-page .pb-popup-header { padding: 20px 20px 15px; background: #FFFFFF; }

.pb-rental-page .pb-popup-title { 
    font-size: 1.25rem; 
    font-weight: 800; 
    color: #111111 !important; /* High contrast black */
    margin: 0; 
    line-height: 1.2; 
}

.pb-rental-page .pb-status-badge { 
    font-weight: 700; 
    font-size: 0.7rem; 
    color: #777777; 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
}

.pb-rental-page .pb-popup-terms { 
    background: #F4F6F8 !important; 
    margin: 0 15px 15px; 
    padding: 12px; 
    border-radius: 12px; 
    font-size: 0.75rem; 
    color: #555555 !important; 
    line-height: 1.6; 
}

.pb-rental-page .pb-address-text {
    padding: 0 20px 15px;
    font-size: 0.85rem;
    color: #666666 !important;
    line-height: 1.4;
}

.pb-rental-page .pb-popup-nav { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 10px; 
    padding: 12px 20px; 
    border-top: 1px solid #EEEEEE; 
    border-bottom: 1px solid #EEEEEE; 
    flex-wrap: wrap; 
}

.pb-rental-page .pb-nav-btn { 
    background: #1A1A1A; 
    color: #FFFFFF !important; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    padding: 8px 16px; 
    border-radius: 100px; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 0.85rem; 
}

.pb-rental-page .pb-status-section { padding: 15px 20px 20px; background: #FFFFFF; }
.pb-rental-page .pb-status-row { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }

.pb-rental-page .pb-icon-box { 
    width: 44px; 
    height: 44px; 
    background: #F0F4F8; 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #112442 !important; /* Deep navy */
}

.pb-rental-page .pb-info-col h5 { 
    margin: 0; 
    font-size: 0.95rem; 
    font-weight: 700; 
    color: #111111 !important; 
}

.pb-rental-page .pb-info-col p { 
    margin: 2px 0 0; 
    font-size: 0.75rem; 
    color: #888888; 
    line-height: normal; 
}

.pb-rental-page .battery-meter { display: flex; gap: 3px; margin-top: 5px; }
.pb-rental-page .meter-bar { width: 12px; height: 6px; background: #E2E8F0; border-radius: 2px; }
.pb-rental-page .meter-bar.active { background: #22C55E; }

.pb-rental-page .leaflet-popup-tip { background: #FFFFFF !important; }

/* Retractable UI */
.pb-rental-page .search-box { transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); overflow: hidden; position: relative; }
.pb-rental-page .search-box.collapsed { width: 50px !important; height: 50px !important; min-width: 50px !important; min-height: 50px !important; background: #FF2E2E !important; border-radius: 12px; padding: 0 !important; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 8px 24px rgba(255, 46, 46, 0.3); flex-shrink: 0; overflow: hidden; }
.pb-rental-page .search-box.collapsed * { display: none !important; }
.pb-rental-page .search-box.collapsed button.search-toggle,
.pb-rental-page .search-box.collapsed button.search-toggle span { display: flex !important; opacity: 1 !important; visibility: visible !important; }
.pb-rental-page .search-toggle { position: absolute; top: 15px; right: 15px; background: transparent; border: none; color: rgba(255,255,255,0.5); cursor: pointer; z-index: 10; }
.pb-rental-page .search-box.collapsed .search-toggle { position: absolute !important; inset: 0 !important; margin: 0 !important; padding: 0 !important; color: #FFFFFF !important; font-size: 1.8rem; display: flex !important; align-items: center; justify-content: center; width: 50px !important; height: 50px !important; font-weight: 700; opacity: 1 !important; background: transparent !important; }

/* Cinematic Reveal Animations */
@keyframes revealSlideScale {
    0% { 
        opacity: 0; 
        transform: translateY(40px) scale(0.97) translateZ(0); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1) translateZ(0); 
    }
}

.pb-rental-page .service-hero-content > * {
    opacity: 0;
    will-change: transform, opacity;
    animation: revealSlideScale 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.pb-rental-page .service-hero-content .service-badge { animation-delay: 0.15s; }
.pb-rental-page .service-hero-content .title-large { animation-delay: 0.3s; }
.pb-rental-page .service-hero-content .hero-desc { animation-delay: 0.45s; }
.pb-rental-page .service-hero-content .slide-actions { animation-delay: 0.6s; }

.pb-rental-page .floating-product {
    animation: floating 6s ease-in-out infinite, revealSlideScale 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

/* ==========================================================================
   404 Page Styles
   ========================================================================== */

.error-page {
    background-color: #f9f9ff;
}

.error-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
}

.error-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.error-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #e6eeff;
    color: #112442;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.error-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #112442;
    font-weight: 900;
}

.error-text h1 .highlight {
    color: #E60012;
}

.error-text p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.error-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.secondary-btn {
    background: transparent !important;
    border: 2px solid #112442 !important;
    color: #112442 !important;
}

.secondary-btn:hover {
    background: #112442 !important;
    color: white !important;
}

.error-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.error-feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    text-align: left;
}

.error-feature-item .material-symbols-outlined {
    color: #E60012;
    font-size: 2rem;
}

.error-feature-item h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #112442;
    font-weight: 700;
}

.error-feature-item p {
    font-size: 0.85rem;
    margin: 0;
    color: #777;
}

.visual-wrapper {
    position: relative;
    width: 100%;
}

.main-visual {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    border: 15px solid white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #E60012;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(230,0,18,0.3);
    animation: floatingError 3s ease-in-out infinite;
    z-index: 2;
}

.icon-1 {
    top: 10%;
    right: 5%;
}

.icon-2 {
    bottom: 20%;
    left: -20px;
    background: #112442;
    box-shadow: 0 10px 20px rgba(17,36,66,0.3);
    animation-delay: 1.5s;
}

@keyframes floatingError {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@media (max-width: 968px) {
    .error-grid {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }
    .error-visual {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
    }
    .error-text {
        text-align: center;
    }
    .error-text p {
        margin-inline: auto;
    }
    .error-actions {
        justify-content: center;
    }
    .error-features {
        text-align: left;
    }
}
