/* --- Global Variables & Resets --- */
:root {
    --bg-dark: #050505;
    --bg-card: #111111;
    --gold: #F5C518;
    --gold-hover: #ffcf2a;
    --text-main: #ffffff;
    --text-gray: #a0a0a0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.text-gold { color: var(--gold); }
.text-gray { color: var(--text-gray); }
.tracking-wide { letter-spacing: 2px; }

/* --- Buttons --- */
.btn-gold {
    background-color: var(--gold);
    color: #000;
    font-weight: 600;
    border: 2px solid var(--gold);
    border-radius: 5px;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
    box-shadow: 0 0 20px rgba(245, 197, 24, 0.2);
}

.shadow-gold {
    box-shadow: 0 10px 30px rgba(245, 197, 24, 0.15);
}

/* --- Navbar --- */
.navbar {
    padding: 20px 0;
    transition: all 0.4s ease-in-out;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(5, 5, 5, 0.95);
    padding: 12px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.navbar .logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main) !important;
}

.navbar .logo span {
    color: var(--gold);
}

.nav-link {
    color: var(--text-gray) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Subtle background pattern for luxury feel */
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 70%);
    z-index: -1;
}

/* --- Services Section --- */
.services {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
}

.service-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #222;
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-card .icon-box {
    width: 70px;
    height: 70px;
    background: rgba(245, 197, 24, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 20px rgba(245, 197, 24, 0.1);
}

.service-card:hover .icon-box {
    background: var(--gold);
    color: #000;
}

/* --- Footer --- */
.footer {
    padding: 60px 0 30px;
    background: #000;
    border-top: 1px solid #1a1a1a;
}

/* --- Scroll Animations (JS triggers these) --- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}