/* Premium Variables */
:root {
    --gold: #D4AF37;
    --emerald: #00a86b;
    --navy: #002d62;
    --white: #ffffff;
    --soft-gray: #f9f9f9;
}

* { margin:0; padding:0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background: var(--white); color: #333; }

/* Navigation */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 20px 8%; background: var(--white); box-shadow: 0 4px 12px rgba(0,0,0,0.05); position: sticky; top:0; z-index:100; }
.logo { font-weight: 700; font-size: 1.5rem; color: var(--navy); }
.logo span { color: var(--emerald); margin-left: 5px; }
.nav-menu { display: flex; list-style: none; align-items: center; }
.nav-menu li a { text-decoration: none; color: var(--navy); margin-left: 30px; font-weight: 600; font-size: 0.9rem; }
.nav-cta { background: var(--emerald); color: white !important; padding: 10px 25px; border-radius: 50px; }

/* Hero */
.hero-premium { 
    height: 90vh; 
    background: linear-gradient(rgba(0,45,98,0.8), rgba(0,45,98,0.8)), url('images/gallery/photo1.jpg') center/cover;
    display: flex; align-items: center; justify-content: center; color: white; text-align: center;
}
.hero-content { max-width: 800px; padding: 20px; }
.tagline { color: var(--emerald); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.hero h1 { font-size: 4rem; margin: 15px 0; line-height: 1.1; }
.highlight { color: var(--emerald); }
.hero-btns { margin-top: 30px; }
.btn-primary { background: var(--emerald); color: white; padding: 18px 40px; border-radius: 50px; text-decoration: none; font-weight: 700; margin-right: 15px; display: inline-block; }
.btn-secondary { border: 2px solid white; color: white; padding: 16px 40px; border-radius: 50px; text-decoration: none; font-weight: 700; display: inline-block; }

/* Stats Bar */
.stats-bar { display: flex; justify-content: space-around; background: var(--soft-gray); padding: 50px 8%; text-align: center; }
.stat-item h2 { font-size: 2.5rem; color: var(--navy); }
.stat-item p { color: #777; font-weight: 600; }

/* Mission */
.container { display: flex; align-items: center; padding: 80px 8%; gap: 50px; }
.mission-text { flex: 1; }
.mission-img { flex: 1; }
.mission-img img { width: 100%; border-radius: 20px; box-shadow: 20px 20px 0px var(--emerald); }
.check-list { list-style: none; margin-top: 20px; }
.check-list li { margin-bottom: 10px; font-weight: 600; color: var(--navy); }
.check-list i { color: var(--emerald); margin-right: 10px; }

/* WhatsApp Sticky */
.whatsapp-sticky { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; padding: 12px 25px; border-radius: 50px; display: flex; align-items: center; text-decoration: none; box-shadow: 0 10px 20px rgba(0,0,0,0.2); z-index: 1000; }
.whatsapp-sticky i { font-size: 1.5rem; margin-right: 10px; }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .container { flex-direction: column; text-align: center; }
    .nav-menu { display: none; }
}