:root {
    --primary-color: #e63946;
    --secondary-color: #1d3557;
    --light-color: #f1faee;
    --dark-color: #1d3557;
}

body {
    padding-top: 76px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/img/1.jpeg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
}

/* Navbar Styling */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
    padding: 8px 15px;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Section Styling */
section {
    padding: 80px 0;
}

/* Card Styling */
.card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.card-body {
    padding: 1.5rem;
}

.card i {
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.card:hover i {
    transform: scale(1.1);
}

.card-title {
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 0;
}

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

/* Games Section */
#games {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Honda-style Slider Section */
.honda-slider {
    background-color: #f8f9fa;
}

.honda-swiper {
    padding: 20px 0;
}

.honda-swiper .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.honda-swiper .card-img-top {
    height: 200px;
    object-fit: cover;
}

.honda-swiper .card-body {
    padding: 1.5rem;
}

.honda-swiper .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.honda-swiper .card-text {
    color: #6c757d;
    margin-bottom: 1rem;
}

.honda-swiper .price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.honda-swiper .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.honda-swiper .btn-primary {
    padding: 8px 20px;
    font-weight: 500;
}

/* Gallery Section */
#gallery {
    background-color: white;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

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

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

/* Testimonials Section */
#testimonials {
    background-color: var(--light-color);
}

.testimonial-swiper {
    padding: 20px 0 40px;
}

.testimonial-swiper .card {
    margin: 0 10px;
}

.testimonial-swiper .rounded-circle {
    border: 3px solid var(--primary-color);
}

/* Result Verification Section */
#verify {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

#verify .card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.verify-form .form-control {
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    padding: 12px;
}

.verify-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(230, 57, 70, 0.25);
}

.verify-form .form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.verify-form .form-text {
    color: #6c757d;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.verify-form .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.verify-form .btn-primary:hover {
    background-color: #d62828;
    border-color: #d62828;
    transform: translateY(-2px);
}

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

footer h5 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

footer .social-links a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

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

/* Quick Inquiry Form */
.quick-inquiry-form input,
.quick-inquiry-form textarea {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.quick-inquiry-form input::placeholder,
.quick-inquiry-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.quick-inquiry-form input:focus,
.quick-inquiry-form textarea:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    color: white;
    box-shadow: none;
}

.quick-inquiry-form .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.quick-inquiry-form .btn-primary:hover {
    background-color: #d62828;
    border-color: #d62828;
    transform: translateY(-2px);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .card {
        margin-bottom: 20px;
    }

    .gallery-swiper .swiper-slide img {
        height: 200px;
    }

    footer {
        text-align: center;
    }

    .quick-inquiry-form {
        max-width: 300px;
        margin: 0 auto;
    }

    .verify-form {
        padding: 0 15px;
    }

    .verify-form .btn-primary {
        width: 100%;
    }
}

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

.hero-section h1,
.hero-section p {
    animation: fadeIn 1s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}