/* GLOBAL RESET & FONT */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #050505;
    color: white;
    line-height: 1.6;
    min-height: 100vh;
}

/* LINKS */
a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    align-items: center;
}

nav h2 {
    font-weight: 900;
    font-size: 28px;
    background: linear-gradient(135deg, #d4af37, #fff);
    -webkit-background-clip: text;
    color: transparent;
}

nav div a {
    margin-left: 25px;
    font-weight: 600;
    font-size: 17px;
}

nav div a:hover {
    color: #fff;
}

/* PRELOADER */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-logo {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #d4af37, #fff);
    -webkit-background-clip: text;
    color: transparent;
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #fff);
    margin-top: 20px;
    animation: load 3s forwards;
}

@keyframes load {
    from {
        width: 0;
    }
    to {
        width: 200px;
    }
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #050505, #111);
    padding: 0 20px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 900;
    background: linear-gradient(135deg, #d4af37, #fff);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 22px;
    color: #ccc;
    margin-bottom: 35px;
}

.hero a {
    display: inline-block;
    padding: 15px 45px;
    background: linear-gradient(135deg, #d4af37, #fff);
    color: #000;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.hero a:hover {
    transform: scale(1.05);
}

/* SECTION GENERIC */
.section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #d4af37;
    font-weight: 700;
}

/* SERVICES GRID */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.service-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    cursor: default;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 22px;
}

.service-box p {
    color: #ddd;
    font-size: 16px;
    line-height: 1.5;
}

/* ABOUT & CTA TEXT */
.section p {
    font-size: 18px;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* CTA BUTTON IN SECTION */
.section a {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: linear-gradient(135deg, #d4af37, #fff);
    color: #000;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.section a:hover {
    transform: scale(1.05);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    font-size: 15px;
    color: #777;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }
    .hero p {
        font-size: 18px;
    }
    nav {
        padding: 20px 30px;
    }
    nav h2 {
        font-size: 22px;
    }
    nav div a {
        margin-left: 15px;
        font-size: 15px;
    }
    .section h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    .service-box {
        padding: 20px;
    }
}
