:root {
    --bg-color: #0b0f19;
    --surface-color: #1a2035;
    --surface-light: #252d47;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent-color: #3b82f6; /* Electric Blue */
    --accent-hover: #2563eb;
    --accent-secondary: #10b981; /* Energetic Green */
    --border-color: #334155;
    
    --font-family: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
}

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

.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.w-full { width: 100% !important; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem 0;
    z-index: 100;
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.3rem 0;
    background: rgba(11, 15, 25, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: auto;
    width: 280px;
    max-height: 80px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.nav-links:hover, .nav-links.active {
    color: var(--accent-secondary);
}

.nav-links.active {
    border-bottom: 2px solid var(--accent-secondary);
    padding-bottom: 5px;
}

.btn-rent {
    background: transparent;
    border: 2px solid var(--accent-secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--accent-secondary);
}

.btn-rent:hover {
    background: var(--accent-secondary);
    color: var(--bg-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-primary);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: linear-gradient(135deg, rgba(11,15,25,0.75) 0%, rgba(11,15,25,0.9) 100%), url('hero-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero-secondary {
    min-height: 80vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(135deg, rgba(11,15,25,0.8) 0%, rgba(16,185,129,0.3) 100%), url('rent-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title-main {
    font-size: 5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title .accent {
    color: var(--accent-secondary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 500;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-secondary);
    color: var(--bg-color);
    border: 2px solid var(--accent-secondary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-secondary);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
}

.section-title span {
    color: var(--text-secondary);
    font-size: 1.5rem;
    display: block;
    font-weight: 400;
    margin-top: 0.5rem;
}

/* About */
.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Services */
.services {
    background: linear-gradient(135deg, rgba(26,32,53,0.92) 0%, rgba(11,15,25,0.98) 100%), url('hero-bg.jpg') center/cover fixed;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--surface-light);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-secondary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-secondary);
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
}

/* Contact */
.contact-card {
    display: flex;
    background: var(--surface-color);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.border-accent {
    border-top: 4px solid var(--accent-secondary);
}

.contact-info {
    padding: 4rem;
    width: 60%;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.highlight-text {
    color: var(--accent-color) !important;
    font-weight: 600;
    background: rgba(59, 130, 246, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
}

.info-item > div:last-child {
    flex: 1;
    width: 100%;
}

.map-container {
    width: 100%;
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.icon-wrap {
    width: 40px;
    height: 40px;
    background: var(--surface-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-secondary);
    flex-shrink: 0;
}

.icon-wrap svg {
    width: 20px;
    height: 20px;
}

.info-item h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.info-item p, .info-item a {
    color: var(--text-secondary);
}

.info-item a:hover {
    color: var(--accent-secondary);
}

.contact-cta {
    width: 40%;
    background: linear-gradient(135deg, var(--surface-light) 0%, rgba(16,185,129,0.1) 100%);
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-box {
    text-align: center;
}

.cta-box p {
    color: var(--text-secondary);
}

/* Placeholder and Rentals */
.placeholder-content {
    background: var(--surface-color);
    padding: 4rem 2rem;
    border-radius: 20px;
    border: 1px dashed var(--border-color);
    text-align: center;
}

.rental-process .mb-4 {
    margin-bottom: 1.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.step-card {
    background: var(--surface-light);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--accent-secondary);
    transform: translateY(-5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-secondary);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.step-card h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.important-note {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
    padding: 1.5rem;
    border-radius: 0 10px 10px 0;
}

.important-note h4 {
    color: #ef4444;
    margin-bottom: 0.5rem;
}

.important-note p {
    color: var(--text-secondary);
}

.pricing-box {
    background: var(--surface-light);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.pricing-list {
    list-style: none;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bike-type {
    color: var(--text-secondary);
    font-weight: 600;
}

.bike-price {
    color: var(--accent-secondary);
    font-weight: 800;
    font-size: 1.1rem;
}

.info-alert {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 500px;
}

.info-alert svg {
    width: 48px;
    height: 48px;
    color: var(--accent-color);
}

.info-alert p {
    color: var(--text-secondary);
}

/* Footer */
footer {
    background: #05080f;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

footer p {
    color: var(--text-secondary);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

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

/* Responsive */
@media (max-width: 992px) {
    .contact-card {
        flex-direction: column;
    }
    .contact-info, .contact-cta {
        width: 100%;
        padding: 3rem 2rem;
    }
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title-main {
        font-size: 3.2rem;
    }

    .menu-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        gap: 1.5rem;
    }
    .nav-menu.active {
        left: 0;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-secondary {
        height: 80vh;
    }
    .pricing-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-secondary);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.scroll-top:hover {
    background-color: var(--accent-hover);
    color: #fff;
    transform: translateY(-5px);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

/* --- Navigation Dropdown --- */
.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--surface-color);
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 10px 0;
    z-index: 1000;
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    display: block;
}

.dropdown-menu a {
    color: var(--text-color);
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: var(--surface-light);
    color: var(--accent-secondary);
}

/* --- Bike Shop Image --- */
.shop-preview {
    width: 100%;
    max-height: 80vh;
    object-fit: cover;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
}

/* --- Bike Cards --- */
.bike-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bike-card {
    background: var(--surface-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.bike-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-secondary);
}

.bike-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid var(--accent-secondary);
}

.bike-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bike-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.bike-specs {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
    padding: 0;
}

.bike-specs li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
}

.bike-specs i {
    color: var(--accent-secondary);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.bike-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-secondary);
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

/* --- Bike Image Toggle Button --- */
.bike-image-wrapper {
    position: relative;
    width: 100%;
}

.bike-image-wrapper img {
    width: 100%;
    border-radius: 12px 12px 0 0;
    object-fit: cover;
}

.image-toggle-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(11, 15, 25, 0.8);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    border: 2px solid var(--accent-secondary);
    font-size: 1.2rem;
}

.image-toggle-btn:hover {
    background: var(--accent-secondary);
    transform: scale(1.1);
}
