:root {
    --primary-color: #0c1425; /* Navy Dark */
    --accent-color: #d4af37;  /* Gold */
    --warm-dark: #1a1a1a;
    --text-light: #f4f4f4;
    --text-muted: #cccccc;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--primary-color);
}

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

/* Ticker */
.top-ticker {
    background: var(--accent-color);
    color: var(--primary-color);
    height: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 1001;
    font-weight: bold;
    font-size: 0.9rem;
}

.ticker-content {
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    padding-left: 100%;
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Header & Navbar */
header {
    background: rgba(12, 20, 37, 0.95);
    position: sticky;
    top: 40px;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar {
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

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

.nav-links li a {
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 5px;
    transition: var(--transition);
    font-size: 0.95rem;
    text-transform: uppercase;
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background: #b8962d;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Footer */
.main-footer {
    background: #060a13;
    padding: 80px 0 20px;
    border-top: 1px solid #333;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-info p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.social-icons a {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--white);
}

.footer-links h4, .footer-legal h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
}

.footer-links li, .footer-legal li {
    margin-bottom: 10px;
}

.footer-links a, .footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.85rem;
}

/* Sections */
.py-large { padding: 80px 0; }
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.section-title { font-size: 2.5rem; margin-bottom: 25px; color: var(--accent-color); }
.img-responsive { width: 100%; height: auto; }
.rounded { border-radius: 8px; }

.stats-bar {
    background: var(--warm-dark);
    padding: 60px 0;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(12, 20, 37, 0.98);
    padding: 20px 0;
    border-top: 2px solid var(--accent-color);
    z-index: 2000;
    display: none;
}

.cookie-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-btns {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-sm { padding: 8px 20px; font-size: 0.8rem; }
.link-small { color: var(--text-muted); font-size: 0.8rem; }

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

/* Forms */
.contact-form {
    background: var(--warm-dark);
    padding: 40px;
    border-radius: 8px;
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; color: var(--accent-color); }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    background: #333;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .grid-2, .grid-4 { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .cookie-banner .container { flex-direction: column; text-align: center; gap: 15px; }
}