.top-bar {
    background-color: #2c3e50;
    color: white;
    padding: 12px 0;
    font-size: 15px;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.contact-info a:hover {
    color: #3498db;
    transform: translateY(-2px);
}

.contact-info a i {
    font-size: 16px;
    color: #3498db;
}

.social-media {
    display: flex;
    gap: 18px;
    align-items: center;
}

.social-media a {
    color: white;
    /*font-size: 18px;*/
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
}

.social-media a:hover {
    color: white;
    background-color: #3498db;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.quote-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    /*letter-spacing: 1px;*/
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    display: inline-block;
    /*animation: pulse 2s infinite;*/
}

.quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.quote-btn:active {
    transform: translateY(-1px);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .top-bar-container {
        justify-content: center;
        gap: 15px;
    }

    .contact-info {
        gap: 15px;
    }

    .social-media {
        gap: 12px;
    }

    .quote-btn {
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 10px 0;
    }

    .top-bar-container {
        padding: 0 20px;
        gap: 12px;
    }

    .contact-info {
        gap: 12px;
    }

    .contact-info a {
        font-size: 13px;
        gap: 5px;
    }

    .contact-info a i {
        font-size: 14px;
    }

    .social-media a {
        width: 27px;
        height: 27px;
        /*font-size: 16px;*/
    }

    .quote-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 8px 0;
    }

    .contact-info {
        justify-content: center;
    }

    .contact-info a {
        font-size: 12px;
    }

    .quote-btn {
        font-size: 13px;
    }
}

.u-under {
    border-bottom: 3px solid #4ecdc4;
    width: 145px;
    margin-bottom: 10px;
}

.responsive-image-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.responsive-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
}

.responsive-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.responsive-image-wrapper:hover .responsive-image {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .responsive-image-container {
        padding: 10px;
    }
}

.myFabButton {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 9999;
    transition: background 0.3s, transform 0.3s;
}

.myFabButton:hover {
    transform: scale(1.1);
}

.myFabCall {
    bottom: 100px;
    left: 20px;
    background-color: #185dc3;
}

.myFabCall:hover {
    background-color: #218838;
}

.myFabWhatsApp {
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
}

.myFabWhatsApp:hover {
    background-color: #1ebe5d;
}

.clientele-wrapper {
    overflow: hidden;
    background: #f8f8f8;
    padding: 20px 0;
}

.clientele-slider {
    display: flex;
    animation: slideLeft 20s linear infinite;
}

.clientele-slider img {
    height: 120px;
    width: auto;
    margin: 0 30px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.clientele-slider img:hover {
    filter: grayscale(0%);
}

@keyframes slideLeft {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .clientele-slider img {
        height: 120px;
        margin: 0 25px;
    }
}


.faq-section {
    max-width: 100%;
    margin: 60px auto;
    padding: 20px;
}
.faq-section h2 {
    /*text-align: center;*/
    margin-bottom: 30px;
    font-size: 28px;
}
.faq-item {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.3s;
}
.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.faq-question {
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
    background: #f1f1f1;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-icon {
    width: 18px;
    height: 18px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: #333;
    transition: 0.3s;
}

.faq-icon::before {
    width: 18px;
    height: 2px;
    top: 8px;
    left: 0;
}
.faq-icon::after {
    width: 2px;
    height: 18px;
    left: 8px;
    top: 0;
}
.faq-item.active .faq-icon::after {
    transform: scaleY(0);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer-content {
    padding: 0 20px 18px;
    color: #555;
    line-height: 1.6;
    margin-top:8px;
}