:root {
    --primary: #00A3FF;
    --primary-dark: #0085CC;
    --bg-dark: #050505;
    --bg-card: #121214;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-family: 'Outfit', sans-serif;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.nav {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-bottom {
    color: var(--primary);
    font-size: 0.85rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 400;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-outline:hover {
    background: var(--glass-bg);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    text-align: center;
    background: radial-gradient(circle at center, #111111 0%, #050505 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.location-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Sections General */
.section {
    padding: 100px 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

/* Grid & Cards */
.grid {
    display: grid;
    gap: 2rem;
}

.cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
}

.glass:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.card h3 {
    margin: 1.5rem 0 1rem;
    color: var(--primary);
}

/* Faith Section */
.faith-scroll {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.faith-item {
    padding-left: 20px;
    border-left: 2px solid var(--primary);
}

.faith-item h4 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.quote {
    margin-top: 2.5rem;
    font-style: italic;
    color: var(--primary);
    font-size: 1.1rem;
}

/* Structure Circular Layout */
.org-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem 0;
}

.org-center {
    z-index: 10;
}

.node-main {
    width: 140px;
    height: 140px;
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 0 30px rgba(0, 163, 255, 0.4);
}

.org-nodes-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px dashed var(--glass-border);
    border-radius: 50%;
}

.org-node {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    transition: var(--transition);
}

.org-node:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Positioning nodes around circle */
.org-node:nth-child(1) {
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.org-node:nth-child(2) {
    top: 20%;
    right: -50px;
}

.org-node:nth-child(3) {
    bottom: -20px;
    right: 20%;
}

.org-node:nth-child(4) {
    bottom: -20px;
    left: 20%;
}

.org-node:nth-child(5) {
    top: 20%;
    left: -50px;
}

.leadership-details {
    grid-template-columns: 1fr 1fr;
    margin-top: 4rem;
}

.img-minimal {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 1.5rem;
    filter: grayscale(0.5);
    transition: var(--transition);
}

.img-minimal:hover {
    filter: grayscale(0);
}

/* Objectives Grid */
.objectives-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.obj-card {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    border: 1px solid var(--glass-border);
}

.obj-num {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
}

/* Roles Grid */
.roles-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-top: 3rem;
}

.role-card {
    padding: 1.5rem;
}

.role-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Objectives List Compact */
.objectives-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.obj-compact {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--glass-bg);
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
}

.obj-compact span {
    background: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

/* Social Help Tags */
.tag-list {
    list-style: none;
    margin-top: 1.5rem;
}

.tag-list li {
    display: inline-block;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin: 0.5rem;
    font-size: 0.9rem;
}

/* Map Section */
.map-wrapper {
    padding: 1rem;
    margin-top: 2rem;
    overflow: hidden;
}

.contact-info-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    color: var(--primary);
}

/* Utilities */
.mt-4 {
    margin-top: 3rem;
}

.mt-2 {
    margin-top: 1rem;
}

.img-wide {
    width: 100%;
    object-fit: cover;
    height: 350px;
}

.justify-center {
    justify-content: center;
}

.check-list-centered {
    list-style: none;
    display: inline-block;
    text-align: left;
}

.check-list-centered li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-list-centered li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

/* General Layout Tools */
.grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.img-fluid {
    width: 100%;
    height: auto;
    border-radius: 24px;
}

.check-list {
    list-style: none;
    margin: 2rem 0;
}

.check-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.grid-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .grid-split {
        grid-template-columns: 1fr;
    }

    .org-container {
        transform: scale(0.7);
        height: 400px;
    }

    .grid-footer {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}