:root {
    --primary: #D4AF37;
    /* Metallic Gold */
    --primary-bright: #F9E2AF;
    --primary-dark: #996515;
    --secondary: #1A1A1A;
    --bg-dark: #050505;
    --bg-card: rgba(15, 15, 15, 0.7);
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #996515 100%);
    --gradient-dark: linear-gradient(180deg, #121212 0%, #050505 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.1);
    --border-gold: rgba(212, 175, 55, 0.2);
    --border-light: rgba(255, 255, 255, 0.05);
    --glass: blur(12px);
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Navbar */
.navbar {
    background: rgba(5, 5, 5, 0.8) !important;
    backdrop-filter: var(--glass);
    border-bottom: 1px solid var(--border-light);
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main) !important;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: -1px;
}

.navbar-brand span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    margin: 0 1.2rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.btn-primary {
    background: var(--gradient-gold);
    border: none;
    color: #000;
    font-weight: 700;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    color: #000;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}

.hero h1 {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 800;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Cards & Glassmorphism */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-premium);
}

.glass-card:hover::before {
    opacity: 1;
}

/* Service Items */
.service-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

/* Sections */
.section {
    padding: 120px 0;
}

.sub-title {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
}

.section-title {
    font-size: 4rem;
    margin-bottom: 3rem;
    line-height: 1.1;
}

/* Form Styles */
.form-floating>.form-control {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    color: white;
    border-radius: 12px;
    padding: 1rem;
}

.form-floating>.form-control:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.form-floating>label {
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 100px 0 50px;
    border-top: 1px solid var(--border-light);
    background: #020202;
}

.footer-link {
    color: var(--text-muted);
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--primary);
    padding-left: 5px;
}

@media (max-width: 991px) {
    .hero h1 {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}