/* Additional styles for SGMYLimo.net */

/* Import main styles */
@import url('main.css');

/* Additional component styles */
.hero-slider {
    position: relative;
    overflow: hidden;
}

/* Navigation styles */
.classy-navbar {
    background-color: transparent;
    padding: 15px 0;
}

.nav-brand img {
    max-height: 50px;
    width: auto;
}

/* Dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Service detail page styles */
.about-2 {
    background-color: #072439;
}

.price-from-original {
    font-size: 1.5rem;
    font-weight: 600;
}

.price-from-after {
    font-size: 1.5rem;
    font-weight: 600;
    display: none;
}

/* Vehicle selection styles */
.btn-white {
    background-color: white;
    color: #333;
    border: 1px solid #ccc;
    margin: 5px;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: #f8f9fa;
    border-color: #FDB338;
}

/* Mobile responsive */
@media (max-width: 991px) {
    /* Removed rule that was hiding the desktop header */
}

@media (max-width: 768px) {
    .about-2 {
        padding: 30px 15px;
    }
    
    .hero-slider {
        min-height: auto;
    }
    
    .mobile {
        font-size: 14px;
    }
}

/* Font Awesome integration */
.fa, .fab, .fas {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands';
}

/* Additional utility classes */
.text-left {
    text-align: left;
}

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

.mb-0 {
    margin-bottom: 0;
}

.mt-2 {
    margin-top: 0.5rem;
}

.pt-5 {
    padding-top: 3rem;
}

/* Description section */
.description {
    margin-top: 30px;
    color: white;
}

.description h3 {
    color: #FDB338;
    margin-bottom: 15px;
}

.description p {
    line-height: 1.6;
    margin-bottom: 15px;
}