:root {
    --primary: #001f3f; 
    --accent: #D4AF37; 
    --white: #ffffff;
    --light: #f4f7f6;
    --text: #333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; line-height: 1.6; color: var(--text); scroll-behavior: smooth; }

.container { max-width: 1100px; margin: auto; padding: 80px 20px; }
.bg-light { background: var(--light); }

/* Navigation */
.navbar {
    background: var(--primary);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-box { display: flex; align-items: center; }
.logo-img { height: 50px; border: 2px solid var(--accent); border-radius: 4px; background: #fff; }
.logo-text { margin-left: 15px; color: var(--white); }
.brand-name { display: block; font-weight: 700; font-size: 1.2rem; }
.parent-brand { font-size: 0.7rem; color: var(--accent); font-weight: bold; }

.nav-links { display: flex; list-style: none; }
.nav-links a { color: var(--white); text-decoration: none; padding: 10px 15px; font-weight: 600; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,31,63,0.8), rgba(0,31,63,0.8)), url('https://images.unsplash.com/photo-1454165833767-027ffea9e7a7?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}
.hero-inner { width: 100%; }
.hero h1 { font-size: 3.5rem; font-family: 'Playfair Display', serif; }
.tagline { font-size: 1.3rem; color: var(--accent); margin-bottom: 25px; }

/* Buttons */
.btn { padding: 12px 30px; border-radius: 5px; text-decoration: none; font-weight: bold; display: inline-block; transition: 0.3s; }
.btn-primary { background: var(--accent); color: var(--primary); }
.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn:hover { transform: scale(1.05); }

/* Components */
.section-title { text-align: center; margin-bottom: 40px; color: var(--primary); font-size: 2.5rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.card { background: #fff; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; }
.card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 15px; }
.role { color: var(--accent); font-weight: bold; display: block; margin-bottom: 10px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 5px; }

/* Footer & WhatsApp */
footer { background: var(--primary); color: #fff; text-align: center; padding: 30px; }
.whatsapp { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; text-decoration: none; z-index: 1000; }