:root {
    --primary: #0f3d2e;
    --accent: #d4af37;
    --bg: #0b0b0b;
    --surface: #161616;
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow: 0 10px 30px rgba(0,0,0,0.5);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

html.modal-open,
html.modal-open body {
    overflow: hidden !important;
    height: 100% !important;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(15, 61, 46, 0.4);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--bg);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.glass {
    background: rgba(22, 22, 22, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Top Info Bar */
.top-bar {
    background: var(--bg);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
    color: var(--text-dim);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

/* Owners Bar */
.owners-bar {
    background: #000;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.owners-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.owner-item {
    text-align: center;
}
.owner-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 700;
    letter-spacing: 0.5px;
}
.owner-item span {
    display: block;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 2px;
}

/* Offer Bar */
.offer-bar {
    background: var(--accent);
    color: var(--bg);
    padding: 8px 0;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-main);
}

footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 100px;
    color: var(--text-dim);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    display: block;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .top-bar-content { flex-direction: column; gap: 5px; text-align: center; }
}

/* Floating WhatsApp Icon */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    color: white;
}
