.yello {
    color: rgba(var(--bs-warning-rgb), 1) !important;
}

/* ========================================
   NAVBAR
======================================== */
.navbar-nav .nav-link {
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
}

.navbar-nav .dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-nav .dropdown-item:hover {
    background-color: #ffc107;
    color: black !important;
}

/* ========================================
   DROPDOWN MENU
======================================== */
.dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

/* ========================================
   WHATSAPP BUTTON
======================================== */
.whatsapp-btn {
    background-color: #000;
    color: #fff;
    font-weight: bold;
    border: none;
    text-transform: uppercase;
}

.whatsapp-btn:hover {
    background-color: #000;
    color: #fff;
}

/* ========================================
   SLIDER / LOGO MARQUEE
======================================== */
.slider {
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
    width: calc(250px * 20);
    animation: scroll 60s linear infinite;
}

.slide {
    height: 100px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    height: 60px;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   REVIEW CARD (Hover Effect)
======================================== */
.review-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* ========================================
   FOOTER
======================================== */
.footer-divider {
    border-top: 1px solid #ffff00;
}

.footer-icon {
    font-size: 1.2rem;
    margin-right: 15px;
    color: #ffff00;
}

.footer-bottom a {
    text-decoration: none;
    color: #ffff00;
}

.footer-bottom a:hover {
    text-decoration: none;
}

.footer-links span::after {
    content: "/";
    margin: 0 8px;
}

.footer-links span:last-child::after {
    content: "";
}

/* --- Dual Contrast --- */
.dual-contrast {
    min-height: 500px;
}

.dark-block {
    background: #111;
}

.feature-line {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

/* --- Editorial --- */
.editorial-section {
    position: relative;
    background: #fff;
    overflow: hidden;
}

.bg-editorial-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 180px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    z-index: 1;
}

.accent-bar {
    width: 80px;
    height: 6px;
    background: #ffc107;
}

.info-line {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

/* --- Cinema / Glass --- */
.cinema-section {
    position: relative;
    background: url('https://images.pexels.com/photos/323780/pexels-photo-323780.jpeg?auto=compress&cs=tinysrgb&h=1200') center/cover no-repeat fixed;
    padding: 120px 0;
}

.cinema-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
}

.glass-panel {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.08);
    border-left: 6px solid #ffc107;
}

/* --- Feature Bars --- */
.feature-bar {
    border-left: 5px solid #ffc107;
    transition: all 0.3s ease;
    background: #fff;
}

.feature-bar:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

/* --- Statement Rail --- */
.statement-section {
    background: #0f172a;
    overflow: hidden;
}

.statement-block {
    padding: 100px 20px;
}

.feature-rail {
    background: #ffc107;
    overflow: hidden;
    white-space: nowrap;
}

.rail-track {
    display: flex;
    animation: slideRail 18s linear infinite;
}

.rail-item {
    min-width: 300px;
    padding: 40px;
    color: #000;
}

.rail-item h5 {
    font-weight: 700;
}

/* --- Impact section --- */
.impact-section {
    position: relative;
    background: #111;
    color: #fff;
    padding: 120px 0;
    overflow: hidden;
}

.bg-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 220px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
}

.content-block {
    max-width: 700px;
    position: relative;
    z-index: 2;
    animation: fadeSlide 1s ease forwards;
}

.impact-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
}

.impact-title span {
    display: block;
    color: #ffc107;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRail {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* --- Mobile Sticky CTA --- */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    gap: 0;
    z-index: 9999;
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.15);
}

.mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    background: #ffc107;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
}

.mobile-cta a:nth-child(2) {
    background: #111;
    color: #fff;
}



/* ========================================
   RESPONSIVE STYLES (Mobile < 992px)
======================================== */
@media (max-width: 991.98px) {
    .navbar-nav {
        gap: 0 !important;
    }

    .navbar-nav .nav-item {
        margin-bottom: 0.25rem;
    }

    .navbar-nav .nav-link {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .navbar-collapse {
        padding: 0.5rem 1rem;
    }

    .navbar .btn {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
}