/* ===================================
   Sanjeeb Motors - Premium Professional Design
   Clean, Modern, Responsive
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-hover: 0 5px 25px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
    -webkit-overflow-scrolling: touch;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Preloader - Hidden */
.preloader {
    display: none !important;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo i {
    color: var(--primary-color);
    font-size: 32px;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    margin-top: 15px;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--text-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.dropdown-link:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    color: var(--primary-color);
}

.dropdown-link i {
    font-size: 24px;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.dropdown-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--dark-color);
}

.dropdown-desc {
    font-size: 12px;
    color: var(--text-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Book Test Ride Button */
.btn-test-ride {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-test-ride:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-test-ride i {
    font-size: 16px;
}

/* Test Ride Modal */
.test-ride-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.test-ride-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-close i {
    font-size: 18px;
}

.modal-content {
    padding: 40px 35px;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.modal-icon i {
    font-size: 36px;
    color: var(--white);
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.modal-header p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.test-ride-form .form-group {
    margin-bottom: 20px;
}

.test-ride-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.test-ride-form label i {
    color: var(--primary-color);
    font-size: 14px;
}

.required {
    color: var(--primary-color);
}

.test-ride-form input,
.test-ride-form select,
.test-ride-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.test-ride-form input:focus,
.test-ride-form select:focus,
.test-ride-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.test-ride-form textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.modal-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: successPulse 0.6s ease;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.success-icon i {
    font-size: 50px;
    color: var(--white);
}

.modal-success h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.modal-success p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.btn-close-success {
    padding: 12px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Hero Section - Professional Slider with Images & Videos */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Hero Slider Container */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Individual Slide */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Slide Media (Image & Video) */
.hero-slide-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5);
}

/* Slide Overlay */
.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.50) 0%, rgba(45, 45, 45, 0.30) 50%, rgba(26, 26, 26, 0.50) 100%);
    z-index: 1;
}

/* Slider Navigation Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--primary-color);
    width: 40px;
    border-radius: 10px;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Slider Navigation Arrows */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.hero-slider-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-arrow.prev {
    left: 30px;
}

.hero-slider-arrow.next {
    right: 30px;
}

.hero-slider-arrow i {
    pointer-events: none;
}

@keyframes rotate3D {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.85) 0%, rgba(247, 147, 30, 0.85) 50%, rgba(255, 107, 53, 0.85) 100%);
    }
    50% {
        background: linear-gradient(135deg, rgba(247, 147, 30, 0.85) 0%, rgba(255, 107, 53, 0.85) 50%, rgba(247, 147, 30, 0.85) 100%);
    }
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    padding-right: 20px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.hero-title .highlight {
    color: #ffcc00;
    display: block;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 204, 0, 0.7);
    font-weight: 900;
}

.hero-description {
    font-size: 19px;
    line-height: 1.8;
    color: #f8f9fa;
    margin-bottom: 30px;
    max-width: 550px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-feature i {
    color: #ff6b35;
    font-size: 22px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-contact {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.contact-link i {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    font-size: 17px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.contact-link.whatsapp i {
    background: rgba(37, 211, 102, 0.3);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.5);
}

.contact-link:hover {
    color: #ff6b35;
    transform: translateX(3px);
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 550px;
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(255, 107, 53, 0.3));
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-badge-float {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 10;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.badge-text strong {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-color);
}

.badge-text span {
    font-size: 14px;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn i {
    font-size: 18px;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-call {
    background: #28a745;
    color: var(--white);
}

.btn-call:hover {
    background: #218838;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}

.btn-small {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
}

/* Stats Section */
.stats-section {
    padding: 30px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-color);
    border-radius: 12px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.highlight {
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 35px 0;
    background: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* Our Brands Section - Premium Professional */
.our-brands {
    padding: 35px 0;
    background: var(--white);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.brand-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    max-width: 100%;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    border-color: rgba(255, 107, 53, 0.2);
}

.brand-card:hover::before {
    opacity: 1;
}

.brand-logo {
    padding: 45px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.brand-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

/* Brand-specific gradients with patterns */
.jawa-brand {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.jawa-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.tvs-brand {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    position: relative;
}

.tvs-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-brand {
    background: linear-gradient(135deg, #d35400 0%, #e67e22 100%);
    position: relative;
}

.hero-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

/* Yezdi Brand Styling */
.yezdi-brand {
    background: linear-gradient(135deg, #8b0000 0%, #b22222 100%);
    position: relative;
}

.yezdi-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.yezdi-icon {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
}

.yezdi-icon i {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.brand-logo img {
    max-width: 200px;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.4s;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
    position: relative;
    z-index: 1;
}

.brand-card:hover .brand-logo img {
    transform: scale(1.1) translateY(-5px);
}

/* Fallback text logo style - Premium */
.brand-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.brand-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.brand-card:hover .brand-icon {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.brand-icon i {
    font-size: 42px;
    color: var(--white);
}

/* Brand-specific icon styles */
.jawa-icon {
    background: rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.jawa-icon i {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.tvs-icon {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-icon {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.brand-logo-text h3 {
    font-size: 38px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.brand-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-info {
    padding: 30px 25px;
    text-align: center;
    background: linear-gradient(to bottom, var(--white) 0%, #fafafa 100%);
}

.brand-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.brand-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 11px 26px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.brand-link:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    gap: 14px;
}

.brand-link i {
    font-size: 12px;
    transition: transform 0.3s;
}

.brand-link:hover i {
    transform: translateX(3px);
}

/* Product Categories Section - Professional */
.product-categories {
    padding: 35px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.product-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(0,0,0,0.03)"/></svg>');
    pointer-events: none;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.category-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transition: left 0.5s;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.category-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: relative;
}

.category-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s;
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scale(1.1);
}

.category-card:hover .category-icon::after {
    opacity: 0.3;
    transform: scale(1.2);
}

.category-icon i {
    font-size: 42px;
    color: var(--primary-color);
    transition: all 0.3s;
}

.category-card:hover .category-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.category-card:hover h3 {
    color: var(--primary-color);
}

.category-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.availability-badge {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Brands Section */
.brands {
    padding: 35px 0 25px 0;
    background: var(--white);
}

.brand-section {
    margin-bottom: 40px;
}

.brand-header {
    text-align: center;
    margin-bottom: 30px;
}

.brand-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.brand-tagline {
    font-size: 16px;
    color: var(--text-light);
}

.bikes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bike-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.bike-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.bike-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.bike-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bike-card:hover .bike-image img {
    transform: scale(1.05);
}

.bike-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.bike-badge.new {
    background: #28a745;
}

.bike-badge.premium {
    background: #ffc107;
    color: var(--dark-color);
}

.bike-info {
    padding: 25px;
}

.bike-info h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.bike-desc {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 14px;
}

.bike-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 12px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.bike-specs span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}

.bike-specs i {
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
    padding: 35px 0;
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
    color: var(--dark-color);
}

.author-info span {
    font-size: 13px;
    color: var(--text-light);
}

/* Gallery Section */
.gallery {
    padding: 35px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    height: 240px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 53, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-overlay i {
    font-size: 36px;
    color: var(--white);
}

.gallery-overlay p {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    padding: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* About Section */
.about {
    padding: 35px 0;
    background: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #e67e22);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-intro {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-description {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #e67e22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-box i {
    color: var(--white);
    font-size: 22px;
}

.feature-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    height: 600px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 40px 30px;
}

.overlay-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.overlay-badge i {
    font-size: 40px;
    color: #ffc107;
}

.overlay-badge span {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Map Location Section */
.map-section {
    padding: 35px 0 25px 0;
    background: var(--light-color);
}

.map-container {
    margin-top: 40px;
    position: relative;
}

.map-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 450px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.3s ease;
}

.map-link-overlay:hover {
    background: rgba(255, 107, 53, 0.1);
}

.map-click-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.map-link-overlay:hover .map-click-hint {
    opacity: 1;
    transform: translateY(0);
}

.map-click-hint i {
    font-size: 20px;
    color: var(--primary-color);
}

.map-click-hint span {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    border: 3px solid var(--white);
    position: relative;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    min-height: 450px;
}

.map-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.map-info-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.map-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.map-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.map-card-icon i {
    font-size: 24px;
    color: var(--white);
}

.map-card-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.map-card-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 35px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.contact-info {
    height: fit-content;
}

.contact-intro {
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), #e67e22);
    border-radius: 12px;
    color: var(--white);
}

.contact-intro h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--white);
}

.contact-intro p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.95;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #e67e22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(255, 107, 0, 0.25);
}

.contact-icon i {
    font-size: 22px;
    color: var(--white);
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--dark-color);
    font-weight: 600;
}

.contact-details p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-details p a {
    color: var(--text-light);
    transition: var(--transition);
}

.contact-details p a:hover {
    color: var(--primary-color);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    gap: 12px;
    color: var(--secondary-color);
}

.contact-social {
    margin-top: 25px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.contact-social h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.contact-social .social-links {
    display: flex;
    gap: 12px;
}

.contact-social .social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #e67e22);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.contact-social .social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.contact-form {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    height: fit-content;
}

.form-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.form-header h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.form-header p {
    color: var(--text-light);
    font-size: 13px;
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.form-group label i {
    color: var(--primary-color);
    font-size: 13px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 14px;
    transition: var(--transition);
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-message {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    display: none;
    font-weight: 500;
    font-size: 13px;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
    display: block;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    flex: 1;
}

.faq-question i {
    font-size: 16px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-bottom: 30px;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    margin-bottom: 10px;
}

.contact-list i {
    color: var(--primary-color);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.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;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
}

.footer-bottom > p {
    margin: 8px 0 25px 0;
    font-size: 14px;
}

/* Brand Credit Card Design */
.brand-credit-card {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 107, 0, 0.05) 100%);
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.brand-credit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

/* Animated Glow Effect */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    animation: rotate-glow 8s linear infinite;
    pointer-events: none;
}

@keyframes rotate-glow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.card-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1;
}

/* Brand Logo Icon */
.card-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 3px solid rgba(255, 107, 0, 0.5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    animation: float-icon 3s ease-in-out infinite;
    overflow: visible;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4), inset 0 2px 5px rgba(255, 255, 255, 0.15);
    position: relative;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1.1) drop-shadow(0 4px 12px rgba(255, 107, 0, 0.6));
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.card-icon:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.6), inset 0 2px 5px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.card-icon:hover .brand-logo {
    transform: scale(1.08);
    filter: brightness(1.2) drop-shadow(0 6px 15px rgba(255, 107, 0, 0.8));
}

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.card-text {
    flex: 1;
    text-align: left;
}

.card-title {
    font-size: 14px;
    color: #ccc;
    margin: 0 0 8px 0;
    font-weight: 400;
}

/* Pulse Heart Animation */
.pulse-heart {
    color: #e74c3c;
    animation: pulse-beat 1.5s ease-in-out infinite;
    display: inline-block;
    margin: 0 3px;
}

@keyframes pulse-beat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.2);
    }
    20%, 40% {
        transform: scale(1);
    }
}

/* Brand Link Card Style */
.brand-link-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.brand-name {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.brand-link-card:hover .brand-name {
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-link-card i {
    font-size: 14px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.brand-link-card:hover i {
    transform: translate(3px, -3px);
    color: #fff;
}

/* Shine Effect on Hover */
.brand-credit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.brand-credit-card:hover::before {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

.footer-bottom i {
    color: var(--primary-color);
}

.footer-credit {
    font-size: 14px;
    color: #bbb;
    margin-top: 10px;
}

.footer-credit i {
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.1);
    }
    20%, 40% {
        transform: scale(1);
    }
}

.brand-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.brand-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

.brand-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.brand-link:hover::after {
    width: 100%;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 998;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: scale(1.1);
}

.call-btn {
    background: #28a745;
}

.call-btn:hover {
    background: #218838;
    transform: scale(1.1);
}

/* ===================================
   RESPONSIVE DESIGN - COMPLETE FIX
   =================================== */

/* Desktop & Tablet - 969px and above */
@media (min-width: 969px) {
    .hamburger {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
    }
}

/* Tablet & Mobile - 968px and below */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 30px 0 100px 0;
        gap: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    .nav-link {
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }

    /* Book Test Ride Button Mobile */
    .btn-test-ride {
        display: inline-flex;
        padding: 10px 20px;
        font-size: 13px;
        gap: 8px;
        margin: 0 auto;
    }

    .btn-test-ride span {
        display: inline;
    }

    .btn-test-ride i {
        font-size: 16px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .hero-slider-arrow.prev {
        left: 15px;
    }

    .hero-slider-arrow.next {
        right: 15px;
    }

    .hero-slider-dots {
        bottom: 30px;
        gap: 8px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .slider-dot.active {
        width: 30px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left {
        padding-right: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-description {
        margin: 0 auto 30px;
    }

    .hero-features {
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-contact {
        justify-content: center;
    }

    .hero-right {
        order: -1;
    }

    .hero-badge-float {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

    .section-title {
        font-size: 32px;
    }

    .bikes-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-stats {
        justify-content: space-around;
        gap: 20px;
    }

    .image-wrapper {
        height: 400px;
    }

    .brands-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .brand-card {
        max-width: 100%;
    }

    .category-card {
        padding: 25px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Tablet Responsive - Medium Screens */
@media (max-width: 768px) and (min-width: 577px) {
    .hero {
        padding: 100px 0 60px;
        min-height: 80vh;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left {
        padding-right: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-description {
        font-size: 17px;
        margin: 0 auto 25px;
    }

    .hero-features {
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-contact {
        justify-content: center;
    }

    .hero-bg {
        filter: brightness(0.5);
    }

    .hero-bg::before {
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.40) 0%, rgba(45, 45, 45, 0.30) 50%, rgba(26, 26, 26, 0.40) 100%);
    }

    .section-title {
        font-size: 28px;
    }

    .brands-grid,
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bikes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Responsive - Small Screens */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 10px 0;
    }

    .nav-wrapper {
        display: grid;
        grid-template-columns: 1fr auto auto;
        align-items: center;
        gap: 10px;
    }

    .logo {
        font-size: 14px;
        grid-column: 1;
    }

    .logo-img {
        height: 40px;
    }

    .logo span {
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .logo i {
        font-size: 20px;
    }

    /* Book Test Ride Button Mobile - Always Visible */
    .btn-test-ride {
        display: inline-flex !important;
        padding: 8px 16px;
        font-size: 12px;
        gap: 6px;
        grid-column: 2;
        order: 2;
        white-space: nowrap;
    }

    .btn-test-ride span {
        display: none;
    }

    .btn-test-ride i {
        font-size: 18px;
        margin: 0;
    }

    .hamburger {
        grid-column: 3;
        order: 3;
    }

    .nav-menu {
        top: 60px;
        padding: 20px 0 80px 0;
    }

    /* Test Ride Modal Mobile - Improved */
    .test-ride-modal {
        padding: 10px;
    }
    
    .modal-container {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 15px;
        margin: 0 auto;
    }

    .modal-content {
        padding: 25px 18px;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
    
    .modal-close i {
        font-size: 16px;
    }

    .modal-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .modal-icon i {
        font-size: 28px;
    }

    .modal-header h2 {
        font-size: 20px;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .modal-header p {
        font-size: 13px;
        line-height: 1.5;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .test-ride-form .form-group {
        margin-bottom: 15px;
    }
    
    .test-ride-form label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .test-ride-form input,
    .test-ride-form select,
    .test-ride-form textarea {
        padding: 11px 13px;
        font-size: 14px;
        border-radius: 8px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    .test-ride-form select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        padding-right: 35px;
    }
    
    .test-ride-form textarea {
        min-height: 90px;
        resize: vertical;
    }

    .btn-submit {
        padding: 13px 24px;
        font-size: 14px;
        margin-top: 5px;
        border-radius: 8px;
    }
    
    .btn-submit i {
        font-size: 16px;
    }

    .success-icon {
        width: 80px;
        height: 80px;
    }

    .success-icon i {
        font-size: 40px;
    }

    .modal-success h3 {
        font-size: 20px;
    }

    .modal-success p {
        font-size: 14px;
    }

    /* Hero Section Mobile - Improved */
    .hero {
        padding: 80px 0 50px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .hero-slide-media {
        object-fit: cover;
        object-position: center;
    }

    .hero-slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
        backdrop-filter: blur(8px);
    }

    .hero-slider-arrow.prev {
        left: 8px;
    }

    .hero-slider-arrow.next {
        right: 8px;
    }

    .hero-slider-dots {
        bottom: 20px;
        gap: 6px;
        padding: 0 10px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .slider-dot.active {
        width: 24px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 5px;
    }

    .hero-left {
        padding-right: 0;
        text-align: center;
    }

    .hero-badge {
        font-size: 11px;
        padding: 7px 18px;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 15px;
        padding: 0 5px;
    }

    .hero-title .highlight {
        font-size: 32px;
        display: block;
        margin-top: 5px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.6;
        margin: 0 auto 20px;
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-features {
        gap: 10px;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .hero-feature {
        font-size: 14px;
        justify-content: center;
        text-align: left;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-feature i {
        font-size: 18px;
        flex-shrink: 0;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        padding: 0 15px;
        max-width: 350px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        padding: 13px 20px;
        font-size: 14px;
        justify-content: center;
    }
    
    .btn i {
        font-size: 16px;
    }

    .hero-contact {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        padding: 0 15px;
        max-width: 350px;
        margin: 0 auto;
    }

    .contact-link {
        justify-content: center;
        font-size: 14px;
        width: 100%;
        padding: 12px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 10px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .contact-link i {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .hero-right {
        display: none;
    }
    
    .hero-badge-float {
        display: none;
    }

    /* Sections Mobile */
    .section-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    /* Stats Section Mobile */
    .stats-section {
        padding: 25px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }

    /* Features Section Mobile */
    .features {
        padding: 30px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 15px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 14px;
    }

    /* Brands Section Mobile */
    .our-brands,
    .brands {
        padding: 30px 0;
    }

    .brands-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .brand-card {
        min-width: 100%;
    }

    .brand-logo {
        padding: 40px 30px;
        min-height: 180px;
    }

    .brand-icon {
        width: 80px;
        height: 80px;
    }

    .brand-icon i {
        font-size: 36px;
    }

    .brand-logo-text h3 {
        font-size: 32px;
        letter-spacing: 3px;
    }

    .brand-subtitle {
        font-size: 11px;
    }

    .brand-info {
        padding: 25px 20px;
    }

    .brand-info h3 {
        font-size: 20px;
    }

    .brand-info p {
        font-size: 14px;
    }

    .brand-link {
        padding: 10px 24px;
        font-size: 12px;
    }

    /* Bikes Section Mobile */
    .brand-section {
        margin-bottom: 30px;
    }

    .brand-header {
        margin-bottom: 25px;
    }

    .brand-title {
        font-size: 26px;
    }

    .brand-tagline {
        font-size: 14px;
    }

    .bikes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bike-card {
        margin-bottom: 0;
    }

    .bike-image {
        height: 220px;
    }

    .bike-info {
        padding: 20px;
    }

    .bike-info h4 {
        font-size: 18px;
    }

    .bike-desc {
        font-size: 13px;
    }

    .bike-specs {
        gap: 15px;
        padding: 10px 0;
    }

    .bike-specs span {
        font-size: 13px;
    }

    /* Gallery Section Mobile */
    .gallery {
        padding: 30px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item {
        height: 220px;
    }

    .gallery-overlay i {
        font-size: 28px;
    }

    .gallery-overlay p {
        font-size: 14px;
    }

    /* Testimonials Mobile */
    .testimonials {
        padding: 30px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .author-info h4 {
        font-size: 15px;
    }

    .author-info span {
        font-size: 12px;
    }

    /* About Section Mobile */
    .about {
        padding: 30px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-badge {
        font-size: 11px;
        padding: 6px 16px;
    }

    .about-intro {
        font-size: 16px;
    }

    .about-description {
        font-size: 14px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-feature {
        padding: 15px;
    }

    .feature-icon-box {
        width: 45px;
        height: 45px;
    }

    .feature-icon-box i {
        font-size: 20px;
    }

    .feature-content h4 {
        font-size: 15px;
    }

    .feature-content p {
        font-size: 13px;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
        padding-top: 20px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .stat-item p {
        font-size: 13px;
    }

    .image-wrapper {
        height: 280px;
    }

    /* Map Section Mobile */
    .map-section {
        padding: 30px 0 25px 0;
    }

    .map-link-overlay {
        height: 280px;
    }

    .map-click-hint {
        padding: 12px 20px;
        flex-direction: column;
        gap: 5px;
    }

    .map-click-hint i {
        font-size: 18px;
    }

    .map-click-hint span {
        font-size: 13px;
    }

    .map-wrapper iframe {
        min-height: 280px;
        border-radius: 15px;
    }

    .map-info-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .map-info-card {
        padding: 20px;
    }

    .map-card-icon {
        width: 50px;
        height: 50px;
    }

    .map-card-icon i {
        font-size: 20px;
    }

    .map-card-content h4 {
        font-size: 17px;
    }

    .map-card-content p {
        font-size: 13px;
    }

    /* Contact Section Mobile - Improved */
    .contact {
        padding: 30px 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }

    .contact-intro {
        padding: 18px;
        background: var(--light-color);
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .contact-intro h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .contact-intro p {
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-item {
        padding: 18px;
        gap: 15px;
        margin-bottom: 15px;
        background: var(--white);
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .contact-icon i {
        font-size: 20px;
    }

    .contact-details h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .contact-details p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .contact-details a {
        color: var(--primary-color);
        word-break: break-all;
    }

    .contact-link {
        font-size: 13px;
        margin-top: 8px;
    }

    .contact-form {
        padding: 25px 20px;
        background: var(--white);
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }

    .form-header {
        margin-bottom: 20px;
    }

    .form-header h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .form-header p {
        font-size: 13px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .form-group label i {
        font-size: 13px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 8px;
        border: 2px solid #e0e0e0;
        width: 100%;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    .form-group select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        padding-right: 40px;
    }

    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    }
    
    .btn-primary {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 8px;
        margin-top: 5px;
    }
    
    .form-message {
        margin-top: 15px;
        padding: 12px;
        border-radius: 8px;
        font-size: 14px;
        text-align: center;
    }
    
    .form-message.success {
        background: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }
    
    .form-message.error {
        background: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }

    .contact-social {
        padding: 18px;
        background: var(--light-color);
        border-radius: 12px;
        text-align: center;
    }

    .contact-social h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .contact-social .social-links {
        justify-content: center;
        gap: 12px;
    }
    
    .contact-social .social-links a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* FAQ Section Mobile */
    .faq-section {
        padding: 40px 0;
    }

    .faq-item {
        margin-bottom: 15px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 15px;
        line-height: 1.4;
    }

    .faq-question i {
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 15px 15px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* Footer Mobile - Improved */
    .footer {
        padding: 35px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-col h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .footer-col h4 {
        font-size: 17px;
        margin-bottom: 15px;
    }

    .footer-col p {
        font-size: 14px;
        line-height: 1.7;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-col ul {
        display: inline-block;
        text-align: center;
    }
    
    .footer-col ul li {
        margin-bottom: 12px;
    }

    .footer-col ul li a {
        font-size: 14px;
        display: inline-block;
    }

    .contact-list li {
        font-size: 14px;
        justify-content: center;
        text-align: center;
        padding: 8px 0;
    }
    
    .contact-list li i {
        margin-right: 8px;
    }

    .social-links {
        justify-content: center;
        gap: 12px;
        margin-top: 15px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .footer-bottom {
        padding-top: 25px;
        font-size: 13px;
        line-height: 1.6;
    }
    
    .footer-bottom > p {
        padding: 0 10px;
        margin-bottom: 20px;
        font-size: 13px;
    }
    
    /* Brand Card Mobile */
    .brand-credit-card {
        max-width: 90%;
        padding: 20px 15px;
        margin: 0 auto;
    }
    
    .card-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .card-icon {
        width: 90px;
        height: 90px;
        padding: 10px;
        border-width: 2px;
    }
    
    .brand-logo {
        width: 100%;
        height: 100%;
        display: block !important;
        opacity: 1 !important;
    }
    
    .card-text {
        text-align: center;
    }
    
    .card-title {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .brand-link-card {
        font-size: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .brand-name {
        font-size: 16px;
    }
    
    .footer-credit {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .brand-link {
        display: inline;
    }

    /* Floating Buttons Mobile - Improved */
    .floating-buttons {
        bottom: 80px;
        right: 15px;
        gap: 12px;
        z-index: 998;
    }

    .floating-btn {
        width: 52px;
        height: 52px;
        font-size: 22px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    }
    
    .floating-btn:active {
        transform: scale(0.95);
    }
    
    .whatsapp-btn {
        background: #25D366;
    }
    
    .call-btn {
        background: #007bff;
    }

    /* Scroll to Top Mobile - Improved */
    .scroll-top {
        width: 44px;
        height: 44px;
        font-size: 16px;
        bottom: 15px;
        right: 15px;
        z-index: 997;
    }
    
    .scroll-top:active {
        transform: scale(0.95);
    }

    /* Category Cards Mobile */
    .category-card {
        padding: 20px 15px;
    }

    .category-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }

    .category-icon i {
        font-size: 30px;
    }

    .category-card h3 {
        font-size: 19px;
    }

    .category-card p {
        font-size: 13px;
    }

    .availability-badge {
        font-size: 11px;
        padding: 5px 16px;
    }
}

/* Extra Small Mobile - Very Small Screens (380px and below) */
@media (max-width: 380px) {
    .container {
        padding: 0 12px;
    }
    
    .logo {
        font-size: 13px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo span {
        display: none;
    }
    
    .btn-test-ride {
        padding: 7px 14px;
        font-size: 11px;
    }
    
    .btn-test-ride i {
        font-size: 16px;
    }

    .hero-title {
        font-size: 26px;
        padding: 0;
    }

    .hero-title .highlight {
        font-size: 28px;
    }

    .hero-description {
        font-size: 14px;
        padding: 0 5px;
    }
    
    .hero-feature {
        font-size: 13px;
    }
    
    .hero-feature i {
        font-size: 16px;
    }

    .section-title {
        font-size: 22px;
        padding: 0 5px;
    }
    
    .section-subtitle {
        font-size: 13px;
        padding: 0 5px;
    }

    .btn {
        padding: 11px 16px;
        font-size: 13px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 18px 12px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .modal-content {
        padding: 20px 15px;
    }
    
    .modal-header h2 {
        font-size: 18px;
    }
    
    .modal-header p {
        font-size: 12px;
    }
    
    .test-ride-form input,
    .test-ride-form select,
    .test-ride-form textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .btn-submit {
        padding: 12px 20px;
        font-size: 13px;
    }

    .floating-buttons {
        right: 10px;
        bottom: 70px;
        gap: 10px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .scroll-top {
        width: 40px;
        height: 40px;
        font-size: 14px;
        right: 10px;
        bottom: 10px;
    }
    
    .brand-card {
        border-radius: 12px;
    }
    
    .brand-logo {
        padding: 35px 25px;
        min-height: 160px;
    }
    
    .brand-icon {
        width: 70px;
        height: 70px;
    }
    
    .brand-icon i {
        font-size: 32px;
    }
    
    .brand-logo-text h3 {
        font-size: 28px;
    }
    
    .brand-info {
        padding: 20px 15px;
    }
    
    .brand-info h3 {
        font-size: 18px;
    }
    
    .brand-info p {
        font-size: 13px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px 12px;
        font-size: 13px;
    }
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Mobile Scrollbar - Thinner */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 6px;
    }
}

/* Touch Device Improvements */
@media (hover: none) and (pointer: coarse) {
    /* Better tap targets for touch devices */
    .btn,
    .nav-link,
    .dropdown-link,
    .contact-link,
    .brand-link,
    .floating-btn,
    .scroll-top {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove hover effects on touch devices */
    .btn:hover,
    .nav-link:hover,
    .feature-card:hover,
    .brand-card:hover,
    .bike-card:hover {
        transform: none;
    }
    
    /* Add active states for touch feedback */
    .btn:active,
    .floating-btn:active,
    .scroll-top:active {
        transform: scale(0.95);
        opacity: 0.9;
    }
    
    /* Prevent text selection on buttons */
    .btn,
    .floating-btn,
    .scroll-top,
    .hamburger {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Better form inputs for touch */
    input,
    select,
    textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
}

/* Landscape Mode Fixes for Mobile */
@media (max-width: 968px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .modal-container {
        max-height: 90vh;
    }
    
    .hero-slider-dots {
        bottom: 10px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .floating-buttons,
    .scroll-top,
    .hero-slider-arrow,
    .hero-slider-dots,
    .btn-test-ride,
    .hamburger {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 20px 0;
    }
    
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn,
    .nav-link,
    .feature-card,
    .brand-card {
        border: 2px solid currentColor;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Add dark mode styles if needed in future */
}

/* Focus Visible for Keyboard Navigation */
:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Remove outline for mouse users */
:focus:not(:focus-visible) {
    outline: none;
}

/* Loading State */
.loading {
    pointer-events: none;
    opacity: 0.6;
    cursor: wait;
}

/* Smooth Scroll Behavior */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}
