/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #FF4500;
    --secondary-color: #1a1a1a;
    --accent-color: #FFD700;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #666666;
    --bg-light: #f8f9fa;
    --bg-dark: #0a0a0a;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.logo i {
    font-size: 28px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.phone-btn i {
    color: var(--primary-color);
}

.cta-btn {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cta-btn:hover {
    background: #e63e00;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background-fallback {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: 
        linear-gradient(135deg, rgba(255, 69, 0, 0.3) 0%, rgba(26, 26, 26, 0.8) 100%),
        url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h100v100H0z" fill="%23000"/%3E%3Cpath d="M0 0L50 50M50 50L100 0M50 50L100 100M50 50L0 100" stroke="%23333" stroke-width="0.5" opacity="0.3"/%3E%3C/svg%3E');
    background-size: cover, 50px 50px;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 0 0, 100px 100px;
    }
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,69,0,0.1)"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-light);
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.hero-text {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background: #e63e00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
}

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

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    display: block;
    margin-top: 5px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    margin-top: 20px;
}

/* Brands Section */
.brands {
    padding: var(--section-padding);
    background: var(--bg-light);
}

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

.brand-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.brand-card:hover::before {
    left: 100%;
}

.brand-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.brand-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.brand-card:hover .brand-logo {
    transform: rotateY(360deg);
}

.brand-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.brand-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.brand-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.brand-link:hover {
    gap: 12px;
}

/* About Section */
.about {
    padding: 60px 0;
    background: white;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.services-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: row;
    min-height: 180px;
    height: auto;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    width: 160px;
    min-width: 160px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: rgba(255, 69, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-card:hover .service-icon-overlay {
    transform: translate(-50%, -50%) scale(1.15) rotate(10deg);
    background: var(--primary-color);
}

.service-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.service-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
    font-size: 14px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.service-link:hover {
    color: #e63e00;
    gap: 10px;
}

.service-link i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

/* Bikes Section */
.bikes {
    padding: var(--section-padding);
    background: white;
}

.view-toggle {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.view-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.view-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.view-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.view-btn i {
    font-size: 18px;
}

.bikes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    transition: all 0.3s ease;
}

.bikes-grid.list-view {
    grid-template-columns: 1fr;
    gap: 20px;
}

.bikes-grid.list-view .bike-card {
    height: auto;
    min-height: 280px;
}

.bikes-grid.list-view .bike-card-inner {
    height: 100%;
    transform: none !important;
    transform-style: flat;
}

.bikes-grid.list-view .bike-card {
    perspective: none;
}

.bikes-grid.list-view .bike-card-front {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    position: relative;
    backface-visibility: visible;
}

.bikes-grid.list-view .bike-card-back {
    height: 100%;
    display: none;
    flex-direction: column;
    padding: 30px;
    position: relative;
    backface-visibility: visible;
    transform: none !important;
}

.bikes-grid.list-view .bike-card.flipped .bike-card-front {
    display: none;
}

.bikes-grid.list-view .bike-card.flipped .bike-card-back {
    display: flex;
}

.bikes-grid.list-view .bike-card-back .back-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.bikes-grid.list-view .bike-card-back .bike-details {
    flex: 1;
    overflow-y: auto;
}

.bikes-grid.list-view .bike-image {
    width: 400px;
    min-width: 400px;
    height: 100%;
    border-radius: 15px 0 0 15px;
}

.bikes-grid.list-view .bike-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    z-index: 10;
    position: relative;
    background: white;
}

.bikes-grid.list-view .bike-content h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

.bikes-grid.list-view .bike-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.bikes-grid.list-view .bike-specs span {
    font-size: 15px;
    padding: 8px 0;
}

.bikes-grid.list-view .bike-price {
    font-size: 32px;
    margin-bottom: 20px;
}

.bikes-grid.list-view .btn-details {
    max-width: 250px;
    width: 100%;
    padding: 16px 24px;
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.4);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bikes-grid.list-view .btn-details:hover {
    background: #e63e00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 69, 0, 0.5);
}

.bikes-grid.list-view .bike-badge {
    border-radius: 0 0 15px 0;
}

.bikes-grid.list-view .carousel-indicators {
    bottom: 10px;
}

.bikes-grid.list-view .carousel-btn {
    opacity: 0.8;
}

.bikes-grid.list-view .bike-card:hover .carousel-btn {
    opacity: 1;
}

.bike-card {
    background: transparent;
    perspective: 1000px;
    height: 500px;
}

.bike-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.bike-card.flipped .bike-card-inner {
    transform: rotateY(180deg);
}

.bike-card-front,
.bike-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: white;
}

.bike-card-front {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bike-card:not(.flipped) .bike-card-front:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.bike-card-back {
    transform: rotateY(180deg);
    padding: 25px;
    overflow-y: auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    cursor: pointer;
}

.bike-image {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bike-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.bike-carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.bike-carousel img.active {
    opacity: 1;
    z-index: 1;
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 69, 0, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.bike-card:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: rgba(255, 69, 0, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn i {
    font-size: 16px;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.indicator.active {
    background: var(--primary-color);
    border-color: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.bike-image i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.2);
}

.bike-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.bike-content {
    padding: 25px;
}

.bike-content h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.bike-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 14px;
}

.bike-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.bike-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-details {
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--primary-color);
    border-radius: 8px;
    color: white;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-details:hover {
    background: #e63e00;
    transform: translateY(-2px);
}

/* Back card styles */
.back-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
    z-index: 10;
}

.back-header h4 {
    font-size: 22px;
    color: var(--text-dark);
    margin: 0;
}

.btn-close-flip {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 69, 0, 0.3);
    font-size: 18px;
}

.btn-close-flip:hover {
    background: #e63e00;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.5);
}

.btn-close-flip i {
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bike-details {
    cursor: pointer;
}

.bike-details h5 {
    color: var(--primary-color);
    font-size: 16px;
    margin: 15px 0 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.bike-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.bike-details ul li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #eee;
}

.bike-details ul li:last-child {
    border-bottom: none;
}

.bike-details ul li i {
    color: var(--primary-color);
    width: 20px;
    font-size: 14px;
}

.bike-details ul li strong {
    color: var(--text-dark);
    margin-right: 5px;
}

.bike-price-back {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

/* Test Drive Section */
.test-drive {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color), #ff6b35);
    color: white;
    text-align: center;
}

.test-drive-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.test-drive-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.test-drive-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.test-drive-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background: var(--bg-light);
}

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

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stars {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-text {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.7;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
}

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

.author-title {
    font-size: 14px;
    color: var(--text-gray);
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: var(--secondary-color);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-column p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

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

.footer-column h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 3px;
    min-width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        transition: var(--transition);
        padding: 40px 0;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list a {
        display: block;
        padding: 20px 30px;
        border-bottom: 1px solid var(--bg-light);
    }

    .mobile-toggle {
        display: flex;
    }

    .phone-btn span {
        display: none;
    }

    .header-actions {
        gap: 15px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .section-title {
        font-size: 28px;
    }

    .test-drive-stats {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-text {
        font-size: 16px;
    }

    .brands-grid,
    .services-grid,
    .bikes-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Force list view on mobile */
    .bikes-grid.list-view .bike-card-front {
        flex-direction: column;
    }

    .bikes-grid.list-view .bike-image {
        width: 100%;
        min-width: 100%;
        height: 250px;
    }

    .view-toggle {
        gap: 10px;
    }

    .view-btn span {
        display: none;
    }

    .view-btn {
        padding: 12px 16px;
    }

    /* Services on mobile */
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .service-card {
        flex-direction: column;
        height: auto;
    }

    .service-image {
        width: 100%;
        height: 200px;
    }

    .service-content {
        padding: 20px;
    }

    .service-content h4 {
        font-size: 20px;
    }

    .service-content p {
        font-size: 15px;
        -webkit-line-clamp: unset;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .stat-number {
        font-size: 36px;
    }

    .test-drive-content h2 {
        font-size: 28px;
    }
}

/* Brand Gallery Styles */
.brand-gallery {
    margin: 40px 0;
}

.gallery-main {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-main img:hover {
    transform: scale(1.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .gallery-main img {
        height: 250px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: 180px;
    }
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--primary-color);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.lightbox-close:hover {
    background: #e63e00;
    transform: rotate(90deg) scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 69, 0, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    margin-top: 20px;
    text-align: center;
    color: white;
    max-width: 600px;
}

.lightbox-caption h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--accent-color);
}

.lightbox-caption p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.lightbox-counter {
    position: absolute;
    top: -50px;
    left: 0;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

/* Responsive lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
    }

    .lightbox-content img {
        max-height: 60vh;
    }

    .lightbox-close {
        top: -45px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-caption h3 {
        font-size: 20px;
    }

    .lightbox-caption p {
        font-size: 14px;
    }

    .lightbox-counter {
        top: auto;
        bottom: -45px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Service Detail Pages Styles */
.service-detail-hero {
    position: relative;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d2d2d 100%);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    overflow: hidden;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, rgba(255, 69, 0, 0.1) 0%, transparent 100%),
        url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zm20.97 0l9.315 9.314-1.414 1.414L34.828 0h2.83zM22.344 0L13.03 9.314l1.414 1.414L25.172 0h-2.83zM32 0l12.142 12.142-1.414 1.414L30 .828 17.272 13.556l-1.414-1.414L28 0h4zM.284 0l28 28-1.414 1.414L0 2.544V0h.284zM0 5.373l25.456 25.455-1.414 1.415L0 8.2V5.374zm0 5.656l22.627 22.627-1.414 1.414L0 13.86v-2.83zm0 5.656l19.8 19.8-1.415 1.413L0 19.516v-2.83zm0 5.657l16.97 16.97-1.414 1.415L0 25.172v-2.83zm0 5.657L13.857 41.85l-1.414 1.414L0 30.83v-2.83zm0 5.657l11.03 11.03-1.415 1.413L0 36.486v-2.83zm0 5.656l8.2 8.2-1.414 1.415L0 42.143v-2.83zm0 5.657l5.373 5.373L4.96 45.1 0 47.8v-2.83zm0 5.657l2.544 2.544-1.414 1.414L0 53.457v-2.83zM59.716 0L31.716 28l1.414 1.414L60 2.544V0h-.284zM60 5.373L34.544 30.828l1.414 1.415L60 8.2V5.374zm0 5.656L37.373 33.656l1.414 1.414L60 13.86v-2.83zm0 5.656L40.2 35.485l1.415 1.413L60 19.516v-2.83zm0 5.657L43.03 38.313l1.414 1.415L60 25.172v-2.83zm0 5.657L46.143 41.85l1.414 1.414L60 30.83v-2.83zm0 5.656L48.97 41.02l1.415 1.413L60 36.486v-2.83zm0 5.657L51.8 47.8l1.414 1.415L60 42.143v-2.83zm0 5.657l-2.544 2.544 1.414 1.414L60 47.8v-2.83zm0 5.657l-.83.828 1.415 1.415L60 53.457v-2.83z" fill="rgba(255,255,255,0.03)" fill-rule="evenodd"/></svg>');
    pointer-events: none;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 69, 0, 0.15), transparent 50%);
}

.service-detail-hero .container {
    position: relative;
    z-index: 2;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.back-link:hover {
    color: white;
    background: rgba(255, 69, 0, 0.3);
    transform: translateX(-5px);
}

.service-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b35);
    border-radius: 20px;
    margin: 0 auto 30px;
    box-shadow: 0 10px 40px rgba(255, 69, 0, 0.4);
    animation: float 3s ease-in-out infinite;
}

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

.service-hero-icon i {
    font-size: 50px;
    color: white;
}

.service-detail-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-detail-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service Content Layout */
.service-content {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.content-main {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.content-main h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 20px;
}

.content-main h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

.content-main > p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
    text-align: justify;
}

.content-main h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 50px 0 30px;
    position: relative;
    padding-left: 20px;
}

.content-main h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 3px;
}

/* Feature List Styling */
.feature-list {
    display: grid;
    gap: 25px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.15);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #ff6b35);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

/* Criteria List Styling */
.criteria-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.criteria-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 10px;
    border: 2px solid #f0f0f0;
    font-size: 16px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.criteria-list li:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.1);
}

.criteria-list li i {
    font-size: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Info Box Styling */
.info-box {
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8d6 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    border: 2px solid #ffdbcc;
    box-shadow: 0 4px 20px rgba(255, 69, 0, 0.1);
}

.info-box h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 22px;
    color: var(--text-dark);
    margin: 0 0 15px 0;
    padding: 0;
}

.info-box h3::before {
    display: none;
}

.info-box h3 i {
    color: var(--primary-color);
    font-size: 28px;
}

.info-box p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

/* Sidebar Styling */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 100px;
}

.info-card,
.cta-card,
.tips-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.info-card h3,
.cta-card h3,
.tips-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 25px 0;
    padding: 0 0 15px 0;
    border-bottom: 2px solid #f0f0f0;
}

.info-card h3::before,
.cta-card h3::before,
.tips-card h3::before {
    display: none;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.info-item strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 700;
}

.info-item p {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

.cta-card {
    background: linear-gradient(135deg, var(--secondary-color), #2d2d2d);
    color: white;
}

.cta-card h3 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.cta-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.cta-card .btn {
    width: 100%;
    margin-bottom: 12px;
    justify-content: center;
}

.cta-card .btn:last-child {
    margin-bottom: 0;
}

.tips-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #bae6fd;
}

.tips-card h3 {
    color: var(--text-dark);
    border-bottom-color: #bae6fd;
}

.tips-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-card li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(186, 230, 253, 0.5);
}

.tips-card li:last-child {
    border-bottom: none;
}

.tips-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 22px;
    height: 22px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Brand Gallery in Service Pages */
.brand-gallery {
    margin: 40px 0;
}

.brand-gallery .gallery-main {
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
}

/* Responsive Design for Service Pages */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-sidebar {
        position: static;
    }

    /* Services grid on tablets */
    .services-grid {
        max-width: 100%;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .service-detail-hero {
        padding: 120px 0 60px;
    }

    .service-detail-hero h1 {
        font-size: 32px;
    }

    .service-detail-hero p {
        font-size: 16px;
    }

    .service-hero-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .service-hero-icon i {
        font-size: 40px;
    }

    .content-main {
        padding: 30px 20px;
    }

    .content-main h2 {
        font-size: 26px;
    }

    .content-main h3 {
        font-size: 22px;
    }

    .feature-item {
        flex-direction: column;
        padding: 20px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 24px;
    }

    .criteria-list {
        grid-template-columns: 1fr;
    }

    .info-card,
    .cta-card,
    .tips-card {
        padding: 20px;
    }
}