/* BikeShare Pro - Main CSS */
/* Color Palette - 5 primary colors + light/dark shades */
:root {
    --primary-blue: #4A90E2;
    --primary-green: #7ED321;
    --primary-orange: #F5A623;
    --primary-purple: #9013FE;
    --primary-teal: #50E3C2;
    
    /* Light shades */
    --light-blue: #E3F2FD;
    --light-green: #F1F8E9;
    --light-orange: #FFF8E1;
    --light-purple: #F3E5F5;
    --light-teal: #E0F2F1;
    
    /* Dark shades */
    --dark-blue: #1565C0;
    --dark-green: #558B2F;
    --dark-orange: #E65100;
    --dark-purple: #4A148C;
    --dark-teal: #00695C;
    
    /* Neutral colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #212529;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Conservative Typography */
h1 {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--dark-blue);
}

h2 {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--dark-blue);
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-blue);
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

h5 {
    font-size: 1.125rem;
    font-weight: 500;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Navbar Styles */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--medium-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary-blue);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-teal) 100%);
    min-height: 100vh;
}

#hero h1 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

#hero h2 {
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
}

#hero p {
    color: var(--medium-gray);
    font-size: 1.125rem;
}

/* Section Backgrounds */
.bg-light {
    background-color: var(--light-gray);
}

/* Card Styles */
.card {
    border: 1px solid #E9ECEF;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-title {
    color: var(--dark-blue);
    font-weight: 600;
}

/* Service Cards */
#services .card {
    border-top: 4px solid var(--primary-blue);
}

#services .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-top: 1rem;
}

/* Price Plan Cards */
#priceplan .card {
    border-top: 4px solid var(--primary-orange);
    text-align: center;
}

#priceplan .price {
    color: var(--dark-orange);
    font-weight: 700;
    margin-top: 1rem;
}

/* Feature Icons */
.fa-2x {
    color: var(--primary-blue);
}

.fa-3x {
    color: var(--primary-teal);
}

/* Team Section */
#team img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid var(--light-blue);
}

/* Reviews Section */
#reviews .card {
    border-left: 4px solid var(--primary-purple);
}

#reviews .blockquote-footer {
    color: var(--primary-purple);
    font-weight: 500;
}

/* Process Section */
#process .bg-primary {
    background-color: var(--primary-blue);
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-1px);
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

/* Form Styles */
.form-control {
    border-radius: 0.5rem;
    border: 1px solid #CED4DA;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

/* Gallery Styles */
#gallery img {
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Footer Styles */
footer {
    background-color: var(--dark-gray);
}

footer h5 {
    color: var(--white);
    margin-bottom: 1rem;
}

footer p {
    color: #ADB5BD;
}

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

footer a:hover {
    color: var(--primary-teal);
}

/* FAQ Section */
#faq .card {
    border-left: 4px solid var(--primary-green);
    margin-bottom: 1rem;
}

#faq .card-title {
    color: var(--dark-green);
    font-weight: 600;
}

/* Blog Section */
#Blog .card {
    border-top: 4px solid var(--primary-orange);
}

/* Breadcrumb Styles */
.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item img {
    filter: opacity(0.7);
}

/* Animation Classes for ScrollReveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* Utility Classes */
.text-primary-blue {
    color: var(--primary-blue);
}

.text-primary-green {
    color: var(--primary-green);
}

.text-primary-orange {
    color: var(--primary-orange);
}

.text-primary-purple {
    color: var(--primary-purple);
}

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

.bg-primary-blue {
    background-color: var(--primary-blue);
}

.bg-primary-green {
    background-color: var(--primary-green);
}

.bg-primary-orange {
    background-color: var(--primary-orange);
}

.bg-primary-purple {
    background-color: var(--primary-purple);
}

.bg-primary-teal {
    background-color: var(--primary-teal);
}

/* Contact Info Icons */
#contact .fa-2x {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Decorative Elements */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-teal));
    border: none;
    margin: 3rem auto;
    width: 100px;
}

/* Performance Optimizations */
.img-fluid {
    height: auto;
    max-width: 100%;
}

/* Smooth Scroll for Internal Links */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
