﻿:root {
    --gold-light: #fcf6ba;
    --gold-mid: #b38728;
    --gold-dark: #aa771c;
    --gold-metallic: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fcf6ba 75%, #aa771c 100%);
    --black-pure: #000000;
    --black-soft: #0a0a0a;
    --zinc-900: #18181b;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 215, 0, 0.15);
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--black-pure);
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black-pure);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-mid);
    border-radius: 10px;
}

/* Typography */
h1, h2, h3, h4, h5, .montserrat {
    font-family: 'Montserrat', 'Cairo', sans-serif;
}

.ls-2 {
    letter-spacing: 2px;
}

.gold-text {
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Navbar */
.navbar {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 25px 0;
    background: transparent;
}

    .navbar.scrolled {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        padding: 15px 0;
        border-bottom: 1px solid var(--glass-border);
    }

.nav-link {
    color: rgba(255,255,255,0.7) !important;
    margin: 0 18px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--gold-metallic);
        transition: 0.3s;
    }

    .nav-link:hover {
        color: #fff !important;
    }

        .nav-link:hover::after {
            width: 100%;
        }

/* Responsive Navbar Fixes */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        margin-top: 20px;
        padding: 30px;
        border: 1px solid var(--glass-border);
        box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    }

    .nav-link {
        margin: 15px 0;
        font-size: 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(255,215,0,0.05);
        padding-bottom: 10px;
    }

        .nav-link::after {
            display: none;
        }

    .navbar .btn-luxury {
        width: 100%;
        margin-top: 20px;
        padding: 15px;
    }

    .navbar-brand svg {
        width: 140px;
    }
}

.navbar-toggler {
    padding: 10px;
    border: 1px solid rgba(255,215,0,0.2) !important;
    border-radius: 0;
    transition: 0.3s;
}

    .navbar-toggler:hover {
        background: rgba(255,215,0,0.05);
        border-color: var(--gold-mid) !important;
    }

.btn-luxury {
    background: var(--gold-metallic);
    color: #000 !important;
    font-weight: 800;
    border: none;
    padding: 12px 30px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

    .btn-luxury:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(179, 135, 40, 0.4);
        filter: brightness(1.1);
    }

/* Hero */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--black-pure) 100%);
    z-index: -1;
}

.hero h1 {
    font-size: 6rem;
    line-height: 1;
    font-weight: 900;
}

.hero p {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
}

/* Stats */
.stat-card {
    padding: 40px;
    border-right: 1px solid var(--glass-border);
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0;
}

/* 3-Level Services */
.services-section {
    background: var(--black-soft);
    padding: 120px 0;
    position: relative;
}

    .services-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('/imgs/carbon-fibre.png');
        opacity: 0.05;
        pointer-events: none;
    }

.cat-pill {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    padding: 15px 35px;
    margin: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
}

    .cat-pill.active {
        background: var(--gold-metallic);
        color: #000;
        border-color: transparent;
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(179, 135, 40, 0.3);
    }

.sub-cat-link {
    color: rgba(255,255,255,0.4);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
}

    .sub-cat-link.active {
        color: var(--gold-light);
        border-bottom-color: var(--gold-mid);
    }

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: 0.5s;
    height: 100%;
    position: relative;
}

    .service-card:hover {
        background: rgba(255, 215, 0, 0.05);
        border-color: var(--gold-mid);
        transform: translateY(-15px);
    }

.service-img-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
}

    .service-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(0.5) brightness(0.7);
        transition: 0.8s;
    }

.service-card:hover img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-metallic);
    color: #000;
    font-size: 0.6rem;
    font-weight: 900;
    padding: 5px 12px;
    z-index: 2;
}

/* Luxury Badge Redesign */
.luxury-badge {
    width: 180px;
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.badge-inner {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid var(--gold-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.badge-content {
    text-align: center;
    z-index: 2;
}

    .badge-content h3 {
        font-size: 3.5rem;
        line-height: 1;
        margin-bottom: 5px;
    }

.badge-divider {
    width: 40px;
    height: 2px;
    background: var(--gold-metallic);
    margin: 10px auto;
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1.4;
}

.badge-ring {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid var(--gold-mid);
    border-radius: 0;
    opacity: 0.2;
    animation: rotate 15s linear infinite;
}

.badge-ring-outer {
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    border: 1px dashed var(--gold-light);
    opacity: 0.1;
    animation: rotate 30s linear reverse infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Modal Customization */
.modal-content {
    background: var(--black-soft);
    border: 1px solid var(--gold-mid);
    border-radius: 0;
}

.modal-header {
    border-bottom: 1px solid var(--glass-border);
    padding: 30px;
}

.modal-body {
    padding: 40px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

    .feature-list li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        display: flex;
        align-items: center;
        gap: 15px;
        color: rgba(255,255,255,0.7);
    }

        .feature-list li i {
            color: var(--gold-primary);
        }

/* Contact */
.contact-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 50px;
}

/* Footer */
footer {
    background: #050505;
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-link {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.8rem;
}

    .footer-link:hover {
        color: var(--gold-primary);
    }

/* Animations */
[data-aos] {
    transition-duration: 1000ms !important;
}
