/* =========================================================
   ROOT VARIABLES — PREMIUM BLACK × GOLD THEME
========================================================= */
:root {
    --bg-1: #000000;
    /* Pure black */
    --bg-2: #000000;
    /* Slightly lighter black */

    --accent: #e4a024;
    /* Rich Royal Gold */
    --accent-2: #f4c542;
    /* Bright warm gold highlight */

    --muted: #c5b88a;
    /* Muted gold beige */

    --white: #ffffff;
    --radius: 12px;
}



/* =========================================================
   BASE STYLES
========================================================= */
* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
    background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
    color: var(--white);
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: rgba(228, 160, 36, 0.35);
    /* Gold tint */
    color: #fff;
}



/* =========================================================
   NAVBAR
========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.65);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
    padding-left: 0;
    padding-right: 0;
}

.nav-logo {
    height: 40px;
    margin-left: 10px;
}

.brand-text {
    font-weight: 700;
    letter-spacing: 0.2px;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.85);
    margin-left: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all .2s ease;
}

.navbar .nav-link:hover {
    background: rgba(228, 160, 36, 0.15);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(228, 160, 36, 0.15);
}



/* =========================================================
   HERO SECTION
========================================================= */
.hero {
    display: flex;
    align-items: center;
}

.hero-inner {
    padding: 30px;
}

.hero-copy h1 {
    color: #fff8e6;
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
}

.lead {
    color: var(--muted);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-graphic {
    border-radius: 16px;
    width: 100%;
    height: 500px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transition: transform .6s cubic-bezier(.2, .8, .2, 1);
}

.hero-visual:hover .hero-graphic {
    transform: translateY(-6px) scale(1.01);
}

/* Hero Stats */
.glass-stats {
    position: absolute;
    right: -30px;
    bottom: -20px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.glass-stats strong {
    color: var(--accent-2);
    font-size: 1.1rem;
}

.glass-stats small {
    color: #f3e7c5;
}



/* =========================================================
   SECTIONS
========================================================= */
.section {
    padding-top: 48px;
    padding-bottom: 48px;
}

.section-heading {
    font-weight: 700;
    font-size: 1.45rem;
    color: #fdf9ee;
}

.muted {
    color: var(--muted);
}



/* =========================================================
   ABOUT SECTION
========================================================= */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.features-list {
    list-style: none;
    padding: 0;
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.features-list li {
    color: #fff5d0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.features-list i {
    color: var(--accent-2) !important;
    font-size: 18px;
}

.view-btn:hover {
    color: #000 !important;
    background: var(--accent);
}

.mini-feature {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mini-feature i {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: rgba(228, 160, 36, 0.18);
    color: var(--accent);
}

.mini-feature div strong {
    color: #fff4cc !important;
}

.mini-feature div small {
    color: #c8b68c !important;
}



/* =========================================================
   PRODUCT CARDS
========================================================= */
.bg-soft {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(5, 5, 5, 0.6));
}

.product-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: all .3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(228, 160, 36, 0.15);
}

.product-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}



/* =========================================================
   GALLERY — GOLD THEME
========================================================= */
.gallery-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-modern img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all .35s ease;
}

.gallery-modern img:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 12px 30px rgba(228, 160, 36, 0.25);
}



/* =========================================================
   TECH HIGHLIGHTS (SPEC REPLACEMENT)
========================================================= */
.tech-highlights {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.75), rgba(10, 10, 10, 0.8));
    padding: 70px 0;
}

.tech-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 30px;
    text-align: center;
    transition: all .3s ease;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(228, 160, 36, 0.25);
}

.tech-card i {
    font-size: 36px;
    color: var(--accent-2);
}

.tech-card h5 {
    color: #fff4d9;
}



/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 30px;
    margin: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.testimonial-card p {
    color: #fff4d9;
    font-style: italic;
}

.slick-dots li button:before {
    color: var(--accent-2);
}
.slick-dots li.slick-active button:before {
    color: #e4a024 !important;
}



/* =========================================================
   CONTACT SECTION
========================================================= */
.icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent);
}

.card {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
}

.card .form-control {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    color: #fffdf0 !important;
    border-radius: 10px;
}

.card .form-control::placeholder {
    color: rgba(250, 235, 205, 0.55) !important;
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border: none;
    border-radius: 12px;
    padding: 10px 22px;
    box-shadow: 0 10px 30px rgba(228, 160, 36, 0.25);
}

.invalid-feedback {
    color: #e4a024;
}



/* =========================================================
   FOOTER
========================================================= */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
}

.footer-logo {
    height: 48px;
}
.foot-divider{
    display: none;
}


/* =========================================================
   RESPONSIVE
========================================================= */
@media(max-width:991px) {
    .hero-visual {
        display: none;
    }

    .glass-stats {
        display: none;
    }
}

@media(max-width:576px) {
    .hero {
        padding: 36px 12px;
    }

    .gallery-modern img {
        height: 180px;
    }
}


@media (min-width:320px) and (max-width:767px) {

    .item-2{
        order: 2;
    }

    .item-1{
        order: 1;
    }



    .slick-next {
        display: none !important;
    }

    .slick-prev {
        display: none !important;
    }

    .footer-links{
        display: flex;
        flex-direction: column;
    }
}