/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.pink-text {
    color: rgb(228, 10, 129);
}

.section-padding {
    padding: 60px 0;
}

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

/* Navigation */
.navbar {
    background-color: #000;
    padding: 20px 0;
}



.navbar-dark .navbar-nav .nav-link {
    color: #fff !important;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    margin-left: 15px;
    cursor: pointer;
}

/* Dealership Application Badge */
.dealership-link {
    position: relative;
    background: linear-gradient(135deg, rgb(228, 10, 129), #e91e63);
    border-radius: 25px;
    padding: 8px 20px !important;
    margin-left: 20px !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 5, 167, 0.3);
    border: 2px solid transparent;
}

.dealership-link:hover {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 5, 167, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.dealership-link::before {
    content: '🏆';
    margin-right: 8px;
    font-size: 14px;
}

.dealership-link::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile responsive for dealership link */
@media (max-width: 768px) {
    .dealership-link {
        margin: 10px 0 !important;
        display: block;
        text-align: center;
    }
}

.dropdown-menu {
    background-color: rgba(0, 0, 0, 0.9);
    border: none;
    border-radius: 0;
    margin-top: 10px;
}

.dropdown-item {
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    padding: 8px 20px;
}

.dropdown-item:hover {
    background-color: rgb(228, 10, 129);
    color: #fff;
}

/* Contact & Dealership Drawer Styles */
.contact-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: #000;
    z-index: 9999;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    border-left: 1px solid #333;
}

.contact-drawer.open {
    right: 0;
}

.contact-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.contact-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.contact-drawer-header {
    padding: 30px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #333;
}

.contact-drawer-title {
    color: rgb(228, 10, 129);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

.contact-drawer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.contact-drawer-close:hover {
    background-color: #333;
    color: rgb(228, 10, 129);
}

.contact-drawer-body {
    padding: 30px;
}

.contact-form-group {
    margin-bottom: 20px;
}

.contact-form-input {
    width: 100%;
    padding: 15px;
    background-color: #111;
    border: 1px solid #333;
    color: #fff;
    font-size: 14px;
    border-radius: 0;
    transition: border-color 0.3s ease;
}

.contact-form-input:focus {
    outline: none;
    border-color: rgb(228, 10, 129);
    background-color: #111;
    color: #fff;
}

.contact-form-input::placeholder {
    color: #666;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.contact-form-textarea {
    width: 100%;
    padding: 15px;
    background-color: #111;
    border: 1px solid #333;
    color: #fff;
    font-size: 14px;
    border-radius: 0;
    min-height: 120px;
    resize: vertical;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form-textarea:focus {
    outline: none;
    border-color: rgb(228, 10, 129);
    background-color: #111;
    color: #fff;
}

.contact-form-textarea::placeholder {
    color: #666;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.contact-send-btn {
    width: 100%;
    padding: 15px;
    background-color: rgb(228, 10, 129);
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 0;
}

.contact-send-btn:hover {
    background-color: #c2185b;
}

/* Form validation styles */
.contact-form-input.is-invalid,
.contact-form-textarea.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}

/* Dealership Drawer Specific */
#dealershipDrawer .contact-drawer-title {
    color: #e91e63; /* Slightly different pink for distinction */
}

#dealershipDrawer .contact-send-btn {
    background: linear-gradient(135deg, rgb(228, 10, 129), #e91e63);
}

#dealershipDrawer .contact-send-btn:hover {
    background: linear-gradient(135deg, #e91e63, #c2185b);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-drawer {
        width: 100%;
        right: -100%;
    }
}

/* Common Button Styles */
.learn-more-btn {
    background-color: rgb(228, 10, 129);
    color: #fff;
    border: none;
    padding: 10px 25px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 5px;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
}

.learn-more-btn:hover {
    background-color: #c2185b;
    color: #fff;
}

.btn-learn-more {
    background-color: rgb(228, 10, 129);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 30px;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-learn-more:hover {
    background-color: #c2185b;
    color: #fff;
}

.btn-quote {
    background-color: #fff;
    color: #333;
    border: none;
    border-radius: 5px;
    padding: 10px 30px;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-quote:hover {
    background-color: #f5f5f5;
}

.quote-btn {
    background-color: #e91e63;
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 25px;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
}

.quote-btn:hover {
    background-color: #c2185b;
    color: #fff;
}

/* Pink Banner */
.pink-banner {
    background-color: rgb(228, 10, 129);
    padding: 30px 0;
    text-align: center;
}

.pink-banner h2 {
    color: #fff;
    font-size: clamp(1.5rem, 4vw, 2.5rem); /* Responsive font size using clamp */
    margin: 0;
    padding: 0 15px; /* Add horizontal padding for smaller screens */
    line-height: 1.2;
}

/* Footer */
.footer {
    padding: 40px 0;
    background-color: #000;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Footer Contact */
.footer-contact {
    margin-bottom: 15px;
}

.footer-phone {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: rgb(228, 10, 129);
    text-decoration: none;
}

.footer-phone i {
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-contact {
        text-align: center;
        margin-bottom: 20px;
    }

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

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: rgb(228, 10, 129);
}

.footer-text {
    font-size: 0.9rem;
    color: #999;
}

/* Custom Slick Arrow Styling */
.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.slick-prev:before,
.slick-next:before {
    font-size: 30px;
    color: rgb(228, 10, 129);
    opacity: 1;
}

.slick-dots {
    left: 0;
}

.slick-dots li button:before {
    color: rgb(228, 10, 129);
}

.slick-dots li.slick-active button:before {
    color: rgb(228, 10, 129);
    opacity: 1;
}
