
:root {
    --yellow: #F2B705;
    --dark: #1F1F1F;
    --gray: #f5f5f5;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
}
section {
    overflow: hidden;
}
.section-title h2 {
    font-weight: 700;
    margin-bottom: 10px;
}
.section-title p {
    color: #777;
}
/* ===== NAVBAR ===== */
.navbar {
    background: rgba(0,0,0,0.85);
    padding: 15px 0;
}
.nav-item{
    display: flex;
    justify-content:end;
    padding-right: 15px;
}
.navbar-brand img {
    width: 330px;
    object-fit: cover;
}
.footer-brand img{
    width: 180px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .navbar{
        padding: 8px 0;
    }
    .navbar-brand img {
        width: 300px;
        padding-left: 6px;
    }
    .footer-brand img {
        width: 170px;
        padding-left: 6px;
    }
}
.nav-link {
    color: #fff !important;
    margin-left: 15px;
}
.nav-link:hover {
    color: var(--yellow) !important;
}
.qcontact input,
.qcontact textarea {
    border-radius: 8px;
}
/* ===== FOOTER ===== */
.footer {
    background: #000;
    font-size: 14px;
}
.footer .quick-menu ul{
    list-style: none;
    padding-left: 8px;
}

.footer .quick-menu a{
    color: #f5f5f5;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}
.footer .quick-menu i,
.footer .quick-contact i{
    font-size: 1.1rem;
    font-weight: 600;
    margin-right: 5px;
    color: var(--yellow);
}
.fixed-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.fixed-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: .3s;
}
.fixed-contact i {
    font-size: 22px;
}
.fixed-contact a:hover {
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .fixed-contact span {
        display: none;
    }

    .fixed-contact a {
        padding: 15px;
        border-radius: 50%;
        justify-content: center;
    }
}
/* WhatsApp */
.whatsapp-btn {
    background: #25D366;
    position: relative;
}
.whatsapp-btn.pulse {
    animation: whatsapp-pulse 2.2s infinite;
}
.whatsapp-btn.pulse::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: rgba(37, 211, 102, 0.5);
    animation: pulse-ring 2.2s infinite;
    z-index: -1;
}
/* Call */
.call-btn {
    background: var(--yellow);
    color: #000;
}
@media (max-width: 768px) {
    .whatsapp-btn {
        animation: whatsapp-pulse 2.8s infinite;
    }
    .whatsapp-btn,
    .call-btn{
        width: 52px;
        height: 52px;
    }
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: .6;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.copyright,
.credits a{
    text-decoration: none;
    color: #ffffff6c;
}

.bottombar{
        display: flex;
}



@media (max-width: 768px) {
    .bottombar{
        display: block;
    }
}

/* ===== DETAIL PAGE ===== */
/* .detail-hero {
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
    url("../images/vinc-detail.jpg") center/cover no-repeat;
    padding: 140px 0 80px;
    color: #fff;
}

.detail-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

.detail-cta {
    margin-top: 25px;
    display: flex;
    gap: 15px;
} */

/* Sticky form */
/* .sticky-box {
    position: sticky;
    top: 120px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

.sticky-box h4 {
    margin-bottom: 15px;
} */
