@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #d4af37; /* Gold/Mineral vibe */
    --primary-dark: #b5952f;
    --bg-dark: #0a0f16;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(10, 15, 22, 0.7);
    --text-main: #f0f4f8;
    --text-muted: #a0aec0;
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-primary: linear-gradient(135deg, #d4af37 0%, #f3e5ab 100%);
    --gradient-dark: linear-gradient(180deg, #0a0f16 0%, #111827 100%);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography Utility */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

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

.btn-primary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-2px);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(5, 8, 12, 0.85) 0%, rgba(5, 8, 12, 0.4) 60%, transparent 100%);
    transition: var(--transition);
    padding: 1.5rem 0;
}

.header.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: 50px;
    display: block;
    object-fit: cover;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-main);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Slide Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 1001;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .close-btn {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu a {
    font-size: 1.25rem;
    font-family: var(--font-heading);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* Overlay removed as requested */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-content.centered {
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.8);
}

.hero p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-shadow: 1px 2px 10px rgba(0,0,0,0.9);
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

/* Intro Strip */
.intro-strip {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 4rem 0;
    position: relative;
    z-index: 10;
    margin-top: -2rem;
    backdrop-filter: blur(10px);
}

.intro-strip p {
    font-size: 1.25rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Cards */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: rgba(255, 255, 255, 0.05);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-muted);
}

/* Differentiators */
.differentiators ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.differentiators li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.differentiators .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Stats */
.stats-section {
    background: linear-gradient(180deg, rgba(10,15,22,1) 0%, rgba(212,175,55,0.05) 100%);
    border-top: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* CTA Banner */
.cta-banner {
    background: var(--primary-color);
    color: #000;
    text-align: center;
    padding: 5rem 2rem;
    border-radius: 8px;
    margin: 4rem 0;
}

.cta-banner h2 {
    color: #000;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(0,0,0,0.8);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-banner .btn {
    background: #000;
    color: var(--primary-color);
}

.cta-banner .btn:hover {
    background: #fff;
    color: #000;
}

/* Footer */
.footer {
    background: #05080c;
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.footer-logo img {
    height: 60px;
    width: 60px;
    display: block;
    object-fit: cover;
    border-radius: 50%;
    background-color: #fff;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer p a:hover,
.contact-item p a:hover {
    color: var(--primary-color);
}


.footer h4 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-color);
}

.tagline {
    font-style: italic;
    color: var(--primary-color);
    margin-top: 1rem;
}

/* Pages Styles */
.page-header {
    padding: 10rem 0 4rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(10,15,22,1) 0%, rgba(212,175,55,0.05) 100%);
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.leadership-card {
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 3rem;
    transition: var(--transition);
}

.leadership-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.leadership-img {
    width: 300px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leadership-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leadership-info {
    padding: 3rem;
    flex: 1;
}

.leadership-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.leadership-info h5 {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.leadership-info ul {
    margin-top: 1.5rem;
    padding-left: 1.5rem;
}

.leadership-info li {
    list-style-type: disc;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.values-list li {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.values-list strong {
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    .nav-links {
        gap: 1.2rem;
    }
    .logo-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 3rem; }
    .leadership-card { flex-direction: column; }
    .leadership-img { width: 100%; height: 300px; }
    .nav-links {
        gap: 0.8rem;
    }
    .nav-links a {
        font-size: 0.9rem;
    }
    .logo-text {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    
    .footer-content { grid-template-columns: 1fr; }
    
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1rem; }
    
    .section { padding: 4rem 0; }
    
    .leadership-info { padding: 2rem; }
    .page-header h1 { font-size: 2.5rem; }
}
