:root {
    --black: #000000;
    --mustard: #F2BC4F;
    --gray: #EFEFEF;
    --teal: #1C3036;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: var(--mustard);
}

body {
    background: var(--gray);
    background-color: var(--teal);
    color: var(--mustard);
}

h1 {
    color: var(--mustard);
}

h2 {
    color: var(--mustard);
}

p {
    color: var(--mustard);
}

.top-bar {
    background: var(--teal);
    padding: 0.5rem 0;
    color: var(--mustard);
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1031;
}

.top-bar .address {
    text-align: left;
}

.top-bar .phone-btn {
    display: inline-block;
    background: var(--black);
    color: var(--mustard) !important;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    animation: flash 1.5s infinite;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    padding-bottom: 1rem;
    font-weight: bolder;
    font-size: medium;
}

.top-bar .phone-btn:hover {
    transform: translateY(-2px);
}

@keyframes flash {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

/* Update mobile styles */
@media (max-width: 768px) {
    .top-bar {
        font-size: 0.75rem;
        padding: 0.4rem 0;
    }

    .top-bar .row {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .top-bar .col-md-8,
    .top-bar .col-md-4 {
        width: auto;
    }
}

/* Add responsive styles for mobile */
@media (max-width: 768px) {
    .navbar {
        top: 52px;
        /* Adjusted for new top bar height on mobile */
    }
}

a {
    text-decoration: none;
}

.navbar {
    background: var(--black) !important;
    padding: 1rem;
    padding-top: 4rem;
}

.navbar-brand {
    color: var(--mustard) !important;
    font-weight: bold;
}

.nav-link {
    color: var(--gray) !important;
}

.nav-link:hover {
    color: var(--mustard) !important;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .navbar {
        padding: 2rem;
    }
}


.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(242, 188, 79, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler {
    border-color: var(--mustard) !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(242, 188, 79, 0.25) !important;
}

.dropdown-menu {
    background-color: var(--black);
    border: none;
}

.dropdown-item {
    color: var(--gray);
}

.dropdown-item:hover {
    background-color: rgba(242, 188, 79, 0.1);
    color: var(--mustard);
}


.banner-slideshow {
    margin-top: 76px;
}

.banner-slide {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.banner-content h1 {
    color: var(--mustard);
    margin-bottom: 1rem;
}

.reviews-section {
    padding: 4rem 0;
    background: white;
}

.review-card {
    background: var(--gray);
    padding: 2rem;
    border-radius: 10px;
    margin: 1rem;
    height: 70%;
}

.review-stars {
    color: var(--mustard);
    margin-bottom: 1rem;
}

.slick-prev:before,
.slick-next:before {
    color: var(--mustard);
}

footer {
    background: var(--black);
    color: var(--gray);
    padding: 3rem 0;
}

.contact-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.widget-button {
    background: linear-gradient(45deg, var(--black), var(--teal));
    color: var(--mustard);
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border: 2px solid var(--mustard);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.widget-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.flash-text {
    animation: flashModern 2s infinite;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@keyframes flashModern {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(0.98);
    }
}

.widget-content {
    display: none;
    position: absolute;
    bottom: 100%;
    right: 0;
    background: linear-gradient(135deg, var(--black), var(--teal));
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(242, 188, 79, 0.3);
    min-width: 200px;
    transition: all 0.3s ease;
}

.widget-content.active {
    display: block;
}

.widget-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 10px;
    margin: 5px 0;
}

.widget-item:hover {
    background: var(--mustard);
    color: var(--black);
    transform: translateX(5px);
}

.widget-item i {
    font-size: 1.2rem;
}

.service-card {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(242, 188, 79, 0.2);
}

.service-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border: 2px solid var(--mustard);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service-icon {
    font-size: 2rem;
    color: var(--mustard);
    margin: 1rem 0;
}

.service-card h3 {
    color: var(--teal);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.brands-section {
    background: white;
}

.brands-slider {
    padding: 2rem 0;
}

.brand-item {
    text-align: center;
    padding: 1.5rem;
    margin: 0.5rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(242, 188, 79, 0.2);
    transition: all 0.3s ease;
}

.brand-item:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.brand-logo {
    max-width: 150px;
    height: auto;
    margin: 0 auto;
}

.contact-form-section {
    background: var(--gray);
}

.contact-form-section form {
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-form-section form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    border-color: var(--mustard);
    box-shadow: 0 0 0 0.25rem rgba(242, 188, 79, 0.25);
}

.contact-form-section .btn-primary:hover {
    background: var(--black) !important;
}

.g-recaptcha {
    margin: 20px 0;
}

section {
    position: relative;
    border-bottom: 1px solid rgba(28, 48, 54, 0.1);
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: var(--mustard);
}

.service-hero {
    height: 60vh;
    background-image: url('https://images.unsplash.com/photo-1583508915901-b5f84c1dcde1');
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 76px;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.service-feature {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(242, 188, 79, 0.2);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.service-feature:hover {
    transform: translateY(-5px);
}

.service-icon-large {
    font-size: 3rem;
    color: var(--mustard);
    margin-bottom: 1rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--mustard);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.maintenance-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.maintenance-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mustard);
    font-weight: bold;
}

.portfolio-filters {
    margin-bottom: 2rem;
}

.filter-btn {
    background: var(--teal);
    color: var(--gray);
    border: 2px solid var(--mustard);
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--mustard);
    color: var(--black);
    transform: translateY(-2px);
}

.portfolio-grid {
    position: relative;
}

.portfolio-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--mustard);
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

.portfolio-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 100%);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    color: var(--mustard);
    margin-bottom: 5px;
}

.portfolio-item {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.portfolio-item.show {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content {
    background: var(--black);
    border: 2px solid var(--mustard);
}

.modal-header {
    background: var(--black);
}

.btn-close {
    background-color: var(--mustard);
    opacity: 1;
}

.modal-image-description {
    color: var(--gray);
    background: linear-gradient(0deg, var(--black) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.modal-image-description h4 {
    color: var(--mustard);
    margin-bottom: 0.5rem;
}

#modalImage {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

.star-review {
    margin-top: -9.5rem;
    margin-left: 2rem;
}

.yelp-link {
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
}

.yelp-icon {
    color: #d32323;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.yelp-icon:hover {
    transform: scale(1.1);
}