:root {
    --primary-dark: #0a1128;
    --primary-navy: #162447;
    --accent-gold: #d4af37;
    --accent-gold-hover: #f1c453;
    --text-light: #f4f4f9;
    --text-muted: #a0aabf;
    --text-dark: #1a1a1a;
    --text-dark-muted: #444444;
    --bg-light: #ffffff;
    --bg-off-white: #f8f9fa;
    --transition-standard: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--text-dark); line-height: 1.7; background-color: var(--bg-light); overflow-x: hidden; font-size: 1.05rem; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--primary-dark); line-height: 1.2; margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; }
p { margin-bottom: 1.5rem; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 5%; }
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.img-fluid { max-width: 100%; height: auto; }
.rounded { border-radius: 8px; }
.shadow-lg { box-shadow: 0 15px 35px rgba(0,0,0,0.2); }

/* Navigation */
.glass-nav { position: fixed; top: 0; width: 100%; z-index: 1000; background: #ffffff; border-bottom: 1px solid rgba(0, 0, 0, 0.05); transition: var(--transition-standard); padding: 15px 0; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03); }
.glass-nav.scrolled { padding: 10px 0; background: #ffffff; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08); }
.nav-container { max-width: 1400px; margin: 0 auto; padding: 0 5%; display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 50px; transition: var(--transition-standard); }
.logo { font-family: var(--font-heading); color: var(--primary-dark); font-size: 1.5rem; font-weight: 700; letter-spacing: 2px; display: flex; align-items: center; }
.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a { color: var(--primary-dark); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition-standard); position: relative; }
.nav-links a:not(.btn-primary)::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0; background-color: var(--accent-gold); transition: var(--transition-standard); }
.nav-links a:not(.btn-primary):hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--accent-gold); }

/* Hamburger Menu (Mobile) */
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.hamburger span { width: 25px; height: 3px; background-color: var(--primary-dark); transition: var(--transition-standard); }

/* Buttons */
.btn-primary { background-color: var(--accent-gold); color: var(--primary-dark) !important; padding: 12px 28px; border-radius: 4px; font-weight: 600; transition: var(--transition-standard); display: inline-block; border: 1px solid var(--accent-gold); text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem;}
.btn-primary:hover { background-color: transparent; color: var(--accent-gold) !important; }
.btn-secondary { background-color: transparent; color: var(--text-light); padding: 12px 28px; border-radius: 4px; font-weight: 600; transition: var(--transition-standard); display: inline-block; border: 1px solid var(--text-light); text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem;}
.btn-secondary:hover { background-color: var(--text-light); color: var(--primary-dark) !important; }

/* Page Header (Subpages) */
.page-header { padding: 150px 0 80px 0; background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy)); color: var(--text-light); text-align: center; }
.page-title { color: var(--text-light); font-size: 3.5rem; margin-bottom: 1rem; }
.page-subtitle { color: var(--accent-gold); font-size: 1.2rem; font-family: var(--font-heading); font-style: italic; letter-spacing: 1px; }

/* Hero Section */
.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; background-attachment: fixed; z-index: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(22, 36, 71, 0.75) 100%); z-index: 2; }
.hero-content { position: relative; z-index: 3; max-width: 900px; padding: 0 20px; }
.hero-title { color: var(--text-light); font-size: 4.5rem; margin-bottom: 20px; opacity: 0; transform: translateY(30px); animation: fadeUp 1s ease forwards 0.5s; line-height: 1.1; }
.hero-subtitle { color: var(--text-light); font-size: 1.25rem; font-weight: 300; margin-bottom: 40px; opacity: 0; transform: translateY(30px); animation: fadeUp 1s ease forwards 0.7s; }
.hero-cta { display: flex; gap: 20px; justify-content: center; opacity: 0; transform: translateY(30px); animation: fadeUp 1s ease forwards 0.9s; }

/* Sections & Grids */
.section { padding: 100px 0; }
.dark-bg { background-color: var(--primary-dark); }
.text-light { color: var(--text-light) !important; }
.text-gold { color: var(--accent-gold) !important; }
.text-light-muted { color: var(--text-muted); }
.section-header { margin-bottom: 60px; }
.section-kicker { color: var(--accent-gold); font-family: var(--font-body); text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 10px; }
.section-title { font-size: 3rem; margin-bottom: 20px; }
.lead-text { font-size: 1.3rem; color: var(--text-dark-muted); margin-bottom: 30px; font-weight: 300; font-style: italic; border-left: 3px solid var(--accent-gold); padding-left: 20px; }
.dark-bg .lead-text { color: var(--text-light); }

.grid-2-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

/* Sectors Grid */
.sectors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.sector-card { height: 400px; position: relative; border-radius: 8px; overflow: hidden; cursor: pointer; }
.card-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.8s ease; z-index: 1; }
.sector-card::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(10,17,40,0.95) 0%, rgba(10,17,40,0.4) 50%, rgba(10,17,40,0.1) 100%); z-index: 2; pointer-events: none; }
.sector-card:hover .card-bg { transform: scale(1.1); }
.card-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; z-index: 3; color: var(--text-light); }
.card-content h3 { color: var(--text-light); font-size: 1.5rem; margin-bottom: 10px; transition: var(--transition-standard); }
.sector-card:hover .card-content h3 { color: var(--accent-gold); }
.card-content p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; opacity: 0.9; }
.explore-link { color: var(--accent-gold); text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; font-weight: 600; }

/* Features & Content Blocks */
.content-block { font-size: 1.1rem; }
.stats-row { display: flex; gap: 40px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; }
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-size: 2.5rem; font-family: var(--font-heading); font-weight: bold; line-height: 1; margin-bottom: 5px; }
.stat-text { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }

.feature-card { background: var(--bg-off-white); padding: 40px; border-radius: 8px; border-top: 4px solid transparent; transition: var(--transition-standard); }
.feature-card:hover { transform: translateY(-10px); border-top-color: var(--accent-gold); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.card-icon { font-size: 3rem; margin-bottom: 20px; }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.feature-card p { color: var(--text-dark-muted); margin-bottom: 20px; }
.read-more { color: var(--accent-gold); font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }

/* Image Grid */
.image-grid { display: flex; flex-direction: column; gap: 20px; }
.image-grid img { width: 100%; object-fit: cover; }
.image-grid img:first-child { height: 350px; }
.image-grid img:last-child { height: 250px; object-position: top; }

/* Complex Text Layouts */
.text-module { margin-bottom: 60px; }
.text-module h3 { font-size: 2rem; border-bottom: 1px solid #e0e0e0; padding-bottom: 15px; margin-bottom: 25px; }

/* Footer */
.footer { background: var(--primary-navy); color: var(--text-light); padding: 80px 0 30px 0; border-top: 4px solid var(--accent-gold); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand h2 { color: var(--text-light); margin-bottom: 5px; }
.footer-brand p { color: var(--text-muted); font-size: 0.95rem; }
.incorporation { font-size: 0.85rem !important; color: var(--accent-gold) !important; margin-bottom: 0 !important; }
.footer-contact h4, .footer-links h4 { color: var(--text-light); margin-bottom: 20px; }
.footer-contact p { color: var(--text-muted); margin-bottom: 10px; font-size: 0.9rem; }
.footer-contact strong { color: var(--text-light); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); transition: var(--transition-standard); font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent-gold); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: var(--text-muted); font-size: 0.85rem; }

/* Animations & Utilities */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transition: all 1s ease-out; }
.reveal.active { opacity: 1; }
.reveal.fade-up { transform: translateY(50px); }
.reveal.fade-up.active { transform: translateY(0); }
.reveal.fade-left { transform: translateX(50px); }
.reveal.fade-left.active { transform: translateX(0); }
.reveal.fade-right { transform: translateX(-50px); }
.reveal.fade-right.active { transform: translateX(0); }

/* Responsive */
@media (max-width: 992px) {
    .grid-2-col, .grid-3-col, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 3.5rem; }
}
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: #ffffff; padding: 20px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-top: 1px solid rgba(0,0,0,0.05); }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .hero-cta { flex-direction: column; }
    .page-title { font-size: 2.5rem; }
}
