/* ROOT VARIABLES - TRUVEST BRANDING */
:root {
    --primary-bg: #0b0b0b;
    --secondary-bg: #1a1a1a;
    --accent-gold: #D4AF37; /* Gold from your luxury projects */
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --transition: all 0.3s ease-in-out;
}

/* GLOBAL RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* RESPONSIVE CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* MOBILE FIRST GRID SYSTEM */
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col { flex: 1; padding: 0 15px; }

@media (max-width: 768px) {
    .row { flex-direction: column; }
    .col { width: 100%; margin-bottom: 30px; }
    h1 { font-size: 2.2rem !important; }
}

/* HIGH-END BUTTONS */
.btn-accent {
    background-color: var(--accent-gold);
    color: #000;
    padding: 12px 30px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-accent:hover {
    background-color: #fff;
    transform: translateY(-3px);
}

/* FLOATING WHATSAPP BUTTON PROMOTE: 917414920209 */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: white;
    z-index: 9999;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}