:root {
    --primary: #0a192f;
    --secondary: #d4af37;
    --accent: #112240;
    --text-light: #ccd6f6;
    --text-dark: #8892b0;
    --white: #ffffff;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f9e29c 100%);
    --bg-dark: #020c1b;
    --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--white);
}

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

/* Navbar */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 2px;
}

.brand-tag {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--text-dark);
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-whatsapp {
    background: var(--secondary);
    color: var(--primary) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600 !important;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(2, 12, 27, 0.9) 0%, rgba(2, 12, 27, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero h1 {
    font-size: clamp(40px, 8vw, 72px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.subtitle {
    color: var(--secondary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.description {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary);
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-outline {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary:hover, .btn-outline:hover {
    transform: translateY(-5px);
}

/* Stats Grid */
.stats-grid {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

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

.stat-card {
    background: var(--accent);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-bottom: 4px solid var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
    font-family: 'Outfit';
}

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

/* Sections General */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-header .line {
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 0 auto;
}

/* Overview Content */
.content-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.content-text {
    flex: 1;
}

.content-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-list i {
    color: var(--secondary);
}

.content-image {
    flex: 1;
    position: relative;
}

.content-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.image-caption {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    color: var(--text-dark);
}

/* Location Cards */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.location-card {
    background: var(--accent);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-10px);
    background: #1d2d50;
}

.location-card i {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.location-card h4 {
    margin-bottom: 10px;
}

/* Tables */
.zones-table {
    margin-bottom: 60px;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--accent);
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
    background: rgba(212, 175, 55, 0.1);
    color: var(--secondary);
}

/* Village Tags */
.village-highlight {
    background: rgba(17, 34, 64, 0.5);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.village-highlight h3 {
    margin-bottom: 20px;
}

.village-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.village-tags span {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 13px;
    color: var(--text-dark);
    transition: var(--transition);
}

.village-tags span:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* CTA */
.cta {
    background: var(--bg-dark);
}

.cta-box {
    background: var(--gold-gradient);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: var(--primary);
}

.cta-box h2 {
    color: var(--primary);
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-whatsapp-large {
    background: #25d366;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-phone-large {
    background: var(--primary);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-whatsapp-large:hover, .btn-phone-large:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand h3 {
    color: var(--secondary);
    letter-spacing: 2px;
}

.footer-text {
    text-align: right;
    color: var(--text-dark);
    font-size: 14px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .content-flex {
        flex-direction: column;
    }
    
    .hero {
        text-align: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-text {
        text-align: center;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-box h2 {
        font-size: 28px;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
