/* Apply smooth scrolling to the whole page */
html {
    scroll-behavior: smooth;
}

/* Gradient Button Styling */
.gradient-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    color: white;
    background-image: linear-gradient(to right, #f59e0b, #d97706);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px 0 rgba(245, 158, 11, 0.4);
    border: none;
    text-align: center;
}
.gradient-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(245, 158, 11, 0.5);
}

/* Car Card Styling */
.car-card {
    background-color: white;
    border: 1px solid #e2e8f0; /* slate-200 */
    border-radius: 0.75rem;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.07);
}
.car-card img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

/* Car Tab Styling */
.tab-button {
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
    font-weight: 500;
    color: #475569; /* slate-600 */
    transition: all 0.3s ease;
}
.tab-button.active {
    background-color: white;
    color: #1e293b; /* slate-800 */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Testimonial/Review Card Styling */
.review-card {
    background-color: #f8fafc; /* slate-50 */
    border: 1px solid #e2e8f0; /* slate-200 */
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}
.review-card-stars {
    color: #f59e0b; /* amber-500 */
    font-size: 1.25rem;
    letter-spacing: 2px;
}
.review-card blockquote {
    color: #334155; /* slate-700 */
    font-style: italic;
    flex-grow: 1; 
}
.review-card figcaption {
    margin-top: 1rem;
    font-weight: 600;
    color: #1e293b; /* slate-800 */
}
.review-card figcaption span {
    font-weight: 400;
    color: #64748b; /* slate-500 */
}


/* FAQ Item Styling */
.faq-item {
    background-color: white;
    border: 1px solid #e2e8f0; /* slate-200 */
    border-radius: 0.5rem;
    padding: 1rem;
    transition: background-color 0.3s ease;
}
.faq-item[open] {
    background-color: #f8fafc; /* slate-50 */
}
.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none; /* Remove default marker */
}
.faq-item p {
    padding-top: 0.75rem;
    color: #475569; /* slate-600 */
}

/* Scroll Animation Styling */
.animated-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animated-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.mobile-menu-link {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-weight: 500;
    color: #475569; /* slate-600 */
}
.mobile-menu-link:hover {
    background-color: #f1f5f9; /* slate-100 */
    color: #1e293b; /* slate-800 */
}