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

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

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

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

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

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('homepage_car_background.avif');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 80px;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.service-card {
    transition: transform 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.car-card {
    transition: transform 0.3s;
    height: 100%;
}

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

.car-image {
    height: 200px;
    object-fit: cover;
}

.why-us {
    background-color: var(--primary);
    color: white;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.telephone-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 110px;
    right: 40px;
    background-color: #2577d3;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer {
    background-color: var(--primary);
    color: white;
}

.footer-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}
.btn-link{
color: white;
text-decoration: none;
}

/* 404 Content */
.error-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    text-align: center;
}

.error-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.error-icon {
    font-size: 6rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

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

.error-content h1 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.error-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.error-code {
    background-color: var(--light);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Search Box */
.search-box {
    margin: 2rem 0;
    position: relative;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.search-box input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s;
    padding-right: 60px;
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-box button:hover {
    background-color: #c0392b;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
}

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

.btn-outline:hover {
    background-color: var(--secondary);
    color: white;
}

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

.btn-light:hover {
    background-color: #dde4e6;
}


/* Thank You Section */
.thank-you-section {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.success-icon {
    font-size: 5rem;
    color: var(--success);
    margin-bottom: 1.5rem;
    animation: scaleUp 0.5s ease-in-out;
}

@keyframes scaleUp {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.thank-you-content h1 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.thank-you-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

/* Next Steps */
.next-steps {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.next-steps h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.next-steps h3 i {
    margin-right: 10px;
    color: var(--accent);
}

.steps-list {
    list-style: none;
}

.steps-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.steps-list li i {
    position: absolute;
    left: 0;
    top: 0.3rem;
    color: var(--accent);
}     

/* Countdown Timer */
.countdown {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #666;
}

.countdown span {
    font-weight: 700;
    color: var(--secondary);
}
