:root {
    /* Color Palette - Luxury Corporate Minimalist */
    --bg-color: #f8f9fa; /* Very subtle off-white */
    --bg-light-cream: #f4f2ee;
    --surface-color: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #5a5a5a;
    --accent-color: #d4af37; /* Luxury Gold */
    --accent-dark: #b8962c;
    --border-color: rgba(0, 0, 0, 0.08);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-color);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.text-gold {
    color: var(--accent-color) !important;
}

.bg-light-cream {
    background-color: var(--bg-light-cream);
}

.section-padding {
    padding: 100px 0;
}

/* Navbar */
.custom-navbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 15px 0;
    transition: var(--transition-smooth);
}

.custom-navbar.scrolled {
    padding: 10px 0;
}

.logo-img {
    height: 70px;
    mix-blend-mode: darken;
    transition: var(--transition-smooth);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary) !important;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.custom-toggler {
    border: none;
    outline: none;
}

.custom-toggler .toggler-icon {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-image: url('../img/hero-bg.jpg'); /* User should upload this */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.4) 100%);
    z-index: 1;
}

.hero-kicker {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-title span {
    font-style: italic;
    color: var(--accent-dark);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
}

/* Buttons */
.btn-custom {
    display: inline-block;
    padding: 15px 35px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary-custom {
    background-color: var(--text-primary);
    color: #fff;
}

.btn-primary-custom:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-outline-custom {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.btn-outline-custom:hover {
    background-color: var(--text-primary);
    color: #fff;
}

/* Services */
.service-card {
    background: var(--surface-color);
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-bottom: 3px solid var(--accent-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Stats */
.stats-section {
    background-image: url('../img/stats-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.stats-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(26, 26, 26, 0.9);
    z-index: 1;
}

.stat-number {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: var(--bg-light-cream);
    border-top: 1px solid var(--border-color);
}

.footer-logo {
    height: 70px;
    mix-blend-mode: darken;
}

.footer-links a, .footer-contact li {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    margin-bottom: 10px;
    display: block;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: var(--text-primary);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--accent-color);
    color: #fff;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1);
}
