:root {
    --primary-green: #00b96b; /* Matches the logo/button green */
    --primary-yellow: #fded00; /* Matches the CTA yellow */
    --dark-bg: #111111;
    --text-light: #ffffff;
    --text-grey: #b3b3b3;
    --card-bg: #ffffff;
    --text-dark: #333333;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    color: var(--text-dark);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center { text-align: center; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.grid { display: grid; }

.highlight-green { color: var(--primary-green); font-weight: 700; }
.highlight-yellow { color: var(--primary-yellow); }

/* --- HEADER / NAVBAR --- */
header {
    background-color: var(--dark-bg);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo img {
    height: 40px; /* Adjust based on your actual logo file */
}
/* Fallback text logo if image missing */
.logo-text {
    color: var(--primary-green);
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 400;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-green);
}

.btn-nav {
    background-color: var(--primary-green);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600 !important;
}


.btn-nav:hover {
    background-color: #009e5a;
}


.nav-links a:hover, .nav-links a.active {
    color: var(--primary-green);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(46, 204, 113, 0.85), rgba(39, 174, 96, 0.85)), url('bike-rent-in-guwahati.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: #000;
}
.btn-primary:hover { background-color: #e6d600; }

.btn-outline {
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
}
.btn-outline:hover { background: #fff; color: var(--primary-green); }

/* --- WHY CHOOSE US --- */
.why-choose {
    background-color: #fff;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #000;
}
.section-title p {
    color: #666;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-card {
    padding: 20px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #e8f8f0; /* Light green bg */
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px auto;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* --- HOW IT WORKS --- */
.how-it-works {
    background-color: #fcfcfc;
}

.steps-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* The grey connecting line */
.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 0;
}

.step-item {
    position: relative;
    z-index: 1;
    text-align: center;
    background-color: #fcfcfc; /* Mask the line behind text */
    padding: 0 10px;
    flex: 1;
    min-width: 200px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 15px auto;
    color: #000;
    box-shadow: 0 5px 15px rgba(253, 237, 0, 0.4);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e8f8f0; /* Very light green */
    margin-top: -10px;
    margin-bottom: 5px;
    display: block;
    line-height: 1;
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 0.9rem;
    color: #666;
}

/* --- TESTIMONIALS --- */
.testimonials {
    background-color: #fff;
}

.testimonial-badge {
    display: inline-block;
    background-color: #e8f8f0;
    color: var(--primary-green);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.review-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    background: #fff;
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.stars {
    color: #ffb400;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.quote-icon {
    float: right;
    color: #e0e0e0;
    font-size: 2rem;
}

.review-text {
    color: #555;
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
    min-height: 80px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #666;
}

.reviewer-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.reviewer-info span {
    font-size: 0.8rem;
    color: #888;
}

.google-btn-container {
    margin-top: 40px;
    text-align: center;
}

.btn-google {
    border: 1px solid #ddd;
    background: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* --- CONTACT SECTION --- */
.contact-section {
    background-color: var(--dark-bg);
    color: #fff;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1); /* Dark transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p, .contact-details a {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-details .highlight {
    color: var(--primary-yellow);
}

.map-container {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-color: #222;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

/* Placeholder styling for Map if you don't have API key immediately */
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(90%); /* Dark mode map trick */
}

.whatsapp-cta {
    margin-top: 40px;
    text-align: center;
}

/* --- FOOTER --- */
footer {
    background-color: #000;
    color: #fff;
    padding-top: 60px;
    padding-bottom: 20px;
    border-top: 1px solid #222;
}

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

.footer-logo {
    margin-bottom: 20px;
}
.footer-logo img { height: 40px; }

.footer-about p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: #999;
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--primary-green); }

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background-color: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.social-btn:hover { background-color: var(--primary-green); color: #fff; }

.copyright {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
    color: #666;
    font-size: 0.85rem;
}

/* --- FLOATING WHATSAPP --- */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1001;
    transition: transform 0.3s;
}
.floating-wa:hover {
    transform: scale(1.1);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .steps-container::before { display: none; }
    .hero-content h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Add JS to toggle this */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--dark-bg);
        padding: 20px;
        text-align: center;
    }
    
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
    
    .hero-content h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn { width: 100%; justify-content: center; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
