/* Global Styles */
:root {
    --primary-color: #107645;
    --secondary-color: #f8f9fa;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --dark-color: #343a40;
    --light-color: #ffffff;
    --text-color: #343a40;
    --text-light: #f8f9fa;
    --card-bg: #ffffff;
    --card-border: #dee2e6;
    --accent-border: #000000;
    --dark-bg: #2b3035;
    --hero-gradient: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    --section-padding: 5rem 0;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: var(--body-font);
    background-color: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
}

/* Navigation Panel */
.navbar {
    background-color: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

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

.navbar .custom-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1rem;
}

.navbar .logo-van {
    color: var(--light-color);
    font-size: 1.5rem;
}

.navbar .logo-bike {
    color: var(--light-color);
    font-size: 2rem;
}

.navbar .logo-wrench {
    color: var(--light-color);
    font-size: 1.5rem;
}

.navbar-nav {
    gap: 1.5rem;
}

.nav-link {
    color: var(--light-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.nav-link.active {
    color: var(--light-color) !important;
    font-weight: 600;
}

.nav-link i {
    margin-right: 0.5rem;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
}

.dropdown-item {
    padding: 0.6rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.dropdown-item.active {
    background-color: var(--primary-color);
    color: white;
}

/* Header Styles */
header {
    margin-top: 76px;
    background-color: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.company-name {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.header-text h1 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.header-text .lead {
    color: var(--text-color);
    font-size: 1.5rem;
}

/* Logo */
.logo-container {
    margin: 0;
    flex-shrink: 0;
}

.custom-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    width: auto;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0;
    padding: 0 15px;
    border: 1px solid var(--card-border);
}

.logo-van {
    font-size: 3rem;
    color: var(--primary-color);
}

.logo-bike {
    font-size: 3.5rem;
    color: var(--primary-color);
}

.logo-wrench {
    font-size: 2.2rem;
    color: white;
}

/* Introduction Container */
.intro-container {
    background-color: var(--light-color);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.intro-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.phone-numbers {
    margin-top: 1.5rem;
}

.phone-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* WhatsApp Buttons */
.whatsapp-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

.whatsapp-btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.country-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #25D366;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    font-size: 40px;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    color: white;
    background-color: #22c35e;
}

/* Cards */
.card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    color: var(--text-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.card-body {
    padding: 2rem;
}

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

.text-muted {
    color: #6c757d !important;
}

/* Statistics Section */
.bg-light {
    background-color: var(--secondary-color) !important;
}

.stat-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    transition: all 0.3s ease;
    color: var(--text-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.counter {
    font-size: 3rem;
    color: var(--primary-color);
    margin: 1rem 0;
}

/* Image Cards */
.image-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.image-placeholder {
    background-color: var(--secondary-color);
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
}

/* Map Container */
.map-container {
    border: 1px solid var(--card-border);
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
#contact-section {
    padding: var(--section-padding);
    background-color: var(--secondary-color);
}

#contact-section h2 {
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2.5rem;
}

#contact-section .card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

#contact-section .card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

#contact-section .card-body {
    padding: 2rem;
}

#contact-section h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

#contact-section .list-unstyled li {
    margin-bottom: 1rem;
}

#contact-section .list-unstyled a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

#contact-section .list-unstyled a:hover {
    color: var(--primary-color);
}

#contact-section .text-primary {
    color: var(--primary-color) !important;
}

#contact-section .text-muted {
    color: #6c757d !important;
}

#contact-section .small {
    font-size: 0.875rem;
}

.social-icons a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* Scroll Up Button */
.scroll-up-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.scroll-up-btn:hover {
    background-color: #0c5a35;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991.98px) {
    .scroll-up-btn {
        width: 55px;
        height: 55px;
        right: 25px;
        bottom: 25px;
    }
}

@media (max-width: 767.98px) {
    .scroll-up-btn {
        width: 50px;
        height: 50px;
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 575.98px) {
    .scroll-up-btn {
        width: 45px;
        height: 45px;
        right: 15px;
        bottom: 15px;
    }
}

@media (max-width: 375px) {
    .scroll-up-btn {
        width: 40px;
        height: 40px;
        right: 12px;
        bottom: 12px;
    }
}

/* Hero Banner */
.hero-banner {
    position: relative;
    background-image: url('images/alex-photo.jpeg');
    background-size: cover;
    background-position: center;
    height: auto;
    min-height: 600px;
    margin-top: 0;
    display: flex;
    align-items: center;
    padding-top: 76px;
    padding-bottom: 30px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    width: 100%;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .lead {
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Hero Styles */
@media (max-width: 991.98px) {
    .hero-banner {
        min-height: 550px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content .lead {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .hero-banner {
        background-image: url('images/mobile-alex-photo.jpeg');
        min-height: 500px;
    }
    
    .hero-overlay {
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-content {
        padding: 1.5rem 0;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .lead {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        margin-top: 1.5rem;
    }
    
    .hero-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand .fa-bicycle {
        display: none;
    }
    
    .hero-banner {
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .hero-list li {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .hero-list li i {
        font-size: 1rem;
    }
}

@media (max-width: 375px) {
    .navbar-brand {
        font-size: 0.9rem;
        max-width: 200px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-right: 0;
        margin-right: 0;
    }
    
    .navbar-toggler {
        margin-left: 0;
        padding-left: 0;
    }
    
    .hero-banner {
        min-height: 450px;
    }
    
    .hero-content {
        padding: 1rem 0;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-content .lead {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 200px;
        margin: 0;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar .container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .navbar-nav {
        gap: 0.5rem;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .navbar .custom-logo {
        margin-right: 0.5rem;
    }
    
    .navbar .logo-van,
    .navbar .logo-wrench {
        font-size: 1.25rem;
    }
    
    .navbar .logo-bike {
        font-size: 1.5rem;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .custom-logo {
        justify-content: center;
    }
    
    .header-text {
        text-align: center;
    }

    header h1 {
        font-size: 2.5rem;
    }

    header p {
        font-size: 1.2rem;
    }
    
    .logo-van {
        font-size: 2rem;
    }
    
    .logo-bike {
        font-size: 3rem;
    }
    
    .logo-wrench {
        font-size: 2rem;
    }

    .phone-number {
        font-size: 1.5rem;
    }
    
    .counter {
        font-size: 2.5rem;
    }

    .scroll-up-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .whatsapp-btn {
        width: 70px;
        height: 70px;
    }

    .whatsapp-btn i {
        font-size: 35px;
    }

    .country-title {
        font-size: 0.9rem;
    }

    .navbar-toggler {
        margin-left: auto;
    }
    
    .navbar-collapse {
        text-align: right;
    }
    
    .navbar-nav {
        margin: 0;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 1rem !important;
    }
    
    .dropdown-item {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
    
    .hero-content .logo-container {
        align-self: center;
    }
    
    .hero-content .intro-text {
        margin-left: 0;
        text-align: center;
    }
    
    .hero-content .phone-numbers {
        text-align: center;
    }
    
    .hero-content .whatsapp-buttons {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }
    
    .hero-content .whatsapp-btn-container {
        margin: 10px 0;
        text-align: center;
    }
    
    .country-title {
        display: block;
        margin-bottom: 5px;
        text-align: center;
    }
    
    .whatsapp-btn {
        margin: 0 auto;
    }
    
    .hero-content .intro-text {
        padding: 1rem;
    }
    
    .hero-content .intro-text h3 {
        font-size: 1.1rem;
    }
    
    .hero-content .phone-number {
        font-size: 1.3rem;
    }
    
    .hero-content .whatsapp-btn {
        width: 50px;
        height: 50px;
    }

    .hero-content .whatsapp-btn i {
        font-size: 25px;
    }

    .hero-content .country-title {
        font-size: 0.9rem;
    }

    .company-name {
        font-size: 2.5rem;
    }
    
    .header-text h1 {
        font-size: 1.75rem;
    }

    .header-text .lead {
        font-size: 1.3rem;
    }

    .company-photo-placeholder {
        height: 150px;
        margin: 1.5rem auto 0;
        width: 100%;
        max-width: 300px;
    }
    
    .header-text {
        text-align: center;
        padding-right: 0;
    }
    
    .whatsapp-buttons {
        margin-bottom: 1.5rem;
    }
    
    .intro-container .row {
        display: flex;
        flex-direction: column;
    }
    
    .intro-container .col-md-8,
    .intro-container .col-md-4 {
        width: 100%;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .header-text h1 {
        font-size: 1.75rem;
    }

    .vr {
        display: none !important;
    }
    
    .navbar {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
    }
    
    .navbar.scrolled {
        display: none;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 80%;
        margin: 0 !important;
    }
}

.partners-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-top: 2rem;
}

.partners-card:hover {
    transform: translateY(-5px);
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.partner-logo {
    text-align: center;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    min-width: 200px;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-3px);
    background-color: #e9ecef;
}

.partner-logo i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.partner-logo p {
    margin: 0;
    color: #333;
}

@media (max-width: 768px) {
    .partner-logos {
        gap: 1rem;
    }
    
    .partner-logo {
        min-width: 150px;
        padding: 1rem;
    }
}

.company-photo-placeholder {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dee2e6;
    transition: all 0.3s ease;
}

.company-photo-placeholder:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
}

.company-photo-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.header-text {
    text-align: left;
    padding-right: 1rem;
}

.header-text .lead {
    font-size: 1.5rem;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

.header-text h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.header-text .lead {
    font-size: 1.25rem;
    color: #666;
}

@media (max-width: 768px) {
    .company-photo-placeholder {
        height: 150px;
        margin: 1.5rem auto 0;
        width: 100%;
        max-width: 300px;
    }
    
    .header-text {
        text-align: center;
        padding-right: 0;
    }
    
    .whatsapp-buttons {
        margin-bottom: 1.5rem;
    }
    
    .intro-container .row {
        display: flex;
        flex-direction: column;
    }
    
    .intro-container .col-md-8,
    .intro-container .col-md-4 {
        width: 100%;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .header-text h1 {
        font-size: 1.75rem;
    }
}
/* Trustpilot Section */
.trustpilot-widget {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.trustpilot-rating {
    text-align: center;
}

.trustpilot-rating .stars {
    color: #00b67a;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.trustpilot-rating .rating-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.trustpilot-logo img {
    height: 40px;
    width: auto;
}

.trustpilot-reviews {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-color);
}

.review-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.review-stars {
    color: #00b67a;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-color);
    font-style: italic;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .trustpilot-widget-container {
        flex-direction: column;
        text-align: center;
    }

    .trustpilot-logo {
        margin-top: 1rem;
    }

    .trustpilot-reviews {
        margin-top: 2rem;
    }
}

/* Introduction Section */
.introduction1 {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.introduction1 h1, 
.introduction1 h2, 
.introduction1 h3, 
.introduction1 h4, 
.introduction1 h5, 
.introduction1 h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.introduction1 .text-primary {
    color: var(--primary-color) !important;
}

.introduction1 .phone-number {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Introduction Columns */
.introduction-column {
    margin-bottom: 2rem;
}

.introduction-content {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.introduction-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.introduction-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.introduction-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Services Section */
#services-section {
    padding: var(--section-padding);
    background-color: var(--secondary-color);
}

#services-section h2 {
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2.5rem;
}

.service-item {
    margin-bottom: 1.5rem;
    width: 100%;
}

.service-content {
    background-color: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.service-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-image.bike-repair {
    background-image: url('https://images.unsplash.com/photo-1532298229144-0ec0c57515c7?ixlib=rb-4.0.3');
}

.service-image.bike-tuning {
    background-image: url('https://images.unsplash.com/photo-1485965120184-e220f721d03e?ixlib=rb-4.0.3');
}

.service-image.bike-parts {
    background-image: url('https://images.unsplash.com/photo-1571333250630-f0230d82b8d6?ixlib=rb-4.0.3');
}

.service-image.bike-accessories {
    background-image: url('https://images.unsplash.com/photo-1507035895480-2b3156c31fc8?ixlib=rb-4.0.3');
}

.service-image.bike-customization {
    background-image: url('https://images.unsplash.com/photo-1517649763962-0c623066013b?ixlib=rb-4.0.3');
}

.service-image.bike-maintenance {
    background-image: url('https://images.unsplash.com/photo-1517646287270-a5a9ca602e5c?ixlib=rb-4.0.3');
}

.service-details {
    padding: 2rem;
    background: white;
}

.service-content i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
}

.service-content p {
    display: block;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Mobile Styles for Service Section */
@media (max-width: 767.98px) {
    #services-section {
        padding: 2rem 0;
    }

    #services-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .service-item {
        margin-bottom: 1rem;
        width: 100%;
    }

    .service-content {
        padding: 1.25rem;
        border-left: 4px solid var(--primary-color);
        border-radius: 0 10px 10px 0;
        background-color: #f8f9fa;
        flex-direction: row;
        align-items: center;
        text-align: left;
        width: 100%;
        box-shadow: none;
    }

    .service-image {
        display: none;
    }

    .service-details {
        padding: 0;
    }

    .service-content:hover {
        transform: none;
        box-shadow: none;
    }

    .service-content i {
        font-size: 1.5rem;
        margin-right: 1rem;
        margin-bottom: 0;
    }

    .service-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0;
    }

    .service-content p {
        display: none;
    }
}

@media (max-width: 575.98px) {
    #services-section {
        padding: 1.5rem 0;
    }

    #services-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .service-item {
        margin-bottom: 0.75rem;
    }

    .service-content {
        padding: 1rem;
    }

    .service-content i {
        font-size: 1.25rem;
    }

    .service-content h3 {
        font-size: 1rem;
    }
}

/* About Section */
#about {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

#about h2 {
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2.5rem;
}

.experience-column {
    margin-bottom: 1.5rem;
}

.experience-content {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.experience-content i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.experience-content h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.experience-content p {
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Mobile Styles for Both Sections */
@media (max-width: 767.98px) {
    #services-section h2,
    #about h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .service-content,
    .experience-content {
        padding: 1.25rem;
        border-left: 4px solid var(--primary-color);
        border-radius: 0 10px 10px 0;
        background-color: #f8f9fa;
        flex-direction: row;
        align-items: center;
        text-align: left;
        margin-bottom: 1rem;
    }

    .service-content i,
    .experience-content i {
        font-size: 1.5rem;
        margin-right: 1rem;
        margin-bottom: 0;
    }

    .service-content h3,
    .experience-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0;
    }

    .service-content p,
    .experience-content p {
        display: none;
    }

    .service-item {
        margin: 0 0 1rem 0;
    }

    .experience-column {
        margin-bottom: 1rem;
    }

    .google-reviews {
        margin-top: 1rem;
    }

    .partner-logos {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .partner-logo {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .partner-logo i {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .partner-logo p {
        margin: 0;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    #services-section h2,
    #about h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .service-content,
    .experience-content {
        padding: 1rem;
    }

    .service-content i,
    .experience-content i {
        font-size: 1.25rem;
    }

    .service-content h3,
    .experience-content h3 {
        font-size: 1rem;
    }
}

/* Remove old card styles */
.stat-card,
.partners-card {
    display: none;
}

/* Footer Styles */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-column h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: white;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-social-icons a:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-column h3 {
        font-size: 1.3rem;
    }
    
    .footer-social-icons a {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

/* Navbar Scrolled State for Mobile */
.navbar.scrolled {
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.hero-list li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.hero-list li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Floating Contact Buttons */
.floating-buttons {
    position: fixed;
    right: 30px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    color: white;
}

.call-btn {
    background-color: var(--danger-color);
}

.whatsapp-btn {
    background-color: #25D366;
}

@media (max-width: 991.98px) {
    .floating-buttons {
        right: 25px;
        bottom: 90px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .scroll-up-btn {
        width: 55px;
        height: 55px;
        right: 25px;
        bottom: 25px;
    }
}

@media (max-width: 767.98px) {
    .floating-buttons {
        right: 20px;
        bottom: 85px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .scroll-up-btn {
        width: 50px;
        height: 50px;
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 575.98px) {
    .floating-buttons {
        right: 15px;
        bottom: 80px;
        gap: 8px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .scroll-up-btn {
        width: 45px;
        height: 45px;
        right: 15px;
        bottom: 15px;
    }
}

@media (max-width: 375px) {
    .floating-buttons {
        right: 12px;
        bottom: 75px;
        gap: 6px;
    }
    
    .floating-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .scroll-up-btn {
        width: 40px;
        height: 40px;
        right: 12px;
        bottom: 12px;
    }
}

.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.8);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


