

:root {
    --primary: #050505;
    --accent: #ccff00;
    --light: #F8F2F0;
    --dark: #060315;
}

/* ================= GLOBAL ================= */

body {
    background-color: var(--light);
    color: #333;
    font-family: 'Inter', sans-serif;
}
body {
    background: var(--primary); /* or #050505 */
    margin: 0;
    padding: 0;
}


section {
    margin: 0;
    padding-top: 80px;
    padding-bottom: 80px;
}


.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    font-weight: 700;
}

p {
    color: #666;
    line-height: 1.6;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: 0.3s ease;
}

a:hover {
    color: var(--accent);
}
/* ================= PAGE HEADER ================= */

.page-header {
    position: relative;
    background: url("../img/highwaymall.jpg") center/cover no-repeat;
    height: 320px;
    display: flex;
    align-items: center;
}

/* DARK OVERLAY */
.page-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.8); /* primary overlay */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CONTENT */
.page-header .container {
    position: relative;
    z-index: 2;
}

/* TITLE */
.page-title {
    color: var(--accent);
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 15px;
}

/* BREADCRUMB */
.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: #ccc;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--accent);
}

.breadcrumb-item.active {
    color: var(--accent);
}

/* DIVIDER */
.breadcrumb-item + .breadcrumb-item::before {
    color: #666;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .page-header {
        height: 220px;
    }

    .page-title {
        font-size: 28px;
    }

}

/* ================= ABOUT SECTION ================= */

.about-section {
    background: var(--primary) !important;
    color: var(--accent);
}


.about-section .container,
.about-section .container-fluid {
    background: transparent !important;
}

/* TEXT COLOR FIX */
.about-section h1,
.about-section h2,
.about-section h3,
.about-section h4,
.about-section h5,
.about-section h6,
.about-section p,
.about-section small,
.about-section li {
    color: var(--accent) !important;
}

/* ICONS */
.about-section i {
    color: var(--accent) !important;
}

/* BUTTON OVERRIDES */
.about-section .btn-outline-dark {
    border-color: var(--accent);
    color: var(--accent);
}

.about-section .btn-outline-dark:hover {
    background: var(--accent);
    color: var(--primary);
}

/* ================= ABOUT SECTION END ================= */

/* ================= TRUST SECTION ================= */

.trust-section {
    background: var(--accent) !important;
    color: var(--primary);
}


.trust-section .container {
    background: transparent !important;
}

/* TEXT COLORS */
.trust-section h1,
.trust-section h2,
.trust-section h3,
.trust-section h4,
.trust-section h5,
.trust-section h6,
.trust-section p,
.trust-section small {
    color: var(--primary) !important;
}

/* ICONS */
.trust-section i {
    color: var(--primary);
}

/* PHONE ICON BOX */
.trust-section .fa-phone-alt {
    background: var(--primary) !important;
    color: var(--accent) !important;
}

/* ================= CARDS (RIGHT SIDE STATS) ================= */

/* Dark card → flip */
.trust-section .bg-dark {
    background: var(--primary) !important;
    color: var(--accent) !important;
}

/* Warning card → keep accent but fix text */
.trust-section .bg-warning {
    background: var(--primary) !important;
    color: var(--accent) !important;
}

/* Secondary card */
.trust-section .bg-secondary {
    background: #333 !important;
    color: var(--accent) !important;
}

/* Light card */
.trust-section .bg-light {
    background: #f5f5f5 !important;
    color: var(--primary) !important;
}

/* ICON COLORS INSIDE CARDS */
.trust-section .text-warning {
    color: var(--primary) !important;
}

/* Numbers */
.trust-section h2 {
    font-weight: 700;
}
/* ================= TRUST SECTION  END ================= */
:root {
    --primary: #050505;
    --accent: #ccff00;
}

/* HERO */
.hero-slide {
    height: 85vh;
    min-height: 420px;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.75);
    display: flex;
    align-items: center;
}

/* TEXT */
.hero-title {
    color: #fff;
    font-weight: 700;
}

.hero-title span {
    color: var(--accent);
}

.hero-subtitle {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-text {
    color: #ddd;
    font-size: 15px;
    margin-bottom: 20px;
}

/* BUTTONS */
.btn-accent {
    background: var(--accent);
    color: var(--primary);
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
}

.btn-accent:hover {
    background: #bfff00;
}

.btn-outline-accent {
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 14px 30px;
    border-radius: 8px;
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: var(--primary);
}

.hero-buttons a {
    margin-right: 10px;
}

/* ARROWS */
.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 999;
}

.header-carousel .owl-nav button {
    width: 60px;
    height: 60px;
    background: var(--accent) !important;
    color: var(--primary) !important;
    border-radius: 50%;
    border: 2px solid #fff;
    font-size: 22px !important;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-slide {
        height: auto;
        padding: 80px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .btn-accent,
    .btn-outline-accent {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}
/* ================= WHY CHOOSE SECTION ================= */

.why-choose-section {
    background: var(--accent) !important;
    color: var(--primary);
}

.why-choose-section .container {
    background: transparent !important;
}

/* ================= TEXT ================= */

.why-choose-section h1,
.why-choose-section h2,
.why-choose-section h3,
.why-choose-section h4,
.why-choose-section h5,
.why-choose-section h6,
.why-choose-section p {
    color: var(--primary) !important;
}

/* subtitle */
.why-choose-section .text-warning {
    color: var(--primary) !important;
    opacity: 0.7;
}

/* ================= ICONS ================= */

.why-choose-section i {
    color: var(--primary) !important;
}

/* ================= BUTTONS ================= */

.why-choose-section .btn-warning {
    background: var(--primary);
    color: var(--accent);
    border: none;
}

.why-choose-section .btn-warning:hover {
    background: #000;
}

/* outline button */
.why-choose-section .btn-outline-dark {
    border-color: var(--primary);
    color: var(--primary);
}

.why-choose-section .btn-outline-dark:hover {
    background: var(--primary);
    color: var(--accent);
}

/* ================= IMAGE BOX ================= */

.why-choose-section .feature-image-box {
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ================= UTILITIES ================= */

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 9999;
}

/* ================= SPINNER ================= */

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility .5s;
    z-index: 9999;
}

#spinner.show {
    opacity: 1;
    visibility: visible;
}

/* ================= BUTTONS ================= */

.btn {
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--accent);
    border: none;
}

.btn-primary:hover {
    background-color: #4a0e7a;
    transform: translateY(-2px);
}

.btn-warning {
    background-color: var(--accent);
    color: var(--primary);
    border: none;
}

.btn-warning:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.btn-outline-dark {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline-dark:hover {
    background-color: var(--primary);
    color: var(--accent);
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
/* ================= NAVBAR (FIXED CLEAN VERSION) ================= */

.navbar {
    background-color: var(--primary) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);

    /* FIX 1: reduce overall navbar height */
    padding-top: 6px;
    padding-bottom: 6px;
}

.navbar-nav .nav-link {
    margin-right: 30px;

    padding: 10px 0;

    color: var(--accent) !important;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
    transform: translateY(-2px);
}

.navbar .dropdown-toggle::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 8px;
    color: var(--accent);
}

/* ================= MOBILE FIX ================= */

@media (max-width: 991px) {

    
    .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        right: 1rem;
        left: auto;
        width: min(340px, calc(100% - 2rem));
        background: var(--primary);
        border-radius: 18px;
        box-shadow: 0 20px 45px rgba(0,0,0,0.18);
        padding: 1rem 1rem 3rem;
        margin-top: 0.75rem;
        z-index: 1080;
    }

    .navbar-collapse.show {
        display: block !important;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .navbar-close {
        top: 16px;
        right: 16px;
    }
}

/* TOGGLER */
.navbar-toggler {
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;

   
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
}

.navbar-toggler:hover {
    background: rgba(204, 255, 0, 0.12);
}

.toggler-icon {
    font-size: 1.1rem; 
    color: var(--accent);
}

/* CLOSE BUTTON */
.navbar-close {
    position: absolute;
    top: 14px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    font-size: 1rem;
}

.navbar-close:hover {
    background: #bfff00;
}

@media (min-width: 992px) {
    .navbar-close {
        display: none !important;
    }
}

/* DROPDOWN */
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        top: 150%;
        transition: 0.3s ease;
    }

    .navbar .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
    }
}
/* ================= HEADER ================= */

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        min-height: 500px;
        position: relative;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* ================= FEATURE IMAGE ================= */

.feature-image-box {
    max-width: 450px;
    margin: auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .feature-img { height: 350px; }
}

@media (max-width: 576px) {
    .feature-img { height: 280px; }
}


/* ================= SERVICES SECTION ================= */

.services-section {
    background: var(--primary) !important;
    color: var(--accent);
}


.services-section .container {
    background: transparent !important;
}

/* HEADINGS + TEXT */
.services-section h1,
.services-section h2,
.services-section h3,
.services-section h4,
.services-section h5,
.services-section h6,
.services-section p {
    color: var(--accent) !important;
}

/* SUBTEXT */
.services-section .text-muted {
    color: rgba(204, 255, 0, 0.7) !important;
}

/* ================= CARDS ================= */

.services-section .card {
    background: #111 !important;
    color: var(--accent);
    border-radius: 12px;
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.services-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(204, 255, 0, 0.2);
}

/* CARD TEXT */
.services-section .card-title,
.services-section .card-text {
    color: var(--accent);
}

/* IMAGE FIX */
.services-section .service-img {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

/* BADGE */
.services-section .badge {
    background: var(--accent) !important;
    color: var(--primary) !important;
    font-weight: 600;
}

/* ================= BUTTONS ================= */

.services-section .btn-outline-dark {
    border-color: var(--accent);
    color: var(--accent);
}

.services-section .btn-outline-dark:hover {
    background: var(--accent);
    color: var(--primary);
}

.services-section .btn-warning {
    background: var(--accent);
    color: var(--primary);
    border: none;
}

.services-section .btn-warning:hover {
    background: #b3ff00;
}

/* ================= ICON COLORS ================= */

.services-section i {
    color: var(--accent);
}


.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.services-section .card:hover {
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.4);
}

@media (max-width: 576px) {
    .service-img { height: 180px; }
}


:root {
    --primary: #050505;
    --accent: #ccff00;
}

/* ================= PRICING SECTION ================= */

.pricing-section {
    background: var(--primary) !important;
    color: var(--accent);
}

/* remove white background leak */
.pricing-section .container {
    background: transparent !important;
}

/* ================= TEXT ================= */

.pricing-section h1,
.pricing-section h2,
.pricing-section h3,
.pricing-section h4,
.pricing-section h5,
.pricing-section p {
    color: var(--accent) !important;
}

/* subtitle */
.pricing-section .text-primary {
    color: var(--accent) !important;
}

/* ================= ACCORDION ================= */

.pricing-section .accordion-item {
    background: #111;
    border: none;
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
}

/* HEADER */
.pricing-section .accordion-button {
    background: #1a1a1a;
    color: var(--accent);
    font-weight: 600;
    box-shadow: none;
}

/* ACTIVE */
.pricing-section .accordion-button:not(.collapsed) {
    background: var(--accent);
    color: var(--primary);
}

/* BODY */
.pricing-section .accordion-body {
    background: #0d0d0d;
    color: rgba(204, 255, 0, 0.9);
    font-size: 15px;
    line-height: 1.8;
}

/* REMOVE DEFAULT ARROW COLOR ISSUE */
.pricing-section .accordion-button::after {
    filter: invert(1);
}

/* BOOKING SECTION FULL WIDTH BACKGROUND */
.booking-section {
    background: #ccff00; /* accent */
    color: #050505; /* text */
}

/* TEXT COLORS */
.booking-section h1,
.booking-section h6,
.booking-section p,
.booking-section small {
    color: #050505;
}

/* FIX MUTED TEXT */
.booking-section .text-muted {
    color: #333 !important;
}

/* FORM CARD */
.booking-section .bg-white {
    background: #050505 !important;
    color: #ccff00;
}

/* FORM INPUTS */
.booking-section .form-control,
.booking-section .form-select {
    background: #111;
    color: #ccff00;
    border: 1px solid #333;
}

/* PLACEHOLDER */
.booking-section .form-control::placeholder {
    color: #aaa;
}

/* LABELS */
.booking-section label {
    color: #ccff00;
}

/* BUTTON */
.booking-section .btn-warning {
    background: #050505;
    color: #ccff00;
    border: none;
}

.booking-section .btn-warning:hover {
    background: #111;
}

/* ICON BOX */
.booking-section .bg-light {
    background: #050505 !important;
    color: #ccff00;
}



/* TESTIMONIAL SECTION */
.testimonial-section {
    background: #050505; /* primary */
    color: #ccff00; /* accent */
}

/* HEADER TEXT */
.testimonial-section h2,
.testimonial-section h6,
.testimonial-section p {
    color: #ccff00;
}

/* FIX MUTED TEXT */
.testimonial-section .text-muted {
    color: #aaa !important;
}

/* TESTIMONIAL CARDS */
.testimonial-item {
    background: #111;
    color: #ccff00;
    transition: 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

/* NAMES */
.testimonial-item h5 {
    color: #ccff00;
}

/* STARS */
.testimonial-item .mb-2 {
    color: #ccff00;
}


.testimonial-item img {
    border: 2px solid #ccff00;
}

/* ================= TESTIMONIAL ALT (REVERSED THEME) ================= */

.testimonial-alt-section {
    background: var(--accent); /* accent background */
    color: var(--primary); /* primary text */
}

/* HEADER TEXT */
.testimonial-alt-section h2,
.testimonial-alt-section h6,
.testimonial-alt-section p {
    color: var(--primary);
}

/* FIX MUTED TEXT */
.testimonial-alt-section .text-muted {
    color: #333 !important;
}

/* TESTIMONIAL CARDS */
.testimonial-alt-section .testimonial-item {
    background: #f5f5f5;
    color: var(--primary);
    transition: 0.3s ease;
}

.testimonial-alt-section .testimonial-item:hover {
    transform: translateY(-5px);
}

/* NAMES */
.testimonial-alt-section .testimonial-item h5 {
    color: var(--primary);
}

/* STARS */
.testimonial-alt-section .testimonial-item .mb-2 {
    color: var(--primary);
}

/* IMAGE BORDER */
.testimonial-alt-section .testimonial-item img {
    border: 2px solid var(--primary);
}
/* ================= FOOTER ================= */

.footer {
    position: relative;
    background: url("../img/highwaymall.jpg") center/cover no-repeat;
    color: #ccff00; /* accent text */
}

/* DARK + BRAND OVERLAY */
.footer::before {
    content: "";
    position: absolute;
    inset: 0;

    /* blend dark + brand tone */
    background: rgba(5, 5, 5, 0.88);

    z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.footer .container {
    position: relative;
    z-index: 2;
}

/* HEADINGS */
.footer h4,
.footer h5 {
    color: #ccff00;
}

/* TEXT */
.footer p,
.footer small {
    color: #ddd;
}

/* LINKS */
.footer .btn-link {
    color: #ccff00;
    transition: 0.3s ease;
}

.footer .btn-link:hover {
    color: #fff;
    letter-spacing: 1px;
}

/* ICONS */
.footer i {
    color: #ccff00;
}

/* BUTTON */
.footer .btn-warning {
    background: #ccff00;
    color: #050505;
    border: none;
}

.footer .btn-warning:hover {
    background: #e6ff33;
}

/* MAP */
.map-wrapper {
    border: 2px solid #ccff00;
    border-radius: 12px;
    overflow: hidden;
}

/* BOTTOM BAR */
.footer .border-top {
    border-color: rgba(204, 255, 0, 0.2) !important;
}
/* ================= CONTACT SECTION ================= */

.contact-section {
    background: var(--primary);
    color: var(--accent);
}

/* TEXT */
.contact-title,
.contact-subtitle {
    color: var(--accent);
}

.contact-text {
    color: #bbb;
}

/* ================= CONTACT INFO ================= */

.contact-icon {
    color: var(--accent);
    font-size: 18px;
}

.contact-info span {
    color: #ddd;
}

/* ================= FORM BOX ================= */

.contact-form-box {
    background: #0d0d0d;
    border-radius: 12px;
    border: 1px solid rgba(204,255,0,0.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* FORM TITLE */
.contact-form-title {
    color: var(--accent);
}

/* ================= INPUTS ================= */

.contact-input {
    background: #111;
    border: 1px solid #333;
    color: #fff;
    padding: 12px;
}

.contact-input::placeholder {
    color: #888;
}

.contact-input:focus {
    border-color: var(--accent);
    box-shadow: none;
    background: #111;
    color: #fff;
}

/* ================= BUTTONS ================= */

.btn-accent {
    background: var(--accent);
    color: var(--primary);
    border: none;
    font-weight: 600;
    border-radius: 8px;
}

.btn-accent:hover {
    background: #bfff00;
    color: #000;
}

.btn-outline-accent {
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 8px;
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: var(--primary);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .contact-title {
        font-size: 24px;
    }

    .contact-form-box {
        padding: 20px;
    }
}
/* ================= GALLERY THEME ================= */

.gallery-section {
    background: var(--primary);
    color: var(--accent);
}

/* TEXT */
.section-title {
    color: var(--accent);
}

.section-subtitle {
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-text {
    color: #bbb;
}

/* FILTER BUTTONS */
.filter-btn {
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
    padding: 8px 18px;
    border-radius: 6px;
    transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: var(--primary);
}

/* special button */
.accent-btn {
    background: var(--accent);
    color: var(--primary);
}

/* ================= GALLERY ITEMS ================= */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-instruction {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    max-width: 650px;
    margin: 0 auto;
}


/* HOVER ZOOM */
.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(5,5,5,0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay-text {
    color: var(--accent);
    margin-bottom: 10px;
}

/* BUTTON */
.view-btn {
    background: var(--accent);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
}

.view-btn:hover {
    background: #bfff00;
}

/* ================= VIDEO THUMBNAILS ================= */

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    color: var(--accent);
    z-index: 10;
    opacity: 0.9;
    transition: 0.3s ease;
}

.gallery-item.shorts .overlay {
    background: rgba(5, 5, 5, 0.75);
}

.gallery-item.shorts:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
}

/* ================= VIDEO SHORTS SECTION ================= */

.video-shorts-section {
    background: var(--primary);
    color: var(--accent);
}

.video-shorts-section .container {
    background: transparent !important;
}

.video-shorts-section h2,
.video-shorts-section h5 {
    color: var(--accent) !important;
}

.video-shorts-section .section-text {
    color: rgba(204, 255, 0, 0.8);
}

/* ================= LIGHTBOX ================= */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.lightbox-img {
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.lightbox-caption {
    margin-top: 16px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 42px;
    color: var(--accent);
    cursor: pointer;
}

.lightbox.show {
    display: flex;
}

@media (max-width: 768px) {
    .lightbox {
        padding: 14px;
    }

    .lightbox-close {
        right: 18px;
        top: 18px;
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .lightbox-img {
        max-height: 75vh;
    }
}

/* ================= AUTO SLIDER ================= */

.gallery-slider {
    background: var(--primary);
}

.gallery-scroll {
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 20px;
    animation: scroll 25s linear infinite;
}

.gallery-slide {
    min-width: 250px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ANIMATION */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ================= VIDEO FRAME ================= */

.video-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 320px; /* 👈 reduced height */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: #000;
}

/* VIDEO */
.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BOTTOM CAPTION */
.video-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;

    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);

    color: var(--accent);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .video-frame {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .video-frame {
        height: 240px;
        border-radius: 12px;
    }

    .video-caption h5 {
        font-size: 16px;
    }

    .video-caption small {
        font-size: 12px;
    }
}

.video-frame:hover video {
    transform: scale(1.05);
    transition: 0.5s ease;
}

/* =========================
   WHY CHOOSE INVERTED THEME
   (SAFE OVERRIDE ONLY)
========================= */

.why-invert {
    background: var(--primary) !important;
    color: var(--accent) !important;
}

/* keep container clean */
.why-invert .container {
    background: transparent !important;
}

/* TEXT */
.why-invert h1,
.why-invert h2,
.why-invert h3,
.why-invert h4,
.why-invert h5,
.why-invert h6,
.why-invert p {
    color: var(--accent) !important;
}

/* subtitle override */
.why-invert .text-warning {
    color: var(--accent) !important;
    opacity: 0.8;
}

/* ICONS */
.why-invert i {
    color: var(--accent) !important;
}

/* BUTTONS */
.why-invert .btn-warning {
    background: var(--accent);
    color: var(--primary);
    border: none;
}

.why-invert .btn-warning:hover {
    background: #bfff00;
    color: #000;
}

/* outline button */
.why-invert .btn-outline-dark {
    border-color: var(--accent);
    color: var(--accent);
}

.why-invert .btn-outline-dark:hover {
    background: var(--accent);
    color: var(--primary);
}

/* IMAGE SHADOW */
.why-invert .feature-image-box {
    box-shadow: 0 10px 30px rgba(204,255,0,0.15);
}

/* ================= SHOP SECTION ================= */

.shop-section {
    background: var(--primary);
    color: var(--accent);
}

/* TEXT */
.shop-title,
.shop-subtitle {
    color: var(--accent);
}

.shop-text {
    color: #ccc;
}

/* ================= CARD ================= */

.shop-card {
    background: #0d0d0d;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid rgba(204,255,0,0.1);
}

.shop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(204,255,0,0.15);
}

/* ================= IMAGE FIX ================= */

.shop-img-wrapper {
    width: 100%;
    height: 260px; /* SAME HEIGHT FOR ALL */
    overflow: hidden;
}

.shop-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* IMPORTANT */
    transition: 0.4s;
}

.shop-card:hover .shop-img {
    transform: scale(1.08);
}

/* ================= TEXT ================= */

.shop-desc {
    color: #aaa;
    font-size: 14px;
}

.shop-price {
    color: var(--accent);
    font-weight: 600;
}

/* ================= BUTTON ================= */

.btn-accent {
    background: var(--accent);
    color: var(--primary);
    border: none;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
}

.btn-accent:hover {
    background: #bfff00;
    color: #000;
}

/* ================= BADGES ================= */

.badge-accent {
    background: var(--accent);
    color: var(--primary);
}

.badge-dark {
    background: #000;
    color: var(--accent);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .shop-img-wrapper {
        height: 220px;
    }

    .shop-title {
        font-size: 24px;
    }
}