:root {
    --primary-gold: #C5A059;
    --dark-gold: #A68648;
    --luxury-black: #000000;
    --luxury-white: #ffffff;
    --luxury-gray: #f8f9fa;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --text-light: #ffffff;
}

body {
    font-family: 'Figtree', sans-serif;
    background-color: var(--luxury-white);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: 'Tinos', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.text-gold {
    color: var(--primary-gold);
}

.text-white {
    color: var(--text-light) !important;
}

.bg-gold {
    background-color: var(--primary-gold);
}

.bg-luxury-black {
    background-color: var(--luxury-black);
    color: var(--text-light);
}

.bg-luxury-white {
    background-color: var(--luxury-white);
    color: var(--text-main);
}

.bg-luxury-gray {
    background-color: var(--luxury-gray);
}

.text-muted {
    color: var(--text-muted) !important;
    opacity: 1 !important;
}

/* Global Padding */
section {
    padding: 100px 0;
}

/* Navbar Styling */
.navbar {
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background-color: var(--luxury-white);
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    border-bottom: none;
}

.navbar-brand img {
    height: 70px;
    width: auto;
    transition: all 0.4s ease;
    filter: brightness(1.2);
    /* Help logo pop on dark hero */
}

.navbar.scrolled .navbar-brand img {
    height: 55px;
    filter: none;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 15px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .nav-link {
    color: var(--text-main) !important;
    text-shadow: none;
}

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

/* Buttons */
.btn-luxury {
    background-color: var(--primary-gold);
    color: #000;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-luxury:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
}

.btn-outline-luxury {
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 10px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-outline-luxury:hover {
    background-color: var(--primary-gold);
    color: #000 !important;
}

/* Hero Section */
#hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&q=80&w=1920&h=1080') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

/* About Section */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-gold);
}

.text-justify {
    text-align: justify;
}

/* Statistics Section */
.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    transition: transform 0.3s;
    text-align: center;
}

.bg-luxury-white .stat-card {
    background: var(--luxury-gray);
    border-color: rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Icon Boxes */
.icon-box {
    margin-bottom: 40px;
}

.icon-box i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.icon-box h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Partners Section */
.partner-logo img {
    filter: invert(1) grayscale(100%) brightness(1.2);
    mix-blend-mode: screen;
    opacity: 0.6;
    transition: all 0.3s;
    max-width: 150px;
    margin: 20px auto;
}

.partner-logo:hover img {
    filter: invert(1) grayscale(0%) brightness(1.5);
    opacity: 1;
}

/* Contact Section */
.form-control {
    background-color: var(--luxury-gray);
    border: 1px solid #ddd;
    color: var(--text-main);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
}

.bg-luxury-black .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.form-control:focus {
    background-color: #fff;
    border-color: var(--primary-gold);
    box-shadow: none;
    color: var(--text-main);
}

.contact-info i {
    width: 40px;
    height: 40px;
    background-color: var(--luxury-gray);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    border-radius: 50%;
}

.bg-luxury-black .contact-info i {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
    padding: 50px 0;
    border-top: 1px solid #333;
}

.social-icons a {
    color: #fff;
    background: var(--luxury-black);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-gold);
    color: #000;
}

.footer-luxury {
    background: var(--luxury-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 60px 0;
    position: relative;
    color: var(--text-main);
}

/* Custom spacing */
.py-100 {
    padding: 100px 0;
}

.hover-gold:hover {
    color: var(--primary-gold) !important;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    section {
        padding: 60px 0;
    }
}